csv-1.3.0/.cargo_vcs_info.json0000644000000001360000000000100116300ustar { "git": { "sha1": "6374614ef8240d110626409ae882339b8145282c" }, "path_in_vcs": "" }csv-1.3.0/.gitignore000064400000000000000000000001301046102023000124020ustar 00000000000000.*.swp doc tags examples/ss10pusa.csv build target Cargo.lock scratch* bench_large/huge csv-1.3.0/COPYING000064400000000000000000000001761046102023000114570ustar 00000000000000This project is dual-licensed under the Unlicense and MIT licenses. You may use this code under the terms of either license. csv-1.3.0/Cargo.lock0000644000000050710000000000100076060ustar # This file is automatically @generated by Cargo. # It is not intended for manual editing. version = 3 [[package]] name = "bstr" version = "1.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" dependencies = [ "memchr", "serde", ] [[package]] name = "csv" version = "1.3.0" dependencies = [ "bstr", "csv-core", "itoa", "ryu", "serde", ] [[package]] name = "csv-core" version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" dependencies = [ "memchr", ] [[package]] name = "itoa" version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "memchr" version = "2.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "proc-macro2" version = "1.0.67" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" dependencies = [ "unicode-ident", ] [[package]] name = "quote" version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] [[package]] name = "ryu" version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "serde" version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" dependencies = [ "proc-macro2", "quote", "syn", ] [[package]] name = "syn" version = "2.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] [[package]] name = "unicode-ident" version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" csv-1.3.0/Cargo.toml0000644000000026620000000000100076340ustar # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.61" name = "csv" version = "1.3.0" authors = ["Andrew Gallant "] exclude = [ "/.github", "/ci/*", "/scripts/*", ] description = "Fast CSV parsing with support for serde." homepage = "https://github.com/BurntSushi/rust-csv" documentation = "https://docs.rs/csv" readme = "README.md" keywords = [ "csv", "comma", "parser", "delimited", "serde", ] categories = [ "encoding", "parser-implementations", ] license = "Unlicense/MIT" repository = "https://github.com/BurntSushi/rust-csv" [profile.bench] debug = 2 [profile.release] debug = 2 [lib] bench = false [dependencies.csv-core] version = "0.1.11" [dependencies.itoa] version = "1" [dependencies.ryu] version = "1" [dependencies.serde] version = "1.0.55" [dev-dependencies.bstr] version = "1.2.0" features = [ "alloc", "serde", ] default-features = false [dev-dependencies.serde] version = "1.0.55" features = ["derive"] csv-1.3.0/Cargo.toml.orig000064400000000000000000000016611046102023000133130ustar 00000000000000[package] name = "csv" version = "1.3.0" #:version authors = ["Andrew Gallant "] description = "Fast CSV parsing with support for serde." documentation = "https://docs.rs/csv" homepage = "https://github.com/BurntSushi/rust-csv" repository = "https://github.com/BurntSushi/rust-csv" readme = "README.md" keywords = ["csv", "comma", "parser", "delimited", "serde"] license = "Unlicense/MIT" categories = ["encoding", "parser-implementations"] exclude = ["/.github", "/ci/*", "/scripts/*"] edition = "2021" rust-version = "1.61" [workspace] members = ["csv-core", "csv-index"] [lib] bench = false [dependencies] csv-core = { path = "csv-core", version = "0.1.11" } itoa = "1" ryu = "1" serde = "1.0.55" [dev-dependencies] bstr = { version = "1.2.0", default-features = false, features = ["alloc", "serde"] } serde = { version = "1.0.55", features = ["derive"] } [profile.release] debug = true [profile.bench] debug = true csv-1.3.0/ISSUE_TEMPLATE.md000064400000000000000000000024341046102023000131300ustar 00000000000000Thank you for taking the time to file a bug report. The following describes some guidelines to creating a minimally useful ticket. Above all else: do not describe your problem, **SHOW** your problem. #### What version of the `csv` crate are you using? Replace this text with the version. (The version can be found in your Cargo.lock.) #### Briefly describe the question, bug or feature request. Replace this text with a description. #### Include a complete program demonstrating a problem. Whether you're asking for a feature, filing a bug or just asking a question, this section should almost always include some kind of code that you have written. The code provided should be able to be compiled by others and should be as feasibly small as possible. If you're reporting a bug, then the code should exhibit some undesirable characteristic. If you're asking a question, then the code should represent what you've tried so far. If you're requesting a feature, then provide code that does the closest possible thing to what you're requesting, if possible. #### What is the observed behavior of the code above? Replace this text with the output of the program. #### What is the expected or desired behavior of the code above? Replace this text with the expected or desired output of the program. csv-1.3.0/LICENSE-MIT000064400000000000000000000020711046102023000120540ustar 00000000000000The MIT License (MIT) Copyright (c) 2015 Andrew Gallant 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. csv-1.3.0/README.md000064400000000000000000000051101046102023000116740ustar 00000000000000csv === A fast and flexible CSV reader and writer for Rust, with support for Serde. [![Build status](https://github.com/BurntSushi/rust-csv/workflows/ci/badge.svg)](https://github.com/BurntSushi/rust-csv/actions) [![crates.io](https://img.shields.io/crates/v/csv.svg)](https://crates.io/crates/csv) Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org). ### Documentation https://docs.rs/csv If you're new to Rust, the [tutorial](https://docs.rs/csv/1.*/csv/tutorial/index.html) is a good place to start. ### Usage To bring this crate into your repository, either add `csv` to your `Cargo.toml`, or run `cargo add csv`. ### Example This example shows how to read CSV data from stdin and print each record to stdout. There are more examples in the [cookbook](https://docs.rs/csv/1.*/csv/cookbook/index.html). ```rust use std::{error::Error, io, process}; fn example() -> Result<(), Box> { // Build the CSV reader and iterate over each record. let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // The iterator yields Result, so we check the // error here. let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```text $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-basic < examples/data/smallpop.csv ``` ### Example with Serde This example shows how to read CSV data from stdin into your own custom struct. By default, the member names of the struct are matched with the values in the header record of your CSV data. ```rust use std::{error::Error, io, process}; #[derive(Debug, serde::Deserialize)] struct Record { city: String, region: String, country: String, population: Option, } fn example() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { // Notice that we need to provide a type hint for automatic // deserialization. let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ``` $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-serde < examples/data/smallpop.csv ``` csv-1.3.0/UNLICENSE000064400000000000000000000022731046102023000116740ustar 00000000000000This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. 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 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. For more information, please refer to csv-1.3.0/benches/bench.rs000064400000000000000000000334441046102023000134640ustar 00000000000000#![feature(test)] extern crate test; use std::io; use serde::{de::DeserializeOwned, Deserialize, Serialize}; use test::Bencher; use csv::{ ByteRecord, Reader, ReaderBuilder, StringRecord, Trim, Writer, WriterBuilder, }; static NFL: &'static str = include_str!("../examples/data/bench/nfl.csv"); static GAME: &'static str = include_str!("../examples/data/bench/game.csv"); static POP: &'static str = include_str!("../examples/data/bench/worldcitiespop.csv"); static MBTA: &'static str = include_str!("../examples/data/bench/gtfs-mbta-stop-times.csv"); #[derive(Debug, Serialize, Deserialize, PartialEq)] struct NFLRowOwned { gameid: String, qtr: i32, min: Option, sec: Option, off: String, def: String, down: Option, togo: Option, ydline: Option, description: String, offscore: i32, defscore: i32, season: i32, } #[derive(Debug, Serialize, Deserialize, PartialEq)] struct NFLRowBorrowed<'a> { gameid: &'a str, qtr: i32, min: Option, sec: Option, off: &'a str, def: &'a str, down: Option, togo: Option, ydline: Option, description: &'a str, offscore: i32, defscore: i32, season: i32, } #[derive(Debug, Serialize, Deserialize, PartialEq)] struct GAMERowOwned(String, String, String, String, i32, String); #[derive(Debug, Serialize, Deserialize, PartialEq)] struct GAMERowBorrowed<'a>(&'a str, &'a str, &'a str, &'a str, i32, &'a str); #[derive(Debug, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "PascalCase")] struct POPRowOwned { country: String, city: String, accent_city: String, region: String, population: Option, latitude: f64, longitude: f64, } #[derive(Debug, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "PascalCase")] struct POPRowBorrowed<'a> { country: &'a str, city: &'a str, accent_city: &'a str, region: &'a str, population: Option, latitude: f64, longitude: f64, } #[derive(Debug, Serialize, Deserialize, PartialEq)] struct MBTARowOwned { trip_id: String, arrival_time: String, departure_time: String, stop_id: String, stop_sequence: i32, stop_headsign: String, pickup_type: i32, drop_off_type: i32, timepoint: i32, } #[derive(Debug, Serialize, Deserialize, PartialEq)] struct MBTARowBorrowed<'a> { trip_id: &'a str, arrival_time: &'a str, departure_time: &'a str, stop_id: &'a str, stop_sequence: i32, stop_headsign: &'a str, pickup_type: i32, drop_off_type: i32, timepoint: i32, } #[derive(Default)] struct ByteCounter { count: usize, } impl io::Write for ByteCounter { fn write(&mut self, data: &[u8]) -> io::Result { self.count += data.len(); Ok(data.len()) } fn flush(&mut self) -> io::Result<()> { Ok(()) } } macro_rules! bench { ($name:ident, $data:ident, $counter:ident, $result:expr) => { #[bench] fn $name(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; b.iter(|| { let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); assert_eq!($counter(&mut rdr), $result); }) } }; } macro_rules! bench_trimmed { ($name:ident, $data:ident, $counter:ident, $result:expr) => { #[bench] fn $name(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; b.iter(|| { let mut rdr = ReaderBuilder::new() .has_headers(false) .trim(Trim::All) .from_reader(data); assert_eq!($counter(&mut rdr), $result); }) } }; } macro_rules! bench_serde { (no_headers, $name_de:ident, $name_ser:ident, $data:ident, $counter:ident, $type:ty, $result:expr) => { #[bench] fn $name_de(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; b.iter(|| { let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); assert_eq!($counter::<_, $type>(&mut rdr), $result); }) } #[bench] fn $name_ser(b: &mut Bencher) { let data = $data.as_bytes(); let values = ReaderBuilder::new() .has_headers(false) .from_reader(data) .deserialize() .collect::, _>>() .unwrap(); let do_it = || { let mut counter = ByteCounter::default(); { let mut wtr = WriterBuilder::new() .has_headers(false) .from_writer(&mut counter); for val in &values { wtr.serialize(val).unwrap(); } } counter.count }; b.bytes = do_it() as u64; b.iter(do_it) } }; ($name_de:ident, $name_ser:ident, $data:ident, $counter:ident, $type:ty, $result:expr) => { #[bench] fn $name_de(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; b.iter(|| { let mut rdr = ReaderBuilder::new().has_headers(true).from_reader(data); assert_eq!($counter::<_, $type>(&mut rdr), $result); }) } #[bench] fn $name_ser(b: &mut Bencher) { let data = $data.as_bytes(); let values = ReaderBuilder::new() .has_headers(true) .from_reader(data) .deserialize() .collect::, _>>() .unwrap(); let do_it = || { let mut counter = ByteCounter::default(); { let mut wtr = WriterBuilder::new() .has_headers(true) .from_writer(&mut counter); for val in &values { wtr.serialize(val).unwrap(); } } counter.count }; b.bytes = do_it() as u64; b.iter(do_it) } }; } macro_rules! bench_serde_borrowed_bytes { ($name:ident, $data:ident, $type:ty, $headers:expr, $result:expr) => { #[bench] fn $name(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; b.iter(|| { let mut rdr = ReaderBuilder::new() .has_headers($headers) .from_reader(data); let mut count = 0; let mut rec = ByteRecord::new(); while rdr.read_byte_record(&mut rec).unwrap() { let _: $type = rec.deserialize(None).unwrap(); count += 1; } count }) } }; } macro_rules! bench_serde_borrowed_str { ($name:ident, $data:ident, $type:ty, $headers:expr, $result:expr) => { #[bench] fn $name(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; b.iter(|| { let mut rdr = ReaderBuilder::new() .has_headers($headers) .from_reader(data); let mut count = 0; let mut rec = StringRecord::new(); while rdr.read_record(&mut rec).unwrap() { let _: $type = rec.deserialize(None).unwrap(); count += 1; } count }) } }; } bench_serde!( count_nfl_deserialize_owned_bytes, count_nfl_serialize_owned_bytes, NFL, count_deserialize_owned_bytes, NFLRowOwned, 9999 ); bench_serde!( count_nfl_deserialize_owned_str, count_nfl_serialize_owned_str, NFL, count_deserialize_owned_str, NFLRowOwned, 9999 ); bench_serde_borrowed_bytes!( count_nfl_deserialize_borrowed_bytes, NFL, NFLRowBorrowed, true, 9999 ); bench_serde_borrowed_str!( count_nfl_deserialize_borrowed_str, NFL, NFLRowBorrowed, true, 9999 ); bench!(count_nfl_iter_bytes, NFL, count_iter_bytes, 130000); bench_trimmed!(count_nfl_iter_bytes_trimmed, NFL, count_iter_bytes, 130000); bench!(count_nfl_iter_str, NFL, count_iter_str, 130000); bench_trimmed!(count_nfl_iter_str_trimmed, NFL, count_iter_str, 130000); bench!(count_nfl_read_bytes, NFL, count_read_bytes, 130000); bench!(count_nfl_read_str, NFL, count_read_str, 130000); bench_serde!( no_headers, count_game_deserialize_owned_bytes, count_game_serialize_owned_bytes, GAME, count_deserialize_owned_bytes, GAMERowOwned, 100000 ); bench_serde!( no_headers, count_game_deserialize_owned_str, count_game_serialize_owned_str, GAME, count_deserialize_owned_str, GAMERowOwned, 100000 ); bench_serde_borrowed_bytes!( count_game_deserialize_borrowed_bytes, GAME, GAMERowBorrowed, true, 100000 ); bench_serde_borrowed_str!( count_game_deserialize_borrowed_str, GAME, GAMERowBorrowed, true, 100000 ); bench!(count_game_iter_bytes, GAME, count_iter_bytes, 600000); bench!(count_game_iter_str, GAME, count_iter_str, 600000); bench!(count_game_read_bytes, GAME, count_read_bytes, 600000); bench!(count_game_read_str, GAME, count_read_str, 600000); bench_serde!( count_pop_deserialize_owned_bytes, count_pop_serialize_owned_bytes, POP, count_deserialize_owned_bytes, POPRowOwned, 20000 ); bench_serde!( count_pop_deserialize_owned_str, count_pop_serialize_owned_str, POP, count_deserialize_owned_str, POPRowOwned, 20000 ); bench_serde_borrowed_bytes!( count_pop_deserialize_borrowed_bytes, POP, POPRowBorrowed, true, 20000 ); bench_serde_borrowed_str!( count_pop_deserialize_borrowed_str, POP, POPRowBorrowed, true, 20000 ); bench!(count_pop_iter_bytes, POP, count_iter_bytes, 140007); bench!(count_pop_iter_str, POP, count_iter_str, 140007); bench!(count_pop_read_bytes, POP, count_read_bytes, 140007); bench!(count_pop_read_str, POP, count_read_str, 140007); bench_serde!( count_mbta_deserialize_owned_bytes, count_mbta_serialize_owned_bytes, MBTA, count_deserialize_owned_bytes, MBTARowOwned, 9999 ); bench_serde!( count_mbta_deserialize_owned_str, count_mbta_serialize_owned_str, MBTA, count_deserialize_owned_str, MBTARowOwned, 9999 ); bench_serde_borrowed_bytes!( count_mbta_deserialize_borrowed_bytes, MBTA, MBTARowBorrowed, true, 9999 ); bench_serde_borrowed_str!( count_mbta_deserialize_borrowed_str, MBTA, MBTARowBorrowed, true, 9999 ); bench!(count_mbta_iter_bytes, MBTA, count_iter_bytes, 90000); bench!(count_mbta_iter_str, MBTA, count_iter_str, 90000); bench!(count_mbta_read_bytes, MBTA, count_read_bytes, 90000); bench!(count_mbta_read_str, MBTA, count_read_str, 90000); macro_rules! bench_write { ($name:ident, $data:ident) => { #[bench] fn $name(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; let records = collect_records(data); b.iter(|| { let mut wtr = Writer::from_writer(vec![]); for r in &records { wtr.write_record(r).unwrap(); } assert!(wtr.flush().is_ok()); }) } }; } macro_rules! bench_write_bytes { ($name:ident, $data:ident) => { #[bench] fn $name(b: &mut Bencher) { let data = $data.as_bytes(); b.bytes = data.len() as u64; let records = collect_records(data); b.iter(|| { let mut wtr = Writer::from_writer(vec![]); for r in &records { wtr.write_byte_record(r).unwrap(); } assert!(wtr.flush().is_ok()); }) } }; } bench_write!(write_nfl_record, NFL); bench_write_bytes!(write_nfl_bytes, NFL); fn count_deserialize_owned_bytes(rdr: &mut Reader) -> u64 where R: io::Read, D: DeserializeOwned, { let mut count = 0; let mut rec = ByteRecord::new(); while rdr.read_byte_record(&mut rec).unwrap() { let _: D = rec.deserialize(None).unwrap(); count += 1; } count } fn count_deserialize_owned_str(rdr: &mut Reader) -> u64 where R: io::Read, D: DeserializeOwned, { let mut count = 0; for rec in rdr.deserialize::() { let _ = rec.unwrap(); count += 1; } count } fn count_iter_bytes(rdr: &mut Reader) -> u64 { let mut count = 0; for rec in rdr.byte_records() { count += rec.unwrap().len() as u64; } count } fn count_iter_str(rdr: &mut Reader) -> u64 { let mut count = 0; for rec in rdr.records() { count += rec.unwrap().len() as u64; } count } fn count_read_bytes(rdr: &mut Reader) -> u64 { let mut count = 0; let mut rec = ByteRecord::new(); while rdr.read_byte_record(&mut rec).unwrap() { count += rec.len() as u64; } count } fn count_read_str(rdr: &mut Reader) -> u64 { let mut count = 0; let mut rec = StringRecord::new(); while rdr.read_record(&mut rec).unwrap() { count += rec.len() as u64; } count } fn collect_records(data: &[u8]) -> Vec { let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); rdr.byte_records().collect::, _>>().unwrap() } csv-1.3.0/examples/cookbook-read-basic.rs000064400000000000000000000010451046102023000164020ustar 00000000000000use std::{error::Error, io, process}; fn example() -> Result<(), Box> { // Build the CSV reader and iterate over each record. let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // The iterator yields Result, so we check the // error here.. let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } csv-1.3.0/examples/cookbook-read-colon.rs000064400000000000000000000006541046102023000164400ustar 00000000000000use std::{error::Error, io, process}; fn example() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new().delimiter(b':').from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } csv-1.3.0/examples/cookbook-read-no-headers.rs000064400000000000000000000006571046102023000173560ustar 00000000000000use std::{error::Error, io, process}; fn example() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new().has_headers(false).from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } csv-1.3.0/examples/cookbook-read-serde.rs000064400000000000000000000014601046102023000164240ustar 00000000000000#![allow(dead_code)] use std::{error::Error, io, process}; use serde::Deserialize; // By default, struct field names are deserialized based on the position of // a corresponding field in the CSV data's header record. #[derive(Debug, Deserialize)] struct Record { city: String, region: String, country: String, population: Option, } fn example() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { // Notice that we need to provide a type hint for automatic // deserialization. let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } csv-1.3.0/examples/cookbook-write-basic.rs000064400000000000000000000011651046102023000166240ustar 00000000000000use std::{error::Error, io, process}; fn example() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // When writing records without Serde, the header record is written just // like any other record. wtr.write_record(&["city", "region", "country", "population"])?; wtr.write_record(&["Southborough", "MA", "United States", "9686"])?; wtr.write_record(&["Northbridge", "MA", "United States", "14061"])?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } csv-1.3.0/examples/cookbook-write-serde.rs000064400000000000000000000016631046102023000166500ustar 00000000000000use std::{error::Error, io, process}; use serde::Serialize; #[derive(Debug, Serialize)] struct Record { city: String, region: String, country: String, population: Option, } fn example() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // When writing records with Serde using structs, the header row is written // automatically. wtr.serialize(Record { city: "Southborough".to_string(), region: "MA".to_string(), country: "United States".to_string(), population: Some(9686), })?; wtr.serialize(Record { city: "Northbridge".to_string(), region: "MA".to_string(), country: "United States".to_string(), population: Some(14061), })?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } csv-1.3.0/examples/data/bench/game.csv000064400000000000000000117261001046102023000156640ustar 00000000000000hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" hello,","," ",world,1,"!" csv-1.3.0/examples/data/bench/gtfs-mbta-stop-times.csv000064400000000000000000026050601046102023000207420ustar 00000000000000"trip_id","arrival_time","departure_time","stop_id","stop_sequence","stop_headsign","pickup_type","drop_off_type","timepoint" "Logan-22-Weekday-trip","08:00:00","08:00:00","Logan-Subway",1,"",0,1,0 "Logan-22-Weekday-trip","08:04:00","08:04:00","Logan-RentalCarCenter",2,"",0,1,0 "Logan-22-Weekday-trip","08:09:00","08:09:00","Logan-A",3,"",0,0,0 "Logan-22-Weekday-trip","08:12:00","08:12:00","Logan-B",4,"",0,0,0 "Logan-22-Weekday-trip","08:17:00","08:17:00","Logan-Subway",5,"",1,0,0 "Logan-22-Weekend-trip","12:00:00","12:00:00","Logan-Subway",1,"",0,1,0 "Logan-22-Weekend-trip","12:04:00","12:04:00","Logan-RentalCarCenter",2,"",0,0,0 "Logan-22-Weekend-trip","12:09:00","12:09:00","Logan-A",3,"",0,0,0 "Logan-22-Weekend-trip","12:12:00","12:12:00","Logan-B",4,"",0,0,0 "Logan-22-Weekend-trip","12:17:00","12:17:00","Logan-Subway",5,"",1,0,0 "Logan-33-Weekday-trip","08:00:00","08:00:00","Logan-Subway",1,"",0,1,0 "Logan-33-Weekday-trip","08:04:00","08:04:00","Logan-RentalCarCenter",2,"",0,0,0 "Logan-33-Weekday-trip","08:09:00","08:09:00","Logan-C",3,"",0,0,0 "Logan-33-Weekday-trip","08:12:00","08:12:00","Logan-E",4,"",0,0,0 "Logan-33-Weekday-trip","08:17:00","08:17:00","Logan-Subway",5,"",1,0,0 "Logan-33-Weekday-trip","08:21:00","08:21:00","Logan-RentalCarCenter",6,"",0,0,0 "Logan-33-Weekday-trip","08:26:00","08:26:00","Logan-C",7,"",0,0,0 "Logan-33-Weekday-trip","08:29:00","08:29:00","Logan-E",8,"",0,0,0 "Logan-33-Weekday-trip","08:34:00","08:34:00","Logan-Subway",9,"",1,0,0 "Logan-33-Weekend-trip","12:00:00","12:00:00","Logan-Subway",1,"",0,1,0 "Logan-33-Weekend-trip","12:04:00","12:04:00","Logan-RentalCarCenter",2,"",0,0,0 "Logan-33-Weekend-trip","12:09:00","12:09:00","Logan-C",3,"",0,0,0 "Logan-33-Weekend-trip","12:12:00","12:12:00","Logan-E",4,"",0,0,0 "Logan-33-Weekend-trip","12:17:00","12:17:00","Logan-Subway",5,"",1,0,0 "Logan-33-Weekend-trip","12:21:00","12:21:00","Logan-RentalCarCenter",6,"",0,0,0 "Logan-33-Weekend-trip","12:26:00","12:26:00","Logan-C",7,"",0,0,0 "Logan-33-Weekend-trip","12:29:00","12:29:00","Logan-E",8,"",0,0,0 "Logan-33-Weekend-trip","12:34:00","12:34:00","Logan-Subway",9,"",1,0,0 "Logan-55-Weekday-trip","00:00:00","00:00:00","Logan-Subway",1,"",0,1,0 "Logan-55-Weekday-trip","00:04:00","00:04:00","Logan-RentalCarCenter",2,"",0,0,0 "Logan-55-Weekday-trip","00:09:00","00:09:00","Logan-A",3,"",0,0,0 "Logan-55-Weekday-trip","00:11:00","00:11:00","Logan-B",4,"",0,0,0 "Logan-55-Weekday-trip","00:12:00","00:12:00","Logan-C",5,"",0,0,0 "Logan-55-Weekday-trip","00:14:00","00:14:00","Logan-E",6,"",0,0,0 "Logan-55-Weekday-trip","00:19:00","00:19:00","Logan-Subway",7,"",1,0,0 "Logan-55-Weekday-trip","00:23:00","00:23:00","Logan-RentalCarCenter",8,"",0,0,0 "Logan-55-Weekday-trip","00:28:00","00:28:00","Logan-A",9,"",0,0,0 "Logan-55-Weekday-trip","00:30:00","00:30:00","Logan-B",10,"",0,0,0 "Logan-55-Weekday-trip","00:31:00","00:31:00","Logan-C",11,"",0,0,0 "Logan-55-Weekday-trip","00:33:00","00:33:00","Logan-E",12,"",0,0,0 "Logan-55-Weekday-trip","00:38:00","00:38:00","Logan-Subway",13,"",1,0,0 "Logan-55-Weekend-trip","00:00:00","00:00:00","Logan-Subway",1,"",0,1,0 "Logan-55-Weekend-trip","00:04:00","00:04:00","Logan-RentalCarCenter",2,"",0,0,0 "Logan-55-Weekend-trip","00:09:00","00:09:00","Logan-A",3,"",0,0,0 "Logan-55-Weekend-trip","00:11:00","00:11:00","Logan-B",4,"",0,0,0 "Logan-55-Weekend-trip","00:12:00","00:12:00","Logan-C",5,"",0,0,0 "Logan-55-Weekend-trip","00:14:00","00:14:00","Logan-E",6,"",0,0,0 "Logan-55-Weekend-trip","00:19:00","00:19:00","Logan-Subway",7,"",1,0,0 "Logan-55-Weekend-trip","00:23:00","00:23:00","Logan-RentalCarCenter",8,"",0,0,0 "Logan-55-Weekend-trip","00:28:00","00:28:00","Logan-A",9,"",0,0,0 "Logan-55-Weekend-trip","00:30:00","00:30:00","Logan-B",10,"",0,0,0 "Logan-55-Weekend-trip","00:31:00","00:31:00","Logan-C",11,"",0,0,0 "Logan-55-Weekend-trip","00:33:00","00:33:00","Logan-E",12,"",0,0,0 "Logan-55-Weekend-trip","00:38:00","00:38:00","Logan-Subway",13,"",1,0,0 "Logan-66-Weekday-trip","06:00:00","06:00:00","Logan-Dock",1,"",0,1,0 "Logan-66-Weekday-trip","06:05:00","06:05:00","Logan-A",2,"",0,0,0 "Logan-66-Weekday-trip","06:07:00","06:07:00","Logan-B",3,"",0,0,0 "Logan-66-Weekday-trip","06:09:00","06:09:00","Logan-C",4,"",0,0,0 "Logan-66-Weekday-trip","06:11:00","06:11:00","Logan-E",5,"",0,0,0 "Logan-66-Weekday-trip","06:16:00","06:16:00","Logan-Subway",6,"",0,0,0 "Logan-66-Weekday-trip","06:23:00","06:23:00","Logan-Dock",7,"",1,0,0 "Logan-66-Weekend-trip","07:00:00","07:00:00","Logan-Dock",1,"",0,1,0 "Logan-66-Weekend-trip","07:05:00","07:05:00","Logan-A",2,"",0,0,0 "Logan-66-Weekend-trip","07:07:00","07:07:00","Logan-B",3,"",0,0,0 "Logan-66-Weekend-trip","07:09:00","07:09:00","Logan-C",4,"",0,0,0 "Logan-66-Weekend-trip","07:11:00","07:11:00","Logan-E",5,"",0,0,0 "Logan-66-Weekend-trip","07:16:00","07:16:00","Logan-Subway",6,"",0,0,0 "Logan-66-Weekend-trip","07:23:00","07:23:00","Logan-Dock",7,"",1,0,0 "CR-Saturday-Fall-16-1001","8:40:00","8:40:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1001","8:46:00","8:46:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1001","8:53:00","8:53:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1001","9:00:00","9:00:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1001","9:07:00","9:07:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Saturday-Fall-16-1001","9:12:00","9:12:00","Montello",6,"",0,0,1 "CR-Saturday-Fall-16-1001","9:15:00","9:15:00","Brockton",7,"",0,0,1 "CR-Saturday-Fall-16-1001","9:19:00","9:19:00","Campello",8,"",0,0,1 "CR-Saturday-Fall-16-1001","9:27:00","9:27:00","Bridgewater",9,"",0,0,1 "CR-Saturday-Fall-16-1001","9:38:00","9:38:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Saturday-Fall-16-1002","6:50:00","6:50:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1002","7:00:00","7:00:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1002","7:07:00","7:07:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1002","7:11:00","7:11:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1002","7:14:00","7:14:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1002","7:19:00","7:19:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1002","7:25:00","7:25:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1002","7:31:00","7:31:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1002","7:39:00","7:39:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1002","7:46:00","7:46:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1003","11:20:00","11:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1003","11:26:00","11:26:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1003","11:33:00","11:33:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1003","11:47:00","11:47:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Saturday-Fall-16-1003","11:52:00","11:52:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1003","11:55:00","11:55:00","Brockton",6,"",0,0,1 "CR-Saturday-Fall-16-1003","11:59:00","11:59:00","Campello",7,"",0,0,1 "CR-Saturday-Fall-16-1003","12:07:00","12:07:00","Bridgewater",8,"",0,0,1 "CR-Saturday-Fall-16-1003","12:18:00","12:18:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Saturday-Fall-16-1004","8:22:00","8:22:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1004","8:32:00","8:32:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1004","8:40:00","8:40:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1004","8:44:00","8:44:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1004","8:47:00","8:47:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1004","8:52:00","8:52:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1004","9:05:00","9:05:00","Quincy Center",7,"",0,0,1 "CR-Saturday-Fall-16-1004","9:13:00","9:13:00","JFK/UMASS",8,"",0,0,1 "CR-Saturday-Fall-16-1004","9:20:00","9:20:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1005","12:34:00","12:34:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1005","12:40:00","12:40:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1005","12:47:00","12:47:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1005","12:54:00","12:54:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1005","13:00:00","13:00:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Saturday-Fall-16-1005","13:05:00","13:05:00","Montello",6,"",0,0,1 "CR-Saturday-Fall-16-1005","13:08:00","13:08:00","Brockton",7,"",0,0,1 "CR-Saturday-Fall-16-1005","13:12:00","13:12:00","Campello",8,"",0,0,1 "CR-Saturday-Fall-16-1005","13:20:00","13:20:00","Bridgewater",9,"",0,0,1 "CR-Saturday-Fall-16-1005","13:32:00","13:32:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Saturday-Fall-16-1006","10:28:00","10:28:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1006","10:38:00","10:38:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1006","10:46:00","10:46:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1006","10:50:00","10:50:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1006","10:53:00","10:53:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1006","10:58:00","10:58:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1006","11:04:00","11:04:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1006","11:10:00","11:10:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1006","11:17:00","11:17:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1006","11:24:00","11:24:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1007","14:10:00","14:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1007","14:16:00","14:16:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1007","14:24:00","14:24:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1007","14:37:00","14:37:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Saturday-Fall-16-1007","14:42:00","14:42:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1007","14:45:00","14:45:00","Brockton",6,"",0,0,1 "CR-Saturday-Fall-16-1007","14:49:00","14:49:00","Campello",7,"",0,0,1 "CR-Saturday-Fall-16-1007","14:57:00","14:57:00","Bridgewater",8,"",0,0,1 "CR-Saturday-Fall-16-1007","15:10:00","15:10:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Saturday-Fall-16-1008","12:43:00","12:43:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1008","12:53:00","12:53:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1008","13:01:00","13:01:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1008","13:05:00","13:05:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1008","13:08:00","13:08:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1008","13:13:00","13:13:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1008","13:24:00","13:24:00","Quincy Center",7,"",0,0,0 "CR-Saturday-Fall-16-1008","13:32:00","13:32:00","JFK/UMASS",8,"",0,0,0 "CR-Saturday-Fall-16-1008","13:40:00","13:40:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1009","15:35:00","15:35:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1009","15:41:00","15:41:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1009","15:49:00","15:49:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1009","15:56:00","15:56:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1009","16:02:00","16:02:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Saturday-Fall-16-1009","16:07:00","16:07:00","Montello",6,"",0,0,1 "CR-Saturday-Fall-16-1009","16:10:00","16:10:00","Brockton",7,"",0,0,1 "CR-Saturday-Fall-16-1009","16:14:00","16:14:00","Campello",8,"",0,0,1 "CR-Saturday-Fall-16-1009","16:24:00","16:24:00","Bridgewater",9,"",0,0,1 "CR-Saturday-Fall-16-1009","16:34:00","16:34:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Saturday-Fall-16-1010","13:53:00","13:53:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1010","14:03:00","14:03:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1010","14:11:00","14:11:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1010","14:15:00","14:15:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1010","14:18:00","14:18:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1010","14:23:00","14:23:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1010","14:29:00","14:29:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1010","14:36:00","14:36:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1010","14:44:00","14:44:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1010","14:51:00","14:51:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1011","17:40:00","17:40:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1011","17:46:00","17:46:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1011","17:54:00","17:54:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1011","18:01:00","18:01:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1011","18:07:00","18:07:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Saturday-Fall-16-1011","18:12:00","18:12:00","Montello",6,"",0,0,1 "CR-Saturday-Fall-16-1011","18:15:00","18:15:00","Brockton",7,"",0,0,1 "CR-Saturday-Fall-16-1011","18:19:00","18:19:00","Campello",8,"",0,0,1 "CR-Saturday-Fall-16-1011","18:27:00","18:27:00","Bridgewater",9,"",0,0,1 "CR-Saturday-Fall-16-1011","18:38:00","18:38:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Saturday-Fall-16-1012","16:06:00","16:06:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1012","16:16:00","16:16:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1012","16:24:00","16:24:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1012","16:28:00","16:28:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1012","16:31:00","16:31:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1012","16:37:00","16:37:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1012","16:47:00","16:47:00","Quincy Center",7,"",0,0,0 "CR-Saturday-Fall-16-1012","16:55:00","16:55:00","JFK/UMASS",8,"",0,0,0 "CR-Saturday-Fall-16-1012","17:03:00","17:03:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1013","20:10:00","20:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1013","20:16:00","20:16:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1013","20:24:00","20:24:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1013","20:36:00","20:36:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Saturday-Fall-16-1013","20:41:00","20:41:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1013","20:44:00","20:44:00","Brockton",6,"",0,0,1 "CR-Saturday-Fall-16-1013","20:48:00","20:48:00","Campello",7,"",0,0,1 "CR-Saturday-Fall-16-1013","20:56:00","20:56:00","Bridgewater",8,"",0,0,1 "CR-Saturday-Fall-16-1013","21:08:00","21:08:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Saturday-Fall-16-1014","19:04:00","19:04:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1014","19:14:00","19:14:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1014","19:22:00","19:22:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1014","19:26:00","19:26:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1014","19:29:00","19:29:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1014","19:34:00","19:34:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1014","19:45:00","19:45:00","Quincy Center",7,"",0,0,0 "CR-Saturday-Fall-16-1014","19:53:00","19:53:00","JFK/UMASS",8,"",0,0,0 "CR-Saturday-Fall-16-1014","20:00:00","20:00:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1015","22:35:00","22:35:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1015","22:41:00","22:41:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1015","22:49:00","22:49:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1015","23:02:00","23:02:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Saturday-Fall-16-1015","23:07:00","23:07:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1015","23:11:00","23:11:00","Brockton",6,"",0,0,1 "CR-Saturday-Fall-16-1015","23:15:00","23:15:00","Campello",7,"",0,0,1 "CR-Saturday-Fall-16-1015","23:23:00","23:23:00","Bridgewater",8,"",0,0,1 "CR-Saturday-Fall-16-1015","23:34:00","23:34:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Saturday-Fall-16-1016","21:22:00","21:22:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Saturday-Fall-16-1016","21:32:00","21:32:00","Bridgewater",2,"",0,0,1 "CR-Saturday-Fall-16-1016","21:40:00","21:40:00","Campello",3,"",0,0,1 "CR-Saturday-Fall-16-1016","21:44:00","21:44:00","Brockton",4,"",0,0,1 "CR-Saturday-Fall-16-1016","21:47:00","21:47:00","Montello",5,"",0,0,1 "CR-Saturday-Fall-16-1016","21:52:00","21:52:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Saturday-Fall-16-1016","22:03:00","22:03:00","Quincy Center",7,"",0,0,0 "CR-Saturday-Fall-16-1016","22:11:00","22:11:00","JFK/UMASS",8,"",0,0,0 "CR-Saturday-Fall-16-1016","22:18:00","22:18:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1032","7:00:00","7:00:00","Kingston",1,"",0,1,1 "CR-Saturday-Fall-16-1032","7:10:00","7:10:00","Halifax",2,"",0,0,1 "CR-Saturday-Fall-16-1032","7:15:00","7:15:00","Hanson",3,"",0,0,1 "CR-Saturday-Fall-16-1032","7:20:00","7:20:00","Whitman",4,"",0,0,1 "CR-Saturday-Fall-16-1032","7:24:00","7:24:00","Abington",5,"",0,0,1 "CR-Saturday-Fall-16-1032","7:29:00","7:29:00","South Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1032","7:37:00","7:37:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1032","7:43:00","7:43:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1032","7:51:00","7:51:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1032","7:58:00","7:58:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1033","10:05:00","10:05:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1033","10:11:00","10:11:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1033","10:18:00","10:18:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1033","10:25:00","10:25:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1033","10:32:00","10:32:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1033","10:37:00","10:37:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1033","10:41:00","10:41:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1033","10:46:00","10:46:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1033","10:51:00","10:51:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1033","11:03:00","11:03:00","Kingston",10,"",1,0,0 "CR-Saturday-Fall-16-1034","8:50:00","8:50:00","Kingston",1,"",0,1,1 "CR-Saturday-Fall-16-1034","9:00:00","9:00:00","Halifax",2,"",0,0,1 "CR-Saturday-Fall-16-1034","9:05:00","9:05:00","Hanson",3,"",0,0,1 "CR-Saturday-Fall-16-1034","9:12:00","9:12:00","Whitman",4,"",0,0,1 "CR-Saturday-Fall-16-1034","9:16:00","9:16:00","Abington",5,"",0,0,1 "CR-Saturday-Fall-16-1034","9:21:00","9:21:00","South Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1034","9:28:00","9:28:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1034","9:41:00","9:41:00","JFK/UMASS",8,"",0,0,0 "CR-Saturday-Fall-16-1034","9:49:00","9:49:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1035","14:00:00","14:00:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1035","14:06:00","14:06:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1035","14:13:00","14:13:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1035","14:19:00","14:19:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1035","14:26:00","14:26:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1035","14:31:00","14:31:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1035","14:35:00","14:35:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1035","14:40:00","14:40:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1035","14:45:00","14:45:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1035","14:57:00","14:57:00","Kingston",10,"",1,0,0 "CR-Saturday-Fall-16-1036","11:30:00","11:30:00","Kingston",1,"",0,1,1 "CR-Saturday-Fall-16-1036","11:40:00","11:40:00","Halifax",2,"",0,0,1 "CR-Saturday-Fall-16-1036","11:45:00","11:45:00","Hanson",3,"",0,0,1 "CR-Saturday-Fall-16-1036","11:50:00","11:50:00","Whitman",4,"",0,0,1 "CR-Saturday-Fall-16-1036","11:54:00","11:54:00","Abington",5,"",0,0,1 "CR-Saturday-Fall-16-1036","11:59:00","11:59:00","South Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1036","12:06:00","12:06:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1036","12:19:00","12:19:00","JFK/UMASS",8,"",0,0,0 "CR-Saturday-Fall-16-1036","12:26:00","12:26:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1037","16:10:00","16:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1037","16:16:00","16:16:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1037","16:23:00","16:23:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1037","16:29:00","16:29:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1037","16:36:00","16:36:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1037","16:41:00","16:41:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1037","16:45:00","16:45:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1037","16:50:00","16:50:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1037","16:55:00","16:55:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1037","17:08:00","17:08:00","Kingston",10,"",1,0,0 "CR-Saturday-Fall-16-1038","15:35:00","15:35:00","Kingston",1,"",0,1,1 "CR-Saturday-Fall-16-1038","15:45:00","15:45:00","Halifax",2,"",0,0,1 "CR-Saturday-Fall-16-1038","15:50:00","15:50:00","Hanson",3,"",0,0,1 "CR-Saturday-Fall-16-1038","15:55:00","15:55:00","Whitman",4,"",0,0,1 "CR-Saturday-Fall-16-1038","15:59:00","15:59:00","Abington",5,"",0,0,1 "CR-Saturday-Fall-16-1038","16:04:00","16:04:00","South Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1038","16:12:00","16:12:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1038","16:25:00","16:25:00","JFK/UMASS",8,"",0,0,0 "CR-Saturday-Fall-16-1038","16:32:00","16:32:00","South Station",9,"",1,0,0 "CR-Saturday-Fall-16-1039","20:20:00","20:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1039","20:26:00","20:26:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1039","20:33:00","20:33:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1039","20:39:00","20:39:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1039","20:46:00","20:46:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1039","20:51:00","20:51:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1039","20:55:00","20:55:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1039","21:00:00","21:00:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1039","21:05:00","21:05:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1039","21:17:00","21:17:00","Kingston",10,"",1,0,0 "CR-Saturday-Fall-16-1040","21:37:00","21:37:00","Kingston",1,"",0,1,1 "CR-Saturday-Fall-16-1040","21:47:00","21:47:00","Halifax",2,"",0,0,1 "CR-Saturday-Fall-16-1040","21:52:00","21:52:00","Hanson",3,"",0,0,1 "CR-Saturday-Fall-16-1040","21:57:00","21:57:00","Whitman",4,"",0,0,1 "CR-Saturday-Fall-16-1040","22:00:00","22:00:00","Abington",5,"",0,0,1 "CR-Saturday-Fall-16-1040","22:05:00","22:05:00","South Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1040","22:12:00","22:12:00","Braintree",7,"",0,0,0 "CR-Saturday-Fall-16-1040","22:18:00","22:18:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1040","22:25:00","22:25:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1040","22:33:00","22:33:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1041","22:45:00","22:45:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1041","22:51:00","22:51:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1041","22:58:00","22:58:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1041","23:04:00","23:04:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1041","23:11:00","23:11:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1041","23:16:00","23:16:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1041","23:20:00","23:20:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1041","23:25:00","23:25:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1041","23:30:00","23:30:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1041","23:42:00","23:42:00","Kingston",10,"",1,0,0 "CR-Saturday-Fall-16-1051","8:30:00","8:30:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1051","8:36:00","8:36:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1051","8:43:00","8:43:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1051","8:50:00","8:50:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1051","8:57:00","8:57:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1051","9:02:00","9:02:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1051","9:06:00","9:06:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1051","9:11:00","9:11:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1051","9:16:00","9:16:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1051","9:27:00","9:27:00","Plymouth",10,"",0,0,1 "CR-Saturday-Fall-16-1051","9:55:00","9:55:00","Kingston",11,"",1,0,0 "CR-Saturday-Fall-16-1052","10:05:00","10:05:00","Kingston",2,"",0,0,1 "CR-Saturday-Fall-16-1052","10:15:00","10:15:00","Halifax",3,"",0,0,1 "CR-Saturday-Fall-16-1052","10:20:00","10:20:00","Hanson",4,"",0,0,1 "CR-Saturday-Fall-16-1052","10:25:00","10:25:00","Whitman",5,"",0,0,1 "CR-Saturday-Fall-16-1052","10:29:00","10:29:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1052","10:37:00","10:37:00","South Weymouth",7,"",0,0,1 "CR-Saturday-Fall-16-1052","10:44:00","10:44:00","Braintree",8,"",0,0,0 "CR-Saturday-Fall-16-1052","10:50:00","10:50:00","Quincy Center",9,"",0,0,0 "CR-Saturday-Fall-16-1052","10:57:00","10:57:00","JFK/UMASS",10,"",0,0,0 "CR-Saturday-Fall-16-1052","11:04:00","11:04:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1052","9:37:00","9:37:00","Plymouth",1,"",0,1,1 "CR-Saturday-Fall-16-1053","11:47:00","11:47:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1053","11:53:00","11:53:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1053","12:00:00","12:00:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1053","12:07:00","12:07:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1053","12:14:00","12:14:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1053","12:19:00","12:19:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1053","12:23:00","12:23:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1053","12:28:00","12:28:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1053","12:33:00","12:33:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1053","12:45:00","12:45:00","Plymouth",10,"",0,0,1 "CR-Saturday-Fall-16-1053","13:12:00","13:12:00","Kingston",11,"",1,0,0 "CR-Saturday-Fall-16-1054","12:55:00","12:55:00","Plymouth",1,"",0,1,1 "CR-Saturday-Fall-16-1054","13:22:00","13:22:00","Kingston",2,"",0,0,1 "CR-Saturday-Fall-16-1054","13:32:00","13:32:00","Halifax",3,"",0,0,1 "CR-Saturday-Fall-16-1054","13:37:00","13:37:00","Hanson",4,"",0,0,1 "CR-Saturday-Fall-16-1054","13:42:00","13:42:00","Whitman",5,"",0,0,1 "CR-Saturday-Fall-16-1054","13:46:00","13:46:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1054","13:51:00","13:51:00","South Weymouth",7,"",0,0,1 "CR-Saturday-Fall-16-1054","13:58:00","13:58:00","Braintree",8,"",0,0,0 "CR-Saturday-Fall-16-1054","14:04:00","14:04:00","Quincy Center",9,"",0,0,0 "CR-Saturday-Fall-16-1054","14:11:00","14:11:00","JFK/UMASS",10,"",0,0,0 "CR-Saturday-Fall-16-1054","14:19:00","14:19:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1055","17:20:00","17:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1055","17:26:00","17:26:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1055","17:33:00","17:33:00","Quincy Center",3,"",3,3,1 "CR-Saturday-Fall-16-1055","17:40:00","17:40:00","Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1055","17:47:00","17:47:00","South Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1055","17:52:00","17:52:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1055","17:56:00","17:56:00","Whitman",7,"",0,0,1 "CR-Saturday-Fall-16-1055","18:01:00","18:01:00","Hanson",8,"",0,0,1 "CR-Saturday-Fall-16-1055","18:06:00","18:06:00","Halifax",9,"",0,0,1 "CR-Saturday-Fall-16-1055","18:18:00","18:18:00","Kingston",10,"",0,0,1 "CR-Saturday-Fall-16-1055","18:44:00","18:44:00","Plymouth",11,"",1,0,0 "CR-Saturday-Fall-16-1056","18:28:00","18:28:00","Kingston",1,"",0,1,1 "CR-Saturday-Fall-16-1056","18:54:00","18:54:00","Plymouth",2,"",0,0,1 "CR-Saturday-Fall-16-1056","19:04:00","19:04:00","Halifax",3,"",0,0,1 "CR-Saturday-Fall-16-1056","19:09:00","19:09:00","Hanson",4,"",0,0,1 "CR-Saturday-Fall-16-1056","19:14:00","19:14:00","Whitman",5,"",0,0,1 "CR-Saturday-Fall-16-1056","19:18:00","19:18:00","Abington",6,"",0,0,1 "CR-Saturday-Fall-16-1056","19:23:00","19:23:00","South Weymouth",7,"",0,0,1 "CR-Saturday-Fall-16-1056","19:30:00","19:30:00","Braintree",8,"",0,0,0 "CR-Saturday-Fall-16-1056","19:36:00","19:36:00","Quincy Center",9,"",0,0,0 "CR-Saturday-Fall-16-1056","19:43:00","19:43:00","JFK/UMASS",10,"",0,0,0 "CR-Saturday-Fall-16-1056","19:51:00","19:51:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1070","7:15:00","7:15:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1070","7:22:00","7:22:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1070","7:29:00","7:29:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1070","7:32:00","7:32:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1070","7:37:00","7:37:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1070","7:41:00","7:41:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1070","7:47:00","7:47:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1070","7:56:00","7:56:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1070","8:04:00","8:04:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1070","8:12:00","8:12:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1071","8:05:00","8:05:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1071","8:12:00","8:12:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1071","8:19:00","8:19:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1071","8:28:00","8:28:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1071","8:33:00","8:33:00","East Weymouth",5,"",0,0,0 "CR-Saturday-Fall-16-1071","8:37:00","8:37:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1071","8:42:00","8:42:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1071","8:45:00","8:45:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1071","8:53:00","8:53:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1071","9:02:00","9:02:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1072","10:02:00","10:02:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1072","10:12:00","10:12:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1072","10:20:00","10:20:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1072","10:28:00","10:28:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1072","9:30:00","9:30:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1072","9:37:00","9:37:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1072","9:44:00","9:44:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1072","9:47:00","9:47:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1072","9:52:00","9:52:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1072","9:56:00","9:56:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1073","10:08:00","10:08:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1073","10:14:00","10:14:00","East Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1073","10:18:00","10:18:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1073","10:22:00","10:22:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1073","10:25:00","10:25:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1073","10:33:00","10:33:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1073","10:42:00","10:42:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1073","9:45:00","9:45:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1073","9:51:00","9:51:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1073","9:59:00","9:59:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1074","11:08:00","11:08:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1074","11:15:00","11:15:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1074","11:22:00","11:22:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1074","11:26:00","11:26:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1074","11:31:00","11:31:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1074","11:38:00","11:38:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1074","11:44:00","11:44:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1074","11:53:00","11:53:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1074","12:01:00","12:01:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1074","12:07:00","12:07:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1075","11:03:00","11:03:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1075","11:09:00","11:09:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1075","11:17:00","11:17:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1075","11:26:00","11:26:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1075","11:32:00","11:32:00","East Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1075","11:36:00","11:36:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1075","11:41:00","11:41:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1075","11:44:00","11:44:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1075","11:52:00","11:52:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1075","12:02:00","12:02:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1076","12:20:00","12:20:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1076","12:27:00","12:27:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1076","12:34:00","12:34:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1076","12:37:00","12:37:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1076","12:42:00","12:42:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1076","12:46:00","12:46:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1076","12:52:00","12:52:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1076","13:01:00","13:01:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1076","13:09:00","13:09:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1076","13:18:00","13:18:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1077","12:55:00","12:55:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1077","13:01:00","13:01:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1077","13:09:00","13:09:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1077","13:18:00","13:18:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1077","13:24:00","13:24:00","East Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1077","13:28:00","13:28:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1077","13:33:00","13:33:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1077","13:36:00","13:36:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1077","13:44:00","13:44:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1077","13:54:00","13:54:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1078","14:10:00","14:10:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1078","14:17:00","14:17:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1078","14:23:00","14:23:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1078","14:26:00","14:26:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1078","14:31:00","14:31:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1078","14:35:00","14:35:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1078","14:41:00","14:41:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1078","14:50:00","14:50:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1078","14:59:00","14:59:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1078","15:07:00","15:07:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1079","14:45:00","14:45:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1079","14:51:00","14:51:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1079","14:59:00","14:59:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1079","15:08:00","15:08:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1079","15:13:00","15:13:00","East Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1079","15:17:00","15:17:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1079","15:22:00","15:22:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1079","15:25:00","15:25:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1079","15:33:00","15:33:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1079","15:42:00","15:42:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1080","15:55:00","15:55:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1080","16:02:00","16:02:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1080","16:09:00","16:09:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1080","16:12:00","16:12:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1080","16:17:00","16:17:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1080","16:21:00","16:21:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1080","16:27:00","16:27:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1080","16:36:00","16:36:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1080","16:44:00","16:44:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1080","16:53:00","16:53:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1081","17:10:00","17:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1081","17:16:00","17:16:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1081","17:24:00","17:24:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1081","17:33:00","17:33:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1081","17:39:00","17:39:00","East Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1081","17:43:00","17:43:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1081","17:48:00","17:48:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1081","17:51:00","17:51:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1081","17:59:00","17:59:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1081","18:08:00","18:08:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1082","18:30:00","18:30:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1082","18:37:00","18:37:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1082","18:44:00","18:44:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1082","18:47:00","18:47:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1082","18:52:00","18:52:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1082","18:56:00","18:56:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1082","19:02:00","19:02:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1082","19:11:00","19:11:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1082","19:19:00","19:19:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1082","19:27:00","19:27:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1083","20:00:00","20:00:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1083","20:06:00","20:06:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1083","20:14:00","20:14:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1083","20:23:00","20:23:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1083","20:29:00","20:29:00","East Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1083","20:33:00","20:33:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1083","20:38:00","20:38:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1083","20:41:00","20:41:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1083","20:49:00","20:49:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1083","20:58:00","20:58:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1084","21:30:00","21:30:00","Greenbush",1,"",0,1,1 "CR-Saturday-Fall-16-1084","21:37:00","21:37:00","North Scituate",2,"",0,0,1 "CR-Saturday-Fall-16-1084","21:44:00","21:44:00","Cohasset",3,"",0,0,1 "CR-Saturday-Fall-16-1084","21:47:00","21:47:00","Nantasket Junction",4,"",0,0,1 "CR-Saturday-Fall-16-1084","21:52:00","21:52:00","West Hingham",5,"",0,0,1 "CR-Saturday-Fall-16-1084","21:56:00","21:56:00","East Weymouth",6,"",0,0,1 "CR-Saturday-Fall-16-1084","22:02:00","22:02:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Saturday-Fall-16-1084","22:11:00","22:11:00","Quincy Center",8,"",0,0,0 "CR-Saturday-Fall-16-1084","22:19:00","22:19:00","JFK/UMASS",9,"",0,0,0 "CR-Saturday-Fall-16-1084","22:26:00","22:26:00","South Station",10,"",1,0,0 "CR-Saturday-Fall-16-1085","22:55:00","22:55:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1085","23:01:00","23:01:00","JFK/UMASS",2,"",3,3,1 "CR-Saturday-Fall-16-1085","23:09:00","23:09:00","Quincy Center",3,"",0,0,0 "CR-Saturday-Fall-16-1085","23:18:00","23:18:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Saturday-Fall-16-1085","23:24:00","23:24:00","East Weymouth",5,"",0,0,1 "CR-Saturday-Fall-16-1085","23:28:00","23:28:00","West Hingham",6,"",0,0,1 "CR-Saturday-Fall-16-1085","23:33:00","23:33:00","Nantasket Junction",7,"",0,0,1 "CR-Saturday-Fall-16-1085","23:37:00","23:37:00","Cohasset",8,"",0,0,1 "CR-Saturday-Fall-16-1085","23:45:00","23:45:00","North Scituate",9,"",0,0,1 "CR-Saturday-Fall-16-1085","23:54:00","23:54:00","Greenbush",10,"",1,0,0 "CR-Saturday-Fall-16-1100","7:00:00","7:00:00","Rockport",1,"",0,1,1 "CR-Saturday-Fall-16-1100","7:07:00","7:07:00","Gloucester",2,"",0,0,1 "CR-Saturday-Fall-16-1100","7:13:00","7:13:00","West Gloucester",3,"",3,3,1 "CR-Saturday-Fall-16-1100","7:20:00","7:20:00","Manchester",4,"",0,0,1 "CR-Saturday-Fall-16-1100","7:25:00","7:25:00","Beverly Farms",5,"",3,3,1 "CR-Saturday-Fall-16-1100","7:31:00","7:31:00","Montserrat",6,"",3,3,1 "CR-Saturday-Fall-16-1100","7:36:00","7:36:00","Beverly",7,"",0,0,1 "CR-Saturday-Fall-16-1100","7:40:00","7:40:00","Salem",8,"",0,0,1 "CR-Saturday-Fall-16-1100","7:46:00","7:46:00","Swampscott",9,"",0,0,1 "CR-Saturday-Fall-16-1100","7:50:00","7:50:00","Lynn",10,"",0,0,1 "CR-Saturday-Fall-16-1100","7:59:00","7:59:00","Chelsea",11,"",3,3,1 "CR-Saturday-Fall-16-1100","8:11:00","8:11:00","North Station",12,"",1,0,0 "CR-Saturday-Fall-16-1101","8:30:00","8:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1101","8:41:00","8:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1101","8:51:00","8:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1101","8:54:00","8:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1101","9:01:00","9:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1101","9:05:00","9:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1101","9:09:00","9:09:00","Montserrat",7,"",3,3,1 "CR-Saturday-Fall-16-1101","9:14:00","9:14:00","Beverly Farms",8,"",3,3,1 "CR-Saturday-Fall-16-1101","9:20:00","9:20:00","Manchester",9,"",0,0,1 "CR-Saturday-Fall-16-1101","9:27:00","9:27:00","West Gloucester",10,"",3,3,1 "CR-Saturday-Fall-16-1101","9:34:00","9:34:00","Gloucester",11,"",0,0,1 "CR-Saturday-Fall-16-1101","9:42:00","9:42:00","Rockport",12,"",1,0,0 "CR-Saturday-Fall-16-1102","10:00:00","10:00:00","Rockport",1,"",0,1,1 "CR-Saturday-Fall-16-1102","10:07:00","10:07:00","Gloucester",2,"",0,0,1 "CR-Saturday-Fall-16-1102","10:13:00","10:13:00","West Gloucester",3,"",3,3,1 "CR-Saturday-Fall-16-1102","10:20:00","10:20:00","Manchester",4,"",0,0,1 "CR-Saturday-Fall-16-1102","10:25:00","10:25:00","Beverly Farms",5,"",3,3,1 "CR-Saturday-Fall-16-1102","10:31:00","10:31:00","Montserrat",6,"",3,3,1 "CR-Saturday-Fall-16-1102","10:36:00","10:36:00","Beverly",7,"",0,0,1 "CR-Saturday-Fall-16-1102","10:40:00","10:40:00","Salem",8,"",0,0,1 "CR-Saturday-Fall-16-1102","10:46:00","10:46:00","Swampscott",9,"",0,0,1 "CR-Saturday-Fall-16-1102","10:50:00","10:50:00","Lynn",10,"",0,0,1 "CR-Saturday-Fall-16-1102","10:59:00","10:59:00","Chelsea",11,"",3,3,1 "CR-Saturday-Fall-16-1102","11:11:00","11:11:00","North Station",12,"",1,0,0 "CR-Saturday-Fall-16-1103","10:20:00","10:20:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1103","10:31:00","10:31:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1103","10:41:00","10:41:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1103","10:44:00","10:44:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1103","10:51:00","10:51:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1103","10:55:00","10:55:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1103","10:59:00","10:59:00","Montserrat",7,"",3,3,1 "CR-Saturday-Fall-16-1103","11:04:00","11:04:00","Beverly Farms",8,"",3,3,1 "CR-Saturday-Fall-16-1103","11:10:00","11:10:00","Manchester",9,"",0,0,1 "CR-Saturday-Fall-16-1103","11:17:00","11:17:00","West Gloucester",10,"",3,3,1 "CR-Saturday-Fall-16-1103","11:24:00","11:24:00","Gloucester",11,"",0,0,1 "CR-Saturday-Fall-16-1103","11:32:00","11:32:00","Rockport",12,"",1,0,0 "CR-Saturday-Fall-16-1104","12:00:00","12:00:00","Rockport",1,"",0,1,1 "CR-Saturday-Fall-16-1104","12:07:00","12:07:00","Gloucester",2,"",0,0,1 "CR-Saturday-Fall-16-1104","12:13:00","12:13:00","West Gloucester",3,"",3,3,1 "CR-Saturday-Fall-16-1104","12:20:00","12:20:00","Manchester",4,"",0,0,1 "CR-Saturday-Fall-16-1104","12:25:00","12:25:00","Beverly Farms",5,"",3,3,1 "CR-Saturday-Fall-16-1104","12:31:00","12:31:00","Montserrat",6,"",3,3,1 "CR-Saturday-Fall-16-1104","12:36:00","12:36:00","Beverly",7,"",0,0,1 "CR-Saturday-Fall-16-1104","12:40:00","12:40:00","Salem",8,"",0,0,1 "CR-Saturday-Fall-16-1104","12:46:00","12:46:00","Swampscott",9,"",0,0,1 "CR-Saturday-Fall-16-1104","12:50:00","12:50:00","Lynn",10,"",0,0,1 "CR-Saturday-Fall-16-1104","12:59:00","12:59:00","Chelsea",11,"",3,3,1 "CR-Saturday-Fall-16-1104","13:11:00","13:11:00","North Station",12,"",1,0,0 "CR-Saturday-Fall-16-1105","12:20:00","12:20:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1105","12:31:00","12:31:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1105","12:41:00","12:41:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1105","12:44:00","12:44:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1105","12:51:00","12:51:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1105","12:55:00","12:55:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1105","12:59:00","12:59:00","Montserrat",7,"",3,3,1 "CR-Saturday-Fall-16-1105","13:04:00","13:04:00","Beverly Farms",8,"",3,3,1 "CR-Saturday-Fall-16-1105","13:10:00","13:10:00","Manchester",9,"",0,0,1 "CR-Saturday-Fall-16-1105","13:17:00","13:17:00","West Gloucester",10,"",3,3,1 "CR-Saturday-Fall-16-1105","13:24:00","13:24:00","Gloucester",11,"",0,0,1 "CR-Saturday-Fall-16-1105","13:32:00","13:32:00","Rockport",12,"",1,0,0 "CR-Saturday-Fall-16-1106","14:00:00","14:00:00","Rockport",1,"",0,1,1 "CR-Saturday-Fall-16-1106","14:07:00","14:07:00","Gloucester",2,"",0,0,1 "CR-Saturday-Fall-16-1106","14:13:00","14:13:00","West Gloucester",3,"",3,3,1 "CR-Saturday-Fall-16-1106","14:20:00","14:20:00","Manchester",4,"",0,0,1 "CR-Saturday-Fall-16-1106","14:25:00","14:25:00","Beverly Farms",5,"",3,3,1 "CR-Saturday-Fall-16-1106","14:31:00","14:31:00","Montserrat",6,"",3,3,1 "CR-Saturday-Fall-16-1106","14:36:00","14:36:00","Beverly",7,"",0,0,1 "CR-Saturday-Fall-16-1106","14:40:00","14:40:00","Salem",8,"",0,0,1 "CR-Saturday-Fall-16-1106","14:46:00","14:46:00","Swampscott",9,"",0,0,1 "CR-Saturday-Fall-16-1106","14:50:00","14:50:00","Lynn",10,"",0,0,1 "CR-Saturday-Fall-16-1106","14:59:00","14:59:00","Chelsea",11,"",3,3,1 "CR-Saturday-Fall-16-1106","15:11:00","15:11:00","North Station",12,"",1,0,0 "CR-Saturday-Fall-16-1107","14:20:00","14:20:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1107","14:31:00","14:31:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1107","14:41:00","14:41:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1107","14:44:00","14:44:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1107","14:51:00","14:51:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1107","14:55:00","14:55:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1107","14:59:00","14:59:00","Montserrat",7,"",3,3,1 "CR-Saturday-Fall-16-1107","15:04:00","15:04:00","Beverly Farms",8,"",3,3,1 "CR-Saturday-Fall-16-1107","15:10:00","15:10:00","Manchester",9,"",0,0,1 "CR-Saturday-Fall-16-1107","15:17:00","15:17:00","West Gloucester",10,"",3,3,1 "CR-Saturday-Fall-16-1107","15:24:00","15:24:00","Gloucester",11,"",0,0,1 "CR-Saturday-Fall-16-1107","15:32:00","15:32:00","Rockport",12,"",1,0,0 "CR-Saturday-Fall-16-1108","17:10:00","17:10:00","Rockport",1,"",0,1,1 "CR-Saturday-Fall-16-1108","17:17:00","17:17:00","Gloucester",2,"",0,0,1 "CR-Saturday-Fall-16-1108","17:23:00","17:23:00","West Gloucester",3,"",3,3,1 "CR-Saturday-Fall-16-1108","17:30:00","17:30:00","Manchester",4,"",0,0,1 "CR-Saturday-Fall-16-1108","17:35:00","17:35:00","Beverly Farms",5,"",3,3,1 "CR-Saturday-Fall-16-1108","17:41:00","17:41:00","Montserrat",6,"",3,3,1 "CR-Saturday-Fall-16-1108","17:46:00","17:46:00","Beverly",7,"",0,0,1 "CR-Saturday-Fall-16-1108","17:50:00","17:50:00","Salem",8,"",0,0,1 "CR-Saturday-Fall-16-1108","17:56:00","17:56:00","Swampscott",9,"",0,0,1 "CR-Saturday-Fall-16-1108","18:00:00","18:00:00","Lynn",10,"",0,0,1 "CR-Saturday-Fall-16-1108","18:09:00","18:09:00","Chelsea",11,"",3,3,1 "CR-Saturday-Fall-16-1108","18:21:00","18:21:00","North Station",12,"",1,0,0 "CR-Saturday-Fall-16-1109","17:30:00","17:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1109","17:41:00","17:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1109","17:51:00","17:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1109","17:54:00","17:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1109","18:01:00","18:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1109","18:05:00","18:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1109","18:09:00","18:09:00","Montserrat",7,"",3,3,1 "CR-Saturday-Fall-16-1109","18:14:00","18:14:00","Beverly Farms",8,"",3,3,1 "CR-Saturday-Fall-16-1109","18:20:00","18:20:00","Manchester",9,"",0,0,1 "CR-Saturday-Fall-16-1109","18:27:00","18:27:00","West Gloucester",10,"",3,3,1 "CR-Saturday-Fall-16-1109","18:34:00","18:34:00","Gloucester",11,"",0,0,1 "CR-Saturday-Fall-16-1109","18:42:00","18:42:00","Rockport",12,"",1,0,0 "CR-Saturday-Fall-16-1110","19:30:00","19:30:00","Rockport",1,"",0,1,1 "CR-Saturday-Fall-16-1110","19:37:00","19:37:00","Gloucester",2,"",0,0,1 "CR-Saturday-Fall-16-1110","19:43:00","19:43:00","West Gloucester",3,"",3,3,1 "CR-Saturday-Fall-16-1110","19:50:00","19:50:00","Manchester",4,"",0,0,1 "CR-Saturday-Fall-16-1110","19:55:00","19:55:00","Beverly Farms",5,"",3,3,1 "CR-Saturday-Fall-16-1110","20:01:00","20:01:00","Montserrat",6,"",3,3,1 "CR-Saturday-Fall-16-1110","20:06:00","20:06:00","Beverly",7,"",0,0,1 "CR-Saturday-Fall-16-1110","20:10:00","20:10:00","Salem",8,"",0,0,1 "CR-Saturday-Fall-16-1110","20:16:00","20:16:00","Swampscott",9,"",0,0,1 "CR-Saturday-Fall-16-1110","20:20:00","20:20:00","Lynn",10,"",0,0,1 "CR-Saturday-Fall-16-1110","20:29:00","20:29:00","Chelsea",11,"",3,3,1 "CR-Saturday-Fall-16-1110","20:41:00","20:41:00","North Station",12,"",1,0,0 "CR-Saturday-Fall-16-1111","20:30:00","20:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1111","20:41:00","20:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1111","20:51:00","20:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1111","20:54:00","20:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1111","21:01:00","21:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1111","21:05:00","21:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1111","21:09:00","21:09:00","Montserrat",7,"",3,3,1 "CR-Saturday-Fall-16-1111","21:14:00","21:14:00","Beverly Farms",8,"",3,3,1 "CR-Saturday-Fall-16-1111","21:20:00","21:20:00","Manchester",9,"",0,0,1 "CR-Saturday-Fall-16-1111","21:27:00","21:27:00","West Gloucester",10,"",3,3,1 "CR-Saturday-Fall-16-1111","21:34:00","21:34:00","Gloucester",11,"",0,0,1 "CR-Saturday-Fall-16-1111","21:42:00","21:42:00","Rockport",12,"",1,0,0 "CR-Saturday-Fall-16-1112","22:00:00","22:00:00","Rockport",1,"",0,1,1 "CR-Saturday-Fall-16-1112","22:07:00","22:07:00","Gloucester",2,"",0,0,1 "CR-Saturday-Fall-16-1112","22:13:00","22:13:00","West Gloucester",3,"",3,3,1 "CR-Saturday-Fall-16-1112","22:20:00","22:20:00","Manchester",4,"",0,0,1 "CR-Saturday-Fall-16-1112","22:25:00","22:25:00","Beverly Farms",5,"",3,3,1 "CR-Saturday-Fall-16-1112","22:31:00","22:31:00","Montserrat",6,"",3,3,1 "CR-Saturday-Fall-16-1112","22:36:00","22:36:00","Beverly",7,"",0,0,1 "CR-Saturday-Fall-16-1112","22:40:00","22:40:00","Salem",8,"",0,0,1 "CR-Saturday-Fall-16-1112","22:46:00","22:46:00","Swampscott",9,"",0,0,1 "CR-Saturday-Fall-16-1112","22:50:00","22:50:00","Lynn",10,"",0,0,1 "CR-Saturday-Fall-16-1112","22:59:00","22:59:00","Chelsea",11,"",3,3,1 "CR-Saturday-Fall-16-1112","23:11:00","23:11:00","North Station",12,"",1,0,0 "CR-Saturday-Fall-16-1113","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1113","23:41:00","23:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1113","23:51:00","23:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1113","23:54:00","23:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1113","24:01:00","24:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1113","24:05:00","24:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1113","24:09:00","24:09:00","Montserrat",7,"",3,3,1 "CR-Saturday-Fall-16-1113","24:14:00","24:14:00","Beverly Farms",8,"",3,3,1 "CR-Saturday-Fall-16-1113","24:20:00","24:20:00","Manchester",9,"",0,0,1 "CR-Saturday-Fall-16-1113","24:27:00","24:27:00","West Gloucester",10,"",3,3,1 "CR-Saturday-Fall-16-1113","24:34:00","24:34:00","Gloucester",11,"",0,0,1 "CR-Saturday-Fall-16-1113","24:42:00","24:42:00","Rockport",12,"",1,0,0 "CR-Saturday-Fall-16-1150","8:52:00","8:52:00","Newburyport",1,"",0,1,1 "CR-Saturday-Fall-16-1150","8:58:00","8:58:00","Rowley",2,"",0,0,1 "CR-Saturday-Fall-16-1150","9:05:00","9:05:00","Ipswich",3,"",0,0,1 "CR-Saturday-Fall-16-1150","9:12:00","9:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Saturday-Fall-16-1150","9:15:00","9:15:00","North Beverly",5,"",3,3,1 "CR-Saturday-Fall-16-1150","9:20:00","9:20:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1150","9:24:00","9:24:00","Salem",7,"",0,0,1 "CR-Saturday-Fall-16-1150","9:30:00","9:30:00","Swampscott",8,"",0,0,1 "CR-Saturday-Fall-16-1150","9:34:00","9:34:00","Lynn",9,"",0,0,1 "CR-Saturday-Fall-16-1150","9:44:00","9:44:00","Chelsea",10,"",3,3,1 "CR-Saturday-Fall-16-1150","9:56:00","9:56:00","North Station",11,"",1,0,0 "CR-Saturday-Fall-16-1151","10:01:00","10:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1151","10:05:00","10:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1151","10:09:00","10:09:00","North Beverly",7,"",3,3,1 "CR-Saturday-Fall-16-1151","10:13:00","10:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Saturday-Fall-16-1151","10:20:00","10:20:00","Ipswich",9,"",0,0,1 "CR-Saturday-Fall-16-1151","10:27:00","10:27:00","Rowley",10,"",0,0,1 "CR-Saturday-Fall-16-1151","10:34:00","10:34:00","Newburyport",11,"",1,0,0 "CR-Saturday-Fall-16-1151","9:30:00","9:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1151","9:41:00","9:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1151","9:51:00","9:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1151","9:54:00","9:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1152","10:52:00","10:52:00","Newburyport",1,"",0,1,1 "CR-Saturday-Fall-16-1152","10:58:00","10:58:00","Rowley",2,"",0,0,1 "CR-Saturday-Fall-16-1152","11:05:00","11:05:00","Ipswich",3,"",0,0,1 "CR-Saturday-Fall-16-1152","11:12:00","11:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Saturday-Fall-16-1152","11:15:00","11:15:00","North Beverly",5,"",3,3,1 "CR-Saturday-Fall-16-1152","11:20:00","11:20:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1152","11:24:00","11:24:00","Salem",7,"",0,0,1 "CR-Saturday-Fall-16-1152","11:30:00","11:30:00","Swampscott",8,"",0,0,1 "CR-Saturday-Fall-16-1152","11:34:00","11:34:00","Lynn",9,"",0,0,1 "CR-Saturday-Fall-16-1152","11:44:00","11:44:00","Chelsea",10,"",3,3,1 "CR-Saturday-Fall-16-1152","11:56:00","11:56:00","North Station",11,"",1,0,0 "CR-Saturday-Fall-16-1153","11:30:00","11:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1153","11:41:00","11:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1153","11:51:00","11:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1153","11:54:00","11:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1153","12:01:00","12:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1153","12:05:00","12:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1153","12:09:00","12:09:00","North Beverly",7,"",3,3,1 "CR-Saturday-Fall-16-1153","12:13:00","12:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Saturday-Fall-16-1153","12:20:00","12:20:00","Ipswich",9,"",0,0,1 "CR-Saturday-Fall-16-1153","12:27:00","12:27:00","Rowley",10,"",0,0,1 "CR-Saturday-Fall-16-1153","12:34:00","12:34:00","Newburyport",11,"",1,0,0 "CR-Saturday-Fall-16-1154","12:52:00","12:52:00","Newburyport",1,"",0,1,1 "CR-Saturday-Fall-16-1154","12:58:00","12:58:00","Rowley",2,"",0,0,1 "CR-Saturday-Fall-16-1154","13:05:00","13:05:00","Ipswich",3,"",0,0,1 "CR-Saturday-Fall-16-1154","13:12:00","13:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Saturday-Fall-16-1154","13:15:00","13:15:00","North Beverly",5,"",3,3,1 "CR-Saturday-Fall-16-1154","13:20:00","13:20:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1154","13:24:00","13:24:00","Salem",7,"",0,0,1 "CR-Saturday-Fall-16-1154","13:30:00","13:30:00","Swampscott",8,"",0,0,1 "CR-Saturday-Fall-16-1154","13:34:00","13:34:00","Lynn",9,"",0,0,1 "CR-Saturday-Fall-16-1154","13:44:00","13:44:00","Chelsea",10,"",3,3,1 "CR-Saturday-Fall-16-1154","13:56:00","13:56:00","North Station",11,"",1,0,0 "CR-Saturday-Fall-16-1155","13:30:00","13:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1155","13:41:00","13:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1155","13:51:00","13:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1155","13:54:00","13:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1155","14:01:00","14:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1155","14:05:00","14:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1155","14:09:00","14:09:00","North Beverly",7,"",3,3,1 "CR-Saturday-Fall-16-1155","14:13:00","14:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Saturday-Fall-16-1155","14:20:00","14:20:00","Ipswich",9,"",0,0,1 "CR-Saturday-Fall-16-1155","14:27:00","14:27:00","Rowley",10,"",0,0,1 "CR-Saturday-Fall-16-1155","14:34:00","14:34:00","Newburyport",11,"",1,0,0 "CR-Saturday-Fall-16-1156","14:52:00","14:52:00","Newburyport",1,"",0,1,1 "CR-Saturday-Fall-16-1156","14:58:00","14:58:00","Rowley",2,"",0,0,1 "CR-Saturday-Fall-16-1156","15:05:00","15:05:00","Ipswich",3,"",0,0,1 "CR-Saturday-Fall-16-1156","15:12:00","15:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Saturday-Fall-16-1156","15:15:00","15:15:00","North Beverly",5,"",3,3,1 "CR-Saturday-Fall-16-1156","15:20:00","15:20:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1156","15:24:00","15:24:00","Salem",7,"",0,0,1 "CR-Saturday-Fall-16-1156","15:30:00","15:30:00","Swampscott",8,"",0,0,1 "CR-Saturday-Fall-16-1156","15:34:00","15:34:00","Lynn",9,"",0,0,1 "CR-Saturday-Fall-16-1156","15:44:00","15:44:00","Chelsea",10,"",3,3,1 "CR-Saturday-Fall-16-1156","15:56:00","15:56:00","North Station",11,"",1,0,0 "CR-Saturday-Fall-16-1157","16:30:00","16:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1157","16:41:00","16:41:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1157","16:51:00","16:51:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1157","16:54:00","16:54:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1157","17:01:00","17:01:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1157","17:05:00","17:05:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1157","17:09:00","17:09:00","North Beverly",7,"",3,3,1 "CR-Saturday-Fall-16-1157","17:13:00","17:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Saturday-Fall-16-1157","17:20:00","17:20:00","Ipswich",9,"",0,0,1 "CR-Saturday-Fall-16-1157","17:27:00","17:27:00","Rowley",10,"",0,0,1 "CR-Saturday-Fall-16-1157","17:34:00","17:34:00","Newburyport",11,"",1,0,0 "CR-Saturday-Fall-16-1158","17:52:00","17:52:00","Newburyport",1,"",0,1,1 "CR-Saturday-Fall-16-1158","17:58:00","17:58:00","Rowley",2,"",0,0,1 "CR-Saturday-Fall-16-1158","18:05:00","18:05:00","Ipswich",3,"",0,0,1 "CR-Saturday-Fall-16-1158","18:12:00","18:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Saturday-Fall-16-1158","18:15:00","18:15:00","North Beverly",5,"",3,3,1 "CR-Saturday-Fall-16-1158","18:20:00","18:20:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1158","18:24:00","18:24:00","Salem",7,"",0,0,1 "CR-Saturday-Fall-16-1158","18:30:00","18:30:00","Swampscott",8,"",0,0,1 "CR-Saturday-Fall-16-1158","18:34:00","18:34:00","Lynn",9,"",0,0,1 "CR-Saturday-Fall-16-1158","18:44:00","18:44:00","Chelsea",10,"",3,3,1 "CR-Saturday-Fall-16-1158","18:56:00","18:56:00","North Station",11,"",1,0,0 "CR-Saturday-Fall-16-1159","19:15:00","19:15:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1159","19:26:00","19:26:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1159","19:36:00","19:36:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1159","19:39:00","19:39:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1159","19:46:00","19:46:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1159","19:50:00","19:50:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1159","19:54:00","19:54:00","North Beverly",7,"",3,3,1 "CR-Saturday-Fall-16-1159","19:58:00","19:58:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Saturday-Fall-16-1159","20:05:00","20:05:00","Ipswich",9,"",0,0,1 "CR-Saturday-Fall-16-1159","20:12:00","20:12:00","Rowley",10,"",0,0,1 "CR-Saturday-Fall-16-1159","20:19:00","20:19:00","Newburyport",11,"",1,0,0 "CR-Saturday-Fall-16-1160","21:00:00","21:00:00","Newburyport",1,"",0,1,1 "CR-Saturday-Fall-16-1160","21:06:00","21:06:00","Rowley",2,"",0,0,1 "CR-Saturday-Fall-16-1160","21:13:00","21:13:00","Ipswich",3,"",0,0,1 "CR-Saturday-Fall-16-1160","21:20:00","21:20:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Saturday-Fall-16-1160","21:23:00","21:23:00","North Beverly",5,"",3,3,1 "CR-Saturday-Fall-16-1160","21:28:00","21:28:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1160","21:32:00","21:32:00","Salem",7,"",0,0,1 "CR-Saturday-Fall-16-1160","21:38:00","21:38:00","Swampscott",8,"",0,0,1 "CR-Saturday-Fall-16-1160","21:42:00","21:42:00","Lynn",9,"",0,0,1 "CR-Saturday-Fall-16-1160","21:52:00","21:52:00","Chelsea",10,"",3,3,1 "CR-Saturday-Fall-16-1160","22:04:00","22:04:00","North Station",11,"",1,0,0 "CR-Saturday-Fall-16-1161","22:20:00","22:20:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1161","22:31:00","22:31:00","Chelsea",2,"",3,3,1 "CR-Saturday-Fall-16-1161","22:41:00","22:41:00","Lynn",3,"",0,0,1 "CR-Saturday-Fall-16-1161","22:44:00","22:44:00","Swampscott",4,"",0,0,1 "CR-Saturday-Fall-16-1161","22:51:00","22:51:00","Salem",5,"",0,0,1 "CR-Saturday-Fall-16-1161","22:55:00","22:55:00","Beverly",6,"",0,0,1 "CR-Saturday-Fall-16-1161","22:59:00","22:59:00","North Beverly",7,"",3,3,1 "CR-Saturday-Fall-16-1161","23:03:00","23:03:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Saturday-Fall-16-1161","23:10:00","23:10:00","Ipswich",9,"",0,0,1 "CR-Saturday-Fall-16-1161","23:17:00","23:17:00","Rowley",10,"",0,0,1 "CR-Saturday-Fall-16-1161","23:24:00","23:24:00","Newburyport",11,"",1,0,0 "CR-Saturday-Fall-16-1200","7:15:00","7:15:00","Haverhill",1,"",0,1,1 "CR-Saturday-Fall-16-1200","7:18:00","7:18:00","Bradford",2,"",0,0,1 "CR-Saturday-Fall-16-1200","7:27:00","7:27:00","Lawrence",3,"",0,0,1 "CR-Saturday-Fall-16-1200","7:32:00","7:32:00","Andover",4,"",0,0,1 "CR-Saturday-Fall-16-1200","7:37:00","7:37:00","Ballardvale",5,"",3,3,1 "CR-Saturday-Fall-16-1200","7:44:00","7:44:00","North Wilmington",6,"",3,3,1 "CR-Saturday-Fall-16-1200","7:50:00","7:50:00","Reading",7,"",0,0,1 "CR-Saturday-Fall-16-1200","7:55:00","7:55:00","Wakefield",8,"",0,0,1 "CR-Saturday-Fall-16-1200","7:59:00","7:59:00","Greenwood",9,"",3,3,1 "CR-Saturday-Fall-16-1200","8:02:00","8:02:00","Melrose Highlands",10,"",0,0,1 "CR-Saturday-Fall-16-1200","8:04:00","8:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Saturday-Fall-16-1200","8:06:00","8:06:00","Wyoming Hill",12,"",3,3,1 "CR-Saturday-Fall-16-1200","8:10:00","8:10:00","Malden Center",13,"",0,0,0 "CR-Saturday-Fall-16-1200","8:21:00","8:21:00","North Station",14,"",1,0,0 "CR-Saturday-Fall-16-1201","8:40:00","8:40:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1201","8:50:00","8:50:00","Malden Center",2,"",0,0,1 "CR-Saturday-Fall-16-1201","8:54:00","8:54:00","Wyoming Hill",3,"",3,3,1 "CR-Saturday-Fall-16-1201","8:56:00","8:56:00","Melrose Cedar Park",4,"",3,3,1 "CR-Saturday-Fall-16-1201","8:59:00","8:59:00","Melrose Highlands",5,"",0,0,1 "CR-Saturday-Fall-16-1201","9:02:00","9:02:00","Greenwood",6,"",3,3,1 "CR-Saturday-Fall-16-1201","9:05:00","9:05:00","Wakefield",7,"",0,0,1 "CR-Saturday-Fall-16-1201","9:11:00","9:11:00","Reading",8,"",0,0,1 "CR-Saturday-Fall-16-1201","9:17:00","9:17:00","North Wilmington",9,"",3,3,1 "CR-Saturday-Fall-16-1201","9:23:00","9:23:00","Ballardvale",10,"",3,3,1 "CR-Saturday-Fall-16-1201","9:28:00","9:28:00","Andover",11,"",0,0,1 "CR-Saturday-Fall-16-1201","9:35:00","9:35:00","Lawrence",12,"",0,0,1 "CR-Saturday-Fall-16-1201","9:44:00","9:44:00","Bradford",13,"",0,0,0 "CR-Saturday-Fall-16-1201","9:47:00","9:47:00","Haverhill",14,"",1,0,0 "CR-Saturday-Fall-16-1202","10:15:00","10:15:00","Haverhill",1,"",0,1,1 "CR-Saturday-Fall-16-1202","10:18:00","10:18:00","Bradford",2,"",0,0,1 "CR-Saturday-Fall-16-1202","10:27:00","10:27:00","Lawrence",3,"",0,0,1 "CR-Saturday-Fall-16-1202","10:32:00","10:32:00","Andover",4,"",0,0,1 "CR-Saturday-Fall-16-1202","10:37:00","10:37:00","Ballardvale",5,"",3,3,1 "CR-Saturday-Fall-16-1202","10:44:00","10:44:00","North Wilmington",6,"",3,3,1 "CR-Saturday-Fall-16-1202","10:50:00","10:50:00","Reading",7,"",0,0,1 "CR-Saturday-Fall-16-1202","10:55:00","10:55:00","Wakefield",8,"",0,0,1 "CR-Saturday-Fall-16-1202","10:59:00","10:59:00","Greenwood",9,"",3,3,1 "CR-Saturday-Fall-16-1202","11:02:00","11:02:00","Melrose Highlands",10,"",0,0,1 "CR-Saturday-Fall-16-1202","11:04:00","11:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Saturday-Fall-16-1202","11:06:00","11:06:00","Wyoming Hill",12,"",3,3,1 "CR-Saturday-Fall-16-1202","11:10:00","11:10:00","Malden Center",13,"",0,0,0 "CR-Saturday-Fall-16-1202","11:21:00","11:21:00","North Station",14,"",1,0,0 "CR-Saturday-Fall-16-1203","11:25:00","11:25:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1203","11:35:00","11:35:00","Malden Center",2,"",0,0,1 "CR-Saturday-Fall-16-1203","11:39:00","11:39:00","Wyoming Hill",3,"",3,3,1 "CR-Saturday-Fall-16-1203","11:41:00","11:41:00","Melrose Cedar Park",4,"",3,3,1 "CR-Saturday-Fall-16-1203","11:44:00","11:44:00","Melrose Highlands",5,"",0,0,1 "CR-Saturday-Fall-16-1203","11:47:00","11:47:00","Greenwood",6,"",3,3,1 "CR-Saturday-Fall-16-1203","11:50:00","11:50:00","Wakefield",7,"",0,0,1 "CR-Saturday-Fall-16-1203","11:56:00","11:56:00","Reading",8,"",0,0,1 "CR-Saturday-Fall-16-1203","12:02:00","12:02:00","North Wilmington",9,"",3,3,1 "CR-Saturday-Fall-16-1203","12:08:00","12:08:00","Ballardvale",10,"",3,3,1 "CR-Saturday-Fall-16-1203","12:13:00","12:13:00","Andover",11,"",0,0,1 "CR-Saturday-Fall-16-1203","12:20:00","12:20:00","Lawrence",12,"",0,0,1 "CR-Saturday-Fall-16-1203","12:29:00","12:29:00","Bradford",13,"",0,0,0 "CR-Saturday-Fall-16-1203","12:32:00","12:32:00","Haverhill",14,"",1,0,0 "CR-Saturday-Fall-16-1204","13:15:00","13:15:00","Haverhill",1,"",0,1,1 "CR-Saturday-Fall-16-1204","13:18:00","13:18:00","Bradford",2,"",0,0,1 "CR-Saturday-Fall-16-1204","13:27:00","13:27:00","Lawrence",3,"",0,0,1 "CR-Saturday-Fall-16-1204","13:33:00","13:33:00","Andover",4,"",0,0,1 "CR-Saturday-Fall-16-1204","13:37:00","13:37:00","Ballardvale",5,"",3,3,1 "CR-Saturday-Fall-16-1204","13:44:00","13:44:00","North Wilmington",6,"",3,3,1 "CR-Saturday-Fall-16-1204","13:50:00","13:50:00","Reading",7,"",0,0,1 "CR-Saturday-Fall-16-1204","13:55:00","13:55:00","Wakefield",8,"",0,0,1 "CR-Saturday-Fall-16-1204","13:59:00","13:59:00","Greenwood",9,"",3,3,1 "CR-Saturday-Fall-16-1204","14:02:00","14:02:00","Melrose Highlands",10,"",0,0,1 "CR-Saturday-Fall-16-1204","14:04:00","14:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Saturday-Fall-16-1204","14:06:00","14:06:00","Wyoming Hill",12,"",3,3,1 "CR-Saturday-Fall-16-1204","14:10:00","14:10:00","Malden Center",13,"",0,0,0 "CR-Saturday-Fall-16-1204","14:21:00","14:21:00","North Station",14,"",1,0,0 "CR-Saturday-Fall-16-1205","14:45:00","14:45:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1205","14:55:00","14:55:00","Malden Center",2,"",0,0,1 "CR-Saturday-Fall-16-1205","14:59:00","14:59:00","Wyoming Hill",3,"",3,3,1 "CR-Saturday-Fall-16-1205","15:01:00","15:01:00","Melrose Cedar Park",4,"",3,3,1 "CR-Saturday-Fall-16-1205","15:04:00","15:04:00","Melrose Highlands",5,"",0,0,1 "CR-Saturday-Fall-16-1205","15:07:00","15:07:00","Greenwood",6,"",3,3,1 "CR-Saturday-Fall-16-1205","15:10:00","15:10:00","Wakefield",7,"",0,0,1 "CR-Saturday-Fall-16-1205","15:16:00","15:16:00","Reading",8,"",0,0,1 "CR-Saturday-Fall-16-1205","15:22:00","15:22:00","North Wilmington",9,"",3,3,1 "CR-Saturday-Fall-16-1205","15:28:00","15:28:00","Ballardvale",10,"",3,3,1 "CR-Saturday-Fall-16-1205","15:33:00","15:33:00","Andover",11,"",0,0,1 "CR-Saturday-Fall-16-1205","15:40:00","15:40:00","Lawrence",12,"",0,0,1 "CR-Saturday-Fall-16-1205","15:49:00","15:49:00","Bradford",13,"",0,0,0 "CR-Saturday-Fall-16-1205","15:52:00","15:52:00","Haverhill",14,"",1,0,0 "CR-Saturday-Fall-16-1206","16:15:00","16:15:00","Haverhill",1,"",0,1,1 "CR-Saturday-Fall-16-1206","16:18:00","16:18:00","Bradford",2,"",0,0,1 "CR-Saturday-Fall-16-1206","16:27:00","16:27:00","Lawrence",3,"",0,0,1 "CR-Saturday-Fall-16-1206","16:32:00","16:32:00","Andover",4,"",0,0,1 "CR-Saturday-Fall-16-1206","16:37:00","16:37:00","Ballardvale",5,"",3,3,1 "CR-Saturday-Fall-16-1206","16:44:00","16:44:00","North Wilmington",6,"",3,3,1 "CR-Saturday-Fall-16-1206","16:50:00","16:50:00","Reading",7,"",0,0,1 "CR-Saturday-Fall-16-1206","16:55:00","16:55:00","Wakefield",8,"",0,0,1 "CR-Saturday-Fall-16-1206","16:59:00","16:59:00","Greenwood",9,"",3,3,1 "CR-Saturday-Fall-16-1206","17:02:00","17:02:00","Melrose Highlands",10,"",0,0,1 "CR-Saturday-Fall-16-1206","17:04:00","17:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Saturday-Fall-16-1206","17:06:00","17:06:00","Wyoming Hill",12,"",3,3,1 "CR-Saturday-Fall-16-1206","17:10:00","17:10:00","Malden Center",13,"",0,0,0 "CR-Saturday-Fall-16-1206","17:21:00","17:21:00","North Station",14,"",1,0,0 "CR-Saturday-Fall-16-1207","17:50:00","17:50:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1207","18:00:00","18:00:00","Malden Center",2,"",0,0,1 "CR-Saturday-Fall-16-1207","18:04:00","18:04:00","Wyoming Hill",3,"",3,3,1 "CR-Saturday-Fall-16-1207","18:06:00","18:06:00","Melrose Cedar Park",4,"",3,3,1 "CR-Saturday-Fall-16-1207","18:09:00","18:09:00","Melrose Highlands",5,"",0,0,1 "CR-Saturday-Fall-16-1207","18:12:00","18:12:00","Greenwood",6,"",3,3,1 "CR-Saturday-Fall-16-1207","18:15:00","18:15:00","Wakefield",7,"",0,0,1 "CR-Saturday-Fall-16-1207","18:21:00","18:21:00","Reading",8,"",0,0,1 "CR-Saturday-Fall-16-1207","18:27:00","18:27:00","North Wilmington",9,"",3,3,1 "CR-Saturday-Fall-16-1207","18:33:00","18:33:00","Ballardvale",10,"",3,3,1 "CR-Saturday-Fall-16-1207","18:38:00","18:38:00","Andover",11,"",0,0,1 "CR-Saturday-Fall-16-1207","18:45:00","18:45:00","Lawrence",12,"",0,0,1 "CR-Saturday-Fall-16-1207","18:54:00","18:54:00","Bradford",13,"",0,0,0 "CR-Saturday-Fall-16-1207","18:57:00","18:57:00","Haverhill",14,"",1,0,0 "CR-Saturday-Fall-16-1208","19:20:00","19:20:00","Haverhill",1,"",0,1,1 "CR-Saturday-Fall-16-1208","19:23:00","19:23:00","Bradford",2,"",0,0,1 "CR-Saturday-Fall-16-1208","19:32:00","19:32:00","Lawrence",3,"",0,0,1 "CR-Saturday-Fall-16-1208","19:38:00","19:38:00","Andover",4,"",0,0,1 "CR-Saturday-Fall-16-1208","19:42:00","19:42:00","Ballardvale",5,"",3,3,1 "CR-Saturday-Fall-16-1208","19:49:00","19:49:00","North Wilmington",6,"",3,3,1 "CR-Saturday-Fall-16-1208","19:55:00","19:55:00","Reading",7,"",0,0,1 "CR-Saturday-Fall-16-1208","20:00:00","20:00:00","Wakefield",8,"",0,0,1 "CR-Saturday-Fall-16-1208","20:04:00","20:04:00","Greenwood",9,"",3,3,1 "CR-Saturday-Fall-16-1208","20:07:00","20:07:00","Melrose Highlands",10,"",0,0,1 "CR-Saturday-Fall-16-1208","20:09:00","20:09:00","Melrose Cedar Park",11,"",3,3,1 "CR-Saturday-Fall-16-1208","20:11:00","20:11:00","Wyoming Hill",12,"",3,3,1 "CR-Saturday-Fall-16-1208","20:15:00","20:15:00","Malden Center",13,"",0,0,0 "CR-Saturday-Fall-16-1208","20:26:00","20:26:00","North Station",14,"",1,0,0 "CR-Saturday-Fall-16-1209","20:40:00","20:40:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1209","20:50:00","20:50:00","Malden Center",2,"",0,0,1 "CR-Saturday-Fall-16-1209","20:54:00","20:54:00","Wyoming Hill",3,"",3,3,1 "CR-Saturday-Fall-16-1209","20:56:00","20:56:00","Melrose Cedar Park",4,"",3,3,1 "CR-Saturday-Fall-16-1209","20:59:00","20:59:00","Melrose Highlands",5,"",0,0,1 "CR-Saturday-Fall-16-1209","21:02:00","21:02:00","Greenwood",6,"",3,3,1 "CR-Saturday-Fall-16-1209","21:05:00","21:05:00","Wakefield",7,"",0,0,1 "CR-Saturday-Fall-16-1209","21:11:00","21:11:00","Reading",8,"",0,0,1 "CR-Saturday-Fall-16-1209","21:17:00","21:17:00","North Wilmington",9,"",3,3,1 "CR-Saturday-Fall-16-1209","21:23:00","21:23:00","Ballardvale",10,"",3,3,1 "CR-Saturday-Fall-16-1209","21:28:00","21:28:00","Andover",11,"",0,0,1 "CR-Saturday-Fall-16-1209","21:35:00","21:35:00","Lawrence",12,"",0,0,1 "CR-Saturday-Fall-16-1209","21:44:00","21:44:00","Bradford",13,"",0,0,0 "CR-Saturday-Fall-16-1209","21:47:00","21:47:00","Haverhill",14,"",1,0,0 "CR-Saturday-Fall-16-1210","22:10:00","22:10:00","Haverhill",1,"",0,1,1 "CR-Saturday-Fall-16-1210","22:13:00","22:13:00","Bradford",2,"",0,0,1 "CR-Saturday-Fall-16-1210","22:22:00","22:22:00","Lawrence",3,"",0,0,1 "CR-Saturday-Fall-16-1210","22:28:00","22:28:00","Andover",4,"",0,0,1 "CR-Saturday-Fall-16-1210","22:32:00","22:32:00","Ballardvale",5,"",3,3,1 "CR-Saturday-Fall-16-1210","22:39:00","22:39:00","North Wilmington",6,"",3,3,1 "CR-Saturday-Fall-16-1210","22:45:00","22:45:00","Reading",7,"",0,0,1 "CR-Saturday-Fall-16-1210","22:50:00","22:50:00","Wakefield",8,"",0,0,1 "CR-Saturday-Fall-16-1210","22:54:00","22:54:00","Greenwood",9,"",3,3,1 "CR-Saturday-Fall-16-1210","22:57:00","22:57:00","Melrose Highlands",10,"",0,0,1 "CR-Saturday-Fall-16-1210","22:59:00","22:59:00","Melrose Cedar Park",11,"",3,3,1 "CR-Saturday-Fall-16-1210","23:01:00","23:01:00","Wyoming Hill",12,"",3,3,1 "CR-Saturday-Fall-16-1210","23:05:00","23:05:00","Malden Center",13,"",0,0,0 "CR-Saturday-Fall-16-1210","23:16:00","23:16:00","North Station",14,"",1,0,0 "CR-Saturday-Fall-16-1211","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1211","23:40:00","23:40:00","Malden Center",2,"",0,0,1 "CR-Saturday-Fall-16-1211","23:44:00","23:44:00","Wyoming Hill",3,"",3,3,1 "CR-Saturday-Fall-16-1211","23:46:00","23:46:00","Melrose Cedar Park",4,"",3,3,1 "CR-Saturday-Fall-16-1211","23:49:00","23:49:00","Melrose Highlands",5,"",0,0,1 "CR-Saturday-Fall-16-1211","23:52:00","23:52:00","Greenwood",6,"",3,3,1 "CR-Saturday-Fall-16-1211","23:55:00","23:55:00","Wakefield",7,"",0,0,1 "CR-Saturday-Fall-16-1211","24:01:00","24:01:00","Reading",8,"",0,0,1 "CR-Saturday-Fall-16-1211","24:07:00","24:07:00","North Wilmington",9,"",3,3,1 "CR-Saturday-Fall-16-1211","24:13:00","24:13:00","Ballardvale",10,"",3,3,1 "CR-Saturday-Fall-16-1211","24:18:00","24:18:00","Andover",11,"",0,0,1 "CR-Saturday-Fall-16-1211","24:25:00","24:25:00","Lawrence",12,"",0,0,1 "CR-Saturday-Fall-16-1211","24:34:00","24:34:00","Bradford",13,"",0,0,0 "CR-Saturday-Fall-16-1211","24:37:00","24:37:00","Haverhill",14,"",1,0,0 "CR-Saturday-Fall-16-1300","7:00:00","7:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1300","7:08:00","7:08:00","North Billerica",2,"",0,0,1 "CR-Saturday-Fall-16-1300","7:16:00","7:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1300","7:20:00","7:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1300","7:27:00","7:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1300","7:29:00","7:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1300","7:33:00","7:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1300","7:44:00","7:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1301","8:00:00","8:00:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1301","8:11:00","8:11:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1301","8:15:00","8:15:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1301","8:17:00","8:17:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1301","8:24:00","8:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1301","8:28:00","8:28:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1301","8:37:00","8:37:00","North Billerica",7,"",3,3,1 "CR-Saturday-Fall-16-1301","8:44:00","8:44:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1302","9:00:00","9:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1302","9:08:00","9:08:00","North Billerica",2,"",0,0,1 "CR-Saturday-Fall-16-1302","9:16:00","9:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1302","9:20:00","9:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1302","9:27:00","9:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1302","9:29:00","9:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1302","9:33:00","9:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1302","9:44:00","9:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1303","10:00:00","10:00:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1303","10:11:00","10:11:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1303","10:15:00","10:15:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1303","10:17:00","10:17:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1303","10:24:00","10:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1303","10:28:00","10:28:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1303","10:37:00","10:37:00","North Billerica",7,"",3,3,1 "CR-Saturday-Fall-16-1303","10:44:00","10:44:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1304","11:00:00","11:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1304","11:08:00","11:08:00","North Billerica",2,"",0,0,1 "CR-Saturday-Fall-16-1304","11:16:00","11:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1304","11:20:00","11:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1304","11:27:00","11:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1304","11:29:00","11:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1304","11:33:00","11:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1304","11:44:00","11:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1305","12:00:00","12:00:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1305","12:11:00","12:11:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1305","12:15:00","12:15:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1305","12:17:00","12:17:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1305","12:24:00","12:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1305","12:28:00","12:28:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1305","12:37:00","12:37:00","North Billerica",7,"",3,3,1 "CR-Saturday-Fall-16-1305","12:44:00","12:44:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1306","13:00:00","13:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1306","13:08:00","13:08:00","North Billerica",2,"",3,3,1 "CR-Saturday-Fall-16-1306","13:16:00","13:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1306","13:20:00","13:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1306","13:27:00","13:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1306","13:29:00","13:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1306","13:33:00","13:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1306","13:44:00","13:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1307","14:00:00","14:00:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1307","14:11:00","14:11:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1307","14:15:00","14:15:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1307","14:17:00","14:17:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1307","14:24:00","14:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1307","14:28:00","14:28:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1307","14:37:00","14:37:00","North Billerica",7,"",0,0,1 "CR-Saturday-Fall-16-1307","14:44:00","14:44:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1308","15:00:00","15:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1308","15:08:00","15:08:00","North Billerica",2,"",3,3,1 "CR-Saturday-Fall-16-1308","15:16:00","15:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1308","15:20:00","15:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1308","15:27:00","15:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1308","15:29:00","15:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1308","15:33:00","15:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1308","15:44:00","15:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1309","16:00:00","16:00:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1309","16:11:00","16:11:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1309","16:15:00","16:15:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1309","16:17:00","16:17:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1309","16:24:00","16:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1309","16:28:00","16:28:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1309","16:37:00","16:37:00","North Billerica",7,"",0,0,1 "CR-Saturday-Fall-16-1309","16:44:00","16:44:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1310","17:00:00","17:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1310","17:08:00","17:08:00","North Billerica",2,"",3,3,1 "CR-Saturday-Fall-16-1310","17:16:00","17:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1310","17:20:00","17:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1310","17:27:00","17:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1310","17:29:00","17:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1310","17:33:00","17:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1310","17:44:00","17:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1311","18:00:00","18:00:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1311","18:11:00","18:11:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1311","18:15:00","18:15:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1311","18:17:00","18:17:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1311","18:24:00","18:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1311","18:28:00","18:28:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1311","18:37:00","18:37:00","North Billerica",7,"",0,0,1 "CR-Saturday-Fall-16-1311","18:44:00","18:44:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1312","19:00:00","19:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1312","19:08:00","19:08:00","North Billerica",2,"",3,3,1 "CR-Saturday-Fall-16-1312","19:16:00","19:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1312","19:20:00","19:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1312","19:27:00","19:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1312","19:29:00","19:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1312","19:33:00","19:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1312","19:44:00","19:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1313","20:00:00","20:00:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1313","20:11:00","20:11:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1313","20:15:00","20:15:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1313","20:17:00","20:17:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1313","20:24:00","20:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1313","20:28:00","20:28:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1313","20:37:00","20:37:00","North Billerica",7,"",0,0,1 "CR-Saturday-Fall-16-1313","20:44:00","20:44:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1314","21:00:00","21:00:00","Lowell",1,"",0,1,1 "CR-Saturday-Fall-16-1314","21:08:00","21:08:00","North Billerica",2,"",3,3,1 "CR-Saturday-Fall-16-1314","21:16:00","21:16:00","Wilmington",3,"",0,0,1 "CR-Saturday-Fall-16-1314","21:20:00","21:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Saturday-Fall-16-1314","21:27:00","21:27:00","Winchester Center",5,"",0,0,1 "CR-Saturday-Fall-16-1314","21:29:00","21:29:00","Wedgemere",6,"",3,3,1 "CR-Saturday-Fall-16-1314","21:33:00","21:33:00","West Medford",7,"",3,3,1 "CR-Saturday-Fall-16-1314","21:44:00","21:44:00","North Station",8,"",1,0,0 "CR-Saturday-Fall-16-1315","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1315","23:41:00","23:41:00","West Medford",2,"",3,3,1 "CR-Saturday-Fall-16-1315","23:45:00","23:45:00","Wedgemere",3,"",3,3,1 "CR-Saturday-Fall-16-1315","23:47:00","23:47:00","Winchester Center",4,"",0,0,1 "CR-Saturday-Fall-16-1315","23:54:00","23:54:00","Anderson/ Woburn",5,"",0,0,1 "CR-Saturday-Fall-16-1315","23:58:00","23:58:00","Wilmington",6,"",0,0,1 "CR-Saturday-Fall-16-1315","24:07:00","24:07:00","North Billerica",7,"",0,0,1 "CR-Saturday-Fall-16-1315","24:14:00","24:14:00","Lowell",8,"",1,0,0 "CR-Saturday-Fall-16-1400","6:30:00","6:30:00","Wachusett",1,"",0,1,1 "CR-Saturday-Fall-16-1400","6:38:00","6:38:00","Fitchburg",2,"",0,0,1 "CR-Saturday-Fall-16-1400","6:44:00","6:44:00","North Leominster",3,"",0,0,1 "CR-Saturday-Fall-16-1400","6:51:00","6:51:00","Shirley",4,"",3,3,1 "CR-Saturday-Fall-16-1400","6:56:00","6:56:00","Ayer",5,"",0,0,1 "CR-Saturday-Fall-16-1400","7:04:00","7:04:00","Littleton / Rte 495",6,"",0,0,1 "CR-Saturday-Fall-16-1400","7:10:00","7:10:00","South Acton",7,"",0,0,1 "CR-Saturday-Fall-16-1400","7:16:00","7:16:00","West Concord",8,"",3,3,1 "CR-Saturday-Fall-16-1400","7:20:00","7:20:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1400","7:25:00","7:25:00","Lincoln",10,"",0,0,1 "CR-Saturday-Fall-16-1400","7:30:00","7:30:00","Kendal Green",11,"",3,3,1 "CR-Saturday-Fall-16-1400","7:34:00","7:34:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Saturday-Fall-16-1400","7:38:00","7:38:00","Waltham",13,"",0,0,1 "CR-Saturday-Fall-16-1400","7:42:00","7:42:00","Waverley",14,"",3,3,1 "CR-Saturday-Fall-16-1400","7:45:00","7:45:00","Belmont",15,"",3,3,1 "CR-Saturday-Fall-16-1400","7:50:00","7:50:00","Porter Square",16,"",0,0,1 "CR-Saturday-Fall-16-1400","8:00:00","8:00:00","North Station",17,"",1,0,0 "CR-Saturday-Fall-16-1401","10:01:00","10:01:00","Fitchburg",16,"",0,0,1 "CR-Saturday-Fall-16-1401","10:11:00","10:11:00","Wachusett",17,"",1,0,0 "CR-Saturday-Fall-16-1401","8:35:00","8:35:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1401","8:45:00","8:45:00","Porter Square",2,"",0,0,1 "CR-Saturday-Fall-16-1401","8:49:00","8:49:00","Belmont",3,"",3,3,1 "CR-Saturday-Fall-16-1401","8:52:00","8:52:00","Waverley",4,"",3,3,1 "CR-Saturday-Fall-16-1401","8:57:00","8:57:00","Waltham",5,"",0,0,1 "CR-Saturday-Fall-16-1401","9:00:00","9:00:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Saturday-Fall-16-1401","9:04:00","9:04:00","Kendal Green",7,"",3,3,1 "CR-Saturday-Fall-16-1401","9:09:00","9:09:00","Lincoln",8,"",0,0,1 "CR-Saturday-Fall-16-1401","9:15:00","9:15:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1401","9:18:00","9:18:00","West Concord",10,"",3,3,1 "CR-Saturday-Fall-16-1401","9:24:00","9:24:00","South Acton",11,"",0,0,1 "CR-Saturday-Fall-16-1401","9:31:00","9:31:00","Littleton / Rte 495",12,"",0,0,1 "CR-Saturday-Fall-16-1401","9:38:00","9:38:00","Ayer",13,"",0,0,1 "CR-Saturday-Fall-16-1401","9:43:00","9:43:00","Shirley",14,"",3,3,1 "CR-Saturday-Fall-16-1401","9:51:00","9:51:00","North Leominster",15,"",0,0,1 "CR-Saturday-Fall-16-1402","10:00:00","10:00:00","Belmont",15,"",3,3,1 "CR-Saturday-Fall-16-1402","10:05:00","10:05:00","Porter Square",16,"",0,0,1 "CR-Saturday-Fall-16-1402","10:15:00","10:15:00","North Station",17,"",1,0,0 "CR-Saturday-Fall-16-1402","8:45:00","8:45:00","Wachusett",1,"",0,1,1 "CR-Saturday-Fall-16-1402","8:53:00","8:53:00","Fitchburg",2,"",0,0,1 "CR-Saturday-Fall-16-1402","8:59:00","8:59:00","North Leominster",3,"",0,0,1 "CR-Saturday-Fall-16-1402","9:07:00","9:07:00","Shirley",4,"",3,3,1 "CR-Saturday-Fall-16-1402","9:12:00","9:12:00","Ayer",5,"",0,0,1 "CR-Saturday-Fall-16-1402","9:20:00","9:20:00","Littleton / Rte 495",6,"",0,0,1 "CR-Saturday-Fall-16-1402","9:26:00","9:26:00","South Acton",7,"",0,0,1 "CR-Saturday-Fall-16-1402","9:31:00","9:31:00","West Concord",8,"",3,3,1 "CR-Saturday-Fall-16-1402","9:35:00","9:35:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1402","9:40:00","9:40:00","Lincoln",10,"",0,0,1 "CR-Saturday-Fall-16-1402","9:45:00","9:45:00","Kendal Green",11,"",3,3,1 "CR-Saturday-Fall-16-1402","9:49:00","9:49:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Saturday-Fall-16-1402","9:53:00","9:53:00","Waltham",13,"",0,0,1 "CR-Saturday-Fall-16-1402","9:57:00","9:57:00","Waverley",14,"",3,3,1 "CR-Saturday-Fall-16-1403","10:45:00","10:45:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1403","10:55:00","10:55:00","Porter Square",2,"",0,0,1 "CR-Saturday-Fall-16-1403","10:59:00","10:59:00","Belmont",3,"",3,3,1 "CR-Saturday-Fall-16-1403","11:02:00","11:02:00","Waverley",4,"",3,3,1 "CR-Saturday-Fall-16-1403","11:07:00","11:07:00","Waltham",5,"",0,0,1 "CR-Saturday-Fall-16-1403","11:10:00","11:10:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Saturday-Fall-16-1403","11:14:00","11:14:00","Kendal Green",7,"",3,3,1 "CR-Saturday-Fall-16-1403","11:19:00","11:19:00","Lincoln",8,"",0,0,1 "CR-Saturday-Fall-16-1403","11:25:00","11:25:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1403","11:28:00","11:28:00","West Concord",10,"",3,3,1 "CR-Saturday-Fall-16-1403","11:34:00","11:34:00","South Acton",11,"",0,0,1 "CR-Saturday-Fall-16-1403","11:41:00","11:41:00","Littleton / Rte 495",12,"",0,0,1 "CR-Saturday-Fall-16-1403","11:48:00","11:48:00","Ayer",13,"",0,0,1 "CR-Saturday-Fall-16-1403","11:53:00","11:53:00","Shirley",14,"",3,3,1 "CR-Saturday-Fall-16-1403","12:01:00","12:01:00","North Leominster",15,"",0,0,1 "CR-Saturday-Fall-16-1403","12:11:00","12:11:00","Fitchburg",16,"",0,0,1 "CR-Saturday-Fall-16-1403","12:21:00","12:21:00","Wachusett",17,"",1,0,0 "CR-Saturday-Fall-16-1404","10:50:00","10:50:00","Wachusett",1,"",0,1,1 "CR-Saturday-Fall-16-1404","10:58:00","10:58:00","Fitchburg",2,"",0,0,1 "CR-Saturday-Fall-16-1404","11:04:00","11:04:00","North Leominster",3,"",0,0,1 "CR-Saturday-Fall-16-1404","11:12:00","11:12:00","Shirley",4,"",3,3,1 "CR-Saturday-Fall-16-1404","11:17:00","11:17:00","Ayer",5,"",0,0,1 "CR-Saturday-Fall-16-1404","11:25:00","11:25:00","Littleton / Rte 495",6,"",0,0,1 "CR-Saturday-Fall-16-1404","11:31:00","11:31:00","South Acton",7,"",0,0,1 "CR-Saturday-Fall-16-1404","11:36:00","11:36:00","West Concord",8,"",3,3,1 "CR-Saturday-Fall-16-1404","11:40:00","11:40:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1404","11:45:00","11:45:00","Lincoln",10,"",0,0,1 "CR-Saturday-Fall-16-1404","11:50:00","11:50:00","Kendal Green",11,"",3,3,1 "CR-Saturday-Fall-16-1404","11:54:00","11:54:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Saturday-Fall-16-1404","11:58:00","11:58:00","Waltham",13,"",0,0,1 "CR-Saturday-Fall-16-1404","12:02:00","12:02:00","Waverley",14,"",3,3,1 "CR-Saturday-Fall-16-1404","12:05:00","12:05:00","Belmont",15,"",3,3,1 "CR-Saturday-Fall-16-1404","12:10:00","12:10:00","Porter Square",16,"",0,0,1 "CR-Saturday-Fall-16-1404","12:20:00","12:20:00","North Station",17,"",1,0,0 "CR-Saturday-Fall-16-1405","13:10:00","13:10:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1405","13:20:00","13:20:00","Porter Square",2,"",0,0,1 "CR-Saturday-Fall-16-1405","13:24:00","13:24:00","Belmont",3,"",3,3,1 "CR-Saturday-Fall-16-1405","13:27:00","13:27:00","Waverley",4,"",3,3,1 "CR-Saturday-Fall-16-1405","13:32:00","13:32:00","Waltham",5,"",0,0,1 "CR-Saturday-Fall-16-1405","13:35:00","13:35:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Saturday-Fall-16-1405","13:39:00","13:39:00","Kendal Green",7,"",3,3,1 "CR-Saturday-Fall-16-1405","13:44:00","13:44:00","Lincoln",8,"",0,0,1 "CR-Saturday-Fall-16-1405","13:50:00","13:50:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1405","13:53:00","13:53:00","West Concord",10,"",3,3,1 "CR-Saturday-Fall-16-1405","13:59:00","13:59:00","South Acton",11,"",0,0,1 "CR-Saturday-Fall-16-1405","14:06:00","14:06:00","Littleton / Rte 495",12,"",0,0,1 "CR-Saturday-Fall-16-1405","14:13:00","14:13:00","Ayer",13,"",0,0,1 "CR-Saturday-Fall-16-1405","14:18:00","14:18:00","Shirley",14,"",3,3,1 "CR-Saturday-Fall-16-1405","14:26:00","14:26:00","North Leominster",15,"",0,0,1 "CR-Saturday-Fall-16-1405","14:36:00","14:36:00","Fitchburg",16,"",0,0,1 "CR-Saturday-Fall-16-1405","14:46:00","14:46:00","Wachusett",17,"",1,0,0 "CR-Saturday-Fall-16-1406","13:15:00","13:15:00","Wachusett",1,"",0,1,1 "CR-Saturday-Fall-16-1406","13:23:00","13:23:00","Fitchburg",2,"",0,0,1 "CR-Saturday-Fall-16-1406","13:29:00","13:29:00","North Leominster",3,"",0,0,1 "CR-Saturday-Fall-16-1406","13:37:00","13:37:00","Shirley",4,"",3,3,1 "CR-Saturday-Fall-16-1406","13:42:00","13:42:00","Ayer",5,"",0,0,1 "CR-Saturday-Fall-16-1406","13:50:00","13:50:00","Littleton / Rte 495",6,"",0,0,1 "CR-Saturday-Fall-16-1406","13:56:00","13:56:00","South Acton",7,"",0,0,1 "CR-Saturday-Fall-16-1406","14:01:00","14:01:00","West Concord",8,"",3,3,1 "CR-Saturday-Fall-16-1406","14:05:00","14:05:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1406","14:10:00","14:10:00","Lincoln",10,"",0,0,1 "CR-Saturday-Fall-16-1406","14:15:00","14:15:00","Kendal Green",11,"",3,3,1 "CR-Saturday-Fall-16-1406","14:19:00","14:19:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Saturday-Fall-16-1406","14:23:00","14:23:00","Waltham",13,"",0,0,1 "CR-Saturday-Fall-16-1406","14:27:00","14:27:00","Waverley",14,"",3,3,1 "CR-Saturday-Fall-16-1406","14:30:00","14:30:00","Belmont",15,"",3,3,1 "CR-Saturday-Fall-16-1406","14:35:00","14:35:00","Porter Square",16,"",0,0,1 "CR-Saturday-Fall-16-1406","14:45:00","14:45:00","North Station",17,"",1,0,0 "CR-Saturday-Fall-16-1407","15:30:00","15:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1407","15:40:00","15:40:00","Porter Square",2,"",0,0,1 "CR-Saturday-Fall-16-1407","15:44:00","15:44:00","Belmont",3,"",3,3,1 "CR-Saturday-Fall-16-1407","15:47:00","15:47:00","Waverley",4,"",3,3,1 "CR-Saturday-Fall-16-1407","15:52:00","15:52:00","Waltham",5,"",0,0,1 "CR-Saturday-Fall-16-1407","15:55:00","15:55:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Saturday-Fall-16-1407","15:59:00","15:59:00","Kendal Green",7,"",3,3,1 "CR-Saturday-Fall-16-1407","16:04:00","16:04:00","Lincoln",8,"",0,0,1 "CR-Saturday-Fall-16-1407","16:10:00","16:10:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1407","16:13:00","16:13:00","West Concord",10,"",3,3,1 "CR-Saturday-Fall-16-1407","16:19:00","16:19:00","South Acton",11,"",0,0,1 "CR-Saturday-Fall-16-1407","16:26:00","16:26:00","Littleton / Rte 495",12,"",0,0,1 "CR-Saturday-Fall-16-1407","16:33:00","16:33:00","Ayer",13,"",0,0,1 "CR-Saturday-Fall-16-1407","16:38:00","16:38:00","Shirley",14,"",3,3,1 "CR-Saturday-Fall-16-1407","16:46:00","16:46:00","North Leominster",15,"",0,0,1 "CR-Saturday-Fall-16-1407","16:58:00","16:58:00","Fitchburg",16,"",0,0,1 "CR-Saturday-Fall-16-1407","17:08:00","17:08:00","Wachusett",17,"",1,0,0 "CR-Saturday-Fall-16-1408","15:40:00","15:40:00","Wachusett",1,"",0,1,1 "CR-Saturday-Fall-16-1408","15:48:00","15:48:00","Fitchburg",2,"",0,0,1 "CR-Saturday-Fall-16-1408","15:54:00","15:54:00","North Leominster",3,"",0,0,1 "CR-Saturday-Fall-16-1408","16:02:00","16:02:00","Shirley",4,"",3,3,1 "CR-Saturday-Fall-16-1408","16:07:00","16:07:00","Ayer",5,"",0,0,1 "CR-Saturday-Fall-16-1408","16:15:00","16:15:00","Littleton / Rte 495",6,"",0,0,1 "CR-Saturday-Fall-16-1408","16:21:00","16:21:00","South Acton",7,"",0,0,1 "CR-Saturday-Fall-16-1408","16:26:00","16:26:00","West Concord",8,"",3,3,1 "CR-Saturday-Fall-16-1408","16:30:00","16:30:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1408","16:35:00","16:35:00","Lincoln",10,"",0,0,1 "CR-Saturday-Fall-16-1408","16:40:00","16:40:00","Kendal Green",11,"",3,3,1 "CR-Saturday-Fall-16-1408","16:44:00","16:44:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Saturday-Fall-16-1408","16:48:00","16:48:00","Waltham",13,"",0,0,1 "CR-Saturday-Fall-16-1408","16:52:00","16:52:00","Waverley",14,"",3,3,1 "CR-Saturday-Fall-16-1408","16:55:00","16:55:00","Belmont",15,"",3,3,1 "CR-Saturday-Fall-16-1408","17:00:00","17:00:00","Porter Square",16,"",0,0,1 "CR-Saturday-Fall-16-1408","17:10:00","17:10:00","North Station",17,"",1,0,0 "CR-Saturday-Fall-16-1409","17:45:00","17:45:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1409","17:55:00","17:55:00","Porter Square",2,"",0,0,1 "CR-Saturday-Fall-16-1409","17:59:00","17:59:00","Belmont",3,"",3,3,1 "CR-Saturday-Fall-16-1409","18:02:00","18:02:00","Waverley",4,"",3,3,1 "CR-Saturday-Fall-16-1409","18:07:00","18:07:00","Waltham",5,"",0,0,1 "CR-Saturday-Fall-16-1409","18:10:00","18:10:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Saturday-Fall-16-1409","18:14:00","18:14:00","Kendal Green",7,"",3,3,1 "CR-Saturday-Fall-16-1409","18:19:00","18:19:00","Lincoln",8,"",0,0,1 "CR-Saturday-Fall-16-1409","18:25:00","18:25:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1409","18:28:00","18:28:00","West Concord",10,"",3,3,1 "CR-Saturday-Fall-16-1409","18:34:00","18:34:00","South Acton",11,"",0,0,1 "CR-Saturday-Fall-16-1409","18:41:00","18:41:00","Littleton / Rte 495",12,"",0,0,1 "CR-Saturday-Fall-16-1409","18:48:00","18:48:00","Ayer",13,"",0,0,1 "CR-Saturday-Fall-16-1409","18:53:00","18:53:00","Shirley",14,"",3,3,1 "CR-Saturday-Fall-16-1409","19:01:00","19:01:00","North Leominster",15,"",0,0,1 "CR-Saturday-Fall-16-1409","19:11:00","19:11:00","Fitchburg",16,"",0,0,1 "CR-Saturday-Fall-16-1409","19:21:00","19:21:00","Wachusett",17,"",1,0,0 "CR-Saturday-Fall-16-1410","18:10:00","18:10:00","Wachusett",1,"",0,1,1 "CR-Saturday-Fall-16-1410","18:18:00","18:18:00","Fitchburg",2,"",0,0,1 "CR-Saturday-Fall-16-1410","18:24:00","18:24:00","North Leominster",3,"",0,0,1 "CR-Saturday-Fall-16-1410","18:32:00","18:32:00","Shirley",4,"",3,3,1 "CR-Saturday-Fall-16-1410","18:37:00","18:37:00","Ayer",5,"",0,0,1 "CR-Saturday-Fall-16-1410","18:45:00","18:45:00","Littleton / Rte 495",6,"",0,0,1 "CR-Saturday-Fall-16-1410","18:51:00","18:51:00","South Acton",7,"",0,0,1 "CR-Saturday-Fall-16-1410","18:56:00","18:56:00","West Concord",8,"",3,3,1 "CR-Saturday-Fall-16-1410","19:00:00","19:00:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1410","19:05:00","19:05:00","Lincoln",10,"",0,0,1 "CR-Saturday-Fall-16-1410","19:10:00","19:10:00","Kendal Green",11,"",3,3,1 "CR-Saturday-Fall-16-1410","19:14:00","19:14:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Saturday-Fall-16-1410","19:18:00","19:18:00","Waltham",13,"",0,0,1 "CR-Saturday-Fall-16-1410","19:22:00","19:22:00","Waverley",14,"",3,3,1 "CR-Saturday-Fall-16-1410","19:25:00","19:25:00","Belmont",15,"",3,3,1 "CR-Saturday-Fall-16-1410","19:30:00","19:30:00","Porter Square",16,"",0,0,1 "CR-Saturday-Fall-16-1410","19:40:00","19:40:00","North Station",17,"",1,0,0 "CR-Saturday-Fall-16-1411","19:55:00","19:55:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1411","20:05:00","20:05:00","Porter Square",2,"",0,0,1 "CR-Saturday-Fall-16-1411","20:09:00","20:09:00","Belmont",3,"",3,3,1 "CR-Saturday-Fall-16-1411","20:12:00","20:12:00","Waverley",4,"",3,3,1 "CR-Saturday-Fall-16-1411","20:17:00","20:17:00","Waltham",5,"",0,0,1 "CR-Saturday-Fall-16-1411","20:20:00","20:20:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Saturday-Fall-16-1411","20:24:00","20:24:00","Kendal Green",7,"",3,3,1 "CR-Saturday-Fall-16-1411","20:29:00","20:29:00","Lincoln",8,"",0,0,1 "CR-Saturday-Fall-16-1411","20:35:00","20:35:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1411","20:38:00","20:38:00","West Concord",10,"",3,3,1 "CR-Saturday-Fall-16-1411","20:44:00","20:44:00","South Acton",11,"",0,0,1 "CR-Saturday-Fall-16-1411","20:51:00","20:51:00","Littleton / Rte 495",12,"",0,0,1 "CR-Saturday-Fall-16-1411","20:58:00","20:58:00","Ayer",13,"",0,0,1 "CR-Saturday-Fall-16-1411","21:03:00","21:03:00","Shirley",14,"",3,3,1 "CR-Saturday-Fall-16-1411","21:11:00","21:11:00","North Leominster",15,"",0,0,1 "CR-Saturday-Fall-16-1411","21:21:00","21:21:00","Fitchburg",16,"",0,0,1 "CR-Saturday-Fall-16-1411","21:31:00","21:31:00","Wachusett",17,"",1,0,0 "CR-Saturday-Fall-16-1412","21:45:00","21:45:00","Wachusett",1,"",0,1,1 "CR-Saturday-Fall-16-1412","21:53:00","21:53:00","Fitchburg",2,"",0,0,1 "CR-Saturday-Fall-16-1412","21:59:00","21:59:00","North Leominster",3,"",0,0,1 "CR-Saturday-Fall-16-1412","22:07:00","22:07:00","Shirley",4,"",3,3,1 "CR-Saturday-Fall-16-1412","22:12:00","22:12:00","Ayer",5,"",0,0,1 "CR-Saturday-Fall-16-1412","22:20:00","22:20:00","Littleton / Rte 495",6,"",0,0,1 "CR-Saturday-Fall-16-1412","22:26:00","22:26:00","South Acton",7,"",0,0,1 "CR-Saturday-Fall-16-1412","22:31:00","22:31:00","West Concord",8,"",3,3,1 "CR-Saturday-Fall-16-1412","22:35:00","22:35:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1412","22:40:00","22:40:00","Lincoln",10,"",0,0,1 "CR-Saturday-Fall-16-1412","22:45:00","22:45:00","Kendal Green",11,"",3,3,1 "CR-Saturday-Fall-16-1412","22:49:00","22:49:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Saturday-Fall-16-1412","22:53:00","22:53:00","Waltham",13,"",0,0,1 "CR-Saturday-Fall-16-1412","22:57:00","22:57:00","Waverley",14,"",3,3,1 "CR-Saturday-Fall-16-1412","23:00:00","23:00:00","Belmont",15,"",3,3,1 "CR-Saturday-Fall-16-1412","23:05:00","23:05:00","Porter Square",16,"",0,0,1 "CR-Saturday-Fall-16-1412","23:15:00","23:15:00","North Station",17,"",1,0,0 "CR-Saturday-Fall-16-1413","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Saturday-Fall-16-1413","23:40:00","23:40:00","Porter Square",2,"",0,0,1 "CR-Saturday-Fall-16-1413","23:44:00","23:44:00","Belmont",3,"",3,3,1 "CR-Saturday-Fall-16-1413","23:47:00","23:47:00","Waverley",4,"",3,3,1 "CR-Saturday-Fall-16-1413","23:52:00","23:52:00","Waltham",5,"",0,0,1 "CR-Saturday-Fall-16-1413","23:55:00","23:55:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Saturday-Fall-16-1413","23:59:00","23:59:00","Kendal Green",7,"",3,3,1 "CR-Saturday-Fall-16-1413","24:04:00","24:04:00","Lincoln",8,"",0,0,1 "CR-Saturday-Fall-16-1413","24:10:00","24:10:00","Concord",9,"",0,0,1 "CR-Saturday-Fall-16-1413","24:13:00","24:13:00","West Concord",10,"",3,3,1 "CR-Saturday-Fall-16-1413","24:19:00","24:19:00","South Acton",11,"",0,0,1 "CR-Saturday-Fall-16-1413","24:26:00","24:26:00","Littleton / Rte 495",12,"",0,0,1 "CR-Saturday-Fall-16-1413","24:33:00","24:33:00","Ayer",13,"",0,0,1 "CR-Saturday-Fall-16-1413","24:38:00","24:38:00","Shirley",14,"",3,3,1 "CR-Saturday-Fall-16-1413","24:46:00","24:46:00","North Leominster",15,"",0,0,1 "CR-Saturday-Fall-16-1413","24:56:00","24:56:00","Fitchburg",16,"",0,0,1 "CR-Saturday-Fall-16-1413","25:06:00","25:06:00","Wachusett",17,"",1,0,0 "CR-Saturday-Fall-16-1500","7:00:00","7:00:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1500","7:13:00","7:13:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1500","7:17:00","7:17:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1500","7:25:00","7:25:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1500","7:30:00","7:30:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1500","7:40:00","7:40:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1500","7:44:00","7:44:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1500","7:49:00","7:49:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1500","7:54:00","7:54:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1500","7:57:00","7:57:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1500","8:00:00","8:00:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1500","8:05:00","8:05:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1500","8:08:00","8:08:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1500","8:11:00","8:11:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1500","8:21:00","8:21:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1500","8:25:00","8:25:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1500","8:30:00","8:30:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1501","6:40:00","6:40:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1501","6:46:00","6:46:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1501","6:50:00","6:50:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1501","6:58:00","6:58:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1501","7:01:00","7:01:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1501","7:04:00","7:04:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1501","7:09:00","7:09:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1501","7:12:00","7:12:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1501","7:15:00","7:15:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1501","7:20:00","7:20:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1501","7:26:00","7:26:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1501","7:31:00","7:31:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1501","7:37:00","7:37:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1501","7:41:00","7:41:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1501","7:50:00","7:50:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1501","7:55:00","7:55:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1501","8:10:00","8:10:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1502","10:01:00","10:01:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1502","10:11:00","10:11:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1502","10:15:00","10:15:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1502","10:20:00","10:20:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1502","8:50:00","8:50:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1502","9:03:00","9:03:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1502","9:07:00","9:07:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1502","9:15:00","9:15:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1502","9:20:00","9:20:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1502","9:30:00","9:30:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1502","9:34:00","9:34:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1502","9:39:00","9:39:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1502","9:44:00","9:44:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1502","9:47:00","9:47:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1502","9:50:00","9:50:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1502","9:55:00","9:55:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1502","9:58:00","9:58:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1503","10:10:00","10:10:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1503","8:40:00","8:40:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1503","8:46:00","8:46:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1503","8:50:00","8:50:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1503","8:58:00","8:58:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1503","9:01:00","9:01:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1503","9:04:00","9:04:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1503","9:09:00","9:09:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1503","9:12:00","9:12:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1503","9:15:00","9:15:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1503","9:20:00","9:20:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1503","9:26:00","9:26:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1503","9:31:00","9:31:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1503","9:37:00","9:37:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1503","9:41:00","9:41:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1503","9:50:00","9:50:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1503","9:55:00","9:55:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1504","10:50:00","10:50:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1504","11:03:00","11:03:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1504","11:07:00","11:07:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1504","11:15:00","11:15:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1504","11:20:00","11:20:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1504","11:30:00","11:30:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1504","11:34:00","11:34:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1504","11:39:00","11:39:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1504","11:44:00","11:44:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1504","11:47:00","11:47:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1504","11:50:00","11:50:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1504","11:55:00","11:55:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1504","11:58:00","11:58:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1504","12:01:00","12:01:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1504","12:11:00","12:11:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1504","12:15:00","12:15:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1504","12:20:00","12:20:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1505","10:40:00","10:40:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1505","10:46:00","10:46:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1505","10:50:00","10:50:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1505","10:58:00","10:58:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1505","11:01:00","11:01:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1505","11:04:00","11:04:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1505","11:09:00","11:09:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1505","11:12:00","11:12:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1505","11:15:00","11:15:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1505","11:20:00","11:20:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1505","11:26:00","11:26:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1505","11:31:00","11:31:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1505","11:37:00","11:37:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1505","11:41:00","11:41:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1505","11:50:00","11:50:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1505","11:55:00","11:55:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1505","12:10:00","12:10:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1506","12:50:00","12:50:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1506","13:03:00","13:03:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1506","13:07:00","13:07:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1506","13:15:00","13:15:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1506","13:20:00","13:20:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1506","13:30:00","13:30:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1506","13:34:00","13:34:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1506","13:39:00","13:39:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1506","13:44:00","13:44:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1506","13:47:00","13:47:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1506","13:50:00","13:50:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1506","13:55:00","13:55:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1506","13:58:00","13:58:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1506","14:01:00","14:01:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1506","14:11:00","14:11:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1506","14:15:00","14:15:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1506","14:20:00","14:20:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1507","12:40:00","12:40:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1507","12:46:00","12:46:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1507","12:50:00","12:50:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1507","12:58:00","12:58:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1507","13:01:00","13:01:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1507","13:04:00","13:04:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1507","13:09:00","13:09:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1507","13:12:00","13:12:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1507","13:15:00","13:15:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1507","13:20:00","13:20:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1507","13:26:00","13:26:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1507","13:31:00","13:31:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1507","13:37:00","13:37:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1507","13:41:00","13:41:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1507","13:50:00","13:50:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1507","13:55:00","13:55:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1507","14:10:00","14:10:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1508","14:30:00","14:30:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1508","14:43:00","14:43:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1508","14:47:00","14:47:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1508","14:55:00","14:55:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1508","15:00:00","15:00:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1508","15:10:00","15:10:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1508","15:14:00","15:14:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1508","15:19:00","15:19:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1508","15:24:00","15:24:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1508","15:27:00","15:27:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1508","15:30:00","15:30:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1508","15:35:00","15:35:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1508","15:38:00","15:38:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1508","15:41:00","15:41:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1508","15:51:00","15:51:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1508","15:55:00","15:55:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1508","16:00:00","16:00:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1509","14:20:00","14:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1509","14:26:00","14:26:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1509","14:30:00","14:30:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1509","14:38:00","14:38:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1509","14:41:00","14:41:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1509","14:44:00","14:44:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1509","14:49:00","14:49:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1509","14:52:00","14:52:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1509","14:55:00","14:55:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1509","15:00:00","15:00:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1509","15:06:00","15:06:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1509","15:11:00","15:11:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1509","15:17:00","15:17:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1509","15:21:00","15:21:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1509","15:30:00","15:30:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1509","15:35:00","15:35:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1509","15:50:00","15:50:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1510","16:30:00","16:30:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1510","16:43:00","16:43:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1510","16:47:00","16:47:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1510","16:55:00","16:55:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1510","17:00:00","17:00:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1510","17:10:00","17:10:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1510","17:14:00","17:14:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1510","17:19:00","17:19:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1510","17:24:00","17:24:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1510","17:27:00","17:27:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1510","17:30:00","17:30:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1510","17:35:00","17:35:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1510","17:38:00","17:38:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1510","17:41:00","17:41:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1510","17:51:00","17:51:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1510","17:55:00","17:55:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1510","18:00:00","18:00:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1511","16:20:00","16:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1511","16:26:00","16:26:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1511","16:30:00","16:30:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1511","16:38:00","16:38:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1511","16:41:00","16:41:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1511","16:44:00","16:44:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1511","16:49:00","16:49:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1511","16:52:00","16:52:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1511","16:55:00","16:55:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1511","17:00:00","17:00:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1511","17:06:00","17:06:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1511","17:11:00","17:11:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1511","17:17:00","17:17:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1511","17:21:00","17:21:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1511","17:30:00","17:30:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1511","17:35:00","17:35:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1511","17:50:00","17:50:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1512","18:30:00","18:30:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1512","18:43:00","18:43:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1512","18:47:00","18:47:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1512","18:55:00","18:55:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1512","19:00:00","19:00:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1512","19:10:00","19:10:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1512","19:14:00","19:14:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1512","19:19:00","19:19:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1512","19:24:00","19:24:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1512","19:27:00","19:27:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1512","19:30:00","19:30:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1512","19:35:00","19:35:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1512","19:38:00","19:38:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1512","19:41:00","19:41:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1512","19:51:00","19:51:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1512","19:55:00","19:55:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1512","20:00:00","20:00:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1513","18:20:00","18:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1513","18:26:00","18:26:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1513","18:30:00","18:30:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1513","18:38:00","18:38:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1513","18:41:00","18:41:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1513","18:44:00","18:44:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1513","18:49:00","18:49:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1513","18:52:00","18:52:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1513","18:55:00","18:55:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1513","19:00:00","19:00:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1513","19:06:00","19:06:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1513","19:11:00","19:11:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1513","19:17:00","19:17:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1513","19:21:00","19:21:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1513","19:30:00","19:30:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1513","19:35:00","19:35:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1513","19:50:00","19:50:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1514","20:30:00","20:30:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1514","20:43:00","20:43:00","Grafton",2,"",0,0,1 "CR-Saturday-Fall-16-1514","20:47:00","20:47:00","Westborough",3,"",0,0,1 "CR-Saturday-Fall-16-1514","20:55:00","20:55:00","Southborough",4,"",0,0,1 "CR-Saturday-Fall-16-1514","21:00:00","21:00:00","Ashland",5,"",0,0,1 "CR-Saturday-Fall-16-1514","21:10:00","21:10:00","Framingham",6,"",0,0,1 "CR-Saturday-Fall-16-1514","21:14:00","21:14:00","West Natick",7,"",0,0,1 "CR-Saturday-Fall-16-1514","21:19:00","21:19:00","Natick Center",8,"",0,0,1 "CR-Saturday-Fall-16-1514","21:24:00","21:24:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1514","21:27:00","21:27:00","Wellesley Hills",10,"",0,0,1 "CR-Saturday-Fall-16-1514","21:30:00","21:30:00","Wellesley Farms",11,"",0,0,1 "CR-Saturday-Fall-16-1514","21:35:00","21:35:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1514","21:38:00","21:38:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1514","21:41:00","21:41:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1514","21:51:00","21:51:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1514","21:55:00","21:55:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1514","22:00:00","22:00:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1515","20:20:00","20:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1515","20:26:00","20:26:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1515","20:30:00","20:30:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1515","20:38:00","20:38:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1515","20:41:00","20:41:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1515","20:44:00","20:44:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1515","20:49:00","20:49:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1515","20:52:00","20:52:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1515","20:55:00","20:55:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1515","21:00:00","21:00:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1515","21:06:00","21:06:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1515","21:11:00","21:11:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1515","21:17:00","21:17:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1515","21:21:00","21:21:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1515","21:30:00","21:30:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1515","21:35:00","21:35:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1515","21:50:00","21:50:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1516","23:00:00","23:00:00","Worcester",1,"",0,1,1 "CR-Saturday-Fall-16-1516","23:13:00","23:13:00","Grafton",2,"",3,3,1 "CR-Saturday-Fall-16-1516","23:17:00","23:17:00","Westborough",3,"",3,3,1 "CR-Saturday-Fall-16-1516","23:25:00","23:25:00","Southborough",4,"",3,3,1 "CR-Saturday-Fall-16-1516","23:30:00","23:30:00","Ashland",5,"",3,3,1 "CR-Saturday-Fall-16-1516","23:40:00","23:40:00","Framingham",6,"",3,3,1 "CR-Saturday-Fall-16-1516","23:44:00","23:44:00","West Natick",7,"",3,3,1 "CR-Saturday-Fall-16-1516","23:49:00","23:49:00","Natick Center",8,"",3,3,1 "CR-Saturday-Fall-16-1516","23:54:00","23:54:00","Wellesley Square",9,"",3,3,1 "CR-Saturday-Fall-16-1516","23:57:00","23:57:00","Wellesley Hills",10,"",3,3,1 "CR-Saturday-Fall-16-1516","24:00:00","24:00:00","Wellesley Farms",11,"",3,3,1 "CR-Saturday-Fall-16-1516","24:05:00","24:05:00","Auburndale",12,"",3,3,1 "CR-Saturday-Fall-16-1516","24:08:00","24:08:00","West Newton",13,"",3,3,1 "CR-Saturday-Fall-16-1516","24:11:00","24:11:00","Newtonville",14,"",3,3,1 "CR-Saturday-Fall-16-1516","24:21:00","24:21:00","Yawkey",15,"",0,0,0 "CR-Saturday-Fall-16-1516","24:25:00","24:25:00","Back Bay",16,"",0,0,0 "CR-Saturday-Fall-16-1516","24:30:00","24:30:00","South Station",17,"",1,0,0 "CR-Saturday-Fall-16-1517","22:40:00","22:40:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1517","22:46:00","22:46:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1517","22:50:00","22:50:00","Yawkey",3,"",0,0,1 "CR-Saturday-Fall-16-1517","22:58:00","22:58:00","Newtonville",4,"",3,3,1 "CR-Saturday-Fall-16-1517","23:01:00","23:01:00","West Newton",5,"",3,3,1 "CR-Saturday-Fall-16-1517","23:04:00","23:04:00","Auburndale",6,"",3,3,1 "CR-Saturday-Fall-16-1517","23:09:00","23:09:00","Wellesley Farms",7,"",0,0,1 "CR-Saturday-Fall-16-1517","23:12:00","23:12:00","Wellesley Hills",8,"",0,0,1 "CR-Saturday-Fall-16-1517","23:15:00","23:15:00","Wellesley Square",9,"",0,0,1 "CR-Saturday-Fall-16-1517","23:20:00","23:20:00","Natick Center",10,"",0,0,1 "CR-Saturday-Fall-16-1517","23:26:00","23:26:00","West Natick",11,"",0,0,1 "CR-Saturday-Fall-16-1517","23:31:00","23:31:00","Framingham",12,"",0,0,1 "CR-Saturday-Fall-16-1517","23:37:00","23:37:00","Ashland",13,"",0,0,1 "CR-Saturday-Fall-16-1517","23:41:00","23:41:00","Southborough",14,"",0,0,1 "CR-Saturday-Fall-16-1517","23:50:00","23:50:00","Westborough",15,"",0,0,1 "CR-Saturday-Fall-16-1517","23:55:00","23:55:00","Grafton",16,"",0,0,1 "CR-Saturday-Fall-16-1517","24:10:00","24:10:00","Worcester",17,"",1,0,0 "CR-Saturday-Fall-16-1601","7:10:00","7:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1601","7:15:00","7:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1601","7:18:00","7:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1601","7:24:00","7:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1601","7:28:00","7:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1601","7:30:00","7:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1601","7:33:00","7:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1601","7:35:00","7:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1601","7:39:00","7:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1601","7:42:00","7:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1601","7:46:00","7:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1601","7:50:00","7:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1602","8:00:00","8:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1602","8:05:00","8:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1602","8:08:00","8:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1602","8:11:00","8:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1602","8:16:00","8:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1602","8:18:00","8:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1602","8:20:00","8:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1602","8:22:00","8:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1602","8:26:00","8:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1602","8:30:00","8:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1602","8:34:00","8:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1602","8:39:00","8:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1603","9:10:00","9:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1603","9:15:00","9:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1603","9:18:00","9:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1603","9:24:00","9:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1603","9:28:00","9:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1603","9:30:00","9:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1603","9:33:00","9:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1603","9:35:00","9:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1603","9:39:00","9:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1603","9:42:00","9:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1603","9:46:00","9:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1603","9:50:00","9:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1604","10:00:00","10:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1604","10:05:00","10:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1604","10:08:00","10:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1604","10:11:00","10:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1604","10:16:00","10:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1604","10:18:00","10:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1604","10:20:00","10:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1604","10:22:00","10:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1604","10:26:00","10:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1604","10:30:00","10:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1604","10:34:00","10:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1604","10:39:00","10:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1605","11:10:00","11:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1605","11:15:00","11:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1605","11:18:00","11:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1605","11:24:00","11:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1605","11:28:00","11:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1605","11:30:00","11:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1605","11:33:00","11:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1605","11:35:00","11:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1605","11:39:00","11:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1605","11:42:00","11:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1605","11:46:00","11:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1605","11:50:00","11:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1606","12:00:00","12:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1606","12:05:00","12:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1606","12:08:00","12:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1606","12:11:00","12:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1606","12:16:00","12:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1606","12:18:00","12:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1606","12:20:00","12:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1606","12:22:00","12:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1606","12:26:00","12:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1606","12:30:00","12:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1606","12:34:00","12:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1606","12:39:00","12:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1607","13:10:00","13:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1607","13:15:00","13:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1607","13:18:00","13:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1607","13:24:00","13:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1607","13:28:00","13:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1607","13:30:00","13:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1607","13:33:00","13:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1607","13:35:00","13:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1607","13:39:00","13:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1607","13:42:00","13:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1607","13:46:00","13:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1607","13:50:00","13:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1608","14:00:00","14:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1608","14:05:00","14:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1608","14:08:00","14:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1608","14:11:00","14:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1608","14:16:00","14:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1608","14:18:00","14:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1608","14:20:00","14:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1608","14:22:00","14:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1608","14:26:00","14:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1608","14:30:00","14:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1608","14:34:00","14:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1608","14:39:00","14:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1609","15:10:00","15:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1609","15:15:00","15:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1609","15:18:00","15:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1609","15:24:00","15:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1609","15:28:00","15:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1609","15:30:00","15:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1609","15:33:00","15:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1609","15:35:00","15:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1609","15:39:00","15:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1609","15:42:00","15:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1609","15:46:00","15:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1609","15:50:00","15:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1610","16:00:00","16:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1610","16:05:00","16:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1610","16:08:00","16:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1610","16:11:00","16:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1610","16:16:00","16:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1610","16:18:00","16:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1610","16:20:00","16:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1610","16:22:00","16:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1610","16:26:00","16:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1610","16:30:00","16:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1610","16:34:00","16:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1610","16:39:00","16:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1611","17:10:00","17:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1611","17:15:00","17:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1611","17:18:00","17:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1611","17:24:00","17:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1611","17:28:00","17:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1611","17:30:00","17:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1611","17:33:00","17:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1611","17:35:00","17:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1611","17:39:00","17:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1611","17:42:00","17:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1611","17:46:00","17:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1611","17:50:00","17:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1612","18:00:00","18:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1612","18:05:00","18:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1612","18:08:00","18:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1612","18:11:00","18:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1612","18:16:00","18:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1612","18:18:00","18:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1612","18:20:00","18:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1612","18:22:00","18:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1612","18:26:00","18:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1612","18:30:00","18:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1612","18:34:00","18:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1612","18:39:00","18:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1613","19:10:00","19:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1613","19:15:00","19:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1613","19:18:00","19:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1613","19:24:00","19:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1613","19:28:00","19:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1613","19:30:00","19:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1613","19:33:00","19:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1613","19:35:00","19:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1613","19:39:00","19:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1613","19:42:00","19:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1613","19:46:00","19:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1613","19:50:00","19:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1614","20:00:00","20:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1614","20:05:00","20:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1614","20:08:00","20:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1614","20:11:00","20:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1614","20:16:00","20:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1614","20:18:00","20:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1614","20:20:00","20:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1614","20:22:00","20:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1614","20:26:00","20:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1614","20:30:00","20:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1614","20:34:00","20:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1614","20:39:00","20:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1615","21:10:00","21:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1615","21:15:00","21:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1615","21:18:00","21:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1615","21:24:00","21:24:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1615","21:28:00","21:28:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1615","21:30:00","21:30:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1615","21:33:00","21:33:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1615","21:35:00","21:35:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1615","21:39:00","21:39:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1615","21:42:00","21:42:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1615","21:46:00","21:46:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1615","21:50:00","21:50:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1616","22:00:00","22:00:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1616","22:05:00","22:05:00","Needham Center",2,"",0,0,1 "CR-Saturday-Fall-16-1616","22:08:00","22:08:00","Needham Junction",3,"",0,0,1 "CR-Saturday-Fall-16-1616","22:11:00","22:11:00","Hersey",4,"",0,0,1 "CR-Saturday-Fall-16-1616","22:16:00","22:16:00","West Roxbury",5,"",0,0,1 "CR-Saturday-Fall-16-1616","22:18:00","22:18:00","Highland",6,"",0,0,1 "CR-Saturday-Fall-16-1616","22:20:00","22:20:00","Bellevue",7,"",0,0,1 "CR-Saturday-Fall-16-1616","22:22:00","22:22:00","Roslindale Village",8,"",0,0,1 "CR-Saturday-Fall-16-1616","22:26:00","22:26:00","Forest Hills",9,"",0,0,1 "CR-Saturday-Fall-16-1616","22:30:00","22:30:00","Ruggles",10,"",0,0,0 "CR-Saturday-Fall-16-1616","22:34:00","22:34:00","Back Bay",11,"",0,0,0 "CR-Saturday-Fall-16-1616","22:39:00","22:39:00","South Station",12,"",1,0,0 "CR-Saturday-Fall-16-1617","22:45:00","22:45:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1617","22:50:00","22:50:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1617","22:54:00","22:54:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1617","23:00:00","23:00:00","Forest Hills",4,"",0,0,1 "CR-Saturday-Fall-16-1617","23:03:00","23:03:00","Roslindale Village",5,"",0,0,1 "CR-Saturday-Fall-16-1617","23:06:00","23:06:00","Bellevue",6,"",0,0,1 "CR-Saturday-Fall-16-1617","23:08:00","23:08:00","Highland",7,"",0,0,1 "CR-Saturday-Fall-16-1617","23:10:00","23:10:00","West Roxbury",8,"",0,0,1 "CR-Saturday-Fall-16-1617","23:15:00","23:15:00","Hersey",9,"",0,0,1 "CR-Saturday-Fall-16-1617","23:18:00","23:18:00","Needham Junction",10,"",0,0,1 "CR-Saturday-Fall-16-1617","23:21:00","23:21:00","Needham Center",11,"",0,0,1 "CR-Saturday-Fall-16-1617","23:25:00","23:25:00","Needham Heights",12,"",1,0,0 "CR-Saturday-Fall-16-1618","23:35:00","23:35:00","Needham Heights",1,"",0,1,1 "CR-Saturday-Fall-16-1618","23:55:00","23:55:00","Back Bay",2,"",0,0,0 "CR-Saturday-Fall-16-1618","24:00:00","24:00:00","South Station",3,"",1,0,0 "CR-Saturday-Fall-16-1702","6:35:00","6:35:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1702","6:42:00","6:42:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1702","6:49:00","6:49:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1702","6:55:00","6:55:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1702","6:59:00","6:59:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1702","7:03:00","7:03:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1702","7:05:00","7:05:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1702","7:08:00","7:08:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1702","7:10:00","7:10:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1702","7:13:00","7:13:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1702","7:16:00","7:16:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1702","7:26:00","7:26:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1702","7:30:00","7:30:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1702","7:35:00","7:35:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1703","7:20:00","7:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1703","7:25:00","7:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1703","7:28:00","7:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1703","7:38:00","7:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1703","7:41:00","7:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1703","7:44:00","7:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1703","7:46:00","7:46:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1703","7:49:00","7:49:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1703","7:51:00","7:51:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1703","7:55:00","7:55:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1703","7:59:00","7:59:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1703","8:05:00","8:05:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1703","8:12:00","8:12:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1703","8:19:00","8:19:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1704","8:35:00","8:35:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1704","8:42:00","8:42:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1704","8:49:00","8:49:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1704","8:56:00","8:56:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1704","9:00:00","9:00:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1704","9:05:00","9:05:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1704","9:07:00","9:07:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1704","9:10:00","9:10:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1704","9:12:00","9:12:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1704","9:15:00","9:15:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1704","9:18:00","9:18:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1704","9:28:00","9:28:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1704","9:33:00","9:33:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1704","9:38:00","9:38:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1705","10:05:00","10:05:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1705","10:12:00","10:12:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1705","10:19:00","10:19:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1705","9:20:00","9:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1705","9:25:00","9:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1705","9:28:00","9:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1705","9:38:00","9:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1705","9:41:00","9:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1705","9:44:00","9:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1705","9:46:00","9:46:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1705","9:49:00","9:49:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1705","9:51:00","9:51:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1705","9:55:00","9:55:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1705","9:59:00","9:59:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1706","10:40:00","10:40:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1706","10:47:00","10:47:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1706","10:54:00","10:54:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1706","11:01:00","11:01:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1706","11:06:00","11:06:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1706","11:10:00","11:10:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1706","11:12:00","11:12:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1706","11:16:00","11:16:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1706","11:19:00","11:19:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1706","11:21:00","11:21:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1706","11:24:00","11:24:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1706","11:34:00","11:34:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1706","11:38:00","11:38:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1706","11:43:00","11:43:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1707","11:20:00","11:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1707","11:25:00","11:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1707","11:28:00","11:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1707","11:38:00","11:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1707","11:41:00","11:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1707","11:44:00","11:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1707","11:46:00","11:46:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1707","11:49:00","11:49:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1707","11:51:00","11:51:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1707","11:55:00","11:55:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1707","11:59:00","11:59:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1707","12:05:00","12:05:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1707","12:12:00","12:12:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1707","12:19:00","12:19:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1708","12:40:00","12:40:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1708","12:47:00","12:47:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1708","12:54:00","12:54:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1708","13:01:00","13:01:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1708","13:06:00","13:06:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1708","13:10:00","13:10:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1708","13:12:00","13:12:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1708","13:16:00","13:16:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1708","13:19:00","13:19:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1708","13:21:00","13:21:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1708","13:24:00","13:24:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1708","13:34:00","13:34:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1708","13:38:00","13:38:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1708","13:43:00","13:43:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1709","13:20:00","13:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1709","13:25:00","13:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1709","13:28:00","13:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1709","13:38:00","13:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1709","13:41:00","13:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1709","13:45:00","13:45:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1709","13:47:00","13:47:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1709","13:50:00","13:50:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1709","13:53:00","13:53:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1709","13:57:00","13:57:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1709","14:03:00","14:03:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1709","14:10:00","14:10:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1709","14:17:00","14:17:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1709","14:24:00","14:24:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1710","14:35:00","14:35:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1710","14:42:00","14:42:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1710","14:49:00","14:49:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1710","14:56:00","14:56:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1710","15:01:00","15:01:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1710","15:05:00","15:05:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1710","15:07:00","15:07:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1710","15:11:00","15:11:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1710","15:14:00","15:14:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1710","15:16:00","15:16:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1710","15:19:00","15:19:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1710","15:29:00","15:29:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1710","15:33:00","15:33:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1710","15:38:00","15:38:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1711","15:20:00","15:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1711","15:25:00","15:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1711","15:28:00","15:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1711","15:38:00","15:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1711","15:41:00","15:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1711","15:45:00","15:45:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1711","15:47:00","15:47:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1711","15:50:00","15:50:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1711","15:53:00","15:53:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1711","15:57:00","15:57:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1711","16:03:00","16:03:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1711","16:10:00","16:10:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1711","16:17:00","16:17:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1711","16:24:00","16:24:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1712","16:35:00","16:35:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1712","16:42:00","16:42:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1712","16:49:00","16:49:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1712","16:56:00","16:56:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1712","17:01:00","17:01:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1712","17:05:00","17:05:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1712","17:07:00","17:07:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1712","17:11:00","17:11:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1712","17:14:00","17:14:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1712","17:16:00","17:16:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1712","17:19:00","17:19:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1712","17:29:00","17:29:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1712","17:33:00","17:33:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1712","17:38:00","17:38:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1713","17:20:00","17:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1713","17:25:00","17:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1713","17:28:00","17:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1713","17:38:00","17:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1713","17:41:00","17:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1713","17:45:00","17:45:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1713","17:47:00","17:47:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1713","17:50:00","17:50:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1713","17:53:00","17:53:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1713","17:57:00","17:57:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1713","18:03:00","18:03:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1713","18:10:00","18:10:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1713","18:17:00","18:17:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1713","18:24:00","18:24:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1714","18:35:00","18:35:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1714","18:42:00","18:42:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1714","18:49:00","18:49:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1714","18:55:00","18:55:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1714","18:59:00","18:59:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1714","19:03:00","19:03:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1714","19:05:00","19:05:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1714","19:08:00","19:08:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1714","19:10:00","19:10:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1714","19:13:00","19:13:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1714","19:16:00","19:16:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1714","19:26:00","19:26:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1714","19:30:00","19:30:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1714","19:35:00","19:35:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1715","19:20:00","19:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1715","19:25:00","19:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1715","19:28:00","19:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1715","19:38:00","19:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1715","19:41:00","19:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1715","19:44:00","19:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1715","19:46:00","19:46:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1715","19:49:00","19:49:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1715","19:52:00","19:52:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1715","19:56:00","19:56:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1715","20:01:00","20:01:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1715","20:07:00","20:07:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1715","20:15:00","20:15:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1715","20:22:00","20:22:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1716","20:35:00","20:35:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1716","20:42:00","20:42:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1716","20:49:00","20:49:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1716","20:55:00","20:55:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1716","20:59:00","20:59:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1716","21:03:00","21:03:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1716","21:05:00","21:05:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1716","21:08:00","21:08:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1716","21:10:00","21:10:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1716","21:13:00","21:13:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1716","21:16:00","21:16:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1716","21:26:00","21:26:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1716","21:30:00","21:30:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1716","21:35:00","21:35:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1717","21:20:00","21:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1717","21:25:00","21:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1717","21:28:00","21:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1717","21:38:00","21:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1717","21:41:00","21:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1717","21:44:00","21:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1717","21:46:00","21:46:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1717","21:49:00","21:49:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1717","21:51:00","21:51:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1717","21:55:00","21:55:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1717","21:59:00","21:59:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1717","22:05:00","22:05:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1717","22:12:00","22:12:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1717","22:19:00","22:19:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1718","22:35:00","22:35:00","Forge Park / 495",1,"",0,1,1 "CR-Saturday-Fall-16-1718","22:42:00","22:42:00","Franklin",2,"",0,0,1 "CR-Saturday-Fall-16-1718","22:49:00","22:49:00","Norfolk",3,"",0,0,1 "CR-Saturday-Fall-16-1718","22:55:00","22:55:00","Walpole",4,"",0,0,1 "CR-Saturday-Fall-16-1718","22:59:00","22:59:00","Windsor Gardens",5,"",0,0,1 "CR-Saturday-Fall-16-1718","23:03:00","23:03:00","Norwood Central",6,"",0,0,1 "CR-Saturday-Fall-16-1718","23:05:00","23:05:00","Norwood Depot",7,"",0,0,1 "CR-Saturday-Fall-16-1718","23:08:00","23:08:00","Islington",8,"",0,0,1 "CR-Saturday-Fall-16-1718","23:10:00","23:10:00","Dedham Corp Center",9,"",0,0,1 "CR-Saturday-Fall-16-1718","23:13:00","23:13:00","Endicott",10,"",0,0,1 "CR-Saturday-Fall-16-1718","23:16:00","23:16:00","Readville",11,"",0,0,1 "CR-Saturday-Fall-16-1718","23:26:00","23:26:00","Ruggles",12,"",0,0,0 "CR-Saturday-Fall-16-1718","23:30:00","23:30:00","Back Bay",13,"",0,0,0 "CR-Saturday-Fall-16-1718","23:35:00","23:35:00","South Station",14,"",1,0,0 "CR-Saturday-Fall-16-1719","23:20:00","23:20:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1719","23:25:00","23:25:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1719","23:28:00","23:28:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1719","23:38:00","23:38:00","Readville",4,"",0,0,1 "CR-Saturday-Fall-16-1719","23:41:00","23:41:00","Endicott",5,"",0,0,1 "CR-Saturday-Fall-16-1719","23:44:00","23:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Saturday-Fall-16-1719","23:46:00","23:46:00","Islington",7,"",0,0,1 "CR-Saturday-Fall-16-1719","23:49:00","23:49:00","Norwood Depot",8,"",0,0,1 "CR-Saturday-Fall-16-1719","23:51:00","23:51:00","Norwood Central",9,"",0,0,1 "CR-Saturday-Fall-16-1719","23:55:00","23:55:00","Windsor Gardens",10,"",0,0,1 "CR-Saturday-Fall-16-1719","23:59:00","23:59:00","Walpole",11,"",0,0,1 "CR-Saturday-Fall-16-1719","24:05:00","24:05:00","Norfolk",12,"",0,0,1 "CR-Saturday-Fall-16-1719","24:12:00","24:12:00","Franklin",13,"",0,0,1 "CR-Saturday-Fall-16-1719","24:19:00","24:19:00","Forge Park / 495",14,"",1,0,0 "CR-Saturday-Fall-16-1752","7:30:00","7:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1752","7:33:00","7:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1752","7:37:00","7:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1752","7:40:00","7:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1752","7:42:00","7:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1752","7:44:00","7:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1752","7:47:00","7:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1752","7:55:00","7:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1753","7:50:00","7:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1753","7:58:00","7:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1753","8:01:00","8:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1753","8:03:00","8:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1753","8:05:00","8:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1753","8:07:00","8:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1753","8:11:00","8:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1753","8:15:00","8:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1754","8:30:00","8:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1754","8:33:00","8:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1754","8:37:00","8:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1754","8:40:00","8:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1754","8:42:00","8:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1754","8:44:00","8:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1754","8:47:00","8:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1754","8:55:00","8:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1755","8:50:00","8:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1755","8:58:00","8:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1755","9:01:00","9:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1755","9:03:00","9:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1755","9:05:00","9:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1755","9:07:00","9:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1755","9:11:00","9:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1755","9:15:00","9:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1756","9:30:00","9:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1756","9:33:00","9:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1756","9:37:00","9:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1756","9:40:00","9:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1756","9:42:00","9:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1756","9:44:00","9:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1756","9:47:00","9:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1756","9:55:00","9:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1757","10:01:00","10:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1757","10:03:00","10:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1757","10:05:00","10:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1757","10:07:00","10:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1757","10:11:00","10:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1757","10:15:00","10:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1757","9:50:00","9:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1757","9:58:00","9:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1758","10:30:00","10:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1758","10:33:00","10:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1758","10:37:00","10:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1758","10:40:00","10:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1758","10:42:00","10:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1758","10:44:00","10:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1758","10:47:00","10:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1758","10:55:00","10:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1759","10:50:00","10:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1759","10:58:00","10:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1759","11:01:00","11:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1759","11:03:00","11:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1759","11:05:00","11:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1759","11:07:00","11:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1759","11:11:00","11:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1759","11:15:00","11:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1760","11:30:00","11:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1760","11:33:00","11:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1760","11:37:00","11:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1760","11:40:00","11:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1760","11:42:00","11:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1760","11:44:00","11:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1760","11:47:00","11:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1760","11:55:00","11:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1761","11:50:00","11:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1761","11:58:00","11:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1761","12:01:00","12:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1761","12:03:00","12:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1761","12:05:00","12:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1761","12:07:00","12:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1761","12:11:00","12:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1761","12:15:00","12:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1762","12:30:00","12:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1762","12:33:00","12:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1762","12:37:00","12:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1762","12:40:00","12:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1762","12:42:00","12:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1762","12:44:00","12:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1762","12:47:00","12:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1762","12:55:00","12:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1763","12:50:00","12:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1763","12:58:00","12:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1763","13:01:00","13:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1763","13:03:00","13:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1763","13:05:00","13:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1763","13:07:00","13:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1763","13:11:00","13:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1763","13:15:00","13:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1764","13:30:00","13:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1764","13:33:00","13:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1764","13:37:00","13:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1764","13:40:00","13:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1764","13:42:00","13:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1764","13:44:00","13:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1764","13:47:00","13:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1764","13:55:00","13:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1765","13:50:00","13:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1765","13:58:00","13:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1765","14:01:00","14:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1765","14:03:00","14:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1765","14:05:00","14:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1765","14:07:00","14:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1765","14:11:00","14:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1765","14:15:00","14:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1766","14:30:00","14:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1766","14:33:00","14:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1766","14:37:00","14:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1766","14:40:00","14:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1766","14:42:00","14:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1766","14:44:00","14:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1766","14:47:00","14:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1766","14:55:00","14:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1767","14:50:00","14:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1767","14:58:00","14:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1767","15:01:00","15:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1767","15:03:00","15:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1767","15:05:00","15:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1767","15:07:00","15:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1767","15:11:00","15:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1767","15:15:00","15:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1768","15:30:00","15:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1768","15:33:00","15:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1768","15:37:00","15:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1768","15:40:00","15:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1768","15:42:00","15:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1768","15:44:00","15:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1768","15:47:00","15:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1768","15:55:00","15:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1769","15:50:00","15:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1769","15:58:00","15:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1769","16:01:00","16:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1769","16:03:00","16:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1769","16:05:00","16:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1769","16:07:00","16:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1769","16:11:00","16:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1769","16:15:00","16:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1770","16:30:00","16:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1770","16:33:00","16:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1770","16:37:00","16:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1770","16:40:00","16:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1770","16:42:00","16:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1770","16:44:00","16:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1770","16:47:00","16:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1770","16:55:00","16:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1771","16:50:00","16:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1771","16:58:00","16:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1771","17:01:00","17:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1771","17:03:00","17:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1771","17:05:00","17:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1771","17:07:00","17:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1771","17:11:00","17:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1771","17:15:00","17:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1772","17:30:00","17:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1772","17:33:00","17:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1772","17:37:00","17:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1772","17:40:00","17:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1772","17:42:00","17:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1772","17:44:00","17:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1772","17:47:00","17:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1772","17:55:00","17:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1773","17:50:00","17:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1773","17:58:00","17:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1773","18:01:00","18:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1773","18:03:00","18:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1773","18:05:00","18:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1773","18:07:00","18:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1773","18:11:00","18:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1773","18:15:00","18:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1774","18:30:00","18:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1774","18:33:00","18:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1774","18:37:00","18:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1774","18:40:00","18:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1774","18:42:00","18:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1774","18:44:00","18:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1774","18:47:00","18:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1774","18:55:00","18:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1775","18:50:00","18:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1775","18:58:00","18:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1775","19:01:00","19:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1775","19:03:00","19:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1775","19:05:00","19:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1775","19:07:00","19:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1775","19:11:00","19:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1775","19:15:00","19:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1776","19:30:00","19:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1776","19:33:00","19:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1776","19:37:00","19:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1776","19:40:00","19:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1776","19:42:00","19:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1776","19:44:00","19:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1776","19:47:00","19:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1776","19:55:00","19:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1777","19:50:00","19:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1777","19:58:00","19:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1777","20:01:00","20:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1777","20:03:00","20:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1777","20:05:00","20:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1777","20:07:00","20:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1777","20:11:00","20:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1777","20:15:00","20:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1778","20:30:00","20:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1778","20:33:00","20:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1778","20:37:00","20:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1778","20:40:00","20:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1778","20:42:00","20:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1778","20:44:00","20:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1778","20:47:00","20:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1778","20:55:00","20:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1779","20:50:00","20:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1779","20:58:00","20:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1779","21:01:00","21:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1779","21:03:00","21:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1779","21:05:00","21:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1779","21:07:00","21:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1779","21:11:00","21:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1779","21:15:00","21:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1780","21:30:00","21:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1780","21:33:00","21:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1780","21:37:00","21:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1780","21:40:00","21:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1780","21:42:00","21:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1780","21:44:00","21:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1780","21:47:00","21:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1780","21:55:00","21:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1781","21:50:00","21:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1781","21:58:00","21:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1781","22:01:00","22:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1781","22:03:00","22:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1781","22:05:00","22:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1781","22:07:00","22:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1781","22:11:00","22:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1781","22:15:00","22:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1782","22:30:00","22:30:00","Readville",1,"",0,1,1 "CR-Saturday-Fall-16-1782","22:33:00","22:33:00","Fairmount",2,"",3,3,1 "CR-Saturday-Fall-16-1782","22:37:00","22:37:00","Morton Street",3,"",3,3,1 "CR-Saturday-Fall-16-1782","22:40:00","22:40:00","Talbot Avenue",4,"",3,3,1 "CR-Saturday-Fall-16-1782","22:42:00","22:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Saturday-Fall-16-1782","22:44:00","22:44:00","Uphams Corner",6,"",3,3,1 "CR-Saturday-Fall-16-1782","22:47:00","22:47:00","Newmarket",7,"",3,3,1 "CR-Saturday-Fall-16-1782","22:55:00","22:55:00","South Station",8,"",1,0,0 "CR-Saturday-Fall-16-1783","22:50:00","22:50:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1783","22:58:00","22:58:00","Newmarket",2,"",3,3,1 "CR-Saturday-Fall-16-1783","23:01:00","23:01:00","Uphams Corner",3,"",3,3,1 "CR-Saturday-Fall-16-1783","23:03:00","23:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Saturday-Fall-16-1783","23:05:00","23:05:00","Talbot Avenue",5,"",3,3,1 "CR-Saturday-Fall-16-1783","23:07:00","23:07:00","Morton Street",6,"",3,3,1 "CR-Saturday-Fall-16-1783","23:11:00","23:11:00","Fairmount",7,"",3,3,1 "CR-Saturday-Fall-16-1783","23:15:00","23:15:00","Readville",8,"",1,0,0 "CR-Saturday-Fall-16-1801","6:45:00","6:45:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1801","6:50:00","6:50:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1801","6:53:00","6:53:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1801","7:01:00","7:01:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1801","7:06:00","7:06:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1801","7:11:00","7:11:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1801","7:16:00","7:16:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1801","7:24:00","7:24:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1801","7:31:00","7:31:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1801","7:40:00","7:40:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1801","7:50:00","7:50:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1802","6:35:00","6:35:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1802","6:45:00","6:45:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1802","6:53:00","6:53:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1802","7:00:00","7:00:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1802","7:08:00","7:08:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1802","7:15:00","7:15:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1802","7:20:00","7:20:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1802","7:25:00","7:25:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1802","7:35:00","7:35:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1802","7:38:00","7:38:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1802","7:43:00","7:43:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1803","10:05:00","10:05:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1803","10:10:00","10:10:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1803","10:13:00","10:13:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1803","10:21:00","10:21:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1803","10:26:00","10:26:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1803","10:31:00","10:31:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1803","10:36:00","10:36:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1803","10:44:00","10:44:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1803","10:51:00","10:51:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1803","11:00:00","11:00:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1803","11:10:00","11:10:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1804","8:35:00","8:35:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1804","8:45:00","8:45:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1804","8:53:00","8:53:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1804","9:00:00","9:00:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1804","9:08:00","9:08:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1804","9:15:00","9:15:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1804","9:20:00","9:20:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1804","9:25:00","9:25:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1804","9:35:00","9:35:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1804","9:38:00","9:38:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1804","9:43:00","9:43:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1805","11:05:00","11:05:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1805","11:10:00","11:10:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1805","11:13:00","11:13:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1805","11:21:00","11:21:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1805","11:31:00","11:31:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1805","11:36:00","11:36:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1805","11:41:00","11:41:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1805","11:49:00","11:49:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1805","11:56:00","11:56:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1805","12:05:00","12:05:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1805","12:15:00","12:15:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1806","11:20:00","11:20:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1806","11:30:00","11:30:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1806","11:38:00","11:38:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1806","11:45:00","11:45:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1806","11:53:00","11:53:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1806","12:00:00","12:00:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1806","12:05:00","12:05:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1806","12:10:00","12:10:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1806","12:22:00","12:22:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1806","12:25:00","12:25:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1806","12:30:00","12:30:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1807","13:05:00","13:05:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1807","13:10:00","13:10:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1807","13:13:00","13:13:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1807","13:21:00","13:21:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1807","13:31:00","13:31:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1807","13:36:00","13:36:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1807","13:41:00","13:41:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1807","13:49:00","13:49:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1807","13:56:00","13:56:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1807","14:05:00","14:05:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1807","14:15:00","14:15:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1808","12:55:00","12:55:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1808","13:05:00","13:05:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1808","13:13:00","13:13:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1808","13:20:00","13:20:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1808","13:28:00","13:28:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1808","13:35:00","13:35:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1808","13:40:00","13:40:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1808","13:45:00","13:45:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1808","13:55:00","13:55:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1808","13:58:00","13:58:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1808","14:03:00","14:03:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1809","14:25:00","14:25:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1809","14:30:00","14:30:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1809","14:33:00","14:33:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1809","14:41:00","14:41:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1809","14:46:00","14:46:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1809","14:51:00","14:51:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1809","14:56:00","14:56:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1809","15:04:00","15:04:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1809","15:11:00","15:11:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1809","15:20:00","15:20:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1809","15:30:00","15:30:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1810","14:56:00","14:56:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1810","15:06:00","15:06:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1810","15:14:00","15:14:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1810","15:24:00","15:24:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1810","15:32:00","15:32:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1810","15:39:00","15:39:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1810","15:44:00","15:44:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1810","15:49:00","15:49:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1810","15:59:00","15:59:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1810","16:02:00","16:02:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1810","16:07:00","16:07:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1811","16:35:00","16:35:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1811","16:40:00","16:40:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1811","16:43:00","16:43:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1811","16:51:00","16:51:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1811","16:56:00","16:56:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1811","17:01:00","17:01:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1811","17:06:00","17:06:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1811","17:14:00","17:14:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1811","17:21:00","17:21:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1811","17:30:00","17:30:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1811","17:40:00","17:40:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1812","16:56:00","16:56:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1812","17:06:00","17:06:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1812","17:14:00","17:14:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1812","17:24:00","17:24:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1812","17:32:00","17:32:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1812","17:39:00","17:39:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1812","17:44:00","17:44:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1812","17:49:00","17:49:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1812","17:59:00","17:59:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1812","18:02:00","18:02:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1812","18:07:00","18:07:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1813","18:45:00","18:45:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1813","18:50:00","18:50:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1813","18:53:00","18:53:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1813","19:01:00","19:01:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1813","19:06:00","19:06:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1813","19:11:00","19:11:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1813","19:16:00","19:16:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1813","19:24:00","19:24:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1813","19:31:00","19:31:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1813","19:40:00","19:40:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1813","19:50:00","19:50:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1814","19:05:00","19:05:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1814","19:15:00","19:15:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1814","19:23:00","19:23:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1814","19:30:00","19:30:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1814","19:38:00","19:38:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1814","19:45:00","19:45:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1814","19:50:00","19:50:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1814","19:55:00","19:55:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1814","20:05:00","20:05:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1814","20:08:00","20:08:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1814","20:13:00","20:13:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1815","20:45:00","20:45:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1815","20:50:00","20:50:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1815","20:53:00","20:53:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1815","21:01:00","21:01:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1815","21:06:00","21:06:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1815","21:11:00","21:11:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1815","21:16:00","21:16:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1815","21:24:00","21:24:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1815","21:31:00","21:31:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1815","21:40:00","21:40:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1815","21:50:00","21:50:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1816","20:52:00","20:52:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1816","21:02:00","21:02:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1816","21:10:00","21:10:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1816","21:20:00","21:20:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1816","21:28:00","21:28:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1816","21:35:00","21:35:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1816","21:40:00","21:40:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1816","21:45:00","21:45:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1816","21:55:00","21:55:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1816","21:58:00","21:58:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1816","22:03:00","22:03:00","South Station",11,"",1,0,0 "CR-Saturday-Fall-16-1817","23:10:00","23:10:00","South Station",1,"",0,1,1 "CR-Saturday-Fall-16-1817","23:15:00","23:15:00","Back Bay",2,"",0,0,1 "CR-Saturday-Fall-16-1817","23:18:00","23:18:00","Ruggles",3,"",0,0,1 "CR-Saturday-Fall-16-1817","23:26:00","23:26:00","Hyde Park",4,"",0,0,1 "CR-Saturday-Fall-16-1817","23:31:00","23:31:00","Route 128",5,"",0,0,1 "CR-Saturday-Fall-16-1817","23:36:00","23:36:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1817","23:41:00","23:41:00","Sharon",7,"",0,0,1 "CR-Saturday-Fall-16-1817","23:49:00","23:49:00","Mansfield",8,"",0,0,1 "CR-Saturday-Fall-16-1817","23:56:00","23:56:00","Attleboro",9,"",0,0,1 "CR-Saturday-Fall-16-1817","24:05:00","24:05:00","South Attleboro",10,"",0,0,1 "CR-Saturday-Fall-16-1817","24:15:00","24:15:00","Providence",11,"",1,0,0 "CR-Saturday-Fall-16-1818","22:00:00","22:00:00","Providence",1,"",0,1,1 "CR-Saturday-Fall-16-1818","22:10:00","22:10:00","South Attleboro",2,"",0,0,1 "CR-Saturday-Fall-16-1818","22:18:00","22:18:00","Attleboro",3,"",0,0,1 "CR-Saturday-Fall-16-1818","22:25:00","22:25:00","Mansfield",4,"",0,0,1 "CR-Saturday-Fall-16-1818","22:33:00","22:33:00","Sharon",5,"",0,0,1 "CR-Saturday-Fall-16-1818","22:40:00","22:40:00","Canton Junction",6,"",0,0,1 "CR-Saturday-Fall-16-1818","22:45:00","22:45:00","Route 128",7,"",0,0,1 "CR-Saturday-Fall-16-1818","22:50:00","22:50:00","Hyde Park",8,"",0,0,1 "CR-Saturday-Fall-16-1818","23:00:00","23:00:00","Ruggles",9,"",0,0,0 "CR-Saturday-Fall-16-1818","23:03:00","23:03:00","Back Bay",10,"",0,0,0 "CR-Saturday-Fall-16-1818","23:08:00","23:08:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2001","8:40:00","8:40:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2001","8:46:00","8:46:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2001","8:53:00","8:53:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2001","9:00:00","9:00:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2001","9:07:00","9:07:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Sunday-Fall-16-2001","9:12:00","9:12:00","Montello",6,"",0,0,1 "CR-Sunday-Fall-16-2001","9:15:00","9:15:00","Brockton",7,"",0,0,1 "CR-Sunday-Fall-16-2001","9:19:00","9:19:00","Campello",8,"",0,0,1 "CR-Sunday-Fall-16-2001","9:27:00","9:27:00","Bridgewater",9,"",0,0,1 "CR-Sunday-Fall-16-2001","9:38:00","9:38:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Sunday-Fall-16-2002","6:50:00","6:50:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2002","7:00:00","7:00:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2002","7:07:00","7:07:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2002","7:11:00","7:11:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2002","7:14:00","7:14:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2002","7:19:00","7:19:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2002","7:25:00","7:25:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2002","7:31:00","7:31:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2002","7:39:00","7:39:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2002","7:46:00","7:46:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2003","11:20:00","11:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2003","11:26:00","11:26:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2003","11:33:00","11:33:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2003","11:47:00","11:47:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Sunday-Fall-16-2003","11:52:00","11:52:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2003","11:55:00","11:55:00","Brockton",6,"",0,0,1 "CR-Sunday-Fall-16-2003","11:59:00","11:59:00","Campello",7,"",0,0,1 "CR-Sunday-Fall-16-2003","12:07:00","12:07:00","Bridgewater",8,"",0,0,1 "CR-Sunday-Fall-16-2003","12:18:00","12:18:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Sunday-Fall-16-2004","8:22:00","8:22:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2004","8:32:00","8:32:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2004","8:40:00","8:40:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2004","8:44:00","8:44:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2004","8:47:00","8:47:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2004","8:52:00","8:52:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2004","9:05:00","9:05:00","Quincy Center",7,"",0,0,0 "CR-Sunday-Fall-16-2004","9:13:00","9:13:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2004","9:20:00","9:20:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2005","12:34:00","12:34:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2005","12:40:00","12:40:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2005","12:47:00","12:47:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2005","12:54:00","12:54:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2005","13:00:00","13:00:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Sunday-Fall-16-2005","13:05:00","13:05:00","Montello",6,"",0,0,1 "CR-Sunday-Fall-16-2005","13:08:00","13:08:00","Brockton",7,"",0,0,1 "CR-Sunday-Fall-16-2005","13:12:00","13:12:00","Campello",8,"",0,0,1 "CR-Sunday-Fall-16-2005","13:20:00","13:20:00","Bridgewater",9,"",0,0,1 "CR-Sunday-Fall-16-2005","13:32:00","13:32:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Sunday-Fall-16-2006","10:28:00","10:28:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2006","10:38:00","10:38:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2006","10:46:00","10:46:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2006","10:50:00","10:50:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2006","10:53:00","10:53:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2006","10:58:00","10:58:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2006","11:04:00","11:04:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2006","11:10:00","11:10:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2006","11:17:00","11:17:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2006","11:24:00","11:24:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2007","14:10:00","14:10:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2007","14:16:00","14:16:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2007","14:24:00","14:24:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2007","14:37:00","14:37:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Sunday-Fall-16-2007","14:42:00","14:42:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2007","14:45:00","14:45:00","Brockton",6,"",0,0,1 "CR-Sunday-Fall-16-2007","14:49:00","14:49:00","Campello",7,"",0,0,1 "CR-Sunday-Fall-16-2007","14:57:00","14:57:00","Bridgewater",8,"",0,0,1 "CR-Sunday-Fall-16-2007","15:10:00","15:10:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Sunday-Fall-16-2008","12:43:00","12:43:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2008","12:53:00","12:53:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2008","13:01:00","13:01:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2008","13:05:00","13:05:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2008","13:08:00","13:08:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2008","13:13:00","13:13:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2008","13:24:00","13:24:00","Quincy Center",7,"",0,0,0 "CR-Sunday-Fall-16-2008","13:32:00","13:32:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2008","13:40:00","13:40:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2009","15:35:00","15:35:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2009","15:41:00","15:41:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2009","15:49:00","15:49:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2009","15:56:00","15:56:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2009","16:02:00","16:02:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Sunday-Fall-16-2009","16:07:00","16:07:00","Montello",6,"",0,0,1 "CR-Sunday-Fall-16-2009","16:10:00","16:10:00","Brockton",7,"",0,0,1 "CR-Sunday-Fall-16-2009","16:14:00","16:14:00","Campello",8,"",0,0,1 "CR-Sunday-Fall-16-2009","16:24:00","16:24:00","Bridgewater",9,"",0,0,1 "CR-Sunday-Fall-16-2009","16:34:00","16:34:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Sunday-Fall-16-2010","13:53:00","13:53:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2010","14:03:00","14:03:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2010","14:11:00","14:11:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2010","14:15:00","14:15:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2010","14:18:00","14:18:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2010","14:23:00","14:23:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2010","14:29:00","14:29:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2010","14:36:00","14:36:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2010","14:44:00","14:44:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2010","14:51:00","14:51:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2011","17:40:00","17:40:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2011","17:46:00","17:46:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2011","17:54:00","17:54:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2011","18:01:00","18:01:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2011","18:07:00","18:07:00","Holbrook/ Randolph",5,"",0,0,1 "CR-Sunday-Fall-16-2011","18:12:00","18:12:00","Montello",6,"",0,0,1 "CR-Sunday-Fall-16-2011","18:15:00","18:15:00","Brockton",7,"",0,0,1 "CR-Sunday-Fall-16-2011","18:19:00","18:19:00","Campello",8,"",0,0,1 "CR-Sunday-Fall-16-2011","18:27:00","18:27:00","Bridgewater",9,"",0,0,1 "CR-Sunday-Fall-16-2011","18:38:00","18:38:00","Middleborough/ Lakeville",10,"",1,0,0 "CR-Sunday-Fall-16-2012","16:06:00","16:06:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2012","16:16:00","16:16:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2012","16:24:00","16:24:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2012","16:28:00","16:28:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2012","16:31:00","16:31:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2012","16:37:00","16:37:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2012","16:47:00","16:47:00","Quincy Center",7,"",0,0,0 "CR-Sunday-Fall-16-2012","16:55:00","16:55:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2012","17:03:00","17:03:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2013","20:10:00","20:10:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2013","20:16:00","20:16:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2013","20:24:00","20:24:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2013","20:36:00","20:36:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Sunday-Fall-16-2013","20:41:00","20:41:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2013","20:44:00","20:44:00","Brockton",6,"",0,0,1 "CR-Sunday-Fall-16-2013","20:48:00","20:48:00","Campello",7,"",0,0,1 "CR-Sunday-Fall-16-2013","20:56:00","20:56:00","Bridgewater",8,"",0,0,1 "CR-Sunday-Fall-16-2013","21:08:00","21:08:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Sunday-Fall-16-2014","19:04:00","19:04:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2014","19:14:00","19:14:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2014","19:22:00","19:22:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2014","19:26:00","19:26:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2014","19:29:00","19:29:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2014","19:34:00","19:34:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2014","19:45:00","19:45:00","Quincy Center",7,"",0,0,0 "CR-Sunday-Fall-16-2014","19:53:00","19:53:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2014","20:00:00","20:00:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2015","22:35:00","22:35:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2015","22:41:00","22:41:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2015","22:49:00","22:49:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2015","23:02:00","23:02:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Sunday-Fall-16-2015","23:07:00","23:07:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2015","23:11:00","23:11:00","Brockton",6,"",0,0,1 "CR-Sunday-Fall-16-2015","23:15:00","23:15:00","Campello",7,"",0,0,1 "CR-Sunday-Fall-16-2015","23:23:00","23:23:00","Bridgewater",8,"",0,0,1 "CR-Sunday-Fall-16-2015","23:34:00","23:34:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Sunday-Fall-16-2016","21:22:00","21:22:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Sunday-Fall-16-2016","21:32:00","21:32:00","Bridgewater",2,"",0,0,1 "CR-Sunday-Fall-16-2016","21:40:00","21:40:00","Campello",3,"",0,0,1 "CR-Sunday-Fall-16-2016","21:44:00","21:44:00","Brockton",4,"",0,0,1 "CR-Sunday-Fall-16-2016","21:47:00","21:47:00","Montello",5,"",0,0,1 "CR-Sunday-Fall-16-2016","21:52:00","21:52:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Sunday-Fall-16-2016","22:03:00","22:03:00","Quincy Center",7,"",0,0,0 "CR-Sunday-Fall-16-2016","22:11:00","22:11:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2016","22:18:00","22:18:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2032","7:00:00","7:00:00","Kingston",1,"",0,1,1 "CR-Sunday-Fall-16-2032","7:10:00","7:10:00","Halifax",2,"",0,0,1 "CR-Sunday-Fall-16-2032","7:15:00","7:15:00","Hanson",3,"",0,0,1 "CR-Sunday-Fall-16-2032","7:20:00","7:20:00","Whitman",4,"",0,0,1 "CR-Sunday-Fall-16-2032","7:24:00","7:24:00","Abington",5,"",0,0,1 "CR-Sunday-Fall-16-2032","7:29:00","7:29:00","South Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2032","7:37:00","7:37:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2032","7:43:00","7:43:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2032","7:51:00","7:51:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2032","7:58:00","7:58:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2033","10:05:00","10:05:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2033","10:11:00","10:11:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2033","10:18:00","10:18:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2033","10:25:00","10:25:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2033","10:32:00","10:32:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2033","10:37:00","10:37:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2033","10:41:00","10:41:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2033","10:46:00","10:46:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2033","10:51:00","10:51:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2033","11:03:00","11:03:00","Kingston",10,"",1,0,0 "CR-Sunday-Fall-16-2034","8:50:00","8:50:00","Kingston",1,"",0,1,1 "CR-Sunday-Fall-16-2034","9:00:00","9:00:00","Halifax",2,"",0,0,1 "CR-Sunday-Fall-16-2034","9:05:00","9:05:00","Hanson",3,"",0,0,1 "CR-Sunday-Fall-16-2034","9:12:00","9:12:00","Whitman",4,"",0,0,1 "CR-Sunday-Fall-16-2034","9:16:00","9:16:00","Abington",5,"",0,0,1 "CR-Sunday-Fall-16-2034","9:21:00","9:21:00","South Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2034","9:28:00","9:28:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2034","9:41:00","9:41:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2034","9:49:00","9:49:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2035","14:00:00","14:00:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2035","14:06:00","14:06:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2035","14:13:00","14:13:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2035","14:19:00","14:19:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2035","14:26:00","14:26:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2035","14:31:00","14:31:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2035","14:35:00","14:35:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2035","14:40:00","14:40:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2035","14:45:00","14:45:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2035","14:57:00","14:57:00","Kingston",10,"",1,0,0 "CR-Sunday-Fall-16-2036","11:30:00","11:30:00","Kingston",1,"",0,1,1 "CR-Sunday-Fall-16-2036","11:40:00","11:40:00","Halifax",2,"",0,0,1 "CR-Sunday-Fall-16-2036","11:45:00","11:45:00","Hanson",3,"",0,0,1 "CR-Sunday-Fall-16-2036","11:50:00","11:50:00","Whitman",4,"",0,0,1 "CR-Sunday-Fall-16-2036","11:54:00","11:54:00","Abington",5,"",0,0,1 "CR-Sunday-Fall-16-2036","11:59:00","11:59:00","South Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2036","12:06:00","12:06:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2036","12:19:00","12:19:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2036","12:26:00","12:26:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2037","16:10:00","16:10:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2037","16:16:00","16:16:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2037","16:23:00","16:23:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2037","16:29:00","16:29:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2037","16:36:00","16:36:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2037","16:41:00","16:41:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2037","16:45:00","16:45:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2037","16:50:00","16:50:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2037","16:55:00","16:55:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2037","17:08:00","17:08:00","Kingston",10,"",1,0,0 "CR-Sunday-Fall-16-2038","15:35:00","15:35:00","Kingston",1,"",0,1,1 "CR-Sunday-Fall-16-2038","15:45:00","15:45:00","Halifax",2,"",0,0,1 "CR-Sunday-Fall-16-2038","15:50:00","15:50:00","Hanson",3,"",0,0,1 "CR-Sunday-Fall-16-2038","15:55:00","15:55:00","Whitman",4,"",0,0,1 "CR-Sunday-Fall-16-2038","15:59:00","15:59:00","Abington",5,"",0,0,1 "CR-Sunday-Fall-16-2038","16:04:00","16:04:00","South Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2038","16:12:00","16:12:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2038","16:25:00","16:25:00","JFK/UMASS",8,"",0,0,0 "CR-Sunday-Fall-16-2038","16:32:00","16:32:00","South Station",9,"",1,0,0 "CR-Sunday-Fall-16-2039","20:20:00","20:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2039","20:26:00","20:26:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2039","20:33:00","20:33:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2039","20:39:00","20:39:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2039","20:46:00","20:46:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2039","20:51:00","20:51:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2039","20:55:00","20:55:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2039","21:00:00","21:00:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2039","21:05:00","21:05:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2039","21:17:00","21:17:00","Kingston",10,"",1,0,0 "CR-Sunday-Fall-16-2040","21:37:00","21:37:00","Kingston",1,"",0,1,1 "CR-Sunday-Fall-16-2040","21:47:00","21:47:00","Halifax",2,"",0,0,1 "CR-Sunday-Fall-16-2040","21:52:00","21:52:00","Hanson",3,"",0,0,1 "CR-Sunday-Fall-16-2040","21:57:00","21:57:00","Whitman",4,"",0,0,1 "CR-Sunday-Fall-16-2040","22:00:00","22:00:00","Abington",5,"",0,0,1 "CR-Sunday-Fall-16-2040","22:05:00","22:05:00","South Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2040","22:12:00","22:12:00","Braintree",7,"",0,0,0 "CR-Sunday-Fall-16-2040","22:18:00","22:18:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2040","22:25:00","22:25:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2040","22:33:00","22:33:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2041","22:45:00","22:45:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2041","22:51:00","22:51:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2041","22:58:00","22:58:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2041","23:04:00","23:04:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2041","23:11:00","23:11:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2041","23:16:00","23:16:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2041","23:20:00","23:20:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2041","23:25:00","23:25:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2041","23:30:00","23:30:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2041","23:42:00","23:42:00","Kingston",10,"",1,0,0 "CR-Sunday-Fall-16-2051","8:30:00","8:30:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2051","8:36:00","8:36:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2051","8:43:00","8:43:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2051","8:50:00","8:50:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2051","8:57:00","8:57:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2051","9:02:00","9:02:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2051","9:06:00","9:06:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2051","9:11:00","9:11:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2051","9:16:00","9:16:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2051","9:27:00","9:27:00","Plymouth",10,"",0,0,1 "CR-Sunday-Fall-16-2051","9:55:00","9:55:00","Kingston",11,"",1,0,0 "CR-Sunday-Fall-16-2052","10:05:00","10:05:00","Kingston",2,"",0,0,1 "CR-Sunday-Fall-16-2052","10:15:00","10:15:00","Halifax",3,"",0,0,1 "CR-Sunday-Fall-16-2052","10:20:00","10:20:00","Hanson",4,"",0,0,1 "CR-Sunday-Fall-16-2052","10:25:00","10:25:00","Whitman",5,"",0,0,1 "CR-Sunday-Fall-16-2052","10:29:00","10:29:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2052","10:37:00","10:37:00","South Weymouth",7,"",0,0,1 "CR-Sunday-Fall-16-2052","10:44:00","10:44:00","Braintree",8,"",0,0,0 "CR-Sunday-Fall-16-2052","10:50:00","10:50:00","Quincy Center",9,"",0,0,0 "CR-Sunday-Fall-16-2052","10:57:00","10:57:00","JFK/UMASS",10,"",0,0,0 "CR-Sunday-Fall-16-2052","11:04:00","11:04:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2052","9:37:00","9:37:00","Plymouth",1,"",0,1,1 "CR-Sunday-Fall-16-2053","11:47:00","11:47:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2053","11:53:00","11:53:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2053","12:00:00","12:00:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2053","12:07:00","12:07:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2053","12:14:00","12:14:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2053","12:19:00","12:19:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2053","12:23:00","12:23:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2053","12:28:00","12:28:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2053","12:33:00","12:33:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2053","12:45:00","12:45:00","Plymouth",10,"",0,0,1 "CR-Sunday-Fall-16-2053","13:12:00","13:12:00","Kingston",11,"",1,0,0 "CR-Sunday-Fall-16-2054","12:55:00","12:55:00","Plymouth",1,"",0,1,1 "CR-Sunday-Fall-16-2054","13:22:00","13:22:00","Kingston",2,"",0,0,1 "CR-Sunday-Fall-16-2054","13:32:00","13:32:00","Halifax",3,"",0,0,1 "CR-Sunday-Fall-16-2054","13:37:00","13:37:00","Hanson",4,"",0,0,1 "CR-Sunday-Fall-16-2054","13:42:00","13:42:00","Whitman",5,"",0,0,1 "CR-Sunday-Fall-16-2054","13:46:00","13:46:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2054","13:51:00","13:51:00","South Weymouth",7,"",0,0,1 "CR-Sunday-Fall-16-2054","13:58:00","13:58:00","Braintree",8,"",0,0,1 "CR-Sunday-Fall-16-2054","14:04:00","14:04:00","Quincy Center",9,"",0,0,0 "CR-Sunday-Fall-16-2054","14:11:00","14:11:00","JFK/UMASS",10,"",0,0,1 "CR-Sunday-Fall-16-2054","14:19:00","14:19:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2055","17:20:00","17:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2055","17:26:00","17:26:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2055","17:33:00","17:33:00","Quincy Center",3,"",3,3,1 "CR-Sunday-Fall-16-2055","17:40:00","17:40:00","Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2055","17:47:00","17:47:00","South Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2055","17:52:00","17:52:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2055","17:56:00","17:56:00","Whitman",7,"",0,0,1 "CR-Sunday-Fall-16-2055","18:01:00","18:01:00","Hanson",8,"",0,0,1 "CR-Sunday-Fall-16-2055","18:06:00","18:06:00","Halifax",9,"",0,0,1 "CR-Sunday-Fall-16-2055","18:18:00","18:18:00","Kingston",10,"",0,0,1 "CR-Sunday-Fall-16-2055","18:44:00","18:44:00","Plymouth",11,"",1,0,0 "CR-Sunday-Fall-16-2056","18:28:00","18:28:00","Kingston",1,"",0,1,1 "CR-Sunday-Fall-16-2056","18:54:00","18:54:00","Plymouth",2,"",0,0,1 "CR-Sunday-Fall-16-2056","19:04:00","19:04:00","Halifax",3,"",0,0,1 "CR-Sunday-Fall-16-2056","19:09:00","19:09:00","Hanson",4,"",0,0,1 "CR-Sunday-Fall-16-2056","19:14:00","19:14:00","Whitman",5,"",0,0,1 "CR-Sunday-Fall-16-2056","19:18:00","19:18:00","Abington",6,"",0,0,1 "CR-Sunday-Fall-16-2056","19:23:00","19:23:00","South Weymouth",7,"",0,0,1 "CR-Sunday-Fall-16-2056","19:30:00","19:30:00","Braintree",8,"",0,0,0 "CR-Sunday-Fall-16-2056","19:36:00","19:36:00","Quincy Center",9,"",0,0,0 "CR-Sunday-Fall-16-2056","19:43:00","19:43:00","JFK/UMASS",10,"",0,0,0 "CR-Sunday-Fall-16-2056","19:51:00","19:51:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2070","7:15:00","7:15:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2070","7:22:00","7:22:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2070","7:29:00","7:29:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2070","7:32:00","7:32:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2070","7:37:00","7:37:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2070","7:41:00","7:41:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2070","7:47:00","7:47:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2070","7:56:00","7:56:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2070","8:04:00","8:04:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2070","8:12:00","8:12:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2071","8:05:00","8:05:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2071","8:12:00","8:12:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2071","8:19:00","8:19:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2071","8:28:00","8:28:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2071","8:33:00","8:33:00","East Weymouth",5,"",0,0,0 "CR-Sunday-Fall-16-2071","8:37:00","8:37:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2071","8:42:00","8:42:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2071","8:45:00","8:45:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2071","8:53:00","8:53:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2071","9:02:00","9:02:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2072","10:02:00","10:02:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2072","10:12:00","10:12:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2072","10:20:00","10:20:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2072","10:28:00","10:28:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2072","9:30:00","9:30:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2072","9:37:00","9:37:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2072","9:44:00","9:44:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2072","9:47:00","9:47:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2072","9:52:00","9:52:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2072","9:56:00","9:56:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2073","10:08:00","10:08:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2073","10:14:00","10:14:00","East Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2073","10:18:00","10:18:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2073","10:22:00","10:22:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2073","10:25:00","10:25:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2073","10:33:00","10:33:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2073","10:42:00","10:42:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2073","9:45:00","9:45:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2073","9:51:00","9:51:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2073","9:59:00","9:59:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2074","11:08:00","11:08:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2074","11:15:00","11:15:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2074","11:22:00","11:22:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2074","11:26:00","11:26:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2074","11:31:00","11:31:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2074","11:38:00","11:38:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2074","11:44:00","11:44:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2074","11:53:00","11:53:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2074","12:01:00","12:01:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2074","12:07:00","12:07:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2075","11:03:00","11:03:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2075","11:09:00","11:09:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2075","11:17:00","11:17:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2075","11:26:00","11:26:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2075","11:32:00","11:32:00","East Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2075","11:36:00","11:36:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2075","11:41:00","11:41:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2075","11:44:00","11:44:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2075","11:52:00","11:52:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2075","12:02:00","12:02:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2076","12:20:00","12:20:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2076","12:27:00","12:27:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2076","12:34:00","12:34:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2076","12:37:00","12:37:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2076","12:42:00","12:42:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2076","12:46:00","12:46:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2076","12:52:00","12:52:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2076","13:01:00","13:01:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2076","13:09:00","13:09:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2076","13:18:00","13:18:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2077","12:55:00","12:55:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2077","13:01:00","13:01:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2077","13:09:00","13:09:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2077","13:18:00","13:18:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2077","13:24:00","13:24:00","East Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2077","13:28:00","13:28:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2077","13:33:00","13:33:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2077","13:36:00","13:36:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2077","13:44:00","13:44:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2077","13:54:00","13:54:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2078","14:10:00","14:10:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2078","14:17:00","14:17:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2078","14:23:00","14:23:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2078","14:26:00","14:26:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2078","14:31:00","14:31:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2078","14:35:00","14:35:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2078","14:41:00","14:41:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2078","14:50:00","14:50:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2078","14:59:00","14:59:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2078","15:07:00","15:07:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2079","14:45:00","14:45:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2079","14:51:00","14:51:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2079","14:59:00","14:59:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2079","15:08:00","15:08:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2079","15:13:00","15:13:00","East Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2079","15:17:00","15:17:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2079","15:22:00","15:22:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2079","15:25:00","15:25:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2079","15:33:00","15:33:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2079","15:42:00","15:42:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2080","15:55:00","15:55:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2080","16:02:00","16:02:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2080","16:09:00","16:09:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2080","16:12:00","16:12:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2080","16:17:00","16:17:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2080","16:21:00","16:21:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2080","16:27:00","16:27:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2080","16:36:00","16:36:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2080","16:44:00","16:44:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2080","16:53:00","16:53:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2081","17:10:00","17:10:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2081","17:16:00","17:16:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2081","17:24:00","17:24:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2081","17:33:00","17:33:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2081","17:39:00","17:39:00","East Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2081","17:43:00","17:43:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2081","17:48:00","17:48:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2081","17:51:00","17:51:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2081","17:59:00","17:59:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2081","18:08:00","18:08:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2082","18:30:00","18:30:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2082","18:37:00","18:37:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2082","18:44:00","18:44:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2082","18:47:00","18:47:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2082","18:52:00","18:52:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2082","18:56:00","18:56:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2082","19:02:00","19:02:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2082","19:11:00","19:11:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2082","19:19:00","19:19:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2082","19:27:00","19:27:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2083","20:00:00","20:00:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2083","20:06:00","20:06:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2083","20:14:00","20:14:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2083","20:23:00","20:23:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2083","20:29:00","20:29:00","East Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2083","20:33:00","20:33:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2083","20:38:00","20:38:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2083","20:41:00","20:41:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2083","20:49:00","20:49:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2083","20:58:00","20:58:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2084","21:30:00","21:30:00","Greenbush",1,"",0,1,1 "CR-Sunday-Fall-16-2084","21:37:00","21:37:00","North Scituate",2,"",0,0,1 "CR-Sunday-Fall-16-2084","21:44:00","21:44:00","Cohasset",3,"",0,0,1 "CR-Sunday-Fall-16-2084","21:47:00","21:47:00","Nantasket Junction",4,"",0,0,1 "CR-Sunday-Fall-16-2084","21:52:00","21:52:00","West Hingham",5,"",0,0,1 "CR-Sunday-Fall-16-2084","21:56:00","21:56:00","East Weymouth",6,"",0,0,1 "CR-Sunday-Fall-16-2084","22:02:00","22:02:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Sunday-Fall-16-2084","22:11:00","22:11:00","Quincy Center",8,"",0,0,0 "CR-Sunday-Fall-16-2084","22:19:00","22:19:00","JFK/UMASS",9,"",0,0,0 "CR-Sunday-Fall-16-2084","22:26:00","22:26:00","South Station",10,"",1,0,0 "CR-Sunday-Fall-16-2085","22:55:00","22:55:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2085","23:01:00","23:01:00","JFK/UMASS",2,"",3,3,1 "CR-Sunday-Fall-16-2085","23:09:00","23:09:00","Quincy Center",3,"",0,0,0 "CR-Sunday-Fall-16-2085","23:18:00","23:18:00","Weymouth Landing/ East Braintree",4,"",0,0,1 "CR-Sunday-Fall-16-2085","23:24:00","23:24:00","East Weymouth",5,"",0,0,1 "CR-Sunday-Fall-16-2085","23:28:00","23:28:00","West Hingham",6,"",0,0,1 "CR-Sunday-Fall-16-2085","23:33:00","23:33:00","Nantasket Junction",7,"",0,0,1 "CR-Sunday-Fall-16-2085","23:37:00","23:37:00","Cohasset",8,"",0,0,1 "CR-Sunday-Fall-16-2085","23:45:00","23:45:00","North Scituate",9,"",0,0,1 "CR-Sunday-Fall-16-2085","23:54:00","23:54:00","Greenbush",10,"",1,0,0 "CR-Sunday-Fall-16-2100","7:00:00","7:00:00","Rockport",1,"",0,1,1 "CR-Sunday-Fall-16-2100","7:07:00","7:07:00","Gloucester",2,"",0,0,1 "CR-Sunday-Fall-16-2100","7:13:00","7:13:00","West Gloucester",3,"",3,3,1 "CR-Sunday-Fall-16-2100","7:20:00","7:20:00","Manchester",4,"",0,0,1 "CR-Sunday-Fall-16-2100","7:25:00","7:25:00","Beverly Farms",5,"",3,3,1 "CR-Sunday-Fall-16-2100","7:31:00","7:31:00","Montserrat",6,"",3,3,1 "CR-Sunday-Fall-16-2100","7:36:00","7:36:00","Beverly",7,"",0,0,1 "CR-Sunday-Fall-16-2100","7:40:00","7:40:00","Salem",8,"",0,0,1 "CR-Sunday-Fall-16-2100","7:46:00","7:46:00","Swampscott",9,"",0,0,1 "CR-Sunday-Fall-16-2100","7:50:00","7:50:00","Lynn",10,"",0,0,1 "CR-Sunday-Fall-16-2100","7:59:00","7:59:00","Chelsea",11,"",3,3,1 "CR-Sunday-Fall-16-2100","8:11:00","8:11:00","North Station",12,"",1,0,0 "CR-Sunday-Fall-16-2101","8:30:00","8:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2101","8:41:00","8:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2101","8:51:00","8:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2101","8:54:00","8:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2101","9:01:00","9:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2101","9:05:00","9:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2101","9:09:00","9:09:00","Montserrat",7,"",3,3,1 "CR-Sunday-Fall-16-2101","9:14:00","9:14:00","Beverly Farms",8,"",3,3,1 "CR-Sunday-Fall-16-2101","9:20:00","9:20:00","Manchester",9,"",0,0,1 "CR-Sunday-Fall-16-2101","9:27:00","9:27:00","West Gloucester",10,"",3,3,1 "CR-Sunday-Fall-16-2101","9:34:00","9:34:00","Gloucester",11,"",0,0,1 "CR-Sunday-Fall-16-2101","9:42:00","9:42:00","Rockport",12,"",1,0,0 "CR-Sunday-Fall-16-2102","10:00:00","10:00:00","Rockport",1,"",0,1,1 "CR-Sunday-Fall-16-2102","10:07:00","10:07:00","Gloucester",2,"",0,0,1 "CR-Sunday-Fall-16-2102","10:13:00","10:13:00","West Gloucester",3,"",3,3,1 "CR-Sunday-Fall-16-2102","10:20:00","10:20:00","Manchester",4,"",0,0,1 "CR-Sunday-Fall-16-2102","10:25:00","10:25:00","Beverly Farms",5,"",3,3,1 "CR-Sunday-Fall-16-2102","10:31:00","10:31:00","Montserrat",6,"",3,3,1 "CR-Sunday-Fall-16-2102","10:36:00","10:36:00","Beverly",7,"",0,0,1 "CR-Sunday-Fall-16-2102","10:40:00","10:40:00","Salem",8,"",0,0,1 "CR-Sunday-Fall-16-2102","10:46:00","10:46:00","Swampscott",9,"",0,0,1 "CR-Sunday-Fall-16-2102","10:50:00","10:50:00","Lynn",10,"",0,0,1 "CR-Sunday-Fall-16-2102","10:59:00","10:59:00","Chelsea",11,"",3,3,1 "CR-Sunday-Fall-16-2102","11:11:00","11:11:00","North Station",12,"",1,0,0 "CR-Sunday-Fall-16-2103","10:20:00","10:20:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2103","10:31:00","10:31:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2103","10:41:00","10:41:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2103","10:44:00","10:44:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2103","10:51:00","10:51:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2103","10:55:00","10:55:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2103","10:59:00","10:59:00","Montserrat",7,"",3,3,1 "CR-Sunday-Fall-16-2103","11:04:00","11:04:00","Beverly Farms",8,"",3,3,1 "CR-Sunday-Fall-16-2103","11:10:00","11:10:00","Manchester",9,"",0,0,1 "CR-Sunday-Fall-16-2103","11:17:00","11:17:00","West Gloucester",10,"",3,3,1 "CR-Sunday-Fall-16-2103","11:24:00","11:24:00","Gloucester",11,"",0,0,1 "CR-Sunday-Fall-16-2103","11:32:00","11:32:00","Rockport",12,"",1,0,0 "CR-Sunday-Fall-16-2104","12:00:00","12:00:00","Rockport",1,"",0,1,1 "CR-Sunday-Fall-16-2104","12:07:00","12:07:00","Gloucester",2,"",0,0,1 "CR-Sunday-Fall-16-2104","12:13:00","12:13:00","West Gloucester",3,"",3,3,1 "CR-Sunday-Fall-16-2104","12:20:00","12:20:00","Manchester",4,"",0,0,1 "CR-Sunday-Fall-16-2104","12:25:00","12:25:00","Beverly Farms",5,"",3,3,1 "CR-Sunday-Fall-16-2104","12:31:00","12:31:00","Montserrat",6,"",3,3,1 "CR-Sunday-Fall-16-2104","12:36:00","12:36:00","Beverly",7,"",0,0,1 "CR-Sunday-Fall-16-2104","12:40:00","12:40:00","Salem",8,"",0,0,1 "CR-Sunday-Fall-16-2104","12:46:00","12:46:00","Swampscott",9,"",0,0,1 "CR-Sunday-Fall-16-2104","12:50:00","12:50:00","Lynn",10,"",0,0,1 "CR-Sunday-Fall-16-2104","12:59:00","12:59:00","Chelsea",11,"",3,3,1 "CR-Sunday-Fall-16-2104","13:11:00","13:11:00","North Station",12,"",1,0,0 "CR-Sunday-Fall-16-2105","12:20:00","12:20:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2105","12:31:00","12:31:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2105","12:41:00","12:41:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2105","12:44:00","12:44:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2105","12:51:00","12:51:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2105","12:55:00","12:55:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2105","12:59:00","12:59:00","Montserrat",7,"",3,3,1 "CR-Sunday-Fall-16-2105","13:04:00","13:04:00","Beverly Farms",8,"",3,3,1 "CR-Sunday-Fall-16-2105","13:10:00","13:10:00","Manchester",9,"",0,0,1 "CR-Sunday-Fall-16-2105","13:17:00","13:17:00","West Gloucester",10,"",3,3,1 "CR-Sunday-Fall-16-2105","13:24:00","13:24:00","Gloucester",11,"",0,0,1 "CR-Sunday-Fall-16-2105","13:32:00","13:32:00","Rockport",12,"",1,0,0 "CR-Sunday-Fall-16-2106","14:00:00","14:00:00","Rockport",1,"",0,1,1 "CR-Sunday-Fall-16-2106","14:07:00","14:07:00","Gloucester",2,"",0,0,1 "CR-Sunday-Fall-16-2106","14:13:00","14:13:00","West Gloucester",3,"",3,3,1 "CR-Sunday-Fall-16-2106","14:20:00","14:20:00","Manchester",4,"",0,0,1 "CR-Sunday-Fall-16-2106","14:25:00","14:25:00","Beverly Farms",5,"",3,3,1 "CR-Sunday-Fall-16-2106","14:31:00","14:31:00","Montserrat",6,"",3,3,1 "CR-Sunday-Fall-16-2106","14:36:00","14:36:00","Beverly",7,"",0,0,1 "CR-Sunday-Fall-16-2106","14:40:00","14:40:00","Salem",8,"",0,0,1 "CR-Sunday-Fall-16-2106","14:46:00","14:46:00","Swampscott",9,"",0,0,1 "CR-Sunday-Fall-16-2106","14:50:00","14:50:00","Lynn",10,"",0,0,1 "CR-Sunday-Fall-16-2106","14:59:00","14:59:00","Chelsea",11,"",3,3,1 "CR-Sunday-Fall-16-2106","15:11:00","15:11:00","North Station",12,"",1,0,0 "CR-Sunday-Fall-16-2107","14:20:00","14:20:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2107","14:31:00","14:31:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2107","14:41:00","14:41:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2107","14:44:00","14:44:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2107","14:51:00","14:51:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2107","14:55:00","14:55:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2107","14:59:00","14:59:00","Montserrat",7,"",3,3,1 "CR-Sunday-Fall-16-2107","15:04:00","15:04:00","Beverly Farms",8,"",3,3,1 "CR-Sunday-Fall-16-2107","15:10:00","15:10:00","Manchester",9,"",0,0,1 "CR-Sunday-Fall-16-2107","15:17:00","15:17:00","West Gloucester",10,"",3,3,1 "CR-Sunday-Fall-16-2107","15:24:00","15:24:00","Gloucester",11,"",0,0,1 "CR-Sunday-Fall-16-2107","15:32:00","15:32:00","Rockport",12,"",1,0,0 "CR-Sunday-Fall-16-2108","17:10:00","17:10:00","Rockport",1,"",0,1,1 "CR-Sunday-Fall-16-2108","17:17:00","17:17:00","Gloucester",2,"",0,0,1 "CR-Sunday-Fall-16-2108","17:23:00","17:23:00","West Gloucester",3,"",3,3,1 "CR-Sunday-Fall-16-2108","17:30:00","17:30:00","Manchester",4,"",0,0,1 "CR-Sunday-Fall-16-2108","17:35:00","17:35:00","Beverly Farms",5,"",3,3,1 "CR-Sunday-Fall-16-2108","17:41:00","17:41:00","Montserrat",6,"",3,3,1 "CR-Sunday-Fall-16-2108","17:46:00","17:46:00","Beverly",7,"",0,0,1 "CR-Sunday-Fall-16-2108","17:50:00","17:50:00","Salem",8,"",0,0,1 "CR-Sunday-Fall-16-2108","17:56:00","17:56:00","Swampscott",9,"",0,0,1 "CR-Sunday-Fall-16-2108","18:00:00","18:00:00","Lynn",10,"",0,0,1 "CR-Sunday-Fall-16-2108","18:09:00","18:09:00","Chelsea",11,"",3,3,1 "CR-Sunday-Fall-16-2108","18:21:00","18:21:00","North Station",12,"",1,0,0 "CR-Sunday-Fall-16-2109","17:30:00","17:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2109","17:41:00","17:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2109","17:51:00","17:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2109","17:54:00","17:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2109","18:01:00","18:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2109","18:05:00","18:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2109","18:09:00","18:09:00","Montserrat",7,"",3,3,1 "CR-Sunday-Fall-16-2109","18:14:00","18:14:00","Beverly Farms",8,"",3,3,1 "CR-Sunday-Fall-16-2109","18:20:00","18:20:00","Manchester",9,"",0,0,1 "CR-Sunday-Fall-16-2109","18:27:00","18:27:00","West Gloucester",10,"",3,3,1 "CR-Sunday-Fall-16-2109","18:34:00","18:34:00","Gloucester",11,"",0,0,1 "CR-Sunday-Fall-16-2109","18:42:00","18:42:00","Rockport",12,"",1,0,0 "CR-Sunday-Fall-16-2110","19:30:00","19:30:00","Rockport",1,"",0,1,1 "CR-Sunday-Fall-16-2110","19:37:00","19:37:00","Gloucester",2,"",0,0,1 "CR-Sunday-Fall-16-2110","19:43:00","19:43:00","West Gloucester",3,"",3,3,1 "CR-Sunday-Fall-16-2110","19:50:00","19:50:00","Manchester",4,"",0,0,1 "CR-Sunday-Fall-16-2110","19:55:00","19:55:00","Beverly Farms",5,"",3,3,1 "CR-Sunday-Fall-16-2110","20:01:00","20:01:00","Montserrat",6,"",3,3,1 "CR-Sunday-Fall-16-2110","20:06:00","20:06:00","Beverly",7,"",0,0,1 "CR-Sunday-Fall-16-2110","20:10:00","20:10:00","Salem",8,"",0,0,1 "CR-Sunday-Fall-16-2110","20:16:00","20:16:00","Swampscott",9,"",0,0,1 "CR-Sunday-Fall-16-2110","20:20:00","20:20:00","Lynn",10,"",0,0,1 "CR-Sunday-Fall-16-2110","20:29:00","20:29:00","Chelsea",11,"",3,3,1 "CR-Sunday-Fall-16-2110","20:41:00","20:41:00","North Station",12,"",1,0,0 "CR-Sunday-Fall-16-2111","20:30:00","20:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2111","20:41:00","20:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2111","20:51:00","20:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2111","20:54:00","20:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2111","21:01:00","21:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2111","21:05:00","21:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2111","21:09:00","21:09:00","Montserrat",7,"",3,3,1 "CR-Sunday-Fall-16-2111","21:14:00","21:14:00","Beverly Farms",8,"",3,3,1 "CR-Sunday-Fall-16-2111","21:20:00","21:20:00","Manchester",9,"",0,0,1 "CR-Sunday-Fall-16-2111","21:27:00","21:27:00","West Gloucester",10,"",3,3,1 "CR-Sunday-Fall-16-2111","21:34:00","21:34:00","Gloucester",11,"",0,0,1 "CR-Sunday-Fall-16-2111","21:42:00","21:42:00","Rockport",12,"",1,0,0 "CR-Sunday-Fall-16-2112","22:00:00","22:00:00","Rockport",1,"",0,1,1 "CR-Sunday-Fall-16-2112","22:07:00","22:07:00","Gloucester",2,"",0,0,1 "CR-Sunday-Fall-16-2112","22:13:00","22:13:00","West Gloucester",3,"",3,3,1 "CR-Sunday-Fall-16-2112","22:20:00","22:20:00","Manchester",4,"",0,0,1 "CR-Sunday-Fall-16-2112","22:25:00","22:25:00","Beverly Farms",5,"",3,3,1 "CR-Sunday-Fall-16-2112","22:31:00","22:31:00","Montserrat",6,"",3,3,1 "CR-Sunday-Fall-16-2112","22:36:00","22:36:00","Beverly",7,"",0,0,1 "CR-Sunday-Fall-16-2112","22:40:00","22:40:00","Salem",8,"",0,0,1 "CR-Sunday-Fall-16-2112","22:46:00","22:46:00","Swampscott",9,"",0,0,1 "CR-Sunday-Fall-16-2112","22:50:00","22:50:00","Lynn",10,"",0,0,1 "CR-Sunday-Fall-16-2112","22:59:00","22:59:00","Chelsea",11,"",3,3,1 "CR-Sunday-Fall-16-2112","23:11:00","23:11:00","North Station",12,"",1,0,0 "CR-Sunday-Fall-16-2113","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2113","23:41:00","23:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2113","23:51:00","23:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2113","23:54:00","23:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2113","24:01:00","24:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2113","24:05:00","24:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2113","24:09:00","24:09:00","Montserrat",7,"",3,3,1 "CR-Sunday-Fall-16-2113","24:14:00","24:14:00","Beverly Farms",8,"",3,3,1 "CR-Sunday-Fall-16-2113","24:20:00","24:20:00","Manchester",9,"",0,0,1 "CR-Sunday-Fall-16-2113","24:27:00","24:27:00","West Gloucester",10,"",3,3,1 "CR-Sunday-Fall-16-2113","24:34:00","24:34:00","Gloucester",11,"",0,0,1 "CR-Sunday-Fall-16-2113","24:42:00","24:42:00","Rockport",12,"",1,0,0 "CR-Sunday-Fall-16-2150","8:52:00","8:52:00","Newburyport",1,"",0,1,1 "CR-Sunday-Fall-16-2150","8:58:00","8:58:00","Rowley",2,"",0,0,1 "CR-Sunday-Fall-16-2150","9:05:00","9:05:00","Ipswich",3,"",0,0,1 "CR-Sunday-Fall-16-2150","9:12:00","9:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Sunday-Fall-16-2150","9:15:00","9:15:00","North Beverly",5,"",3,3,1 "CR-Sunday-Fall-16-2150","9:20:00","9:20:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2150","9:24:00","9:24:00","Salem",7,"",0,0,1 "CR-Sunday-Fall-16-2150","9:30:00","9:30:00","Swampscott",8,"",0,0,1 "CR-Sunday-Fall-16-2150","9:34:00","9:34:00","Lynn",9,"",0,0,1 "CR-Sunday-Fall-16-2150","9:44:00","9:44:00","Chelsea",10,"",3,3,1 "CR-Sunday-Fall-16-2150","9:56:00","9:56:00","North Station",11,"",1,0,0 "CR-Sunday-Fall-16-2151","10:01:00","10:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2151","10:05:00","10:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2151","10:09:00","10:09:00","North Beverly",7,"",3,3,1 "CR-Sunday-Fall-16-2151","10:13:00","10:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Sunday-Fall-16-2151","10:20:00","10:20:00","Ipswich",9,"",0,0,1 "CR-Sunday-Fall-16-2151","10:27:00","10:27:00","Rowley",10,"",0,0,1 "CR-Sunday-Fall-16-2151","10:34:00","10:34:00","Newburyport",11,"",1,0,0 "CR-Sunday-Fall-16-2151","9:30:00","9:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2151","9:41:00","9:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2151","9:51:00","9:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2151","9:54:00","9:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2152","10:52:00","10:52:00","Newburyport",1,"",0,1,1 "CR-Sunday-Fall-16-2152","10:58:00","10:58:00","Rowley",2,"",0,0,1 "CR-Sunday-Fall-16-2152","11:05:00","11:05:00","Ipswich",3,"",0,0,1 "CR-Sunday-Fall-16-2152","11:12:00","11:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Sunday-Fall-16-2152","11:15:00","11:15:00","North Beverly",5,"",3,3,1 "CR-Sunday-Fall-16-2152","11:20:00","11:20:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2152","11:24:00","11:24:00","Salem",7,"",0,0,1 "CR-Sunday-Fall-16-2152","11:30:00","11:30:00","Swampscott",8,"",0,0,1 "CR-Sunday-Fall-16-2152","11:34:00","11:34:00","Lynn",9,"",0,0,1 "CR-Sunday-Fall-16-2152","11:44:00","11:44:00","Chelsea",10,"",3,3,1 "CR-Sunday-Fall-16-2152","11:56:00","11:56:00","North Station",11,"",1,0,0 "CR-Sunday-Fall-16-2153","11:30:00","11:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2153","11:41:00","11:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2153","11:51:00","11:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2153","11:54:00","11:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2153","12:01:00","12:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2153","12:05:00","12:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2153","12:09:00","12:09:00","North Beverly",7,"",3,3,1 "CR-Sunday-Fall-16-2153","12:13:00","12:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Sunday-Fall-16-2153","12:20:00","12:20:00","Ipswich",9,"",0,0,1 "CR-Sunday-Fall-16-2153","12:27:00","12:27:00","Rowley",10,"",0,0,1 "CR-Sunday-Fall-16-2153","12:34:00","12:34:00","Newburyport",11,"",1,0,0 "CR-Sunday-Fall-16-2154","12:52:00","12:52:00","Newburyport",1,"",0,1,1 "CR-Sunday-Fall-16-2154","12:58:00","12:58:00","Rowley",2,"",0,0,1 "CR-Sunday-Fall-16-2154","13:05:00","13:05:00","Ipswich",3,"",0,0,1 "CR-Sunday-Fall-16-2154","13:12:00","13:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Sunday-Fall-16-2154","13:15:00","13:15:00","North Beverly",5,"",3,3,1 "CR-Sunday-Fall-16-2154","13:20:00","13:20:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2154","13:24:00","13:24:00","Salem",7,"",0,0,1 "CR-Sunday-Fall-16-2154","13:30:00","13:30:00","Swampscott",8,"",0,0,1 "CR-Sunday-Fall-16-2154","13:34:00","13:34:00","Lynn",9,"",0,0,1 "CR-Sunday-Fall-16-2154","13:44:00","13:44:00","Chelsea",10,"",3,3,1 "CR-Sunday-Fall-16-2154","13:56:00","13:56:00","North Station",11,"",1,0,0 "CR-Sunday-Fall-16-2155","13:30:00","13:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2155","13:41:00","13:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2155","13:51:00","13:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2155","13:54:00","13:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2155","14:01:00","14:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2155","14:05:00","14:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2155","14:09:00","14:09:00","North Beverly",7,"",3,3,1 "CR-Sunday-Fall-16-2155","14:13:00","14:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Sunday-Fall-16-2155","14:20:00","14:20:00","Ipswich",9,"",0,0,1 "CR-Sunday-Fall-16-2155","14:27:00","14:27:00","Rowley",10,"",0,0,1 "CR-Sunday-Fall-16-2155","14:34:00","14:34:00","Newburyport",11,"",1,0,0 "CR-Sunday-Fall-16-2156","14:52:00","14:52:00","Newburyport",1,"",0,1,1 "CR-Sunday-Fall-16-2156","14:58:00","14:58:00","Rowley",2,"",0,0,1 "CR-Sunday-Fall-16-2156","15:05:00","15:05:00","Ipswich",3,"",0,0,1 "CR-Sunday-Fall-16-2156","15:12:00","15:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Sunday-Fall-16-2156","15:15:00","15:15:00","North Beverly",5,"",3,3,1 "CR-Sunday-Fall-16-2156","15:20:00","15:20:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2156","15:24:00","15:24:00","Salem",7,"",0,0,1 "CR-Sunday-Fall-16-2156","15:30:00","15:30:00","Swampscott",8,"",0,0,1 "CR-Sunday-Fall-16-2156","15:34:00","15:34:00","Lynn",9,"",0,0,1 "CR-Sunday-Fall-16-2156","15:44:00","15:44:00","Chelsea",10,"",3,3,1 "CR-Sunday-Fall-16-2156","15:56:00","15:56:00","North Station",11,"",1,0,0 "CR-Sunday-Fall-16-2157","16:30:00","16:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2157","16:41:00","16:41:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2157","16:51:00","16:51:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2157","16:54:00","16:54:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2157","17:01:00","17:01:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2157","17:05:00","17:05:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2157","17:09:00","17:09:00","North Beverly",7,"",3,3,1 "CR-Sunday-Fall-16-2157","17:13:00","17:13:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Sunday-Fall-16-2157","17:20:00","17:20:00","Ipswich",9,"",0,0,1 "CR-Sunday-Fall-16-2157","17:27:00","17:27:00","Rowley",10,"",0,0,1 "CR-Sunday-Fall-16-2157","17:34:00","17:34:00","Newburyport",11,"",1,0,0 "CR-Sunday-Fall-16-2158","17:52:00","17:52:00","Newburyport",1,"",0,1,1 "CR-Sunday-Fall-16-2158","17:58:00","17:58:00","Rowley",2,"",0,0,1 "CR-Sunday-Fall-16-2158","18:05:00","18:05:00","Ipswich",3,"",0,0,1 "CR-Sunday-Fall-16-2158","18:12:00","18:12:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Sunday-Fall-16-2158","18:15:00","18:15:00","North Beverly",5,"",3,3,1 "CR-Sunday-Fall-16-2158","18:20:00","18:20:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2158","18:24:00","18:24:00","Salem",7,"",0,0,1 "CR-Sunday-Fall-16-2158","18:30:00","18:30:00","Swampscott",8,"",0,0,1 "CR-Sunday-Fall-16-2158","18:34:00","18:34:00","Lynn",9,"",0,0,1 "CR-Sunday-Fall-16-2158","18:44:00","18:44:00","Chelsea",10,"",3,3,1 "CR-Sunday-Fall-16-2158","18:56:00","18:56:00","North Station",11,"",1,0,0 "CR-Sunday-Fall-16-2159","19:15:00","19:15:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2159","19:26:00","19:26:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2159","19:36:00","19:36:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2159","19:39:00","19:39:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2159","19:46:00","19:46:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2159","19:50:00","19:50:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2159","19:54:00","19:54:00","North Beverly",7,"",3,3,1 "CR-Sunday-Fall-16-2159","19:58:00","19:58:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Sunday-Fall-16-2159","20:05:00","20:05:00","Ipswich",9,"",0,0,1 "CR-Sunday-Fall-16-2159","20:12:00","20:12:00","Rowley",10,"",0,0,1 "CR-Sunday-Fall-16-2159","20:19:00","20:19:00","Newburyport",11,"",1,0,0 "CR-Sunday-Fall-16-2160","21:00:00","21:00:00","Newburyport",1,"",0,1,1 "CR-Sunday-Fall-16-2160","21:06:00","21:06:00","Rowley",2,"",0,0,1 "CR-Sunday-Fall-16-2160","21:13:00","21:13:00","Ipswich",3,"",0,0,1 "CR-Sunday-Fall-16-2160","21:20:00","21:20:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Sunday-Fall-16-2160","21:23:00","21:23:00","North Beverly",5,"",3,3,1 "CR-Sunday-Fall-16-2160","21:28:00","21:28:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2160","21:32:00","21:32:00","Salem",7,"",0,0,1 "CR-Sunday-Fall-16-2160","21:38:00","21:38:00","Swampscott",8,"",0,0,1 "CR-Sunday-Fall-16-2160","21:42:00","21:42:00","Lynn",9,"",0,0,1 "CR-Sunday-Fall-16-2160","21:52:00","21:52:00","Chelsea",10,"",3,3,1 "CR-Sunday-Fall-16-2160","22:04:00","22:04:00","North Station",11,"",1,0,0 "CR-Sunday-Fall-16-2161","22:20:00","22:20:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2161","22:31:00","22:31:00","Chelsea",2,"",3,3,1 "CR-Sunday-Fall-16-2161","22:41:00","22:41:00","Lynn",3,"",0,0,1 "CR-Sunday-Fall-16-2161","22:44:00","22:44:00","Swampscott",4,"",0,0,1 "CR-Sunday-Fall-16-2161","22:51:00","22:51:00","Salem",5,"",0,0,1 "CR-Sunday-Fall-16-2161","22:55:00","22:55:00","Beverly",6,"",0,0,1 "CR-Sunday-Fall-16-2161","22:59:00","22:59:00","North Beverly",7,"",3,3,1 "CR-Sunday-Fall-16-2161","23:03:00","23:03:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Sunday-Fall-16-2161","23:10:00","23:10:00","Ipswich",9,"",0,0,1 "CR-Sunday-Fall-16-2161","23:17:00","23:17:00","Rowley",10,"",0,0,1 "CR-Sunday-Fall-16-2161","23:24:00","23:24:00","Newburyport",11,"",1,0,0 "CR-Sunday-Fall-16-2200","7:15:00","7:15:00","Haverhill",1,"",0,1,1 "CR-Sunday-Fall-16-2200","7:18:00","7:18:00","Bradford",2,"",0,0,1 "CR-Sunday-Fall-16-2200","7:27:00","7:27:00","Lawrence",3,"",0,0,1 "CR-Sunday-Fall-16-2200","7:32:00","7:32:00","Andover",4,"",0,0,1 "CR-Sunday-Fall-16-2200","7:37:00","7:37:00","Ballardvale",5,"",3,3,1 "CR-Sunday-Fall-16-2200","7:44:00","7:44:00","North Wilmington",6,"",3,3,1 "CR-Sunday-Fall-16-2200","7:50:00","7:50:00","Reading",7,"",0,0,1 "CR-Sunday-Fall-16-2200","7:55:00","7:55:00","Wakefield",8,"",0,0,1 "CR-Sunday-Fall-16-2200","7:59:00","7:59:00","Greenwood",9,"",3,3,1 "CR-Sunday-Fall-16-2200","8:02:00","8:02:00","Melrose Highlands",10,"",0,0,1 "CR-Sunday-Fall-16-2200","8:04:00","8:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Sunday-Fall-16-2200","8:06:00","8:06:00","Wyoming Hill",12,"",3,3,1 "CR-Sunday-Fall-16-2200","8:10:00","8:10:00","Malden Center",13,"",0,0,0 "CR-Sunday-Fall-16-2200","8:21:00","8:21:00","North Station",14,"",1,0,0 "CR-Sunday-Fall-16-2201","8:40:00","8:40:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2201","8:50:00","8:50:00","Malden Center",2,"",0,0,1 "CR-Sunday-Fall-16-2201","8:54:00","8:54:00","Wyoming Hill",3,"",3,3,1 "CR-Sunday-Fall-16-2201","8:56:00","8:56:00","Melrose Cedar Park",4,"",3,3,1 "CR-Sunday-Fall-16-2201","8:59:00","8:59:00","Melrose Highlands",5,"",0,0,1 "CR-Sunday-Fall-16-2201","9:02:00","9:02:00","Greenwood",6,"",3,3,1 "CR-Sunday-Fall-16-2201","9:05:00","9:05:00","Wakefield",7,"",0,0,1 "CR-Sunday-Fall-16-2201","9:11:00","9:11:00","Reading",8,"",0,0,1 "CR-Sunday-Fall-16-2201","9:17:00","9:17:00","North Wilmington",9,"",3,3,1 "CR-Sunday-Fall-16-2201","9:23:00","9:23:00","Ballardvale",10,"",3,3,1 "CR-Sunday-Fall-16-2201","9:28:00","9:28:00","Andover",11,"",0,0,1 "CR-Sunday-Fall-16-2201","9:35:00","9:35:00","Lawrence",12,"",0,0,1 "CR-Sunday-Fall-16-2201","9:44:00","9:44:00","Bradford",13,"",0,0,0 "CR-Sunday-Fall-16-2201","9:47:00","9:47:00","Haverhill",14,"",1,0,0 "CR-Sunday-Fall-16-2202","10:15:00","10:15:00","Haverhill",1,"",0,1,1 "CR-Sunday-Fall-16-2202","10:18:00","10:18:00","Bradford",2,"",0,0,1 "CR-Sunday-Fall-16-2202","10:27:00","10:27:00","Lawrence",3,"",0,0,1 "CR-Sunday-Fall-16-2202","10:32:00","10:32:00","Andover",4,"",0,0,1 "CR-Sunday-Fall-16-2202","10:37:00","10:37:00","Ballardvale",5,"",3,3,1 "CR-Sunday-Fall-16-2202","10:44:00","10:44:00","North Wilmington",6,"",3,3,1 "CR-Sunday-Fall-16-2202","10:50:00","10:50:00","Reading",7,"",0,0,1 "CR-Sunday-Fall-16-2202","10:55:00","10:55:00","Wakefield",8,"",0,0,1 "CR-Sunday-Fall-16-2202","10:59:00","10:59:00","Greenwood",9,"",3,3,1 "CR-Sunday-Fall-16-2202","11:02:00","11:02:00","Melrose Highlands",10,"",0,0,1 "CR-Sunday-Fall-16-2202","11:04:00","11:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Sunday-Fall-16-2202","11:06:00","11:06:00","Wyoming Hill",12,"",3,3,1 "CR-Sunday-Fall-16-2202","11:10:00","11:10:00","Malden Center",13,"",0,0,0 "CR-Sunday-Fall-16-2202","11:21:00","11:21:00","North Station",14,"",1,0,0 "CR-Sunday-Fall-16-2203","11:25:00","11:25:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2203","11:35:00","11:35:00","Malden Center",2,"",0,0,1 "CR-Sunday-Fall-16-2203","11:39:00","11:39:00","Wyoming Hill",3,"",3,3,1 "CR-Sunday-Fall-16-2203","11:41:00","11:41:00","Melrose Cedar Park",4,"",3,3,1 "CR-Sunday-Fall-16-2203","11:44:00","11:44:00","Melrose Highlands",5,"",0,0,1 "CR-Sunday-Fall-16-2203","11:47:00","11:47:00","Greenwood",6,"",3,3,1 "CR-Sunday-Fall-16-2203","11:50:00","11:50:00","Wakefield",7,"",0,0,1 "CR-Sunday-Fall-16-2203","11:56:00","11:56:00","Reading",8,"",0,0,1 "CR-Sunday-Fall-16-2203","12:02:00","12:02:00","North Wilmington",9,"",3,3,1 "CR-Sunday-Fall-16-2203","12:08:00","12:08:00","Ballardvale",10,"",3,3,1 "CR-Sunday-Fall-16-2203","12:13:00","12:13:00","Andover",11,"",0,0,1 "CR-Sunday-Fall-16-2203","12:20:00","12:20:00","Lawrence",12,"",0,0,1 "CR-Sunday-Fall-16-2203","12:29:00","12:29:00","Bradford",13,"",0,0,0 "CR-Sunday-Fall-16-2203","12:32:00","12:32:00","Haverhill",14,"",1,0,0 "CR-Sunday-Fall-16-2204","13:15:00","13:15:00","Haverhill",1,"",0,1,1 "CR-Sunday-Fall-16-2204","13:18:00","13:18:00","Bradford",2,"",0,0,1 "CR-Sunday-Fall-16-2204","13:27:00","13:27:00","Lawrence",3,"",0,0,1 "CR-Sunday-Fall-16-2204","13:33:00","13:33:00","Andover",4,"",0,0,1 "CR-Sunday-Fall-16-2204","13:37:00","13:37:00","Ballardvale",5,"",3,3,1 "CR-Sunday-Fall-16-2204","13:44:00","13:44:00","North Wilmington",6,"",3,3,1 "CR-Sunday-Fall-16-2204","13:50:00","13:50:00","Reading",7,"",0,0,1 "CR-Sunday-Fall-16-2204","13:55:00","13:55:00","Wakefield",8,"",0,0,1 "CR-Sunday-Fall-16-2204","13:59:00","13:59:00","Greenwood",9,"",3,3,1 "CR-Sunday-Fall-16-2204","14:02:00","14:02:00","Melrose Highlands",10,"",0,0,1 "CR-Sunday-Fall-16-2204","14:04:00","14:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Sunday-Fall-16-2204","14:06:00","14:06:00","Wyoming Hill",12,"",3,3,1 "CR-Sunday-Fall-16-2204","14:10:00","14:10:00","Malden Center",13,"",0,0,0 "CR-Sunday-Fall-16-2204","14:21:00","14:21:00","North Station",14,"",1,0,0 "CR-Sunday-Fall-16-2205","14:45:00","14:45:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2205","14:55:00","14:55:00","Malden Center",2,"",0,0,1 "CR-Sunday-Fall-16-2205","14:59:00","14:59:00","Wyoming Hill",3,"",3,3,1 "CR-Sunday-Fall-16-2205","15:01:00","15:01:00","Melrose Cedar Park",4,"",3,3,1 "CR-Sunday-Fall-16-2205","15:04:00","15:04:00","Melrose Highlands",5,"",0,0,1 "CR-Sunday-Fall-16-2205","15:07:00","15:07:00","Greenwood",6,"",3,3,1 "CR-Sunday-Fall-16-2205","15:10:00","15:10:00","Wakefield",7,"",0,0,1 "CR-Sunday-Fall-16-2205","15:16:00","15:16:00","Reading",8,"",0,0,1 "CR-Sunday-Fall-16-2205","15:22:00","15:22:00","North Wilmington",9,"",3,3,1 "CR-Sunday-Fall-16-2205","15:28:00","15:28:00","Ballardvale",10,"",3,3,1 "CR-Sunday-Fall-16-2205","15:33:00","15:33:00","Andover",11,"",0,0,1 "CR-Sunday-Fall-16-2205","15:40:00","15:40:00","Lawrence",12,"",0,0,1 "CR-Sunday-Fall-16-2205","15:49:00","15:49:00","Bradford",13,"",0,0,0 "CR-Sunday-Fall-16-2205","15:52:00","15:52:00","Haverhill",14,"",1,0,0 "CR-Sunday-Fall-16-2206","16:15:00","16:15:00","Haverhill",1,"",0,1,1 "CR-Sunday-Fall-16-2206","16:18:00","16:18:00","Bradford",2,"",0,0,1 "CR-Sunday-Fall-16-2206","16:27:00","16:27:00","Lawrence",3,"",0,0,1 "CR-Sunday-Fall-16-2206","16:32:00","16:32:00","Andover",4,"",0,0,1 "CR-Sunday-Fall-16-2206","16:37:00","16:37:00","Ballardvale",5,"",3,3,1 "CR-Sunday-Fall-16-2206","16:44:00","16:44:00","North Wilmington",6,"",3,3,1 "CR-Sunday-Fall-16-2206","16:50:00","16:50:00","Reading",7,"",0,0,1 "CR-Sunday-Fall-16-2206","16:55:00","16:55:00","Wakefield",8,"",0,0,1 "CR-Sunday-Fall-16-2206","16:59:00","16:59:00","Greenwood",9,"",3,3,1 "CR-Sunday-Fall-16-2206","17:02:00","17:02:00","Melrose Highlands",10,"",0,0,1 "CR-Sunday-Fall-16-2206","17:04:00","17:04:00","Melrose Cedar Park",11,"",3,3,1 "CR-Sunday-Fall-16-2206","17:06:00","17:06:00","Wyoming Hill",12,"",3,3,1 "CR-Sunday-Fall-16-2206","17:10:00","17:10:00","Malden Center",13,"",0,0,0 "CR-Sunday-Fall-16-2206","17:21:00","17:21:00","North Station",14,"",1,0,0 "CR-Sunday-Fall-16-2207","17:50:00","17:50:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2207","18:00:00","18:00:00","Malden Center",2,"",0,0,1 "CR-Sunday-Fall-16-2207","18:04:00","18:04:00","Wyoming Hill",3,"",3,3,1 "CR-Sunday-Fall-16-2207","18:06:00","18:06:00","Melrose Cedar Park",4,"",3,3,1 "CR-Sunday-Fall-16-2207","18:09:00","18:09:00","Melrose Highlands",5,"",0,0,1 "CR-Sunday-Fall-16-2207","18:12:00","18:12:00","Greenwood",6,"",3,3,1 "CR-Sunday-Fall-16-2207","18:15:00","18:15:00","Wakefield",7,"",0,0,1 "CR-Sunday-Fall-16-2207","18:21:00","18:21:00","Reading",8,"",0,0,1 "CR-Sunday-Fall-16-2207","18:27:00","18:27:00","North Wilmington",9,"",3,3,1 "CR-Sunday-Fall-16-2207","18:33:00","18:33:00","Ballardvale",10,"",3,3,1 "CR-Sunday-Fall-16-2207","18:38:00","18:38:00","Andover",11,"",0,0,1 "CR-Sunday-Fall-16-2207","18:45:00","18:45:00","Lawrence",12,"",0,0,1 "CR-Sunday-Fall-16-2207","18:54:00","18:54:00","Bradford",13,"",0,0,0 "CR-Sunday-Fall-16-2207","18:57:00","18:57:00","Haverhill",14,"",1,0,0 "CR-Sunday-Fall-16-2208","19:20:00","19:20:00","Haverhill",1,"",0,1,1 "CR-Sunday-Fall-16-2208","19:23:00","19:23:00","Bradford",2,"",0,0,1 "CR-Sunday-Fall-16-2208","19:32:00","19:32:00","Lawrence",3,"",0,0,1 "CR-Sunday-Fall-16-2208","19:38:00","19:38:00","Andover",4,"",0,0,1 "CR-Sunday-Fall-16-2208","19:42:00","19:42:00","Ballardvale",5,"",3,3,1 "CR-Sunday-Fall-16-2208","19:49:00","19:49:00","North Wilmington",6,"",3,3,1 "CR-Sunday-Fall-16-2208","19:55:00","19:55:00","Reading",7,"",0,0,1 "CR-Sunday-Fall-16-2208","20:00:00","20:00:00","Wakefield",8,"",0,0,1 "CR-Sunday-Fall-16-2208","20:04:00","20:04:00","Greenwood",9,"",3,3,1 "CR-Sunday-Fall-16-2208","20:07:00","20:07:00","Melrose Highlands",10,"",0,0,1 "CR-Sunday-Fall-16-2208","20:09:00","20:09:00","Melrose Cedar Park",11,"",3,3,1 "CR-Sunday-Fall-16-2208","20:11:00","20:11:00","Wyoming Hill",12,"",3,3,1 "CR-Sunday-Fall-16-2208","20:15:00","20:15:00","Malden Center",13,"",0,0,0 "CR-Sunday-Fall-16-2208","20:26:00","20:26:00","North Station",14,"",1,0,0 "CR-Sunday-Fall-16-2209","20:40:00","20:40:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2209","20:50:00","20:50:00","Malden Center",2,"",0,0,1 "CR-Sunday-Fall-16-2209","20:54:00","20:54:00","Wyoming Hill",3,"",3,3,1 "CR-Sunday-Fall-16-2209","20:56:00","20:56:00","Melrose Cedar Park",4,"",3,3,1 "CR-Sunday-Fall-16-2209","20:59:00","20:59:00","Melrose Highlands",5,"",0,0,1 "CR-Sunday-Fall-16-2209","21:02:00","21:02:00","Greenwood",6,"",3,3,1 "CR-Sunday-Fall-16-2209","21:05:00","21:05:00","Wakefield",7,"",0,0,1 "CR-Sunday-Fall-16-2209","21:11:00","21:11:00","Reading",8,"",0,0,1 "CR-Sunday-Fall-16-2209","21:17:00","21:17:00","North Wilmington",9,"",3,3,1 "CR-Sunday-Fall-16-2209","21:23:00","21:23:00","Ballardvale",10,"",3,3,1 "CR-Sunday-Fall-16-2209","21:28:00","21:28:00","Andover",11,"",0,0,1 "CR-Sunday-Fall-16-2209","21:35:00","21:35:00","Lawrence",12,"",0,0,1 "CR-Sunday-Fall-16-2209","21:44:00","21:44:00","Bradford",13,"",0,0,0 "CR-Sunday-Fall-16-2209","21:47:00","21:47:00","Haverhill",14,"",1,0,0 "CR-Sunday-Fall-16-2210","22:10:00","22:10:00","Haverhill",1,"",0,1,1 "CR-Sunday-Fall-16-2210","22:13:00","22:13:00","Bradford",2,"",0,0,1 "CR-Sunday-Fall-16-2210","22:22:00","22:22:00","Lawrence",3,"",0,0,1 "CR-Sunday-Fall-16-2210","22:28:00","22:28:00","Andover",4,"",0,0,1 "CR-Sunday-Fall-16-2210","22:32:00","22:32:00","Ballardvale",5,"",3,3,1 "CR-Sunday-Fall-16-2210","22:39:00","22:39:00","North Wilmington",6,"",3,3,1 "CR-Sunday-Fall-16-2210","22:45:00","22:45:00","Reading",7,"",0,0,1 "CR-Sunday-Fall-16-2210","22:50:00","22:50:00","Wakefield",8,"",0,0,1 "CR-Sunday-Fall-16-2210","22:54:00","22:54:00","Greenwood",9,"",3,3,1 "CR-Sunday-Fall-16-2210","22:57:00","22:57:00","Melrose Highlands",10,"",0,0,1 "CR-Sunday-Fall-16-2210","22:59:00","22:59:00","Melrose Cedar Park",11,"",3,3,1 "CR-Sunday-Fall-16-2210","23:01:00","23:01:00","Wyoming Hill",12,"",3,3,1 "CR-Sunday-Fall-16-2210","23:05:00","23:05:00","Malden Center",13,"",0,0,0 "CR-Sunday-Fall-16-2210","23:16:00","23:16:00","North Station",14,"",1,0,0 "CR-Sunday-Fall-16-2211","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2211","23:40:00","23:40:00","Malden Center",2,"",0,0,1 "CR-Sunday-Fall-16-2211","23:44:00","23:44:00","Wyoming Hill",3,"",3,3,1 "CR-Sunday-Fall-16-2211","23:46:00","23:46:00","Melrose Cedar Park",4,"",3,3,1 "CR-Sunday-Fall-16-2211","23:49:00","23:49:00","Melrose Highlands",5,"",0,0,1 "CR-Sunday-Fall-16-2211","23:52:00","23:52:00","Greenwood",6,"",3,3,1 "CR-Sunday-Fall-16-2211","23:55:00","23:55:00","Wakefield",7,"",0,0,1 "CR-Sunday-Fall-16-2211","24:01:00","24:01:00","Reading",8,"",0,0,1 "CR-Sunday-Fall-16-2211","24:07:00","24:07:00","North Wilmington",9,"",3,3,1 "CR-Sunday-Fall-16-2211","24:13:00","24:13:00","Ballardvale",10,"",3,3,1 "CR-Sunday-Fall-16-2211","24:18:00","24:18:00","Andover",11,"",0,0,1 "CR-Sunday-Fall-16-2211","24:25:00","24:25:00","Lawrence",12,"",0,0,1 "CR-Sunday-Fall-16-2211","24:34:00","24:34:00","Bradford",13,"",0,0,0 "CR-Sunday-Fall-16-2211","24:37:00","24:37:00","Haverhill",14,"",1,0,0 "CR-Sunday-Fall-16-2300","7:00:00","7:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2300","7:08:00","7:08:00","North Billerica",2,"",0,0,1 "CR-Sunday-Fall-16-2300","7:16:00","7:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2300","7:20:00","7:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2300","7:27:00","7:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2300","7:29:00","7:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2300","7:33:00","7:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2300","7:44:00","7:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2301","8:00:00","8:00:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2301","8:11:00","8:11:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2301","8:15:00","8:15:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2301","8:17:00","8:17:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2301","8:24:00","8:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2301","8:28:00","8:28:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2301","8:37:00","8:37:00","North Billerica",7,"",3,3,1 "CR-Sunday-Fall-16-2301","8:44:00","8:44:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2302","9:00:00","9:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2302","9:08:00","9:08:00","North Billerica",2,"",0,0,1 "CR-Sunday-Fall-16-2302","9:16:00","9:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2302","9:20:00","9:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2302","9:27:00","9:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2302","9:29:00","9:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2302","9:33:00","9:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2302","9:44:00","9:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2303","10:00:00","10:00:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2303","10:11:00","10:11:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2303","10:15:00","10:15:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2303","10:17:00","10:17:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2303","10:24:00","10:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2303","10:28:00","10:28:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2303","10:37:00","10:37:00","North Billerica",7,"",3,3,1 "CR-Sunday-Fall-16-2303","10:44:00","10:44:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2304","11:00:00","11:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2304","11:08:00","11:08:00","North Billerica",2,"",0,0,1 "CR-Sunday-Fall-16-2304","11:16:00","11:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2304","11:20:00","11:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2304","11:27:00","11:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2304","11:29:00","11:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2304","11:33:00","11:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2304","11:44:00","11:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2305","12:00:00","12:00:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2305","12:11:00","12:11:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2305","12:15:00","12:15:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2305","12:17:00","12:17:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2305","12:24:00","12:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2305","12:28:00","12:28:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2305","12:37:00","12:37:00","North Billerica",7,"",3,3,1 "CR-Sunday-Fall-16-2305","12:44:00","12:44:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2306","13:00:00","13:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2306","13:08:00","13:08:00","North Billerica",2,"",3,3,1 "CR-Sunday-Fall-16-2306","13:16:00","13:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2306","13:20:00","13:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2306","13:27:00","13:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2306","13:29:00","13:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2306","13:33:00","13:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2306","13:44:00","13:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2307","14:00:00","14:00:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2307","14:11:00","14:11:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2307","14:15:00","14:15:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2307","14:17:00","14:17:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2307","14:24:00","14:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2307","14:28:00","14:28:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2307","14:37:00","14:37:00","North Billerica",7,"",0,0,1 "CR-Sunday-Fall-16-2307","14:44:00","14:44:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2308","15:00:00","15:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2308","15:08:00","15:08:00","North Billerica",2,"",3,3,1 "CR-Sunday-Fall-16-2308","15:16:00","15:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2308","15:20:00","15:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2308","15:27:00","15:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2308","15:29:00","15:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2308","15:33:00","15:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2308","15:44:00","15:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2309","16:00:00","16:00:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2309","16:11:00","16:11:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2309","16:15:00","16:15:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2309","16:17:00","16:17:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2309","16:24:00","16:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2309","16:28:00","16:28:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2309","16:37:00","16:37:00","North Billerica",7,"",0,0,1 "CR-Sunday-Fall-16-2309","16:44:00","16:44:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2310","17:00:00","17:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2310","17:08:00","17:08:00","North Billerica",2,"",3,3,1 "CR-Sunday-Fall-16-2310","17:16:00","17:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2310","17:20:00","17:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2310","17:27:00","17:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2310","17:29:00","17:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2310","17:33:00","17:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2310","17:44:00","17:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2311","18:00:00","18:00:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2311","18:11:00","18:11:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2311","18:15:00","18:15:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2311","18:17:00","18:17:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2311","18:24:00","18:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2311","18:28:00","18:28:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2311","18:37:00","18:37:00","North Billerica",7,"",0,0,1 "CR-Sunday-Fall-16-2311","18:44:00","18:44:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2312","19:00:00","19:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2312","19:08:00","19:08:00","North Billerica",2,"",3,3,1 "CR-Sunday-Fall-16-2312","19:16:00","19:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2312","19:20:00","19:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2312","19:27:00","19:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2312","19:29:00","19:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2312","19:33:00","19:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2312","19:44:00","19:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2313","20:00:00","20:00:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2313","20:11:00","20:11:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2313","20:15:00","20:15:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2313","20:17:00","20:17:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2313","20:24:00","20:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2313","20:28:00","20:28:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2313","20:37:00","20:37:00","North Billerica",7,"",0,0,1 "CR-Sunday-Fall-16-2313","20:44:00","20:44:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2314","21:00:00","21:00:00","Lowell",1,"",0,1,1 "CR-Sunday-Fall-16-2314","21:08:00","21:08:00","North Billerica",2,"",3,3,1 "CR-Sunday-Fall-16-2314","21:16:00","21:16:00","Wilmington",3,"",0,0,1 "CR-Sunday-Fall-16-2314","21:20:00","21:20:00","Anderson/ Woburn",4,"",0,0,1 "CR-Sunday-Fall-16-2314","21:27:00","21:27:00","Winchester Center",5,"",0,0,1 "CR-Sunday-Fall-16-2314","21:29:00","21:29:00","Wedgemere",6,"",3,3,1 "CR-Sunday-Fall-16-2314","21:33:00","21:33:00","West Medford",7,"",3,3,1 "CR-Sunday-Fall-16-2314","21:44:00","21:44:00","North Station",8,"",1,0,0 "CR-Sunday-Fall-16-2315","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2315","23:41:00","23:41:00","West Medford",2,"",3,3,1 "CR-Sunday-Fall-16-2315","23:45:00","23:45:00","Wedgemere",3,"",3,3,1 "CR-Sunday-Fall-16-2315","23:47:00","23:47:00","Winchester Center",4,"",0,0,1 "CR-Sunday-Fall-16-2315","23:54:00","23:54:00","Anderson/ Woburn",5,"",0,0,1 "CR-Sunday-Fall-16-2315","23:58:00","23:58:00","Wilmington",6,"",0,0,1 "CR-Sunday-Fall-16-2315","24:07:00","24:07:00","North Billerica",7,"",0,0,1 "CR-Sunday-Fall-16-2315","24:14:00","24:14:00","Lowell",8,"",1,0,0 "CR-Sunday-Fall-16-2400","6:30:00","6:30:00","Wachusett",1,"",0,1,1 "CR-Sunday-Fall-16-2400","6:38:00","6:38:00","Fitchburg",2,"",0,0,1 "CR-Sunday-Fall-16-2400","6:44:00","6:44:00","North Leominster",3,"",0,0,1 "CR-Sunday-Fall-16-2400","6:51:00","6:51:00","Shirley",4,"",3,3,1 "CR-Sunday-Fall-16-2400","6:56:00","6:56:00","Ayer",5,"",0,0,1 "CR-Sunday-Fall-16-2400","7:04:00","7:04:00","Littleton / Rte 495",6,"",0,0,1 "CR-Sunday-Fall-16-2400","7:10:00","7:10:00","South Acton",7,"",0,0,1 "CR-Sunday-Fall-16-2400","7:16:00","7:16:00","West Concord",8,"",3,3,1 "CR-Sunday-Fall-16-2400","7:20:00","7:20:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2400","7:25:00","7:25:00","Lincoln",10,"",0,0,1 "CR-Sunday-Fall-16-2400","7:30:00","7:30:00","Kendal Green",11,"",3,3,1 "CR-Sunday-Fall-16-2400","7:34:00","7:34:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Sunday-Fall-16-2400","7:38:00","7:38:00","Waltham",13,"",0,0,1 "CR-Sunday-Fall-16-2400","7:42:00","7:42:00","Waverley",14,"",3,3,1 "CR-Sunday-Fall-16-2400","7:45:00","7:45:00","Belmont",15,"",3,3,1 "CR-Sunday-Fall-16-2400","7:50:00","7:50:00","Porter Square",16,"",0,0,1 "CR-Sunday-Fall-16-2400","8:00:00","8:00:00","North Station",17,"",1,0,0 "CR-Sunday-Fall-16-2401","10:01:00","10:01:00","Fitchburg",16,"",0,0,1 "CR-Sunday-Fall-16-2401","10:11:00","10:11:00","Wachusett",17,"",1,0,0 "CR-Sunday-Fall-16-2401","8:35:00","8:35:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2401","8:45:00","8:45:00","Porter Square",2,"",0,0,1 "CR-Sunday-Fall-16-2401","8:49:00","8:49:00","Belmont",3,"",3,3,1 "CR-Sunday-Fall-16-2401","8:52:00","8:52:00","Waverley",4,"",3,3,1 "CR-Sunday-Fall-16-2401","8:57:00","8:57:00","Waltham",5,"",0,0,1 "CR-Sunday-Fall-16-2401","9:00:00","9:00:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Sunday-Fall-16-2401","9:04:00","9:04:00","Kendal Green",7,"",3,3,1 "CR-Sunday-Fall-16-2401","9:09:00","9:09:00","Lincoln",8,"",0,0,1 "CR-Sunday-Fall-16-2401","9:15:00","9:15:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2401","9:18:00","9:18:00","West Concord",10,"",3,3,1 "CR-Sunday-Fall-16-2401","9:24:00","9:24:00","South Acton",11,"",0,0,1 "CR-Sunday-Fall-16-2401","9:31:00","9:31:00","Littleton / Rte 495",12,"",0,0,1 "CR-Sunday-Fall-16-2401","9:38:00","9:38:00","Ayer",13,"",0,0,1 "CR-Sunday-Fall-16-2401","9:43:00","9:43:00","Shirley",14,"",3,3,1 "CR-Sunday-Fall-16-2401","9:51:00","9:51:00","North Leominster",15,"",0,0,1 "CR-Sunday-Fall-16-2402","10:00:00","10:00:00","Belmont",15,"",3,3,1 "CR-Sunday-Fall-16-2402","10:05:00","10:05:00","Porter Square",16,"",0,0,1 "CR-Sunday-Fall-16-2402","10:15:00","10:15:00","North Station",17,"",1,0,0 "CR-Sunday-Fall-16-2402","8:45:00","8:45:00","Wachusett",1,"",0,1,1 "CR-Sunday-Fall-16-2402","8:53:00","8:53:00","Fitchburg",2,"",0,0,1 "CR-Sunday-Fall-16-2402","8:59:00","8:59:00","North Leominster",3,"",0,0,1 "CR-Sunday-Fall-16-2402","9:07:00","9:07:00","Shirley",4,"",3,3,1 "CR-Sunday-Fall-16-2402","9:12:00","9:12:00","Ayer",5,"",0,0,1 "CR-Sunday-Fall-16-2402","9:20:00","9:20:00","Littleton / Rte 495",6,"",0,0,1 "CR-Sunday-Fall-16-2402","9:26:00","9:26:00","South Acton",7,"",0,0,1 "CR-Sunday-Fall-16-2402","9:31:00","9:31:00","West Concord",8,"",3,3,1 "CR-Sunday-Fall-16-2402","9:35:00","9:35:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2402","9:40:00","9:40:00","Lincoln",10,"",0,0,1 "CR-Sunday-Fall-16-2402","9:45:00","9:45:00","Kendal Green",11,"",3,3,1 "CR-Sunday-Fall-16-2402","9:49:00","9:49:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Sunday-Fall-16-2402","9:53:00","9:53:00","Waltham",13,"",0,0,1 "CR-Sunday-Fall-16-2402","9:57:00","9:57:00","Waverley",14,"",3,3,1 "CR-Sunday-Fall-16-2403","10:45:00","10:45:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2403","10:55:00","10:55:00","Porter Square",2,"",0,0,1 "CR-Sunday-Fall-16-2403","10:59:00","10:59:00","Belmont",3,"",3,3,1 "CR-Sunday-Fall-16-2403","11:02:00","11:02:00","Waverley",4,"",3,3,1 "CR-Sunday-Fall-16-2403","11:07:00","11:07:00","Waltham",5,"",0,0,1 "CR-Sunday-Fall-16-2403","11:10:00","11:10:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Sunday-Fall-16-2403","11:14:00","11:14:00","Kendal Green",7,"",3,3,1 "CR-Sunday-Fall-16-2403","11:19:00","11:19:00","Lincoln",8,"",0,0,1 "CR-Sunday-Fall-16-2403","11:25:00","11:25:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2403","11:28:00","11:28:00","West Concord",10,"",3,3,1 "CR-Sunday-Fall-16-2403","11:34:00","11:34:00","South Acton",11,"",0,0,1 "CR-Sunday-Fall-16-2403","11:41:00","11:41:00","Littleton / Rte 495",12,"",0,0,1 "CR-Sunday-Fall-16-2403","11:48:00","11:48:00","Ayer",13,"",0,0,1 "CR-Sunday-Fall-16-2403","11:53:00","11:53:00","Shirley",14,"",3,3,1 "CR-Sunday-Fall-16-2403","12:01:00","12:01:00","North Leominster",15,"",0,0,1 "CR-Sunday-Fall-16-2403","12:11:00","12:11:00","Fitchburg",16,"",0,0,1 "CR-Sunday-Fall-16-2403","12:21:00","12:21:00","Wachusett",17,"",1,0,0 "CR-Sunday-Fall-16-2404","10:50:00","10:50:00","Wachusett",1,"",0,1,1 "CR-Sunday-Fall-16-2404","10:58:00","10:58:00","Fitchburg",2,"",0,0,1 "CR-Sunday-Fall-16-2404","11:04:00","11:04:00","North Leominster",3,"",0,0,1 "CR-Sunday-Fall-16-2404","11:12:00","11:12:00","Shirley",4,"",3,3,1 "CR-Sunday-Fall-16-2404","11:17:00","11:17:00","Ayer",5,"",0,0,1 "CR-Sunday-Fall-16-2404","11:25:00","11:25:00","Littleton / Rte 495",6,"",0,0,1 "CR-Sunday-Fall-16-2404","11:31:00","11:31:00","South Acton",7,"",0,0,1 "CR-Sunday-Fall-16-2404","11:36:00","11:36:00","West Concord",8,"",3,3,1 "CR-Sunday-Fall-16-2404","11:40:00","11:40:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2404","11:45:00","11:45:00","Lincoln",10,"",0,0,1 "CR-Sunday-Fall-16-2404","11:50:00","11:50:00","Kendal Green",11,"",3,3,1 "CR-Sunday-Fall-16-2404","11:54:00","11:54:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Sunday-Fall-16-2404","11:58:00","11:58:00","Waltham",13,"",0,0,1 "CR-Sunday-Fall-16-2404","12:02:00","12:02:00","Waverley",14,"",3,3,1 "CR-Sunday-Fall-16-2404","12:05:00","12:05:00","Belmont",15,"",3,3,1 "CR-Sunday-Fall-16-2404","12:10:00","12:10:00","Porter Square",16,"",0,0,1 "CR-Sunday-Fall-16-2404","12:20:00","12:20:00","North Station",17,"",1,0,0 "CR-Sunday-Fall-16-2405","13:10:00","13:10:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2405","13:20:00","13:20:00","Porter Square",2,"",0,0,1 "CR-Sunday-Fall-16-2405","13:24:00","13:24:00","Belmont",3,"",3,3,1 "CR-Sunday-Fall-16-2405","13:27:00","13:27:00","Waverley",4,"",3,3,1 "CR-Sunday-Fall-16-2405","13:32:00","13:32:00","Waltham",5,"",0,0,1 "CR-Sunday-Fall-16-2405","13:35:00","13:35:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Sunday-Fall-16-2405","13:39:00","13:39:00","Kendal Green",7,"",3,3,1 "CR-Sunday-Fall-16-2405","13:44:00","13:44:00","Lincoln",8,"",0,0,1 "CR-Sunday-Fall-16-2405","13:50:00","13:50:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2405","13:53:00","13:53:00","West Concord",10,"",3,3,1 "CR-Sunday-Fall-16-2405","13:59:00","13:59:00","South Acton",11,"",0,0,1 "CR-Sunday-Fall-16-2405","14:06:00","14:06:00","Littleton / Rte 495",12,"",0,0,1 "CR-Sunday-Fall-16-2405","14:13:00","14:13:00","Ayer",13,"",0,0,1 "CR-Sunday-Fall-16-2405","14:18:00","14:18:00","Shirley",14,"",3,3,1 "CR-Sunday-Fall-16-2405","14:26:00","14:26:00","North Leominster",15,"",0,0,1 "CR-Sunday-Fall-16-2405","14:36:00","14:36:00","Fitchburg",16,"",0,0,1 "CR-Sunday-Fall-16-2405","14:46:00","14:46:00","Wachusett",17,"",1,0,0 "CR-Sunday-Fall-16-2406","13:15:00","13:15:00","Wachusett",1,"",0,1,1 "CR-Sunday-Fall-16-2406","13:23:00","13:23:00","Fitchburg",2,"",0,0,1 "CR-Sunday-Fall-16-2406","13:29:00","13:29:00","North Leominster",3,"",0,0,1 "CR-Sunday-Fall-16-2406","13:37:00","13:37:00","Shirley",4,"",3,3,1 "CR-Sunday-Fall-16-2406","13:42:00","13:42:00","Ayer",5,"",0,0,1 "CR-Sunday-Fall-16-2406","13:50:00","13:50:00","Littleton / Rte 495",6,"",0,0,1 "CR-Sunday-Fall-16-2406","13:56:00","13:56:00","South Acton",7,"",0,0,1 "CR-Sunday-Fall-16-2406","14:01:00","14:01:00","West Concord",8,"",3,3,1 "CR-Sunday-Fall-16-2406","14:05:00","14:05:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2406","14:10:00","14:10:00","Lincoln",10,"",0,0,1 "CR-Sunday-Fall-16-2406","14:15:00","14:15:00","Kendal Green",11,"",3,3,1 "CR-Sunday-Fall-16-2406","14:19:00","14:19:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Sunday-Fall-16-2406","14:23:00","14:23:00","Waltham",13,"",0,0,1 "CR-Sunday-Fall-16-2406","14:27:00","14:27:00","Waverley",14,"",3,3,1 "CR-Sunday-Fall-16-2406","14:30:00","14:30:00","Belmont",15,"",3,3,1 "CR-Sunday-Fall-16-2406","14:35:00","14:35:00","Porter Square",16,"",0,0,1 "CR-Sunday-Fall-16-2406","14:45:00","14:45:00","North Station",17,"",1,0,0 "CR-Sunday-Fall-16-2407","15:30:00","15:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2407","15:40:00","15:40:00","Porter Square",2,"",0,0,1 "CR-Sunday-Fall-16-2407","15:44:00","15:44:00","Belmont",3,"",3,3,1 "CR-Sunday-Fall-16-2407","15:47:00","15:47:00","Waverley",4,"",3,3,1 "CR-Sunday-Fall-16-2407","15:52:00","15:52:00","Waltham",5,"",0,0,1 "CR-Sunday-Fall-16-2407","15:55:00","15:55:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Sunday-Fall-16-2407","15:59:00","15:59:00","Kendal Green",7,"",3,3,1 "CR-Sunday-Fall-16-2407","16:04:00","16:04:00","Lincoln",8,"",0,0,1 "CR-Sunday-Fall-16-2407","16:10:00","16:10:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2407","16:13:00","16:13:00","West Concord",10,"",3,3,1 "CR-Sunday-Fall-16-2407","16:19:00","16:19:00","South Acton",11,"",0,0,1 "CR-Sunday-Fall-16-2407","16:26:00","16:26:00","Littleton / Rte 495",12,"",0,0,1 "CR-Sunday-Fall-16-2407","16:33:00","16:33:00","Ayer",13,"",0,0,1 "CR-Sunday-Fall-16-2407","16:38:00","16:38:00","Shirley",14,"",3,3,1 "CR-Sunday-Fall-16-2407","16:46:00","16:46:00","North Leominster",15,"",0,0,1 "CR-Sunday-Fall-16-2407","16:58:00","16:58:00","Fitchburg",16,"",0,0,1 "CR-Sunday-Fall-16-2407","17:08:00","17:08:00","Wachusett",17,"",1,0,0 "CR-Sunday-Fall-16-2408","15:40:00","15:40:00","Wachusett",1,"",0,1,1 "CR-Sunday-Fall-16-2408","15:48:00","15:48:00","Fitchburg",2,"",0,0,1 "CR-Sunday-Fall-16-2408","15:54:00","15:54:00","North Leominster",3,"",0,0,1 "CR-Sunday-Fall-16-2408","16:02:00","16:02:00","Shirley",4,"",3,3,1 "CR-Sunday-Fall-16-2408","16:07:00","16:07:00","Ayer",5,"",0,0,1 "CR-Sunday-Fall-16-2408","16:15:00","16:15:00","Littleton / Rte 495",6,"",0,0,1 "CR-Sunday-Fall-16-2408","16:21:00","16:21:00","South Acton",7,"",0,0,1 "CR-Sunday-Fall-16-2408","16:26:00","16:26:00","West Concord",8,"",3,3,1 "CR-Sunday-Fall-16-2408","16:30:00","16:30:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2408","16:35:00","16:35:00","Lincoln",10,"",0,0,1 "CR-Sunday-Fall-16-2408","16:40:00","16:40:00","Kendal Green",11,"",3,3,1 "CR-Sunday-Fall-16-2408","16:44:00","16:44:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Sunday-Fall-16-2408","16:48:00","16:48:00","Waltham",13,"",0,0,1 "CR-Sunday-Fall-16-2408","16:52:00","16:52:00","Waverley",14,"",3,3,1 "CR-Sunday-Fall-16-2408","16:55:00","16:55:00","Belmont",15,"",3,3,1 "CR-Sunday-Fall-16-2408","17:00:00","17:00:00","Porter Square",16,"",0,0,1 "CR-Sunday-Fall-16-2408","17:10:00","17:10:00","North Station",17,"",1,0,0 "CR-Sunday-Fall-16-2409","17:45:00","17:45:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2409","17:55:00","17:55:00","Porter Square",2,"",0,0,1 "CR-Sunday-Fall-16-2409","17:59:00","17:59:00","Belmont",3,"",3,3,1 "CR-Sunday-Fall-16-2409","18:02:00","18:02:00","Waverley",4,"",3,3,1 "CR-Sunday-Fall-16-2409","18:07:00","18:07:00","Waltham",5,"",0,0,1 "CR-Sunday-Fall-16-2409","18:10:00","18:10:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Sunday-Fall-16-2409","18:14:00","18:14:00","Kendal Green",7,"",3,3,1 "CR-Sunday-Fall-16-2409","18:19:00","18:19:00","Lincoln",8,"",0,0,1 "CR-Sunday-Fall-16-2409","18:25:00","18:25:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2409","18:28:00","18:28:00","West Concord",10,"",3,3,1 "CR-Sunday-Fall-16-2409","18:34:00","18:34:00","South Acton",11,"",0,0,1 "CR-Sunday-Fall-16-2409","18:41:00","18:41:00","Littleton / Rte 495",12,"",0,0,1 "CR-Sunday-Fall-16-2409","18:48:00","18:48:00","Ayer",13,"",0,0,1 "CR-Sunday-Fall-16-2409","18:53:00","18:53:00","Shirley",14,"",3,3,1 "CR-Sunday-Fall-16-2409","19:01:00","19:01:00","North Leominster",15,"",0,0,1 "CR-Sunday-Fall-16-2409","19:11:00","19:11:00","Fitchburg",16,"",0,0,1 "CR-Sunday-Fall-16-2409","19:21:00","19:21:00","Wachusett",17,"",1,0,0 "CR-Sunday-Fall-16-2410","18:10:00","18:10:00","Wachusett",1,"",0,1,1 "CR-Sunday-Fall-16-2410","18:18:00","18:18:00","Fitchburg",2,"",0,0,1 "CR-Sunday-Fall-16-2410","18:24:00","18:24:00","North Leominster",3,"",0,0,1 "CR-Sunday-Fall-16-2410","18:32:00","18:32:00","Shirley",4,"",3,3,1 "CR-Sunday-Fall-16-2410","18:37:00","18:37:00","Ayer",5,"",0,0,1 "CR-Sunday-Fall-16-2410","18:45:00","18:45:00","Littleton / Rte 495",6,"",0,0,1 "CR-Sunday-Fall-16-2410","18:51:00","18:51:00","South Acton",7,"",0,0,1 "CR-Sunday-Fall-16-2410","18:56:00","18:56:00","West Concord",8,"",3,3,1 "CR-Sunday-Fall-16-2410","19:00:00","19:00:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2410","19:05:00","19:05:00","Lincoln",10,"",0,0,1 "CR-Sunday-Fall-16-2410","19:10:00","19:10:00","Kendal Green",11,"",3,3,1 "CR-Sunday-Fall-16-2410","19:14:00","19:14:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Sunday-Fall-16-2410","19:18:00","19:18:00","Waltham",13,"",0,0,1 "CR-Sunday-Fall-16-2410","19:22:00","19:22:00","Waverley",14,"",3,3,1 "CR-Sunday-Fall-16-2410","19:25:00","19:25:00","Belmont",15,"",3,3,1 "CR-Sunday-Fall-16-2410","19:30:00","19:30:00","Porter Square",16,"",0,0,1 "CR-Sunday-Fall-16-2410","19:40:00","19:40:00","North Station",17,"",1,0,0 "CR-Sunday-Fall-16-2411","19:55:00","19:55:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2411","20:05:00","20:05:00","Porter Square",2,"",0,0,1 "CR-Sunday-Fall-16-2411","20:09:00","20:09:00","Belmont",3,"",3,3,1 "CR-Sunday-Fall-16-2411","20:12:00","20:12:00","Waverley",4,"",3,3,1 "CR-Sunday-Fall-16-2411","20:17:00","20:17:00","Waltham",5,"",0,0,1 "CR-Sunday-Fall-16-2411","20:20:00","20:20:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Sunday-Fall-16-2411","20:24:00","20:24:00","Kendal Green",7,"",3,3,1 "CR-Sunday-Fall-16-2411","20:29:00","20:29:00","Lincoln",8,"",0,0,1 "CR-Sunday-Fall-16-2411","20:35:00","20:35:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2411","20:38:00","20:38:00","West Concord",10,"",3,3,1 "CR-Sunday-Fall-16-2411","20:44:00","20:44:00","South Acton",11,"",0,0,1 "CR-Sunday-Fall-16-2411","20:51:00","20:51:00","Littleton / Rte 495",12,"",0,0,1 "CR-Sunday-Fall-16-2411","20:58:00","20:58:00","Ayer",13,"",0,0,1 "CR-Sunday-Fall-16-2411","21:03:00","21:03:00","Shirley",14,"",3,3,1 "CR-Sunday-Fall-16-2411","21:11:00","21:11:00","North Leominster",15,"",0,0,1 "CR-Sunday-Fall-16-2411","21:21:00","21:21:00","Fitchburg",16,"",0,0,1 "CR-Sunday-Fall-16-2411","21:31:00","21:31:00","Wachusett",17,"",1,0,0 "CR-Sunday-Fall-16-2412","21:45:00","21:45:00","Wachusett",1,"",0,1,1 "CR-Sunday-Fall-16-2412","21:53:00","21:53:00","Fitchburg",2,"",0,0,1 "CR-Sunday-Fall-16-2412","21:59:00","21:59:00","North Leominster",3,"",0,0,1 "CR-Sunday-Fall-16-2412","22:07:00","22:07:00","Shirley",4,"",3,3,1 "CR-Sunday-Fall-16-2412","22:12:00","22:12:00","Ayer",5,"",0,0,1 "CR-Sunday-Fall-16-2412","22:20:00","22:20:00","Littleton / Rte 495",6,"",0,0,1 "CR-Sunday-Fall-16-2412","22:26:00","22:26:00","South Acton",7,"",0,0,1 "CR-Sunday-Fall-16-2412","22:31:00","22:31:00","West Concord",8,"",3,3,1 "CR-Sunday-Fall-16-2412","22:35:00","22:35:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2412","22:40:00","22:40:00","Lincoln",10,"",0,0,1 "CR-Sunday-Fall-16-2412","22:45:00","22:45:00","Kendal Green",11,"",3,3,1 "CR-Sunday-Fall-16-2412","22:49:00","22:49:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Sunday-Fall-16-2412","22:53:00","22:53:00","Waltham",13,"",0,0,1 "CR-Sunday-Fall-16-2412","22:57:00","22:57:00","Waverley",14,"",3,3,1 "CR-Sunday-Fall-16-2412","23:00:00","23:00:00","Belmont",15,"",3,3,1 "CR-Sunday-Fall-16-2412","23:05:00","23:05:00","Porter Square",16,"",0,0,1 "CR-Sunday-Fall-16-2412","23:15:00","23:15:00","North Station",17,"",1,0,0 "CR-Sunday-Fall-16-2413","23:30:00","23:30:00","North Station",1,"",0,1,1 "CR-Sunday-Fall-16-2413","23:40:00","23:40:00","Porter Square",2,"",0,0,1 "CR-Sunday-Fall-16-2413","23:44:00","23:44:00","Belmont",3,"",3,3,1 "CR-Sunday-Fall-16-2413","23:47:00","23:47:00","Waverley",4,"",3,3,1 "CR-Sunday-Fall-16-2413","23:52:00","23:52:00","Waltham",5,"",0,0,1 "CR-Sunday-Fall-16-2413","23:55:00","23:55:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Sunday-Fall-16-2413","23:59:00","23:59:00","Kendal Green",7,"",3,3,1 "CR-Sunday-Fall-16-2413","24:04:00","24:04:00","Lincoln",8,"",0,0,1 "CR-Sunday-Fall-16-2413","24:10:00","24:10:00","Concord",9,"",0,0,1 "CR-Sunday-Fall-16-2413","24:13:00","24:13:00","West Concord",10,"",3,3,1 "CR-Sunday-Fall-16-2413","24:19:00","24:19:00","South Acton",11,"",0,0,1 "CR-Sunday-Fall-16-2413","24:26:00","24:26:00","Littleton / Rte 495",12,"",0,0,1 "CR-Sunday-Fall-16-2413","24:33:00","24:33:00","Ayer",13,"",0,0,1 "CR-Sunday-Fall-16-2413","24:38:00","24:38:00","Shirley",14,"",3,3,1 "CR-Sunday-Fall-16-2413","24:46:00","24:46:00","North Leominster",15,"",0,0,1 "CR-Sunday-Fall-16-2413","24:56:00","24:56:00","Fitchburg",16,"",0,0,1 "CR-Sunday-Fall-16-2413","25:06:00","25:06:00","Wachusett",17,"",1,0,0 "CR-Sunday-Fall-16-2500","7:00:00","7:00:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2500","7:13:00","7:13:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2500","7:17:00","7:17:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2500","7:25:00","7:25:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2500","7:30:00","7:30:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2500","7:40:00","7:40:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2500","7:44:00","7:44:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2500","7:49:00","7:49:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2500","7:54:00","7:54:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2500","7:57:00","7:57:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2500","8:00:00","8:00:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2500","8:05:00","8:05:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2500","8:08:00","8:08:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2500","8:11:00","8:11:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2500","8:21:00","8:21:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2500","8:25:00","8:25:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2500","8:30:00","8:30:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2501","6:40:00","6:40:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2501","6:46:00","6:46:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2501","6:50:00","6:50:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2501","6:58:00","6:58:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2501","7:01:00","7:01:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2501","7:04:00","7:04:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2501","7:09:00","7:09:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2501","7:12:00","7:12:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2501","7:15:00","7:15:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2501","7:20:00","7:20:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2501","7:26:00","7:26:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2501","7:31:00","7:31:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2501","7:37:00","7:37:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2501","7:41:00","7:41:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2501","7:50:00","7:50:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2501","7:55:00","7:55:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2501","8:10:00","8:10:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2502","10:01:00","10:01:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2502","10:11:00","10:11:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2502","10:15:00","10:15:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2502","10:20:00","10:20:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2502","8:50:00","8:50:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2502","9:03:00","9:03:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2502","9:07:00","9:07:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2502","9:15:00","9:15:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2502","9:20:00","9:20:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2502","9:30:00","9:30:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2502","9:34:00","9:34:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2502","9:39:00","9:39:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2502","9:44:00","9:44:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2502","9:47:00","9:47:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2502","9:50:00","9:50:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2502","9:55:00","9:55:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2502","9:58:00","9:58:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2503","10:10:00","10:10:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2503","8:40:00","8:40:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2503","8:46:00","8:46:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2503","8:50:00","8:50:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2503","8:58:00","8:58:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2503","9:01:00","9:01:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2503","9:04:00","9:04:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2503","9:09:00","9:09:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2503","9:12:00","9:12:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2503","9:15:00","9:15:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2503","9:20:00","9:20:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2503","9:26:00","9:26:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2503","9:31:00","9:31:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2503","9:37:00","9:37:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2503","9:41:00","9:41:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2503","9:50:00","9:50:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2503","9:55:00","9:55:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2504","10:50:00","10:50:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2504","11:03:00","11:03:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2504","11:07:00","11:07:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2504","11:15:00","11:15:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2504","11:20:00","11:20:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2504","11:30:00","11:30:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2504","11:34:00","11:34:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2504","11:39:00","11:39:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2504","11:44:00","11:44:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2504","11:47:00","11:47:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2504","11:50:00","11:50:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2504","11:55:00","11:55:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2504","11:58:00","11:58:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2504","12:01:00","12:01:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2504","12:11:00","12:11:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2504","12:15:00","12:15:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2504","12:20:00","12:20:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2505","10:40:00","10:40:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2505","10:46:00","10:46:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2505","10:50:00","10:50:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2505","10:58:00","10:58:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2505","11:01:00","11:01:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2505","11:04:00","11:04:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2505","11:09:00","11:09:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2505","11:12:00","11:12:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2505","11:15:00","11:15:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2505","11:20:00","11:20:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2505","11:26:00","11:26:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2505","11:31:00","11:31:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2505","11:37:00","11:37:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2505","11:41:00","11:41:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2505","11:50:00","11:50:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2505","11:55:00","11:55:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2505","12:10:00","12:10:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2506","12:50:00","12:50:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2506","13:03:00","13:03:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2506","13:07:00","13:07:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2506","13:15:00","13:15:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2506","13:20:00","13:20:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2506","13:30:00","13:30:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2506","13:34:00","13:34:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2506","13:39:00","13:39:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2506","13:44:00","13:44:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2506","13:47:00","13:47:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2506","13:50:00","13:50:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2506","13:55:00","13:55:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2506","13:58:00","13:58:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2506","14:01:00","14:01:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2506","14:11:00","14:11:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2506","14:15:00","14:15:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2506","14:20:00","14:20:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2507","12:40:00","12:40:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2507","12:46:00","12:46:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2507","12:50:00","12:50:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2507","12:58:00","12:58:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2507","13:01:00","13:01:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2507","13:04:00","13:04:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2507","13:09:00","13:09:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2507","13:12:00","13:12:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2507","13:15:00","13:15:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2507","13:20:00","13:20:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2507","13:26:00","13:26:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2507","13:31:00","13:31:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2507","13:37:00","13:37:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2507","13:41:00","13:41:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2507","13:50:00","13:50:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2507","13:55:00","13:55:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2507","14:10:00","14:10:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2508","14:30:00","14:30:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2508","14:43:00","14:43:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2508","14:47:00","14:47:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2508","14:55:00","14:55:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2508","15:00:00","15:00:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2508","15:10:00","15:10:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2508","15:14:00","15:14:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2508","15:19:00","15:19:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2508","15:24:00","15:24:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2508","15:27:00","15:27:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2508","15:30:00","15:30:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2508","15:35:00","15:35:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2508","15:38:00","15:38:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2508","15:41:00","15:41:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2508","15:51:00","15:51:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2508","15:55:00","15:55:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2508","16:00:00","16:00:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2509","14:20:00","14:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2509","14:26:00","14:26:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2509","14:30:00","14:30:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2509","14:38:00","14:38:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2509","14:41:00","14:41:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2509","14:44:00","14:44:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2509","14:49:00","14:49:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2509","14:52:00","14:52:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2509","14:55:00","14:55:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2509","15:00:00","15:00:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2509","15:06:00","15:06:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2509","15:11:00","15:11:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2509","15:17:00","15:17:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2509","15:21:00","15:21:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2509","15:30:00","15:30:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2509","15:35:00","15:35:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2509","15:50:00","15:50:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2510","16:30:00","16:30:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2510","16:43:00","16:43:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2510","16:47:00","16:47:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2510","16:55:00","16:55:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2510","17:00:00","17:00:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2510","17:10:00","17:10:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2510","17:14:00","17:14:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2510","17:19:00","17:19:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2510","17:24:00","17:24:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2510","17:27:00","17:27:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2510","17:30:00","17:30:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2510","17:35:00","17:35:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2510","17:38:00","17:38:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2510","17:41:00","17:41:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2510","17:51:00","17:51:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2510","17:55:00","17:55:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2510","18:00:00","18:00:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2511","16:20:00","16:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2511","16:26:00","16:26:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2511","16:30:00","16:30:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2511","16:38:00","16:38:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2511","16:41:00","16:41:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2511","16:44:00","16:44:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2511","16:49:00","16:49:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2511","16:52:00","16:52:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2511","16:55:00","16:55:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2511","17:00:00","17:00:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2511","17:06:00","17:06:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2511","17:11:00","17:11:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2511","17:17:00","17:17:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2511","17:21:00","17:21:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2511","17:30:00","17:30:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2511","17:35:00","17:35:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2511","17:50:00","17:50:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2512","18:30:00","18:30:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2512","18:43:00","18:43:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2512","18:47:00","18:47:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2512","18:55:00","18:55:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2512","19:00:00","19:00:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2512","19:10:00","19:10:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2512","19:14:00","19:14:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2512","19:19:00","19:19:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2512","19:24:00","19:24:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2512","19:27:00","19:27:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2512","19:30:00","19:30:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2512","19:35:00","19:35:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2512","19:38:00","19:38:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2512","19:41:00","19:41:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2512","19:51:00","19:51:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2512","19:55:00","19:55:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2512","20:00:00","20:00:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2513","18:20:00","18:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2513","18:26:00","18:26:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2513","18:30:00","18:30:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2513","18:38:00","18:38:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2513","18:41:00","18:41:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2513","18:44:00","18:44:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2513","18:49:00","18:49:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2513","18:52:00","18:52:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2513","18:55:00","18:55:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2513","19:00:00","19:00:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2513","19:06:00","19:06:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2513","19:11:00","19:11:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2513","19:17:00","19:17:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2513","19:21:00","19:21:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2513","19:30:00","19:30:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2513","19:35:00","19:35:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2513","19:50:00","19:50:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2514","20:30:00","20:30:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2514","20:43:00","20:43:00","Grafton",2,"",0,0,1 "CR-Sunday-Fall-16-2514","20:47:00","20:47:00","Westborough",3,"",0,0,1 "CR-Sunday-Fall-16-2514","20:55:00","20:55:00","Southborough",4,"",0,0,1 "CR-Sunday-Fall-16-2514","21:00:00","21:00:00","Ashland",5,"",0,0,1 "CR-Sunday-Fall-16-2514","21:10:00","21:10:00","Framingham",6,"",0,0,1 "CR-Sunday-Fall-16-2514","21:14:00","21:14:00","West Natick",7,"",0,0,1 "CR-Sunday-Fall-16-2514","21:19:00","21:19:00","Natick Center",8,"",0,0,1 "CR-Sunday-Fall-16-2514","21:24:00","21:24:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2514","21:27:00","21:27:00","Wellesley Hills",10,"",0,0,1 "CR-Sunday-Fall-16-2514","21:30:00","21:30:00","Wellesley Farms",11,"",0,0,1 "CR-Sunday-Fall-16-2514","21:35:00","21:35:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2514","21:38:00","21:38:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2514","21:41:00","21:41:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2514","21:51:00","21:51:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2514","21:55:00","21:55:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2514","22:00:00","22:00:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2515","20:20:00","20:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2515","20:26:00","20:26:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2515","20:30:00","20:30:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2515","20:38:00","20:38:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2515","20:41:00","20:41:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2515","20:44:00","20:44:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2515","20:49:00","20:49:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2515","20:52:00","20:52:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2515","20:55:00","20:55:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2515","21:00:00","21:00:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2515","21:06:00","21:06:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2515","21:11:00","21:11:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2515","21:17:00","21:17:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2515","21:21:00","21:21:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2515","21:30:00","21:30:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2515","21:35:00","21:35:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2515","21:50:00","21:50:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2516","23:00:00","23:00:00","Worcester",1,"",0,1,1 "CR-Sunday-Fall-16-2516","23:13:00","23:13:00","Grafton",2,"",3,3,1 "CR-Sunday-Fall-16-2516","23:17:00","23:17:00","Westborough",3,"",3,3,1 "CR-Sunday-Fall-16-2516","23:25:00","23:25:00","Southborough",4,"",3,3,1 "CR-Sunday-Fall-16-2516","23:30:00","23:30:00","Ashland",5,"",3,3,1 "CR-Sunday-Fall-16-2516","23:40:00","23:40:00","Framingham",6,"",3,3,1 "CR-Sunday-Fall-16-2516","23:44:00","23:44:00","West Natick",7,"",3,3,1 "CR-Sunday-Fall-16-2516","23:49:00","23:49:00","Natick Center",8,"",3,3,1 "CR-Sunday-Fall-16-2516","23:54:00","23:54:00","Wellesley Square",9,"",3,3,1 "CR-Sunday-Fall-16-2516","23:57:00","23:57:00","Wellesley Hills",10,"",3,3,1 "CR-Sunday-Fall-16-2516","24:00:00","24:00:00","Wellesley Farms",11,"",3,3,1 "CR-Sunday-Fall-16-2516","24:05:00","24:05:00","Auburndale",12,"",3,3,1 "CR-Sunday-Fall-16-2516","24:08:00","24:08:00","West Newton",13,"",3,3,1 "CR-Sunday-Fall-16-2516","24:11:00","24:11:00","Newtonville",14,"",3,3,1 "CR-Sunday-Fall-16-2516","24:21:00","24:21:00","Yawkey",15,"",0,0,0 "CR-Sunday-Fall-16-2516","24:25:00","24:25:00","Back Bay",16,"",0,0,0 "CR-Sunday-Fall-16-2516","24:30:00","24:30:00","South Station",17,"",1,0,0 "CR-Sunday-Fall-16-2517","22:40:00","22:40:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2517","22:46:00","22:46:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2517","22:50:00","22:50:00","Yawkey",3,"",0,0,1 "CR-Sunday-Fall-16-2517","22:58:00","22:58:00","Newtonville",4,"",3,3,1 "CR-Sunday-Fall-16-2517","23:01:00","23:01:00","West Newton",5,"",3,3,1 "CR-Sunday-Fall-16-2517","23:04:00","23:04:00","Auburndale",6,"",3,3,1 "CR-Sunday-Fall-16-2517","23:09:00","23:09:00","Wellesley Farms",7,"",0,0,1 "CR-Sunday-Fall-16-2517","23:12:00","23:12:00","Wellesley Hills",8,"",0,0,1 "CR-Sunday-Fall-16-2517","23:15:00","23:15:00","Wellesley Square",9,"",0,0,1 "CR-Sunday-Fall-16-2517","23:20:00","23:20:00","Natick Center",10,"",0,0,1 "CR-Sunday-Fall-16-2517","23:26:00","23:26:00","West Natick",11,"",0,0,1 "CR-Sunday-Fall-16-2517","23:31:00","23:31:00","Framingham",12,"",0,0,1 "CR-Sunday-Fall-16-2517","23:37:00","23:37:00","Ashland",13,"",0,0,1 "CR-Sunday-Fall-16-2517","23:41:00","23:41:00","Southborough",14,"",0,0,1 "CR-Sunday-Fall-16-2517","23:50:00","23:50:00","Westborough",15,"",0,0,1 "CR-Sunday-Fall-16-2517","23:55:00","23:55:00","Grafton",16,"",0,0,1 "CR-Sunday-Fall-16-2517","24:10:00","24:10:00","Worcester",17,"",1,0,0 "CR-Sunday-Fall-16-2706","10:40:00","10:40:00","Forge Park / 495",1,"",0,1,1 "CR-Sunday-Fall-16-2706","10:47:00","10:47:00","Franklin",2,"",0,0,1 "CR-Sunday-Fall-16-2706","10:54:00","10:54:00","Norfolk",3,"",0,0,1 "CR-Sunday-Fall-16-2706","11:01:00","11:01:00","Walpole",4,"",0,0,1 "CR-Sunday-Fall-16-2706","11:06:00","11:06:00","Windsor Gardens",5,"",0,0,1 "CR-Sunday-Fall-16-2706","11:10:00","11:10:00","Norwood Central",6,"",0,0,1 "CR-Sunday-Fall-16-2706","11:12:00","11:12:00","Norwood Depot",7,"",0,0,1 "CR-Sunday-Fall-16-2706","11:16:00","11:16:00","Islington",8,"",0,0,1 "CR-Sunday-Fall-16-2706","11:19:00","11:19:00","Dedham Corp Center",9,"",0,0,1 "CR-Sunday-Fall-16-2706","11:21:00","11:21:00","Endicott",10,"",0,0,1 "CR-Sunday-Fall-16-2706","11:24:00","11:24:00","Readville",11,"",0,0,1 "CR-Sunday-Fall-16-2706","11:34:00","11:34:00","Ruggles",12,"",0,0,0 "CR-Sunday-Fall-16-2706","11:38:00","11:38:00","Back Bay",13,"",0,0,0 "CR-Sunday-Fall-16-2706","11:43:00","11:43:00","South Station",14,"",1,0,0 "CR-Sunday-Fall-16-2707","11:20:00","11:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2707","11:25:00","11:25:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2707","11:28:00","11:28:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2707","11:38:00","11:38:00","Readville",4,"",0,0,1 "CR-Sunday-Fall-16-2707","11:41:00","11:41:00","Endicott",5,"",0,0,1 "CR-Sunday-Fall-16-2707","11:44:00","11:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Sunday-Fall-16-2707","11:46:00","11:46:00","Islington",7,"",0,0,1 "CR-Sunday-Fall-16-2707","11:49:00","11:49:00","Norwood Depot",8,"",0,0,1 "CR-Sunday-Fall-16-2707","11:51:00","11:51:00","Norwood Central",9,"",0,0,1 "CR-Sunday-Fall-16-2707","11:55:00","11:55:00","Windsor Gardens",10,"",0,0,1 "CR-Sunday-Fall-16-2707","11:59:00","11:59:00","Walpole",11,"",0,0,1 "CR-Sunday-Fall-16-2707","12:05:00","12:05:00","Norfolk",12,"",0,0,1 "CR-Sunday-Fall-16-2707","12:12:00","12:12:00","Franklin",13,"",0,0,1 "CR-Sunday-Fall-16-2707","12:19:00","12:19:00","Forge Park / 495",14,"",1,0,0 "CR-Sunday-Fall-16-2708","12:40:00","12:40:00","Forge Park / 495",1,"",0,1,1 "CR-Sunday-Fall-16-2708","12:47:00","12:47:00","Franklin",2,"",0,0,1 "CR-Sunday-Fall-16-2708","12:54:00","12:54:00","Norfolk",3,"",0,0,1 "CR-Sunday-Fall-16-2708","13:01:00","13:01:00","Walpole",4,"",0,0,1 "CR-Sunday-Fall-16-2708","13:06:00","13:06:00","Windsor Gardens",5,"",0,0,1 "CR-Sunday-Fall-16-2708","13:10:00","13:10:00","Norwood Central",6,"",0,0,1 "CR-Sunday-Fall-16-2708","13:12:00","13:12:00","Norwood Depot",7,"",0,0,1 "CR-Sunday-Fall-16-2708","13:16:00","13:16:00","Islington",8,"",0,0,1 "CR-Sunday-Fall-16-2708","13:19:00","13:19:00","Dedham Corp Center",9,"",0,0,1 "CR-Sunday-Fall-16-2708","13:21:00","13:21:00","Endicott",10,"",0,0,1 "CR-Sunday-Fall-16-2708","13:24:00","13:24:00","Readville",11,"",0,0,1 "CR-Sunday-Fall-16-2708","13:34:00","13:34:00","Ruggles",12,"",0,0,0 "CR-Sunday-Fall-16-2708","13:38:00","13:38:00","Back Bay",13,"",0,0,0 "CR-Sunday-Fall-16-2708","13:43:00","13:43:00","South Station",14,"",1,0,0 "CR-Sunday-Fall-16-2709","13:20:00","13:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2709","13:25:00","13:25:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2709","13:28:00","13:28:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2709","13:38:00","13:38:00","Readville",4,"",0,0,1 "CR-Sunday-Fall-16-2709","13:41:00","13:41:00","Endicott",5,"",0,0,1 "CR-Sunday-Fall-16-2709","13:45:00","13:45:00","Dedham Corp Center",6,"",0,0,1 "CR-Sunday-Fall-16-2709","13:47:00","13:47:00","Islington",7,"",0,0,1 "CR-Sunday-Fall-16-2709","13:50:00","13:50:00","Norwood Depot",8,"",0,0,1 "CR-Sunday-Fall-16-2709","13:53:00","13:53:00","Norwood Central",9,"",0,0,1 "CR-Sunday-Fall-16-2709","13:57:00","13:57:00","Windsor Gardens",10,"",0,0,1 "CR-Sunday-Fall-16-2709","14:03:00","14:03:00","Walpole",11,"",0,0,1 "CR-Sunday-Fall-16-2709","14:10:00","14:10:00","Norfolk",12,"",0,0,1 "CR-Sunday-Fall-16-2709","14:17:00","14:17:00","Franklin",13,"",0,0,1 "CR-Sunday-Fall-16-2709","14:24:00","14:24:00","Forge Park / 495",14,"",1,0,0 "CR-Sunday-Fall-16-2710","14:35:00","14:35:00","Forge Park / 495",1,"",0,1,1 "CR-Sunday-Fall-16-2710","14:42:00","14:42:00","Franklin",2,"",0,0,1 "CR-Sunday-Fall-16-2710","14:49:00","14:49:00","Norfolk",3,"",0,0,1 "CR-Sunday-Fall-16-2710","14:56:00","14:56:00","Walpole",4,"",0,0,1 "CR-Sunday-Fall-16-2710","15:01:00","15:01:00","Windsor Gardens",5,"",0,0,1 "CR-Sunday-Fall-16-2710","15:05:00","15:05:00","Norwood Central",6,"",0,0,1 "CR-Sunday-Fall-16-2710","15:07:00","15:07:00","Norwood Depot",7,"",0,0,1 "CR-Sunday-Fall-16-2710","15:11:00","15:11:00","Islington",8,"",0,0,1 "CR-Sunday-Fall-16-2710","15:14:00","15:14:00","Dedham Corp Center",9,"",0,0,1 "CR-Sunday-Fall-16-2710","15:16:00","15:16:00","Endicott",10,"",0,0,1 "CR-Sunday-Fall-16-2710","15:19:00","15:19:00","Readville",11,"",0,0,1 "CR-Sunday-Fall-16-2710","15:29:00","15:29:00","Ruggles",12,"",0,0,0 "CR-Sunday-Fall-16-2710","15:33:00","15:33:00","Back Bay",13,"",0,0,0 "CR-Sunday-Fall-16-2710","15:38:00","15:38:00","South Station",14,"",1,0,0 "CR-Sunday-Fall-16-2711","15:20:00","15:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2711","15:25:00","15:25:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2711","15:28:00","15:28:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2711","15:38:00","15:38:00","Readville",4,"",0,0,1 "CR-Sunday-Fall-16-2711","15:41:00","15:41:00","Endicott",5,"",0,0,1 "CR-Sunday-Fall-16-2711","15:45:00","15:45:00","Dedham Corp Center",6,"",0,0,1 "CR-Sunday-Fall-16-2711","15:47:00","15:47:00","Islington",7,"",0,0,1 "CR-Sunday-Fall-16-2711","15:50:00","15:50:00","Norwood Depot",8,"",0,0,1 "CR-Sunday-Fall-16-2711","15:53:00","15:53:00","Norwood Central",9,"",0,0,1 "CR-Sunday-Fall-16-2711","15:57:00","15:57:00","Windsor Gardens",10,"",0,0,1 "CR-Sunday-Fall-16-2711","16:03:00","16:03:00","Walpole",11,"",0,0,1 "CR-Sunday-Fall-16-2711","16:10:00","16:10:00","Norfolk",12,"",0,0,1 "CR-Sunday-Fall-16-2711","16:17:00","16:17:00","Franklin",13,"",0,0,1 "CR-Sunday-Fall-16-2711","16:24:00","16:24:00","Forge Park / 495",14,"",1,0,0 "CR-Sunday-Fall-16-2712","16:35:00","16:35:00","Forge Park / 495",1,"",0,1,1 "CR-Sunday-Fall-16-2712","16:42:00","16:42:00","Franklin",2,"",0,0,1 "CR-Sunday-Fall-16-2712","16:49:00","16:49:00","Norfolk",3,"",0,0,1 "CR-Sunday-Fall-16-2712","16:56:00","16:56:00","Walpole",4,"",0,0,1 "CR-Sunday-Fall-16-2712","17:01:00","17:01:00","Windsor Gardens",5,"",0,0,1 "CR-Sunday-Fall-16-2712","17:05:00","17:05:00","Norwood Central",6,"",0,0,1 "CR-Sunday-Fall-16-2712","17:07:00","17:07:00","Norwood Depot",7,"",0,0,1 "CR-Sunday-Fall-16-2712","17:11:00","17:11:00","Islington",8,"",0,0,1 "CR-Sunday-Fall-16-2712","17:14:00","17:14:00","Dedham Corp Center",9,"",0,0,1 "CR-Sunday-Fall-16-2712","17:16:00","17:16:00","Endicott",10,"",0,0,1 "CR-Sunday-Fall-16-2712","17:19:00","17:19:00","Readville",11,"",0,0,1 "CR-Sunday-Fall-16-2712","17:29:00","17:29:00","Ruggles",12,"",0,0,0 "CR-Sunday-Fall-16-2712","17:33:00","17:33:00","Back Bay",13,"",0,0,0 "CR-Sunday-Fall-16-2712","17:38:00","17:38:00","South Station",14,"",1,0,0 "CR-Sunday-Fall-16-2713","17:20:00","17:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2713","17:25:00","17:25:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2713","17:28:00","17:28:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2713","17:38:00","17:38:00","Readville",4,"",0,0,1 "CR-Sunday-Fall-16-2713","17:41:00","17:41:00","Endicott",5,"",0,0,1 "CR-Sunday-Fall-16-2713","17:45:00","17:45:00","Dedham Corp Center",6,"",0,0,1 "CR-Sunday-Fall-16-2713","17:47:00","17:47:00","Islington",7,"",0,0,1 "CR-Sunday-Fall-16-2713","17:50:00","17:50:00","Norwood Depot",8,"",0,0,1 "CR-Sunday-Fall-16-2713","17:53:00","17:53:00","Norwood Central",9,"",0,0,1 "CR-Sunday-Fall-16-2713","17:57:00","17:57:00","Windsor Gardens",10,"",0,0,1 "CR-Sunday-Fall-16-2713","18:03:00","18:03:00","Walpole",11,"",0,0,1 "CR-Sunday-Fall-16-2713","18:10:00","18:10:00","Norfolk",12,"",0,0,1 "CR-Sunday-Fall-16-2713","18:17:00","18:17:00","Franklin",13,"",0,0,1 "CR-Sunday-Fall-16-2713","18:24:00","18:24:00","Forge Park / 495",14,"",1,0,0 "CR-Sunday-Fall-16-2714","18:35:00","18:35:00","Forge Park / 495",1,"",0,1,1 "CR-Sunday-Fall-16-2714","18:42:00","18:42:00","Franklin",2,"",0,0,1 "CR-Sunday-Fall-16-2714","18:49:00","18:49:00","Norfolk",3,"",0,0,1 "CR-Sunday-Fall-16-2714","18:55:00","18:55:00","Walpole",4,"",0,0,1 "CR-Sunday-Fall-16-2714","18:59:00","18:59:00","Windsor Gardens",5,"",0,0,1 "CR-Sunday-Fall-16-2714","19:03:00","19:03:00","Norwood Central",6,"",0,0,1 "CR-Sunday-Fall-16-2714","19:05:00","19:05:00","Norwood Depot",7,"",0,0,1 "CR-Sunday-Fall-16-2714","19:08:00","19:08:00","Islington",8,"",0,0,1 "CR-Sunday-Fall-16-2714","19:10:00","19:10:00","Dedham Corp Center",9,"",0,0,1 "CR-Sunday-Fall-16-2714","19:13:00","19:13:00","Endicott",10,"",0,0,1 "CR-Sunday-Fall-16-2714","19:16:00","19:16:00","Readville",11,"",0,0,1 "CR-Sunday-Fall-16-2714","19:26:00","19:26:00","Ruggles",12,"",0,0,0 "CR-Sunday-Fall-16-2714","19:30:00","19:30:00","Back Bay",13,"",0,0,0 "CR-Sunday-Fall-16-2714","19:35:00","19:35:00","South Station",14,"",1,0,0 "CR-Sunday-Fall-16-2715","19:20:00","19:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2715","19:25:00","19:25:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2715","19:28:00","19:28:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2715","19:38:00","19:38:00","Readville",4,"",0,0,1 "CR-Sunday-Fall-16-2715","19:41:00","19:41:00","Endicott",5,"",0,0,1 "CR-Sunday-Fall-16-2715","19:44:00","19:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Sunday-Fall-16-2715","19:46:00","19:46:00","Islington",7,"",0,0,1 "CR-Sunday-Fall-16-2715","19:49:00","19:49:00","Norwood Depot",8,"",0,0,1 "CR-Sunday-Fall-16-2715","19:52:00","19:52:00","Norwood Central",9,"",0,0,1 "CR-Sunday-Fall-16-2715","19:56:00","19:56:00","Windsor Gardens",10,"",0,0,1 "CR-Sunday-Fall-16-2715","20:01:00","20:01:00","Walpole",11,"",0,0,1 "CR-Sunday-Fall-16-2715","20:07:00","20:07:00","Norfolk",12,"",0,0,1 "CR-Sunday-Fall-16-2715","20:15:00","20:15:00","Franklin",13,"",0,0,1 "CR-Sunday-Fall-16-2715","20:22:00","20:22:00","Forge Park / 495",14,"",1,0,0 "CR-Sunday-Fall-16-2716","20:35:00","20:35:00","Forge Park / 495",1,"",0,1,1 "CR-Sunday-Fall-16-2716","20:42:00","20:42:00","Franklin",2,"",0,0,1 "CR-Sunday-Fall-16-2716","20:49:00","20:49:00","Norfolk",3,"",0,0,1 "CR-Sunday-Fall-16-2716","20:55:00","20:55:00","Walpole",4,"",0,0,1 "CR-Sunday-Fall-16-2716","20:59:00","20:59:00","Windsor Gardens",5,"",0,0,1 "CR-Sunday-Fall-16-2716","21:03:00","21:03:00","Norwood Central",6,"",0,0,1 "CR-Sunday-Fall-16-2716","21:05:00","21:05:00","Norwood Depot",7,"",0,0,1 "CR-Sunday-Fall-16-2716","21:08:00","21:08:00","Islington",8,"",0,0,1 "CR-Sunday-Fall-16-2716","21:10:00","21:10:00","Dedham Corp Center",9,"",0,0,1 "CR-Sunday-Fall-16-2716","21:13:00","21:13:00","Endicott",10,"",0,0,1 "CR-Sunday-Fall-16-2716","21:16:00","21:16:00","Readville",11,"",0,0,1 "CR-Sunday-Fall-16-2716","21:26:00","21:26:00","Ruggles",12,"",0,0,0 "CR-Sunday-Fall-16-2716","21:30:00","21:30:00","Back Bay",13,"",0,0,0 "CR-Sunday-Fall-16-2716","21:35:00","21:35:00","South Station",14,"",1,0,0 "CR-Sunday-Fall-16-2717","21:20:00","21:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2717","21:25:00","21:25:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2717","21:28:00","21:28:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2717","21:38:00","21:38:00","Readville",4,"",0,0,1 "CR-Sunday-Fall-16-2717","21:41:00","21:41:00","Endicott",5,"",0,0,1 "CR-Sunday-Fall-16-2717","21:44:00","21:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Sunday-Fall-16-2717","21:46:00","21:46:00","Islington",7,"",0,0,1 "CR-Sunday-Fall-16-2717","21:49:00","21:49:00","Norwood Depot",8,"",0,0,1 "CR-Sunday-Fall-16-2717","21:51:00","21:51:00","Norwood Central",9,"",0,0,1 "CR-Sunday-Fall-16-2717","21:55:00","21:55:00","Windsor Gardens",10,"",0,0,1 "CR-Sunday-Fall-16-2717","21:59:00","21:59:00","Walpole",11,"",0,0,1 "CR-Sunday-Fall-16-2717","22:05:00","22:05:00","Norfolk",12,"",0,0,1 "CR-Sunday-Fall-16-2717","22:12:00","22:12:00","Franklin",13,"",0,0,1 "CR-Sunday-Fall-16-2717","22:19:00","22:19:00","Forge Park / 495",14,"",1,0,0 "CR-Sunday-Fall-16-2718","22:35:00","22:35:00","Forge Park / 495",1,"",0,1,1 "CR-Sunday-Fall-16-2718","22:42:00","22:42:00","Franklin",2,"",0,0,1 "CR-Sunday-Fall-16-2718","22:49:00","22:49:00","Norfolk",3,"",0,0,1 "CR-Sunday-Fall-16-2718","22:55:00","22:55:00","Walpole",4,"",0,0,1 "CR-Sunday-Fall-16-2718","22:59:00","22:59:00","Windsor Gardens",5,"",0,0,1 "CR-Sunday-Fall-16-2718","23:03:00","23:03:00","Norwood Central",6,"",0,0,1 "CR-Sunday-Fall-16-2718","23:05:00","23:05:00","Norwood Depot",7,"",0,0,1 "CR-Sunday-Fall-16-2718","23:08:00","23:08:00","Islington",8,"",0,0,1 "CR-Sunday-Fall-16-2718","23:10:00","23:10:00","Dedham Corp Center",9,"",0,0,1 "CR-Sunday-Fall-16-2718","23:13:00","23:13:00","Endicott",10,"",0,0,1 "CR-Sunday-Fall-16-2718","23:16:00","23:16:00","Readville",11,"",0,0,1 "CR-Sunday-Fall-16-2718","23:26:00","23:26:00","Ruggles",12,"",0,0,0 "CR-Sunday-Fall-16-2718","23:30:00","23:30:00","Back Bay",13,"",0,0,0 "CR-Sunday-Fall-16-2718","23:35:00","23:35:00","South Station",14,"",1,0,0 "CR-Sunday-Fall-16-2719","23:20:00","23:20:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2719","23:25:00","23:25:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2719","23:28:00","23:28:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2719","23:38:00","23:38:00","Readville",4,"",0,0,1 "CR-Sunday-Fall-16-2719","23:41:00","23:41:00","Endicott",5,"",0,0,1 "CR-Sunday-Fall-16-2719","23:44:00","23:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Sunday-Fall-16-2719","23:46:00","23:46:00","Islington",7,"",0,0,1 "CR-Sunday-Fall-16-2719","23:49:00","23:49:00","Norwood Depot",8,"",0,0,1 "CR-Sunday-Fall-16-2719","23:51:00","23:51:00","Norwood Central",9,"",0,0,1 "CR-Sunday-Fall-16-2719","23:55:00","23:55:00","Windsor Gardens",10,"",0,0,1 "CR-Sunday-Fall-16-2719","23:59:00","23:59:00","Walpole",11,"",0,0,1 "CR-Sunday-Fall-16-2719","24:05:00","24:05:00","Norfolk",12,"",0,0,1 "CR-Sunday-Fall-16-2719","24:12:00","24:12:00","Franklin",13,"",0,0,1 "CR-Sunday-Fall-16-2719","24:19:00","24:19:00","Forge Park / 495",14,"",1,0,0 "CR-Sunday-Fall-16-2752","7:30:00","7:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2752","7:33:00","7:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2752","7:37:00","7:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2752","7:40:00","7:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2752","7:42:00","7:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2752","7:44:00","7:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2752","7:47:00","7:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2752","7:55:00","7:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2753","7:50:00","7:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2753","7:58:00","7:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2753","8:01:00","8:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2753","8:03:00","8:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2753","8:05:00","8:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2753","8:07:00","8:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2753","8:11:00","8:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2753","8:15:00","8:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2754","8:30:00","8:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2754","8:33:00","8:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2754","8:37:00","8:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2754","8:40:00","8:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2754","8:42:00","8:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2754","8:44:00","8:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2754","8:47:00","8:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2754","8:55:00","8:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2755","8:50:00","8:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2755","8:58:00","8:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2755","9:01:00","9:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2755","9:03:00","9:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2755","9:05:00","9:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2755","9:07:00","9:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2755","9:11:00","9:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2755","9:15:00","9:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2756","9:30:00","9:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2756","9:33:00","9:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2756","9:37:00","9:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2756","9:40:00","9:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2756","9:42:00","9:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2756","9:44:00","9:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2756","9:47:00","9:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2756","9:55:00","9:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2757","10:01:00","10:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2757","10:03:00","10:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2757","10:05:00","10:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2757","10:07:00","10:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2757","10:11:00","10:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2757","10:15:00","10:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2757","9:50:00","9:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2757","9:58:00","9:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2758","10:30:00","10:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2758","10:33:00","10:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2758","10:37:00","10:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2758","10:40:00","10:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2758","10:42:00","10:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2758","10:44:00","10:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2758","10:47:00","10:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2758","10:55:00","10:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2759","10:50:00","10:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2759","10:58:00","10:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2759","11:01:00","11:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2759","11:03:00","11:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2759","11:05:00","11:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2759","11:07:00","11:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2759","11:11:00","11:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2759","11:15:00","11:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2760","11:30:00","11:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2760","11:33:00","11:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2760","11:37:00","11:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2760","11:40:00","11:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2760","11:42:00","11:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2760","11:44:00","11:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2760","11:47:00","11:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2760","11:55:00","11:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2761","11:50:00","11:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2761","11:58:00","11:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2761","12:01:00","12:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2761","12:03:00","12:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2761","12:05:00","12:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2761","12:07:00","12:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2761","12:11:00","12:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2761","12:15:00","12:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2762","12:30:00","12:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2762","12:33:00","12:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2762","12:37:00","12:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2762","12:40:00","12:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2762","12:42:00","12:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2762","12:44:00","12:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2762","12:47:00","12:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2762","12:55:00","12:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2763","12:50:00","12:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2763","12:58:00","12:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2763","13:01:00","13:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2763","13:03:00","13:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2763","13:05:00","13:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2763","13:07:00","13:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2763","13:11:00","13:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2763","13:15:00","13:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2764","13:30:00","13:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2764","13:33:00","13:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2764","13:37:00","13:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2764","13:40:00","13:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2764","13:42:00","13:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2764","13:44:00","13:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2764","13:47:00","13:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2764","13:55:00","13:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2765","13:50:00","13:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2765","13:58:00","13:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2765","14:01:00","14:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2765","14:03:00","14:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2765","14:05:00","14:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2765","14:07:00","14:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2765","14:11:00","14:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2765","14:15:00","14:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2766","14:30:00","14:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2766","14:33:00","14:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2766","14:37:00","14:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2766","14:40:00","14:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2766","14:42:00","14:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2766","14:44:00","14:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2766","14:47:00","14:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2766","14:55:00","14:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2767","14:50:00","14:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2767","14:58:00","14:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2767","15:01:00","15:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2767","15:03:00","15:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2767","15:05:00","15:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2767","15:07:00","15:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2767","15:11:00","15:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2767","15:15:00","15:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2768","15:30:00","15:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2768","15:33:00","15:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2768","15:37:00","15:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2768","15:40:00","15:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2768","15:42:00","15:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2768","15:44:00","15:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2768","15:47:00","15:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2768","15:55:00","15:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2769","15:50:00","15:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2769","15:58:00","15:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2769","16:01:00","16:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2769","16:03:00","16:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2769","16:05:00","16:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2769","16:07:00","16:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2769","16:11:00","16:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2769","16:15:00","16:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2770","16:30:00","16:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2770","16:33:00","16:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2770","16:37:00","16:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2770","16:40:00","16:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2770","16:42:00","16:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2770","16:44:00","16:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2770","16:47:00","16:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2770","16:55:00","16:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2771","16:50:00","16:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2771","16:58:00","16:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2771","17:01:00","17:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2771","17:03:00","17:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2771","17:05:00","17:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2771","17:07:00","17:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2771","17:11:00","17:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2771","17:15:00","17:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2772","17:30:00","17:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2772","17:33:00","17:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2772","17:37:00","17:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2772","17:40:00","17:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2772","17:42:00","17:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2772","17:44:00","17:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2772","17:47:00","17:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2772","17:55:00","17:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2773","17:50:00","17:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2773","17:58:00","17:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2773","18:01:00","18:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2773","18:03:00","18:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2773","18:05:00","18:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2773","18:07:00","18:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2773","18:11:00","18:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2773","18:15:00","18:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2774","18:30:00","18:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2774","18:33:00","18:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2774","18:37:00","18:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2774","18:40:00","18:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2774","18:42:00","18:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2774","18:44:00","18:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2774","18:47:00","18:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2774","18:55:00","18:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2775","18:50:00","18:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2775","18:58:00","18:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2775","19:01:00","19:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2775","19:03:00","19:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2775","19:05:00","19:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2775","19:07:00","19:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2775","19:11:00","19:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2775","19:15:00","19:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2776","19:30:00","19:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2776","19:33:00","19:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2776","19:37:00","19:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2776","19:40:00","19:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2776","19:42:00","19:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2776","19:44:00","19:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2776","19:47:00","19:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2776","19:55:00","19:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2777","19:50:00","19:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2777","19:58:00","19:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2777","20:01:00","20:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2777","20:03:00","20:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2777","20:05:00","20:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2777","20:07:00","20:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2777","20:11:00","20:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2777","20:15:00","20:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2778","20:30:00","20:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2778","20:33:00","20:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2778","20:37:00","20:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2778","20:40:00","20:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2778","20:42:00","20:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2778","20:44:00","20:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2778","20:47:00","20:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2778","20:55:00","20:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2779","20:50:00","20:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2779","20:58:00","20:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2779","21:01:00","21:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2779","21:03:00","21:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2779","21:05:00","21:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2779","21:07:00","21:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2779","21:11:00","21:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2779","21:15:00","21:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2780","21:30:00","21:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2780","21:33:00","21:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2780","21:37:00","21:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2780","21:40:00","21:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2780","21:42:00","21:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2780","21:44:00","21:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2780","21:47:00","21:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2780","21:55:00","21:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2781","21:50:00","21:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2781","21:58:00","21:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2781","22:01:00","22:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2781","22:03:00","22:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2781","22:05:00","22:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2781","22:07:00","22:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2781","22:11:00","22:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2781","22:15:00","22:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2782","22:30:00","22:30:00","Readville",1,"",0,1,1 "CR-Sunday-Fall-16-2782","22:33:00","22:33:00","Fairmount",2,"",3,3,1 "CR-Sunday-Fall-16-2782","22:37:00","22:37:00","Morton Street",3,"",3,3,1 "CR-Sunday-Fall-16-2782","22:40:00","22:40:00","Talbot Avenue",4,"",3,3,1 "CR-Sunday-Fall-16-2782","22:42:00","22:42:00","Four Corners / Geneva",5,"",3,3,1 "CR-Sunday-Fall-16-2782","22:44:00","22:44:00","Uphams Corner",6,"",3,3,1 "CR-Sunday-Fall-16-2782","22:47:00","22:47:00","Newmarket",7,"",3,3,1 "CR-Sunday-Fall-16-2782","22:55:00","22:55:00","South Station",8,"",1,0,0 "CR-Sunday-Fall-16-2783","22:50:00","22:50:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2783","22:58:00","22:58:00","Newmarket",2,"",3,3,1 "CR-Sunday-Fall-16-2783","23:01:00","23:01:00","Uphams Corner",3,"",3,3,1 "CR-Sunday-Fall-16-2783","23:03:00","23:03:00","Four Corners / Geneva",4,"",3,3,1 "CR-Sunday-Fall-16-2783","23:05:00","23:05:00","Talbot Avenue",5,"",3,3,1 "CR-Sunday-Fall-16-2783","23:07:00","23:07:00","Morton Street",6,"",3,3,1 "CR-Sunday-Fall-16-2783","23:11:00","23:11:00","Fairmount",7,"",3,3,1 "CR-Sunday-Fall-16-2783","23:15:00","23:15:00","Readville",8,"",1,0,0 "CR-Sunday-Fall-16-2805","11:05:00","11:05:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2805","11:10:00","11:10:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2805","11:13:00","11:13:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2805","11:21:00","11:21:00","Hyde Park",4,"",0,0,1 "CR-Sunday-Fall-16-2805","11:31:00","11:31:00","Route 128",5,"",0,0,1 "CR-Sunday-Fall-16-2805","11:36:00","11:36:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2805","11:41:00","11:41:00","Sharon",7,"",0,0,1 "CR-Sunday-Fall-16-2805","11:49:00","11:49:00","Mansfield",8,"",0,0,1 "CR-Sunday-Fall-16-2805","11:56:00","11:56:00","Attleboro",9,"",0,0,1 "CR-Sunday-Fall-16-2805","12:05:00","12:05:00","South Attleboro",10,"",0,0,1 "CR-Sunday-Fall-16-2805","12:15:00","12:15:00","Providence",11,"",1,0,0 "CR-Sunday-Fall-16-2806","11:20:00","11:20:00","Providence",1,"",0,1,1 "CR-Sunday-Fall-16-2806","11:30:00","11:30:00","South Attleboro",2,"",0,0,1 "CR-Sunday-Fall-16-2806","11:38:00","11:38:00","Attleboro",3,"",0,0,1 "CR-Sunday-Fall-16-2806","11:45:00","11:45:00","Mansfield",4,"",0,0,1 "CR-Sunday-Fall-16-2806","11:53:00","11:53:00","Sharon",5,"",0,0,1 "CR-Sunday-Fall-16-2806","12:00:00","12:00:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2806","12:05:00","12:05:00","Route 128",7,"",0,0,1 "CR-Sunday-Fall-16-2806","12:10:00","12:10:00","Hyde Park",8,"",0,0,1 "CR-Sunday-Fall-16-2806","12:22:00","12:22:00","Ruggles",9,"",0,0,0 "CR-Sunday-Fall-16-2806","12:25:00","12:25:00","Back Bay",10,"",0,0,0 "CR-Sunday-Fall-16-2806","12:30:00","12:30:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2807","13:05:00","13:05:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2807","13:10:00","13:10:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2807","13:13:00","13:13:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2807","13:21:00","13:21:00","Hyde Park",4,"",0,0,1 "CR-Sunday-Fall-16-2807","13:31:00","13:31:00","Route 128",5,"",0,0,1 "CR-Sunday-Fall-16-2807","13:36:00","13:36:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2807","13:41:00","13:41:00","Sharon",7,"",0,0,1 "CR-Sunday-Fall-16-2807","13:49:00","13:49:00","Mansfield",8,"",0,0,1 "CR-Sunday-Fall-16-2807","13:56:00","13:56:00","Attleboro",9,"",0,0,1 "CR-Sunday-Fall-16-2807","14:05:00","14:05:00","South Attleboro",10,"",0,0,1 "CR-Sunday-Fall-16-2807","14:15:00","14:15:00","Providence",11,"",1,0,0 "CR-Sunday-Fall-16-2808","12:55:00","12:55:00","Providence",1,"",0,1,1 "CR-Sunday-Fall-16-2808","13:05:00","13:05:00","South Attleboro",2,"",0,0,1 "CR-Sunday-Fall-16-2808","13:13:00","13:13:00","Attleboro",3,"",0,0,1 "CR-Sunday-Fall-16-2808","13:20:00","13:20:00","Mansfield",4,"",0,0,1 "CR-Sunday-Fall-16-2808","13:28:00","13:28:00","Sharon",5,"",0,0,1 "CR-Sunday-Fall-16-2808","13:35:00","13:35:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2808","13:40:00","13:40:00","Route 128",7,"",0,0,1 "CR-Sunday-Fall-16-2808","13:45:00","13:45:00","Hyde Park",8,"",0,0,1 "CR-Sunday-Fall-16-2808","13:55:00","13:55:00","Ruggles",9,"",0,0,0 "CR-Sunday-Fall-16-2808","13:58:00","13:58:00","Back Bay",10,"",0,0,0 "CR-Sunday-Fall-16-2808","14:03:00","14:03:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2809","14:25:00","14:25:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2809","14:30:00","14:30:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2809","14:33:00","14:33:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2809","14:41:00","14:41:00","Hyde Park",4,"",0,0,1 "CR-Sunday-Fall-16-2809","14:46:00","14:46:00","Route 128",5,"",0,0,1 "CR-Sunday-Fall-16-2809","14:51:00","14:51:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2809","14:56:00","14:56:00","Sharon",7,"",0,0,1 "CR-Sunday-Fall-16-2809","15:04:00","15:04:00","Mansfield",8,"",0,0,1 "CR-Sunday-Fall-16-2809","15:11:00","15:11:00","Attleboro",9,"",0,0,1 "CR-Sunday-Fall-16-2809","15:20:00","15:20:00","South Attleboro",10,"",0,0,1 "CR-Sunday-Fall-16-2809","15:30:00","15:30:00","Providence",11,"",1,0,0 "CR-Sunday-Fall-16-2810","14:56:00","14:56:00","Providence",1,"",0,1,1 "CR-Sunday-Fall-16-2810","15:06:00","15:06:00","South Attleboro",2,"",0,0,1 "CR-Sunday-Fall-16-2810","15:14:00","15:14:00","Attleboro",3,"",0,0,1 "CR-Sunday-Fall-16-2810","15:24:00","15:24:00","Mansfield",4,"",0,0,1 "CR-Sunday-Fall-16-2810","15:32:00","15:32:00","Sharon",5,"",0,0,1 "CR-Sunday-Fall-16-2810","15:39:00","15:39:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2810","15:44:00","15:44:00","Route 128",7,"",0,0,1 "CR-Sunday-Fall-16-2810","15:49:00","15:49:00","Hyde Park",8,"",0,0,1 "CR-Sunday-Fall-16-2810","15:59:00","15:59:00","Ruggles",9,"",0,0,0 "CR-Sunday-Fall-16-2810","16:02:00","16:02:00","Back Bay",10,"",0,0,0 "CR-Sunday-Fall-16-2810","16:07:00","16:07:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2811","16:35:00","16:35:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2811","16:40:00","16:40:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2811","16:43:00","16:43:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2811","16:51:00","16:51:00","Hyde Park",4,"",0,0,1 "CR-Sunday-Fall-16-2811","16:56:00","16:56:00","Route 128",5,"",0,0,1 "CR-Sunday-Fall-16-2811","17:01:00","17:01:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2811","17:06:00","17:06:00","Sharon",7,"",0,0,1 "CR-Sunday-Fall-16-2811","17:14:00","17:14:00","Mansfield",8,"",0,0,1 "CR-Sunday-Fall-16-2811","17:21:00","17:21:00","Attleboro",9,"",0,0,1 "CR-Sunday-Fall-16-2811","17:30:00","17:30:00","South Attleboro",10,"",0,0,1 "CR-Sunday-Fall-16-2811","17:40:00","17:40:00","Providence",11,"",1,0,0 "CR-Sunday-Fall-16-2812","16:56:00","16:56:00","Providence",1,"",0,1,1 "CR-Sunday-Fall-16-2812","17:06:00","17:06:00","South Attleboro",2,"",0,0,1 "CR-Sunday-Fall-16-2812","17:14:00","17:14:00","Attleboro",3,"",0,0,1 "CR-Sunday-Fall-16-2812","17:24:00","17:24:00","Mansfield",4,"",0,0,1 "CR-Sunday-Fall-16-2812","17:32:00","17:32:00","Sharon",5,"",0,0,1 "CR-Sunday-Fall-16-2812","17:39:00","17:39:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2812","17:44:00","17:44:00","Route 128",7,"",0,0,1 "CR-Sunday-Fall-16-2812","17:49:00","17:49:00","Hyde Park",8,"",0,0,1 "CR-Sunday-Fall-16-2812","17:59:00","17:59:00","Ruggles",9,"",0,0,0 "CR-Sunday-Fall-16-2812","18:02:00","18:02:00","Back Bay",10,"",0,0,0 "CR-Sunday-Fall-16-2812","18:07:00","18:07:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2813","18:45:00","18:45:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2813","18:50:00","18:50:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2813","18:53:00","18:53:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2813","19:01:00","19:01:00","Hyde Park",4,"",0,0,1 "CR-Sunday-Fall-16-2813","19:06:00","19:06:00","Route 128",5,"",0,0,1 "CR-Sunday-Fall-16-2813","19:11:00","19:11:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2813","19:16:00","19:16:00","Sharon",7,"",0,0,1 "CR-Sunday-Fall-16-2813","19:24:00","19:24:00","Mansfield",8,"",0,0,1 "CR-Sunday-Fall-16-2813","19:31:00","19:31:00","Attleboro",9,"",0,0,1 "CR-Sunday-Fall-16-2813","19:40:00","19:40:00","South Attleboro",10,"",0,0,1 "CR-Sunday-Fall-16-2813","19:50:00","19:50:00","Providence",11,"",1,0,0 "CR-Sunday-Fall-16-2814","19:05:00","19:05:00","Providence",1,"",0,1,1 "CR-Sunday-Fall-16-2814","19:15:00","19:15:00","South Attleboro",2,"",0,0,1 "CR-Sunday-Fall-16-2814","19:23:00","19:23:00","Attleboro",3,"",0,0,1 "CR-Sunday-Fall-16-2814","19:30:00","19:30:00","Mansfield",4,"",0,0,1 "CR-Sunday-Fall-16-2814","19:38:00","19:38:00","Sharon",5,"",0,0,1 "CR-Sunday-Fall-16-2814","19:45:00","19:45:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2814","19:50:00","19:50:00","Route 128",7,"",0,0,1 "CR-Sunday-Fall-16-2814","19:55:00","19:55:00","Hyde Park",8,"",0,0,1 "CR-Sunday-Fall-16-2814","20:05:00","20:05:00","Ruggles",9,"",0,0,0 "CR-Sunday-Fall-16-2814","20:08:00","20:08:00","Back Bay",10,"",0,0,0 "CR-Sunday-Fall-16-2814","20:13:00","20:13:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2815","20:45:00","20:45:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2815","20:50:00","20:50:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2815","20:53:00","20:53:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2815","21:01:00","21:01:00","Hyde Park",4,"",0,0,1 "CR-Sunday-Fall-16-2815","21:06:00","21:06:00","Route 128",5,"",0,0,1 "CR-Sunday-Fall-16-2815","21:11:00","21:11:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2815","21:16:00","21:16:00","Sharon",7,"",0,0,1 "CR-Sunday-Fall-16-2815","21:24:00","21:24:00","Mansfield",8,"",0,0,1 "CR-Sunday-Fall-16-2815","21:31:00","21:31:00","Attleboro",9,"",0,0,1 "CR-Sunday-Fall-16-2815","21:40:00","21:40:00","South Attleboro",10,"",0,0,1 "CR-Sunday-Fall-16-2815","21:50:00","21:50:00","Providence",11,"",1,0,0 "CR-Sunday-Fall-16-2816","20:52:00","20:52:00","Providence",1,"",0,1,1 "CR-Sunday-Fall-16-2816","21:02:00","21:02:00","South Attleboro",2,"",0,0,1 "CR-Sunday-Fall-16-2816","21:10:00","21:10:00","Attleboro",3,"",0,0,1 "CR-Sunday-Fall-16-2816","21:20:00","21:20:00","Mansfield",4,"",0,0,1 "CR-Sunday-Fall-16-2816","21:28:00","21:28:00","Sharon",5,"",0,0,1 "CR-Sunday-Fall-16-2816","21:35:00","21:35:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2816","21:40:00","21:40:00","Route 128",7,"",0,0,1 "CR-Sunday-Fall-16-2816","21:45:00","21:45:00","Hyde Park",8,"",0,0,1 "CR-Sunday-Fall-16-2816","21:55:00","21:55:00","Ruggles",9,"",0,0,0 "CR-Sunday-Fall-16-2816","21:58:00","21:58:00","Back Bay",10,"",0,0,0 "CR-Sunday-Fall-16-2816","22:03:00","22:03:00","South Station",11,"",1,0,0 "CR-Sunday-Fall-16-2817","23:10:00","23:10:00","South Station",1,"",0,1,1 "CR-Sunday-Fall-16-2817","23:15:00","23:15:00","Back Bay",2,"",0,0,1 "CR-Sunday-Fall-16-2817","23:18:00","23:18:00","Ruggles",3,"",0,0,1 "CR-Sunday-Fall-16-2817","23:26:00","23:26:00","Hyde Park",4,"",0,0,1 "CR-Sunday-Fall-16-2817","23:31:00","23:31:00","Route 128",5,"",0,0,1 "CR-Sunday-Fall-16-2817","23:36:00","23:36:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2817","23:41:00","23:41:00","Sharon",7,"",0,0,1 "CR-Sunday-Fall-16-2817","23:49:00","23:49:00","Mansfield",8,"",0,0,1 "CR-Sunday-Fall-16-2817","23:56:00","23:56:00","Attleboro",9,"",0,0,1 "CR-Sunday-Fall-16-2817","24:05:00","24:05:00","South Attleboro",10,"",0,0,1 "CR-Sunday-Fall-16-2817","24:15:00","24:15:00","Providence",11,"",1,0,0 "CR-Sunday-Fall-16-2818","22:00:00","22:00:00","Providence",1,"",0,1,1 "CR-Sunday-Fall-16-2818","22:10:00","22:10:00","South Attleboro",2,"",0,0,1 "CR-Sunday-Fall-16-2818","22:18:00","22:18:00","Attleboro",3,"",0,0,1 "CR-Sunday-Fall-16-2818","22:25:00","22:25:00","Mansfield",4,"",0,0,1 "CR-Sunday-Fall-16-2818","22:33:00","22:33:00","Sharon",5,"",0,0,1 "CR-Sunday-Fall-16-2818","22:40:00","22:40:00","Canton Junction",6,"",0,0,1 "CR-Sunday-Fall-16-2818","22:45:00","22:45:00","Route 128",7,"",0,0,1 "CR-Sunday-Fall-16-2818","22:50:00","22:50:00","Hyde Park",8,"",0,0,1 "CR-Sunday-Fall-16-2818","23:00:00","23:00:00","Ruggles",9,"",0,0,0 "CR-Sunday-Fall-16-2818","23:03:00","23:03:00","Back Bay",10,"",0,0,0 "CR-Sunday-Fall-16-2818","23:08:00","23:08:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-002","5:20:00","5:20:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-002","5:30:00","5:30:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-002","5:37:00","5:37:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-002","5:41:00","5:41:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-002","5:44:00","5:44:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-002","5:49:00","5:49:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-002","5:56:00","5:56:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-002","6:10:00","6:10:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-002","6:17:00","6:17:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-003","6:35:00","6:35:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-003","6:49:00","6:49:00","Quincy Center",2,"",0,0,0 "CR-Weekday-Fall-16-003","6:55:00","6:55:00","Braintree",3,"",0,0,0 "CR-Weekday-Fall-16-003","7:03:00","7:03:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Weekday-Fall-16-003","7:08:00","7:08:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-003","7:12:00","7:12:00","Brockton",6,"",0,0,1 "CR-Weekday-Fall-16-003","7:20:00","7:20:00","Campello",7,"",0,0,1 "CR-Weekday-Fall-16-003","7:38:00","7:38:00","Bridgewater",8,"",0,0,1 "CR-Weekday-Fall-16-003","7:50:00","7:50:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Weekday-Fall-16-004","6:00:00","6:00:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-004","6:10:00","6:10:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-004","6:18:00","6:18:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-004","6:22:00","6:22:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-004","6:25:00","6:25:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-004","6:30:00","6:30:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-004","6:42:00","6:42:00","Quincy Center",7,"",0,0,0 "CR-Weekday-Fall-16-004","6:58:00","6:58:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-005","8:24:00","8:24:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-005","8:43:00","8:43:00","Braintree",2,"",0,0,0 "CR-Weekday-Fall-16-005","8:51:00","8:51:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-005","8:56:00","8:56:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-005","8:59:00","8:59:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-005","9:03:00","9:03:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-005","9:11:00","9:11:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-005","9:23:00","9:23:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-006","6:58:00","6:58:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-006","7:08:00","7:08:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-006","7:16:00","7:16:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-006","7:20:00","7:20:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-006","7:23:00","7:23:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-006","7:28:00","7:28:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-006","7:39:00","7:39:00","Quincy Center",7,"",0,0,0 "CR-Weekday-Fall-16-006","7:48:00","7:48:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-006","7:56:00","7:56:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-007","10:10:00","10:10:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-007","10:22:00","10:22:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-007","10:27:00","10:27:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-007","10:30:00","10:30:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-007","10:34:00","10:34:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-007","10:42:00","10:42:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-007","10:53:00","10:53:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-007","9:57:00","9:57:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-008","7:20:00","7:20:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-008","7:30:00","7:30:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-008","7:38:00","7:38:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-008","7:42:00","7:42:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-008","7:45:00","7:45:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-008","7:50:00","7:50:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-008","8:01:00","8:01:00","Quincy Center",7,"",0,0,0 "CR-Weekday-Fall-16-008","8:11:00","8:11:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-008","8:18:00","8:18:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-009","11:57:00","11:57:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-009","12:10:00","12:10:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-009","12:23:00","12:23:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-009","12:28:00","12:28:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-009","12:31:00","12:31:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-009","12:35:00","12:35:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-009","12:43:00","12:43:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-009","12:55:00","12:55:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-010","8:07:00","8:07:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-010","8:17:00","8:17:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-010","8:25:00","8:25:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-010","8:29:00","8:29:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-010","8:32:00","8:32:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-010","8:37:00","8:37:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-010","8:44:00","8:44:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-010","8:58:00","8:58:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-010","9:05:00","9:05:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-012","10:00:00","10:00:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-012","10:03:00","10:03:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-012","10:08:00","10:08:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-012","10:20:00","10:20:00","Quincy Center",7,"",0,0,0 "CR-Weekday-Fall-16-012","10:36:00","10:36:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-012","9:38:00","9:38:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-012","9:48:00","9:48:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-012","9:56:00","9:56:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-014","11:10:00","11:10:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-014","11:20:00","11:20:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-014","11:28:00","11:28:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-014","11:32:00","11:32:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-014","11:35:00","11:35:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-014","11:40:00","11:40:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-014","11:51:00","11:51:00","Quincy Center",7,"",0,0,0 "CR-Weekday-Fall-16-014","12:07:00","12:07:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-015","14:10:00","14:10:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-015","14:23:00","14:23:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-015","14:36:00","14:36:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-015","14:41:00","14:41:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-015","14:44:00","14:44:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-015","14:48:00","14:48:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-015","14:56:00","14:56:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-015","15:10:00","15:10:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-016","13:08:00","13:08:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-016","13:18:00","13:18:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-016","13:26:00","13:26:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-016","13:30:00","13:30:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-016","13:33:00","13:33:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-016","13:38:00","13:38:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-016","13:44:00","13:44:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-016","13:49:00","13:49:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-016","14:06:00","14:06:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-017","15:43:00","15:43:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-017","15:49:00","15:49:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-017","15:57:00","15:57:00","Quincy Center",3,"",0,0,1 "CR-Weekday-Fall-16-017","16:10:00","16:10:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Weekday-Fall-16-017","16:15:00","16:15:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-017","16:18:00","16:18:00","Brockton",6,"",0,0,1 "CR-Weekday-Fall-16-017","16:22:00","16:22:00","Campello",7,"",0,0,1 "CR-Weekday-Fall-16-017","16:30:00","16:30:00","Bridgewater",8,"",0,0,1 "CR-Weekday-Fall-16-017","16:41:00","16:41:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Weekday-Fall-16-018","15:25:00","15:25:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-018","15:35:00","15:35:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-018","15:43:00","15:43:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-018","15:47:00","15:47:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-018","15:50:00","15:50:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-018","15:55:00","15:55:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-018","16:03:00","16:03:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-018","16:24:00","16:24:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-019","16:40:00","16:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-019","16:53:00","16:53:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-019","17:06:00","17:06:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-019","17:11:00","17:11:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-019","17:14:00","17:14:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-019","17:18:00","17:18:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-019","17:26:00","17:26:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-019","17:38:00","17:38:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-020","16:54:00","16:54:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-020","17:04:00","17:04:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-020","17:11:00","17:11:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-020","17:15:00","17:15:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-020","17:18:00","17:18:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-020","17:23:00","17:23:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-020","17:31:00","17:31:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-020","18:06:00","18:06:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-021","17:12:00","17:12:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-021","17:25:00","17:25:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-021","17:37:00","17:37:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-021","17:42:00","17:42:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-021","17:45:00","17:45:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-021","17:49:00","17:49:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-021","17:57:00","17:57:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-021","18:10:00","18:10:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-022","18:05:00","18:05:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-022","18:20:00","18:20:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-022","18:28:00","18:28:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-022","18:33:00","18:33:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-022","18:37:00","18:37:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-022","18:42:00","18:42:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-022","18:48:00","18:48:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-022","19:15:00","19:15:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-023","17:57:00","17:57:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-023","18:03:00","18:03:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-023","18:11:00","18:11:00","Quincy Center",3,"",0,0,1 "CR-Weekday-Fall-16-023","18:23:00","18:23:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Weekday-Fall-16-023","18:28:00","18:28:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-023","18:31:00","18:31:00","Brockton",6,"",0,0,1 "CR-Weekday-Fall-16-023","18:35:00","18:35:00","Campello",7,"",0,0,1 "CR-Weekday-Fall-16-023","18:43:00","18:43:00","Bridgewater",8,"",0,0,1 "CR-Weekday-Fall-16-023","18:55:00","18:55:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Weekday-Fall-16-025","18:52:00","18:52:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-025","19:05:00","19:05:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-025","19:17:00","19:17:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-025","19:22:00","19:22:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-025","19:25:00","19:25:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-025","19:29:00","19:29:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-025","19:37:00","19:37:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-025","19:50:00","19:50:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-027","20:07:00","20:07:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-027","20:13:00","20:13:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-027","20:21:00","20:21:00","Quincy Center",3,"",0,0,1 "CR-Weekday-Fall-16-027","20:34:00","20:34:00","Holbrook/ Randolph",4,"",0,0,1 "CR-Weekday-Fall-16-027","20:39:00","20:39:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-027","20:42:00","20:42:00","Brockton",6,"",0,0,1 "CR-Weekday-Fall-16-027","20:46:00","20:46:00","Campello",7,"",0,0,1 "CR-Weekday-Fall-16-027","20:54:00","20:54:00","Bridgewater",8,"",0,0,1 "CR-Weekday-Fall-16-027","21:05:00","21:05:00","Middleborough/ Lakeville",9,"",1,0,0 "CR-Weekday-Fall-16-028","21:25:00","21:25:00","Middleborough/ Lakeville",1,"",0,1,1 "CR-Weekday-Fall-16-028","21:35:00","21:35:00","Bridgewater",2,"",0,0,1 "CR-Weekday-Fall-16-028","21:42:00","21:42:00","Campello",3,"",0,0,1 "CR-Weekday-Fall-16-028","21:46:00","21:46:00","Brockton",4,"",0,0,1 "CR-Weekday-Fall-16-028","21:49:00","21:49:00","Montello",5,"",0,0,1 "CR-Weekday-Fall-16-028","21:54:00","21:54:00","Holbrook/ Randolph",6,"",0,0,1 "CR-Weekday-Fall-16-028","22:00:00","22:00:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-028","22:05:00","22:05:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-028","22:22:00","22:22:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-029","22:30:00","22:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-029","22:43:00","22:43:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-029","22:56:00","22:56:00","Holbrook/ Randolph",3,"",0,0,1 "CR-Weekday-Fall-16-029","23:01:00","23:01:00","Montello",4,"",0,0,1 "CR-Weekday-Fall-16-029","23:04:00","23:04:00","Brockton",5,"",0,0,1 "CR-Weekday-Fall-16-029","23:08:00","23:08:00","Campello",6,"",0,0,1 "CR-Weekday-Fall-16-029","23:16:00","23:16:00","Bridgewater",7,"",0,0,1 "CR-Weekday-Fall-16-029","23:27:00","23:27:00","Middleborough/ Lakeville",8,"",1,0,0 "CR-Weekday-Fall-16-032","5:32:00","5:32:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-032","5:42:00","5:42:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-032","5:47:00","5:47:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-032","5:52:00","5:52:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-032","5:56:00","5:56:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-032","6:01:00","6:01:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-032","6:21:00","6:21:00","JFK/UMASS",7,"",0,0,0 "CR-Weekday-Fall-16-032","6:29:00","6:29:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-033","7:11:00","7:11:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-033","7:32:00","7:32:00","Braintree",2,"",0,0,0 "CR-Weekday-Fall-16-033","7:39:00","7:39:00","South Weymouth",3,"",0,0,0 "CR-Weekday-Fall-16-033","7:44:00","7:44:00","Abington",4,"",0,0,1 "CR-Weekday-Fall-16-033","7:47:00","7:47:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-033","7:57:00","7:57:00","Hanson",6,"",0,0,1 "CR-Weekday-Fall-16-033","8:02:00","8:02:00","Halifax",7,"",0,0,1 "CR-Weekday-Fall-16-033","8:12:00","8:12:00","Kingston",8,"",1,0,0 "CR-Weekday-Fall-16-034","6:19:00","6:19:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-034","6:29:00","6:29:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-034","6:34:00","6:34:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-034","6:39:00","6:39:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-034","6:43:00","6:43:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-034","6:49:00","6:49:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-034","6:57:00","6:57:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-034","7:17:00","7:17:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-036","7:11:00","7:11:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-036","7:21:00","7:21:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-036","7:26:00","7:26:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-036","7:31:00","7:31:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-036","7:35:00","7:35:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-036","7:42:00","7:42:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-036","7:50:00","7:50:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-036","8:03:00","8:03:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-036","8:10:00","8:10:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-038","7:37:00","7:37:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-038","7:47:00","7:47:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-038","7:52:00","7:52:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-038","7:57:00","7:57:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-038","8:01:00","8:01:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-038","8:06:00","8:06:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-038","8:14:00","8:14:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-038","8:28:00","8:28:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-038","8:35:00","8:35:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-040","8:37:00","8:37:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-040","8:47:00","8:47:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-040","8:52:00","8:52:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-040","8:57:00","8:57:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-040","9:01:00","9:01:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-040","9:06:00","9:06:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-040","9:14:00","9:14:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-040","9:27:00","9:27:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-040","9:34:00","9:34:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-041","14:47:00","14:47:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-041","14:53:00","14:53:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-041","15:07:00","15:07:00","Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-041","15:14:00","15:14:00","South Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-041","15:19:00","15:19:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-041","15:23:00","15:23:00","Whitman",6,"",0,0,1 "CR-Weekday-Fall-16-041","15:28:00","15:28:00","Hanson",7,"",0,0,1 "CR-Weekday-Fall-16-041","15:33:00","15:33:00","Halifax",8,"",0,0,1 "CR-Weekday-Fall-16-041","15:45:00","15:45:00","Kingston",9,"",1,0,0 "CR-Weekday-Fall-16-043","16:20:00","16:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-043","16:26:00","16:26:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-043","16:40:00","16:40:00","Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-043","16:47:00","16:47:00","South Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-043","16:52:00","16:52:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-043","16:56:00","16:56:00","Whitman",6,"",0,0,1 "CR-Weekday-Fall-16-043","17:01:00","17:01:00","Hanson",7,"",0,0,1 "CR-Weekday-Fall-16-043","17:06:00","17:06:00","Halifax",8,"",0,0,1 "CR-Weekday-Fall-16-043","17:18:00","17:18:00","Kingston",9,"",1,0,0 "CR-Weekday-Fall-16-045","17:00:00","17:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-045","17:06:00","17:06:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-045","17:19:00","17:19:00","Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-045","17:26:00","17:26:00","South Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-045","17:31:00","17:31:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-045","17:35:00","17:35:00","Whitman",6,"",0,0,1 "CR-Weekday-Fall-16-045","17:40:00","17:40:00","Hanson",7,"",0,0,1 "CR-Weekday-Fall-16-045","17:45:00","17:45:00","Halifax",8,"",0,0,1 "CR-Weekday-Fall-16-045","17:57:00","17:57:00","Kingston",9,"",1,0,0 "CR-Weekday-Fall-16-047","17:38:00","17:38:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-047","17:51:00","17:51:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-047","17:57:00","17:57:00","Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-047","18:04:00","18:04:00","South Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-047","18:09:00","18:09:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-047","18:13:00","18:13:00","Whitman",6,"",0,0,1 "CR-Weekday-Fall-16-047","18:18:00","18:18:00","Hanson",7,"",0,0,1 "CR-Weekday-Fall-16-047","18:23:00","18:23:00","Halifax",8,"",0,0,1 "CR-Weekday-Fall-16-047","18:35:00","18:35:00","Kingston",9,"",1,0,0 "CR-Weekday-Fall-16-048","16:02:00","16:02:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-048","16:12:00","16:12:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-048","16:17:00","16:17:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-048","16:22:00","16:22:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-048","16:26:00","16:26:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-048","16:31:00","16:31:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-048","16:38:00","16:38:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-048","16:59:00","16:59:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-051","19:29:00","19:29:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-051","19:47:00","19:47:00","Braintree",2,"",0,0,1 "CR-Weekday-Fall-16-051","19:54:00","19:54:00","South Weymouth",3,"",0,0,1 "CR-Weekday-Fall-16-051","19:59:00","19:59:00","Abington",4,"",0,0,1 "CR-Weekday-Fall-16-051","20:03:00","20:03:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-051","20:08:00","20:08:00","Hanson",6,"",0,0,1 "CR-Weekday-Fall-16-051","20:13:00","20:13:00","Halifax",7,"",0,0,1 "CR-Weekday-Fall-16-051","20:26:00","20:26:00","Kingston",8,"",1,0,0 "CR-Weekday-Fall-16-052","18:27:00","18:27:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-052","18:40:00","18:40:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-052","18:45:00","18:45:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-052","18:55:00","18:55:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-052","18:58:00","18:58:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-052","19:03:00","19:03:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-052","19:11:00","19:11:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-052","19:28:00","19:28:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-055","21:30:00","21:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-055","21:36:00","21:36:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-055","21:48:00","21:48:00","Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-055","21:55:00","21:55:00","South Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-055","22:00:00","22:00:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-055","22:03:00","22:03:00","Whitman",6,"",0,0,1 "CR-Weekday-Fall-16-055","22:08:00","22:08:00","Hanson",7,"",0,0,1 "CR-Weekday-Fall-16-055","22:13:00","22:13:00","Halifax",8,"",0,0,1 "CR-Weekday-Fall-16-055","22:26:00","22:26:00","Kingston",9,"",1,0,0 "CR-Weekday-Fall-16-056","20:53:00","20:53:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-056","21:03:00","21:03:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-056","21:08:00","21:08:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-056","21:13:00","21:13:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-056","21:17:00","21:17:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-056","21:22:00","21:22:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-056","21:29:00","21:29:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-056","21:49:00","21:49:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-057","22:40:00","22:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-057","22:46:00","22:46:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-057","22:59:00","22:59:00","Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-057","23:06:00","23:06:00","South Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-057","23:11:00","23:11:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-057","23:15:00","23:15:00","Whitman",6,"",0,0,1 "CR-Weekday-Fall-16-057","23:20:00","23:20:00","Hanson",7,"",0,0,1 "CR-Weekday-Fall-16-057","23:25:00","23:25:00","Halifax",8,"",0,0,1 "CR-Weekday-Fall-16-057","23:36:00","23:36:00","Kingston",9,"",1,0,0 "CR-Weekday-Fall-16-060","10:05:00","10:05:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-060","10:48:00","10:48:00","Plymouth",2,"",0,0,1 "CR-Weekday-Fall-16-060","10:58:00","10:58:00","Halifax",3,"",0,0,1 "CR-Weekday-Fall-16-060","11:03:00","11:03:00","Hanson",4,"",0,0,1 "CR-Weekday-Fall-16-060","11:08:00","11:08:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-060","11:12:00","11:12:00","Abington",6,"",0,0,1 "CR-Weekday-Fall-16-060","11:20:00","11:20:00","South Weymouth",7,"",0,0,1 "CR-Weekday-Fall-16-060","11:27:00","11:27:00","Braintree",8,"",0,0,0 "CR-Weekday-Fall-16-060","11:46:00","11:46:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-061","10:23:00","10:23:00","Plymouth",10,"",1,0,0 "CR-Weekday-Fall-16-061","8:56:00","8:56:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-061","9:09:00","9:09:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-061","9:15:00","9:15:00","Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-061","9:22:00","9:22:00","South Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-061","9:27:00","9:27:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-061","9:31:00","9:31:00","Whitman",6,"",0,0,1 "CR-Weekday-Fall-16-061","9:36:00","9:36:00","Hanson",7,"",0,0,1 "CR-Weekday-Fall-16-061","9:41:00","9:41:00","Halifax",8,"",0,0,1 "CR-Weekday-Fall-16-061","9:53:00","9:53:00","Kingston",9,"",0,0,1 "CR-Weekday-Fall-16-062","12:06:00","12:06:00","Plymouth",1,"",0,1,1 "CR-Weekday-Fall-16-062","12:16:00","12:16:00","Halifax",2,"",0,0,1 "CR-Weekday-Fall-16-062","12:21:00","12:21:00","Hanson",3,"",0,0,1 "CR-Weekday-Fall-16-062","12:26:00","12:26:00","Whitman",4,"",0,0,1 "CR-Weekday-Fall-16-062","12:30:00","12:30:00","Abington",5,"",0,0,1 "CR-Weekday-Fall-16-062","12:37:00","12:37:00","South Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-062","12:45:00","12:45:00","Braintree",7,"",0,0,0 "CR-Weekday-Fall-16-062","12:58:00","12:58:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-062","13:05:00","13:05:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-063","10:50:00","10:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-063","11:08:00","11:08:00","Braintree",2,"",0,0,1 "CR-Weekday-Fall-16-063","11:15:00","11:15:00","South Weymouth",3,"",0,0,1 "CR-Weekday-Fall-16-063","11:20:00","11:20:00","Abington",4,"",0,0,1 "CR-Weekday-Fall-16-063","11:24:00","11:24:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-063","11:29:00","11:29:00","Hanson",6,"",0,0,1 "CR-Weekday-Fall-16-063","11:34:00","11:34:00","Halifax",7,"",0,0,1 "CR-Weekday-Fall-16-063","11:47:00","11:47:00","Plymouth",8,"",1,0,0 "CR-Weekday-Fall-16-064","13:35:00","13:35:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-064","14:28:00","14:28:00","Plymouth",2,"",0,0,1 "CR-Weekday-Fall-16-064","14:38:00","14:38:00","Halifax",3,"",0,0,1 "CR-Weekday-Fall-16-064","14:43:00","14:43:00","Hanson",4,"",0,0,1 "CR-Weekday-Fall-16-064","14:48:00","14:48:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-064","14:52:00","14:52:00","Abington",6,"",0,0,1 "CR-Weekday-Fall-16-064","14:57:00","14:57:00","South Weymouth",7,"",0,0,1 "CR-Weekday-Fall-16-064","15:05:00","15:05:00","Braintree",8,"",0,0,0 "CR-Weekday-Fall-16-064","15:26:00","15:26:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-065","12:25:00","12:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-065","12:44:00","12:44:00","Braintree",2,"",0,0,1 "CR-Weekday-Fall-16-065","12:51:00","12:51:00","South Weymouth",3,"",0,0,1 "CR-Weekday-Fall-16-065","12:57:00","12:57:00","Abington",4,"",0,0,1 "CR-Weekday-Fall-16-065","13:01:00","13:01:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-065","13:06:00","13:06:00","Hanson",6,"",0,0,1 "CR-Weekday-Fall-16-065","13:11:00","13:11:00","Halifax",7,"",0,0,1 "CR-Weekday-Fall-16-065","13:23:00","13:23:00","Kingston",8,"",0,0,1 "CR-Weekday-Fall-16-065","13:52:00","13:52:00","Plymouth",9,"",1,0,0 "CR-Weekday-Fall-16-066","19:23:00","19:23:00","Kingston",1,"",0,1,1 "CR-Weekday-Fall-16-066","19:45:00","19:45:00","Plymouth",2,"",0,0,1 "CR-Weekday-Fall-16-066","19:55:00","19:55:00","Halifax",3,"",0,0,1 "CR-Weekday-Fall-16-066","20:00:00","20:00:00","Hanson",4,"",0,0,1 "CR-Weekday-Fall-16-066","20:08:00","20:08:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-066","20:12:00","20:12:00","Abington",6,"",0,0,1 "CR-Weekday-Fall-16-066","20:17:00","20:17:00","South Weymouth",7,"",0,0,1 "CR-Weekday-Fall-16-066","20:25:00","20:25:00","Braintree",8,"",0,0,0 "CR-Weekday-Fall-16-066","20:45:00","20:45:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-067","18:15:00","18:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-067","18:33:00","18:33:00","Braintree",2,"",0,0,1 "CR-Weekday-Fall-16-067","18:40:00","18:40:00","South Weymouth",3,"",0,0,1 "CR-Weekday-Fall-16-067","18:45:00","18:45:00","Abington",4,"",0,0,1 "CR-Weekday-Fall-16-067","18:48:00","18:48:00","Whitman",5,"",0,0,1 "CR-Weekday-Fall-16-067","18:53:00","18:53:00","Hanson",6,"",0,0,1 "CR-Weekday-Fall-16-067","18:58:00","18:58:00","Halifax",7,"",0,0,1 "CR-Weekday-Fall-16-067","19:11:00","19:11:00","Kingston",8,"",0,0,1 "CR-Weekday-Fall-16-067","19:37:00","19:37:00","Plymouth",9,"",1,0,0 "CR-Weekday-Fall-16-070","5:40:00","5:40:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-070","5:47:00","5:47:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-070","5:54:00","5:54:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-070","5:58:00","5:58:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-070","6:03:00","6:03:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-070","6:07:00","6:07:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-070","6:13:00","6:13:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-070","6:22:00","6:22:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-070","6:30:00","6:30:00","JFK/UMASS",9,"",0,0,0 "CR-Weekday-Fall-16-070","6:38:00","6:38:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-071","6:54:00","6:54:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-071","7:17:00","7:17:00","Weymouth Landing/ East Braintree",2,"",0,0,1 "CR-Weekday-Fall-16-071","7:23:00","7:23:00","East Weymouth",3,"",0,0,0 "CR-Weekday-Fall-16-071","7:30:00","7:30:00","West Hingham",4,"",0,0,1 "CR-Weekday-Fall-16-071","7:34:00","7:34:00","Nantasket Junction",5,"",0,0,1 "CR-Weekday-Fall-16-071","7:37:00","7:37:00","Cohasset",6,"",0,0,1 "CR-Weekday-Fall-16-071","7:45:00","7:45:00","North Scituate",7,"",0,0,1 "CR-Weekday-Fall-16-071","7:55:00","7:55:00","Greenbush",8,"",1,0,0 "CR-Weekday-Fall-16-072","6:37:00","6:37:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-072","6:44:00","6:44:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-072","6:51:00","6:51:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-072","6:55:00","6:55:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-072","7:00:00","7:00:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-072","7:04:00","7:04:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-072","7:10:00","7:10:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-072","7:28:00","7:28:00","JFK/UMASS",8,"",0,0,0 "CR-Weekday-Fall-16-072","7:36:00","7:36:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-073","10:02:00","10:02:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-073","10:05:00","10:05:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-073","10:13:00","10:13:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-073","10:23:00","10:23:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-073","9:25:00","9:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-073","9:38:00","9:38:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-073","9:47:00","9:47:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-073","9:53:00","9:53:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-073","9:57:00","9:57:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-074","7:03:00","7:03:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-074","7:10:00","7:10:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-074","7:17:00","7:17:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-074","7:21:00","7:21:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-074","7:26:00","7:26:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-074","7:30:00","7:30:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-074","7:36:00","7:36:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-074","7:46:00","7:46:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-074","8:03:00","8:03:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-075","10:30:00","10:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-075","10:43:00","10:43:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-075","10:52:00","10:52:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-075","10:58:00","10:58:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-075","11:03:00","11:03:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-075","11:07:00","11:07:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-075","11:10:00","11:10:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-075","11:18:00","11:18:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-075","11:28:00","11:28:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-076","7:50:00","7:50:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-076","7:57:00","7:57:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-076","8:04:00","8:04:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-076","8:08:00","8:08:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-076","8:13:00","8:13:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-076","8:17:00","8:17:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-076","8:23:00","8:23:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-076","8:32:00","8:32:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-076","8:49:00","8:49:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-077","12:41:00","12:41:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-077","12:54:00","12:54:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-077","13:03:00","13:03:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-077","13:08:00","13:08:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-077","13:12:00","13:12:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-077","13:17:00","13:17:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-077","13:20:00","13:20:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-077","13:28:00","13:28:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-077","13:39:00","13:39:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-078","8:50:00","8:50:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-078","8:57:00","8:57:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-078","9:04:00","9:04:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-078","9:08:00","9:08:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-078","9:13:00","9:13:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-078","9:17:00","9:17:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-078","9:23:00","9:23:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-078","9:32:00","9:32:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-078","9:49:00","9:49:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-079","14:27:00","14:27:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-079","14:40:00","14:40:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-079","14:49:00","14:49:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-079","14:55:00","14:55:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-079","14:59:00","14:59:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-079","15:04:00","15:04:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-079","15:08:00","15:08:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-079","15:16:00","15:16:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-079","15:25:00","15:25:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-080","10:35:00","10:35:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-080","10:42:00","10:42:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-080","10:48:00","10:48:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-080","10:51:00","10:51:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-080","10:56:00","10:56:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-080","11:03:00","11:03:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-080","11:09:00","11:09:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-080","11:18:00","11:18:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-080","11:34:00","11:34:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-081","16:02:00","16:02:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-081","16:08:00","16:08:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-081","16:24:00","16:24:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-081","16:30:00","16:30:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-081","16:34:00","16:34:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-081","16:39:00","16:39:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-081","16:43:00","16:43:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-081","16:51:00","16:51:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-081","16:59:00","16:59:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-082","11:50:00","11:50:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-082","11:57:00","11:57:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-082","12:04:00","12:04:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-082","12:08:00","12:08:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-082","12:13:00","12:13:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-082","12:17:00","12:17:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-082","12:23:00","12:23:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-082","12:32:00","12:32:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-082","12:48:00","12:48:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-083","16:52:00","16:52:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-083","17:05:00","17:05:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-083","17:14:00","17:14:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-083","17:20:00","17:20:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-083","17:24:00","17:24:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-083","17:29:00","17:29:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-083","17:33:00","17:33:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-083","17:41:00","17:41:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-083","17:51:00","17:51:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-084","14:11:00","14:11:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-084","14:18:00","14:18:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-084","14:25:00","14:25:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-084","14:28:00","14:28:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-084","14:33:00","14:33:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-084","14:37:00","14:37:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-084","14:43:00","14:43:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-084","14:52:00","14:52:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-084","15:09:00","15:09:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-085","17:20:00","17:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-085","17:26:00","17:26:00","JFK/UMASS",2,"",0,0,1 "CR-Weekday-Fall-16-085","17:42:00","17:42:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-085","17:48:00","17:48:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-085","17:52:00","17:52:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-085","17:57:00","17:57:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-085","18:00:00","18:00:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-085","18:08:00","18:08:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-085","18:18:00","18:18:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-086","15:47:00","15:47:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-086","15:54:00","15:54:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-086","16:01:00","16:01:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-086","16:04:00","16:04:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-086","16:09:00","16:09:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-086","16:12:00","16:12:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-086","16:18:00","16:18:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-086","16:28:00","16:28:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-086","16:46:00","16:46:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-087","17:45:00","17:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-087","17:58:00","17:58:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-087","18:07:00","18:07:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-087","18:13:00","18:13:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-087","18:17:00","18:17:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-087","18:22:00","18:22:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-087","18:25:00","18:25:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-087","18:33:00","18:33:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-087","18:43:00","18:43:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-088","17:20:00","17:20:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-088","17:27:00","17:27:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-088","17:38:00","17:38:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-088","17:42:00","17:42:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-088","17:47:00","17:47:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-088","17:53:00","17:53:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-088","17:59:00","17:59:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-088","18:34:00","18:34:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-089","18:38:00","18:38:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-089","18:51:00","18:51:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-089","19:00:00","19:00:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-089","19:06:00","19:06:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-089","19:10:00","19:10:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-089","19:15:00","19:15:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-089","19:19:00","19:19:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-089","19:27:00","19:27:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-089","19:36:00","19:36:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-090","19:05:00","19:05:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-090","19:12:00","19:12:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-090","19:22:00","19:22:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-090","19:26:00","19:26:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-090","19:31:00","19:31:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-090","19:35:00","19:35:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-090","19:41:00","19:41:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-090","19:53:00","19:53:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-090","20:07:00","20:07:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-091","20:25:00","20:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-091","20:38:00","20:38:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-091","20:47:00","20:47:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-091","20:53:00","20:53:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-091","20:56:00","20:56:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-091","21:00:00","21:00:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-091","21:03:00","21:03:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-091","21:12:00","21:12:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-091","21:22:00","21:22:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-092","20:10:00","20:10:00","Greenbush",1,"",0,1,1 "CR-Weekday-Fall-16-092","20:17:00","20:17:00","North Scituate",2,"",0,0,1 "CR-Weekday-Fall-16-092","20:23:00","20:23:00","Cohasset",3,"",0,0,1 "CR-Weekday-Fall-16-092","20:26:00","20:26:00","Nantasket Junction",4,"",0,0,1 "CR-Weekday-Fall-16-092","20:31:00","20:31:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-092","20:34:00","20:34:00","East Weymouth",6,"",0,0,1 "CR-Weekday-Fall-16-092","20:40:00","20:40:00","Weymouth Landing/ East Braintree",7,"",0,0,1 "CR-Weekday-Fall-16-092","20:49:00","20:49:00","Quincy Center",8,"",0,0,0 "CR-Weekday-Fall-16-092","21:07:00","21:07:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-093","22:00:00","22:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-093","22:13:00","22:13:00","Quincy Center",2,"",0,0,1 "CR-Weekday-Fall-16-093","22:22:00","22:22:00","Weymouth Landing/ East Braintree",3,"",0,0,1 "CR-Weekday-Fall-16-093","22:28:00","22:28:00","East Weymouth",4,"",0,0,1 "CR-Weekday-Fall-16-093","22:32:00","22:32:00","West Hingham",5,"",0,0,1 "CR-Weekday-Fall-16-093","22:37:00","22:37:00","Nantasket Junction",6,"",0,0,1 "CR-Weekday-Fall-16-093","22:40:00","22:40:00","Cohasset",7,"",0,0,1 "CR-Weekday-Fall-16-093","22:48:00","22:48:00","North Scituate",8,"",0,0,1 "CR-Weekday-Fall-16-093","22:57:00","22:57:00","Greenbush",9,"",1,0,0 "CR-Weekday-Fall-16-100","4:55:00","4:55:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-100","5:02:00","5:02:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-100","5:08:00","5:08:00","West Gloucester",3,"",0,0,1 "CR-Weekday-Fall-16-100","5:15:00","5:15:00","Manchester",4,"",0,0,1 "CR-Weekday-Fall-16-100","5:22:00","5:22:00","Beverly Farms",5,"",0,0,1 "CR-Weekday-Fall-16-100","5:28:00","5:28:00","Montserrat",6,"",0,0,1 "CR-Weekday-Fall-16-100","5:33:00","5:33:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-100","5:37:00","5:37:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-100","5:45:00","5:45:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-100","5:49:00","5:49:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-100","5:52:00","5:52:00","River Works / GE Employees Only",11,"",3,3,1 "CR-Weekday-Fall-16-100","5:59:00","5:59:00","Chelsea",12,"",0,0,1 "CR-Weekday-Fall-16-100","6:11:00","6:11:00","North Station",13,"",1,0,0 "CR-Weekday-Fall-16-101","6:39:00","6:39:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-101","6:50:00","6:50:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-101","6:57:00","6:57:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-101","7:07:00","7:07:00","Salem",4,"",0,0,1 "CR-Weekday-Fall-16-101","7:11:00","7:11:00","Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-101","7:15:00","7:15:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-101","7:21:00","7:21:00","Beverly Farms",7,"",3,3,1 "CR-Weekday-Fall-16-101","7:26:00","7:26:00","Manchester",8,"",0,0,1 "CR-Weekday-Fall-16-101","7:32:00","7:32:00","West Gloucester",9,"",3,3,1 "CR-Weekday-Fall-16-101","7:39:00","7:39:00","Gloucester",10,"",0,0,1 "CR-Weekday-Fall-16-101","7:47:00","7:47:00","Rockport",11,"",1,0,0 "CR-Weekday-Fall-16-102","5:48:00","5:48:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-102","5:55:00","5:55:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-102","6:01:00","6:01:00","West Gloucester",3,"",0,0,1 "CR-Weekday-Fall-16-102","6:08:00","6:08:00","Manchester",4,"",0,0,1 "CR-Weekday-Fall-16-102","6:15:00","6:15:00","Beverly Farms",5,"",0,0,1 "CR-Weekday-Fall-16-102","6:17:00","6:17:00","Prides Crossing",6,"",3,3,1 "CR-Weekday-Fall-16-102","6:22:00","6:22:00","Montserrat",7,"",0,0,1 "CR-Weekday-Fall-16-102","6:27:00","6:27:00","Beverly",8,"",0,0,1 "CR-Weekday-Fall-16-102","6:31:00","6:31:00","Salem",9,"",0,0,1 "CR-Weekday-Fall-16-102","6:39:00","6:39:00","Swampscott",10,"",0,0,1 "CR-Weekday-Fall-16-102","6:43:00","6:43:00","Lynn",11,"",0,0,1 "CR-Weekday-Fall-16-102","6:46:00","6:46:00","River Works / GE Employees Only",12,"",3,3,1 "CR-Weekday-Fall-16-102","6:53:00","6:53:00","Chelsea",13,"",0,0,1 "CR-Weekday-Fall-16-102","7:05:00","7:05:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-103","7:50:00","7:50:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-103","8:02:00","8:02:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-103","8:09:00","8:09:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-103","8:11:00","8:11:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-103","8:16:00","8:16:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-103","8:23:00","8:23:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-103","8:27:00","8:27:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-103","8:31:00","8:31:00","Montserrat",8,"",3,3,1 "CR-Weekday-Fall-16-103","8:37:00","8:37:00","Beverly Farms",9,"",3,3,1 "CR-Weekday-Fall-16-103","8:42:00","8:42:00","Manchester",10,"",0,0,1 "CR-Weekday-Fall-16-103","8:48:00","8:48:00","West Gloucester",11,"",3,3,1 "CR-Weekday-Fall-16-103","8:55:00","8:55:00","Gloucester",12,"",0,0,1 "CR-Weekday-Fall-16-103","9:03:00","9:03:00","Rockport",13,"",1,0,0 "CR-Weekday-Fall-16-104","6:30:00","6:30:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-104","6:37:00","6:37:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-104","6:43:00","6:43:00","West Gloucester",3,"",0,0,1 "CR-Weekday-Fall-16-104","6:50:00","6:50:00","Manchester",4,"",0,0,1 "CR-Weekday-Fall-16-104","6:57:00","6:57:00","Beverly Farms",5,"",0,0,1 "CR-Weekday-Fall-16-104","6:59:00","6:59:00","Prides Crossing",6,"",3,3,1 "CR-Weekday-Fall-16-104","7:04:00","7:04:00","Montserrat",7,"",0,0,1 "CR-Weekday-Fall-16-104","7:09:00","7:09:00","Beverly",8,"",0,0,1 "CR-Weekday-Fall-16-104","7:13:00","7:13:00","Salem",9,"",0,0,1 "CR-Weekday-Fall-16-104","7:40:00","7:40:00","North Station",10,"",1,0,0 "CR-Weekday-Fall-16-105","8:35:00","8:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-105","8:47:00","8:47:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-105","8:55:00","8:55:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-105","9:00:00","9:00:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-105","9:07:00","9:07:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-105","9:11:00","9:11:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-105","9:15:00","9:15:00","Montserrat",7,"",3,3,1 "CR-Weekday-Fall-16-105","9:21:00","9:21:00","Beverly Farms",8,"",3,3,1 "CR-Weekday-Fall-16-105","9:26:00","9:26:00","Manchester",9,"",0,0,1 "CR-Weekday-Fall-16-105","9:32:00","9:32:00","West Gloucester",10,"",3,3,1 "CR-Weekday-Fall-16-105","9:39:00","9:39:00","Gloucester",11,"",0,0,1 "CR-Weekday-Fall-16-105","9:47:00","9:47:00","Rockport",12,"",1,0,0 "CR-Weekday-Fall-16-106","7:10:00","7:10:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-106","7:17:00","7:17:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-106","7:23:00","7:23:00","West Gloucester",3,"",0,0,1 "CR-Weekday-Fall-16-106","7:30:00","7:30:00","Manchester",4,"",0,0,1 "CR-Weekday-Fall-16-106","7:37:00","7:37:00","Beverly Farms",5,"",0,0,1 "CR-Weekday-Fall-16-106","7:39:00","7:39:00","Prides Crossing",6,"",3,3,1 "CR-Weekday-Fall-16-106","7:44:00","7:44:00","Montserrat",7,"",0,0,1 "CR-Weekday-Fall-16-106","7:49:00","7:49:00","Beverly",8,"",0,0,1 "CR-Weekday-Fall-16-106","7:53:00","7:53:00","Salem",9,"",0,0,1 "CR-Weekday-Fall-16-106","8:01:00","8:01:00","Swampscott",10,"",0,0,1 "CR-Weekday-Fall-16-106","8:22:00","8:22:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-107","10:35:00","10:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-107","10:47:00","10:47:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-107","10:55:00","10:55:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-107","11:00:00","11:00:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-107","11:07:00","11:07:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-107","11:11:00","11:11:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-107","11:15:00","11:15:00","Montserrat",7,"",3,3,1 "CR-Weekday-Fall-16-107","11:21:00","11:21:00","Beverly Farms",8,"",3,3,1 "CR-Weekday-Fall-16-107","11:26:00","11:26:00","Manchester",9,"",0,0,1 "CR-Weekday-Fall-16-107","11:32:00","11:32:00","West Gloucester",10,"",3,3,1 "CR-Weekday-Fall-16-107","11:39:00","11:39:00","Gloucester",11,"",0,0,1 "CR-Weekday-Fall-16-107","11:47:00","11:47:00","Rockport",12,"",1,0,0 "CR-Weekday-Fall-16-108","8:15:00","8:15:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-108","8:22:00","8:22:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-108","8:28:00","8:28:00","West Gloucester",3,"",0,0,1 "CR-Weekday-Fall-16-108","8:35:00","8:35:00","Manchester",4,"",0,0,1 "CR-Weekday-Fall-16-108","8:42:00","8:42:00","Beverly Farms",5,"",0,0,1 "CR-Weekday-Fall-16-108","8:48:00","8:48:00","Montserrat",6,"",0,0,1 "CR-Weekday-Fall-16-108","8:54:00","8:54:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-108","8:58:00","8:58:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-108","9:06:00","9:06:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-108","9:10:00","9:10:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-108","9:19:00","9:19:00","Chelsea",11,"",0,0,1 "CR-Weekday-Fall-16-108","9:31:00","9:31:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-109","12:00:00","12:00:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-109","12:12:00","12:12:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-109","12:20:00","12:20:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-109","12:25:00","12:25:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-109","12:32:00","12:32:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-109","12:36:00","12:36:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-109","12:40:00","12:40:00","Montserrat",7,"",3,3,1 "CR-Weekday-Fall-16-109","12:46:00","12:46:00","Beverly Farms",8,"",3,3,1 "CR-Weekday-Fall-16-109","12:51:00","12:51:00","Manchester",9,"",0,0,1 "CR-Weekday-Fall-16-109","12:57:00","12:57:00","West Gloucester",10,"",3,3,1 "CR-Weekday-Fall-16-109","13:04:00","13:04:00","Gloucester",11,"",0,0,1 "CR-Weekday-Fall-16-109","13:12:00","13:12:00","Rockport",12,"",1,0,0 "CR-Weekday-Fall-16-110","10:02:00","10:02:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-110","10:10:00","10:10:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-110","10:14:00","10:14:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-110","10:23:00","10:23:00","Chelsea",11,"",3,3,1 "CR-Weekday-Fall-16-110","10:34:00","10:34:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-110","9:20:00","9:20:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-110","9:27:00","9:27:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-110","9:33:00","9:33:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-110","9:40:00","9:40:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-110","9:47:00","9:47:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-110","9:53:00","9:53:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-110","9:58:00","9:58:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-111","13:50:00","13:50:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-111","14:02:00","14:02:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-111","14:09:00","14:09:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-111","14:11:00","14:11:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-111","14:16:00","14:16:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-111","14:23:00","14:23:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-111","14:27:00","14:27:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-111","14:31:00","14:31:00","Montserrat",8,"",3,3,1 "CR-Weekday-Fall-16-111","14:37:00","14:37:00","Beverly Farms",9,"",3,3,1 "CR-Weekday-Fall-16-111","14:42:00","14:42:00","Manchester",10,"",0,0,1 "CR-Weekday-Fall-16-111","14:48:00","14:48:00","West Gloucester",11,"",3,3,1 "CR-Weekday-Fall-16-111","14:55:00","14:55:00","Gloucester",12,"",0,0,1 "CR-Weekday-Fall-16-111","15:03:00","15:03:00","Rockport",13,"",1,0,0 "CR-Weekday-Fall-16-112","11:00:00","11:00:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-112","11:07:00","11:07:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-112","11:13:00","11:13:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-112","11:20:00","11:20:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-112","11:27:00","11:27:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-112","11:33:00","11:33:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-112","11:38:00","11:38:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-112","11:42:00","11:42:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-112","11:50:00","11:50:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-112","11:54:00","11:54:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-112","12:03:00","12:03:00","Chelsea",11,"",3,3,1 "CR-Weekday-Fall-16-112","12:14:00","12:14:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-113","15:35:00","15:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-113","15:47:00","15:47:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-113","15:55:00","15:55:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-113","15:57:00","15:57:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-113","16:02:00","16:02:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-113","16:09:00","16:09:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-113","16:13:00","16:13:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-113","16:17:00","16:17:00","Montserrat",8,"",0,0,1 "CR-Weekday-Fall-16-113","16:21:00","16:21:00","Prides Crossing",9,"",3,3,1 "CR-Weekday-Fall-16-113","16:25:00","16:25:00","Beverly Farms",10,"",0,0,1 "CR-Weekday-Fall-16-113","16:30:00","16:30:00","Manchester",11,"",0,0,1 "CR-Weekday-Fall-16-113","16:36:00","16:36:00","West Gloucester",12,"",0,0,1 "CR-Weekday-Fall-16-113","16:44:00","16:44:00","Gloucester",13,"",0,0,1 "CR-Weekday-Fall-16-113","16:53:00","16:53:00","Rockport",14,"",1,0,0 "CR-Weekday-Fall-16-114","12:30:00","12:30:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-114","12:37:00","12:37:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-114","12:43:00","12:43:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-114","12:50:00","12:50:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-114","12:57:00","12:57:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-114","13:03:00","13:03:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-114","13:08:00","13:08:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-114","13:12:00","13:12:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-114","13:20:00","13:20:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-114","13:24:00","13:24:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-114","13:33:00","13:33:00","Chelsea",11,"",3,3,1 "CR-Weekday-Fall-16-114","13:44:00","13:44:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-115","16:15:00","16:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-115","16:27:00","16:27:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-115","16:35:00","16:35:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-115","16:37:00","16:37:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-115","16:42:00","16:42:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-115","16:49:00","16:49:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-115","16:53:00","16:53:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-115","16:57:00","16:57:00","Montserrat",8,"",0,0,1 "CR-Weekday-Fall-16-115","17:03:00","17:03:00","Beverly Farms",9,"",0,0,1 "CR-Weekday-Fall-16-115","17:08:00","17:08:00","Manchester",10,"",0,0,1 "CR-Weekday-Fall-16-115","17:15:00","17:15:00","West Gloucester",11,"",0,0,1 "CR-Weekday-Fall-16-115","17:22:00","17:22:00","Gloucester",12,"",0,0,1 "CR-Weekday-Fall-16-115","17:32:00","17:32:00","Rockport",13,"",1,0,0 "CR-Weekday-Fall-16-116","13:50:00","13:50:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-116","13:57:00","13:57:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-116","14:03:00","14:03:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-116","14:10:00","14:10:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-116","14:17:00","14:17:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-116","14:23:00","14:23:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-116","14:28:00","14:28:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-116","14:32:00","14:32:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-116","14:40:00","14:40:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-116","14:44:00","14:44:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-116","14:47:00","14:47:00","River Works / GE Employees Only",11,"",3,3,1 "CR-Weekday-Fall-16-116","14:54:00","14:54:00","Chelsea",12,"",3,3,1 "CR-Weekday-Fall-16-116","15:05:00","15:05:00","North Station",13,"",1,0,0 "CR-Weekday-Fall-16-117","17:00:00","17:00:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-117","17:26:00","17:26:00","Salem",2,"",0,0,1 "CR-Weekday-Fall-16-117","17:30:00","17:30:00","Beverly",3,"",0,0,1 "CR-Weekday-Fall-16-117","17:34:00","17:34:00","Montserrat",4,"",0,0,1 "CR-Weekday-Fall-16-117","17:38:00","17:38:00","Prides Crossing",5,"",3,3,1 "CR-Weekday-Fall-16-117","17:42:00","17:42:00","Beverly Farms",6,"",0,0,1 "CR-Weekday-Fall-16-117","17:47:00","17:47:00","Manchester",7,"",0,0,1 "CR-Weekday-Fall-16-117","17:53:00","17:53:00","West Gloucester",8,"",0,0,1 "CR-Weekday-Fall-16-117","18:01:00","18:01:00","Gloucester",9,"",0,0,1 "CR-Weekday-Fall-16-117","18:10:00","18:10:00","Rockport",10,"",1,0,0 "CR-Weekday-Fall-16-118","15:20:00","15:20:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-118","15:27:00","15:27:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-118","15:33:00","15:33:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-118","15:40:00","15:40:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-118","15:47:00","15:47:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-118","15:53:00","15:53:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-118","15:58:00","15:58:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-118","16:02:00","16:02:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-118","16:10:00","16:10:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-118","16:14:00","16:14:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-118","16:17:00","16:17:00","River Works / GE Employees Only",11,"",3,3,1 "CR-Weekday-Fall-16-118","16:24:00","16:24:00","Chelsea",12,"",3,3,1 "CR-Weekday-Fall-16-118","16:35:00","16:35:00","North Station",13,"",1,0,0 "CR-Weekday-Fall-16-119","17:30:00","17:30:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-119","17:57:00","17:57:00","Salem",2,"",0,0,1 "CR-Weekday-Fall-16-119","18:02:00","18:02:00","Beverly",3,"",0,0,1 "CR-Weekday-Fall-16-119","18:06:00","18:06:00","Montserrat",4,"",0,0,1 "CR-Weekday-Fall-16-119","18:10:00","18:10:00","Prides Crossing",5,"",3,3,1 "CR-Weekday-Fall-16-119","18:14:00","18:14:00","Beverly Farms",6,"",0,0,1 "CR-Weekday-Fall-16-119","18:19:00","18:19:00","Manchester",7,"",0,0,1 "CR-Weekday-Fall-16-119","18:25:00","18:25:00","West Gloucester",8,"",0,0,1 "CR-Weekday-Fall-16-119","18:33:00","18:33:00","Gloucester",9,"",0,0,1 "CR-Weekday-Fall-16-119","18:42:00","18:42:00","Rockport",10,"",1,0,0 "CR-Weekday-Fall-16-120","17:10:00","17:10:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-120","17:17:00","17:17:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-120","17:23:00","17:23:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-120","17:30:00","17:30:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-120","17:37:00","17:37:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-120","17:43:00","17:43:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-120","17:48:00","17:48:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-120","17:52:00","17:52:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-120","18:00:00","18:00:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-120","18:04:00","18:04:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-120","18:07:00","18:07:00","River Works / GE Employees Only",11,"",3,3,1 "CR-Weekday-Fall-16-120","18:14:00","18:14:00","Chelsea",12,"",3,3,1 "CR-Weekday-Fall-16-120","18:25:00","18:25:00","North Station",13,"",1,0,0 "CR-Weekday-Fall-16-121","18:25:00","18:25:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-121","18:37:00","18:37:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-121","18:45:00","18:45:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-121","18:47:00","18:47:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-121","18:52:00","18:52:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-121","18:59:00","18:59:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-121","19:03:00","19:03:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-121","19:07:00","19:07:00","Montserrat",8,"",0,0,1 "CR-Weekday-Fall-16-121","19:11:00","19:11:00","Prides Crossing",9,"",3,3,1 "CR-Weekday-Fall-16-121","19:15:00","19:15:00","Beverly Farms",10,"",0,0,1 "CR-Weekday-Fall-16-121","19:20:00","19:20:00","Manchester",11,"",0,0,1 "CR-Weekday-Fall-16-121","19:26:00","19:26:00","West Gloucester",12,"",0,0,1 "CR-Weekday-Fall-16-121","19:34:00","19:34:00","Gloucester",13,"",0,0,1 "CR-Weekday-Fall-16-121","19:43:00","19:43:00","Rockport",14,"",1,0,0 "CR-Weekday-Fall-16-122","17:45:00","17:45:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-122","17:52:00","17:52:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-122","17:58:00","17:58:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-122","18:05:00","18:05:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-122","18:12:00","18:12:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-122","18:18:00","18:18:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-122","18:23:00","18:23:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-122","18:27:00","18:27:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-122","18:35:00","18:35:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-122","18:39:00","18:39:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-122","18:42:00","18:42:00","River Works / GE Employees Only",11,"",3,3,1 "CR-Weekday-Fall-16-122","18:49:00","18:49:00","Chelsea",12,"",3,3,1 "CR-Weekday-Fall-16-122","19:00:00","19:00:00","North Station",13,"",1,0,0 "CR-Weekday-Fall-16-123","19:15:00","19:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-123","19:27:00","19:27:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-123","19:34:00","19:34:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-123","19:36:00","19:36:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-123","19:41:00","19:41:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-123","19:48:00","19:48:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-123","19:52:00","19:52:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-123","19:56:00","19:56:00","Montserrat",8,"",3,3,1 "CR-Weekday-Fall-16-123","20:00:00","20:00:00","Prides Crossing",9,"",3,3,1 "CR-Weekday-Fall-16-123","20:04:00","20:04:00","Beverly Farms",10,"",3,3,1 "CR-Weekday-Fall-16-123","20:09:00","20:09:00","Manchester",11,"",0,0,1 "CR-Weekday-Fall-16-123","20:15:00","20:15:00","West Gloucester",12,"",3,3,1 "CR-Weekday-Fall-16-123","20:22:00","20:22:00","Gloucester",13,"",0,0,1 "CR-Weekday-Fall-16-123","20:30:00","20:30:00","Rockport",14,"",1,0,0 "CR-Weekday-Fall-16-124","19:15:00","19:15:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-124","19:22:00","19:22:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-124","19:28:00","19:28:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-124","19:35:00","19:35:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-124","19:42:00","19:42:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-124","19:48:00","19:48:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-124","19:53:00","19:53:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-124","19:57:00","19:57:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-124","20:05:00","20:05:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-124","20:09:00","20:09:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-124","20:18:00","20:18:00","Chelsea",11,"",3,3,1 "CR-Weekday-Fall-16-124","20:29:00","20:29:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-125","20:45:00","20:45:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-125","20:57:00","20:57:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-125","21:05:00","21:05:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-125","21:10:00","21:10:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-125","21:17:00","21:17:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-125","21:21:00","21:21:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-125","21:25:00","21:25:00","Montserrat",7,"",3,3,1 "CR-Weekday-Fall-16-125","21:31:00","21:31:00","Beverly Farms",8,"",3,3,1 "CR-Weekday-Fall-16-125","21:36:00","21:36:00","Manchester",9,"",0,0,1 "CR-Weekday-Fall-16-125","21:42:00","21:42:00","West Gloucester",10,"",3,3,1 "CR-Weekday-Fall-16-125","21:49:00","21:49:00","Gloucester",11,"",0,0,1 "CR-Weekday-Fall-16-125","21:57:00","21:57:00","Rockport",12,"",1,0,0 "CR-Weekday-Fall-16-126","20:45:00","20:45:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-126","20:52:00","20:52:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-126","20:58:00","20:58:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-126","21:05:00","21:05:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-126","21:12:00","21:12:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-126","21:18:00","21:18:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-126","21:23:00","21:23:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-126","21:27:00","21:27:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-126","21:35:00","21:35:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-126","21:39:00","21:39:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-126","21:42:00","21:42:00","River Works / GE Employees Only",11,"",3,3,1 "CR-Weekday-Fall-16-126","21:49:00","21:49:00","Chelsea",12,"",3,3,1 "CR-Weekday-Fall-16-126","22:00:00","22:00:00","North Station",13,"",1,0,0 "CR-Weekday-Fall-16-127","22:20:00","22:20:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-127","22:32:00","22:32:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-127","22:39:00","22:39:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-127","22:41:00","22:41:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-127","22:46:00","22:46:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-127","22:53:00","22:53:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-127","22:57:00","22:57:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-127","23:01:00","23:01:00","Montserrat",8,"",3,3,1 "CR-Weekday-Fall-16-127","23:07:00","23:07:00","Beverly Farms",9,"",3,3,1 "CR-Weekday-Fall-16-127","23:12:00","23:12:00","Manchester",10,"",0,0,1 "CR-Weekday-Fall-16-127","23:18:00","23:18:00","West Gloucester",11,"",3,3,1 "CR-Weekday-Fall-16-127","23:25:00","23:25:00","Gloucester",12,"",0,0,1 "CR-Weekday-Fall-16-127","23:33:00","23:33:00","Rockport",13,"",1,0,0 "CR-Weekday-Fall-16-128","22:30:00","22:30:00","Rockport",1,"",0,1,1 "CR-Weekday-Fall-16-128","22:37:00","22:37:00","Gloucester",2,"",0,0,1 "CR-Weekday-Fall-16-128","22:43:00","22:43:00","West Gloucester",3,"",3,3,1 "CR-Weekday-Fall-16-128","22:50:00","22:50:00","Manchester",4,"",3,3,1 "CR-Weekday-Fall-16-128","22:57:00","22:57:00","Beverly Farms",5,"",3,3,1 "CR-Weekday-Fall-16-128","23:03:00","23:03:00","Montserrat",6,"",3,3,1 "CR-Weekday-Fall-16-128","23:08:00","23:08:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-128","23:12:00","23:12:00","Salem",8,"",0,0,1 "CR-Weekday-Fall-16-128","23:20:00","23:20:00","Swampscott",9,"",0,0,1 "CR-Weekday-Fall-16-128","23:24:00","23:24:00","Lynn",10,"",0,0,1 "CR-Weekday-Fall-16-128","23:27:00","23:27:00","River Works / GE Employees Only",11,"",3,3,1 "CR-Weekday-Fall-16-128","23:34:00","23:34:00","Chelsea",12,"",3,3,1 "CR-Weekday-Fall-16-128","23:45:00","23:45:00","North Station",13,"",1,0,0 "CR-Weekday-Fall-16-129","24:10:00","24:10:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-129","24:22:00","24:22:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-129","24:30:00","24:30:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-129","24:35:00","24:35:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-129","24:42:00","24:42:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-129","24:46:00","24:46:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-129","24:50:00","24:50:00","Montserrat",7,"",3,3,1 "CR-Weekday-Fall-16-129","24:56:00","24:56:00","Beverly Farms",8,"",3,3,1 "CR-Weekday-Fall-16-129","25:01:00","25:01:00","Manchester",9,"",0,0,1 "CR-Weekday-Fall-16-129","25:07:00","25:07:00","West Gloucester",10,"",3,3,1 "CR-Weekday-Fall-16-129","25:14:00","25:14:00","Gloucester",11,"",0,0,1 "CR-Weekday-Fall-16-129","25:22:00","25:22:00","Rockport",12,"",1,0,0 "CR-Weekday-Fall-16-150","5:20:00","5:20:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-150","5:25:00","5:25:00","Rowley",2,"",0,0,1 "CR-Weekday-Fall-16-150","5:31:00","5:31:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-150","5:37:00","5:37:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Weekday-Fall-16-150","5:41:00","5:41:00","North Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-150","5:47:00","5:47:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-150","5:51:00","5:51:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-150","5:59:00","5:59:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-150","6:03:00","6:03:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-150","6:06:00","6:06:00","River Works / GE Employees Only",10,"",3,3,1 "CR-Weekday-Fall-16-150","6:13:00","6:13:00","Chelsea",11,"",0,0,1 "CR-Weekday-Fall-16-150","6:25:00","6:25:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-152","5:50:00","5:50:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-152","5:55:00","5:55:00","Rowley",2,"",0,0,1 "CR-Weekday-Fall-16-152","6:02:00","6:02:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-152","6:08:00","6:08:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Weekday-Fall-16-152","6:13:00","6:13:00","North Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-152","6:18:00","6:18:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-152","6:22:00","6:22:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-152","6:49:00","6:49:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-153","6:26:00","6:26:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-153","6:52:00","6:52:00","Salem",2,"",0,0,1 "CR-Weekday-Fall-16-153","6:56:00","6:56:00","Beverly",3,"",0,0,1 "CR-Weekday-Fall-16-153","7:00:00","7:00:00","North Beverly",4,"",3,3,1 "CR-Weekday-Fall-16-153","7:04:00","7:04:00","Hamilton/ Wenham",5,"",3,3,1 "CR-Weekday-Fall-16-153","7:15:00","7:15:00","Ipswich",6,"",0,0,1 "CR-Weekday-Fall-16-153","7:29:00","7:29:00","Newburyport",7,"",1,0,0 "CR-Weekday-Fall-16-154","6:25:00","6:25:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-154","6:30:00","6:30:00","Rowley",2,"",0,0,1 "CR-Weekday-Fall-16-154","6:37:00","6:37:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-154","6:43:00","6:43:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Weekday-Fall-16-154","6:48:00","6:48:00","North Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-154","6:53:00","6:53:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-154","6:57:00","6:57:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-154","7:05:00","7:05:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-154","7:09:00","7:09:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-154","7:12:00","7:12:00","River Works / GE Employees Only",10,"",3,3,1 "CR-Weekday-Fall-16-154","7:19:00","7:19:00","Chelsea",11,"",0,0,1 "CR-Weekday-Fall-16-154","7:31:00","7:31:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-155","7:37:00","7:37:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-155","7:49:00","7:49:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-155","7:57:00","7:57:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-155","8:02:00","8:02:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-155","8:09:00","8:09:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-155","8:13:00","8:13:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-155","8:17:00","8:17:00","North Beverly",7,"",3,3,1 "CR-Weekday-Fall-16-155","8:21:00","8:21:00","Hamilton/ Wenham",8,"",3,3,1 "CR-Weekday-Fall-16-155","8:27:00","8:27:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-155","8:32:00","8:32:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-155","8:40:00","8:40:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-156","7:00:00","7:00:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-156","7:05:00","7:05:00","Rowley",2,"",0,0,1 "CR-Weekday-Fall-16-156","7:12:00","7:12:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-156","7:18:00","7:18:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Weekday-Fall-16-156","7:23:00","7:23:00","North Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-156","7:28:00","7:28:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-156","7:33:00","7:33:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-156","7:41:00","7:41:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-156","7:45:00","7:45:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-156","7:48:00","7:48:00","River Works / GE Employees Only",10,"",3,3,1 "CR-Weekday-Fall-16-156","7:55:00","7:55:00","Chelsea",11,"",0,0,1 "CR-Weekday-Fall-16-156","8:08:00","8:08:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-157","8:10:00","8:10:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-157","8:22:00","8:22:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-157","8:29:00","8:29:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-157","8:31:00","8:31:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-157","8:36:00","8:36:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-157","8:43:00","8:43:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-157","8:47:00","8:47:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-157","8:51:00","8:51:00","North Beverly",8,"",3,3,1 "CR-Weekday-Fall-16-157","8:55:00","8:55:00","Hamilton/ Wenham",9,"",3,3,1 "CR-Weekday-Fall-16-157","9:03:00","9:03:00","Ipswich",10,"",0,0,1 "CR-Weekday-Fall-16-157","9:08:00","9:08:00","Rowley",11,"",3,3,1 "CR-Weekday-Fall-16-157","9:16:00","9:16:00","Newburyport",12,"",1,0,0 "CR-Weekday-Fall-16-158","7:30:00","7:30:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-158","7:35:00","7:35:00","Rowley",2,"",0,0,1 "CR-Weekday-Fall-16-158","7:42:00","7:42:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-158","7:48:00","7:48:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Weekday-Fall-16-158","7:53:00","7:53:00","North Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-158","7:58:00","7:58:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-158","8:02:00","8:02:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-158","8:10:00","8:10:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-158","8:14:00","8:14:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-158","8:17:00","8:17:00","River Works / GE Employees Only",10,"",3,3,1 "CR-Weekday-Fall-16-158","8:24:00","8:24:00","Chelsea",11,"",0,0,1 "CR-Weekday-Fall-16-158","8:36:00","8:36:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-159","10:00:00","10:00:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-159","10:05:00","10:05:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-159","10:12:00","10:12:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-159","10:16:00","10:16:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-159","10:20:00","10:20:00","North Beverly",7,"",3,3,1 "CR-Weekday-Fall-16-159","10:24:00","10:24:00","Hamilton/ Wenham",8,"",3,3,1 "CR-Weekday-Fall-16-159","10:30:00","10:30:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-159","10:35:00","10:35:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-159","10:43:00","10:43:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-159","9:40:00","9:40:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-159","9:52:00","9:52:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-160","7:55:00","7:55:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-160","8:00:00","8:00:00","Rowley",2,"",0,0,1 "CR-Weekday-Fall-16-160","8:07:00","8:07:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-160","8:13:00","8:13:00","Hamilton/ Wenham",4,"",0,0,1 "CR-Weekday-Fall-16-160","8:18:00","8:18:00","North Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-160","8:24:00","8:24:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-160","8:28:00","8:28:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-160","8:55:00","8:55:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-161","11:20:00","11:20:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-161","11:32:00","11:32:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-161","11:40:00","11:40:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-161","11:45:00","11:45:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-161","11:52:00","11:52:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-161","11:56:00","11:56:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-161","12:00:00","12:00:00","North Beverly",7,"",3,3,1 "CR-Weekday-Fall-16-161","12:04:00","12:04:00","Hamilton/ Wenham",8,"",3,3,1 "CR-Weekday-Fall-16-161","12:10:00","12:10:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-161","12:15:00","12:15:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-161","12:23:00","12:23:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-162","10:07:00","10:07:00","Chelsea",10,"",3,3,1 "CR-Weekday-Fall-16-162","10:18:00","10:18:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-162","9:15:00","9:15:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-162","9:20:00","9:20:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-162","9:26:00","9:26:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-162","9:32:00","9:32:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-162","9:36:00","9:36:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-162","9:42:00","9:42:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-162","9:46:00","9:46:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-162","9:54:00","9:54:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-162","9:58:00","9:58:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-163","13:20:00","13:20:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-163","13:32:00","13:32:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-163","13:40:00","13:40:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-163","13:45:00","13:45:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-163","13:52:00","13:52:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-163","13:56:00","13:56:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-163","14:00:00","14:00:00","North Beverly",7,"",3,3,1 "CR-Weekday-Fall-16-163","14:04:00","14:04:00","Hamilton/ Wenham",8,"",3,3,1 "CR-Weekday-Fall-16-163","14:10:00","14:10:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-163","14:15:00","14:15:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-163","14:23:00","14:23:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-164","10:00:00","10:00:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-164","10:05:00","10:05:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-164","10:11:00","10:11:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-164","10:17:00","10:17:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-164","10:21:00","10:21:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-164","10:27:00","10:27:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-164","10:31:00","10:31:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-164","10:39:00","10:39:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-164","10:43:00","10:43:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-164","10:52:00","10:52:00","Chelsea",10,"",3,3,1 "CR-Weekday-Fall-16-164","11:03:00","11:03:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-165","15:15:00","15:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-165","15:27:00","15:27:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-165","15:35:00","15:35:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-165","15:37:00","15:37:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-165","15:42:00","15:42:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-165","15:49:00","15:49:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-165","15:54:00","15:54:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-165","15:59:00","15:59:00","North Beverly",8,"",0,0,1 "CR-Weekday-Fall-16-165","16:03:00","16:03:00","Hamilton/ Wenham",9,"",0,0,1 "CR-Weekday-Fall-16-165","16:09:00","16:09:00","Ipswich",10,"",0,0,1 "CR-Weekday-Fall-16-165","16:15:00","16:15:00","Rowley",11,"",0,0,1 "CR-Weekday-Fall-16-165","16:24:00","16:24:00","Newburyport",12,"",1,0,0 "CR-Weekday-Fall-16-166","11:40:00","11:40:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-166","11:45:00","11:45:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-166","11:51:00","11:51:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-166","11:57:00","11:57:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-166","12:01:00","12:01:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-166","12:07:00","12:07:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-166","12:11:00","12:11:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-166","12:19:00","12:19:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-166","12:23:00","12:23:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-166","12:32:00","12:32:00","Chelsea",10,"",3,3,1 "CR-Weekday-Fall-16-166","12:43:00","12:43:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-167","16:30:00","16:30:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-167","16:57:00","16:57:00","Salem",2,"",0,0,1 "CR-Weekday-Fall-16-167","17:02:00","17:02:00","Beverly",3,"",0,0,1 "CR-Weekday-Fall-16-167","17:07:00","17:07:00","North Beverly",4,"",0,0,1 "CR-Weekday-Fall-16-167","17:11:00","17:11:00","Hamilton/ Wenham",5,"",0,0,1 "CR-Weekday-Fall-16-167","17:17:00","17:17:00","Ipswich",6,"",0,0,1 "CR-Weekday-Fall-16-167","17:23:00","17:23:00","Rowley",7,"",0,0,1 "CR-Weekday-Fall-16-167","17:31:00","17:31:00","Newburyport",8,"",1,0,0 "CR-Weekday-Fall-16-168","13:10:00","13:10:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-168","13:15:00","13:15:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-168","13:21:00","13:21:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-168","13:27:00","13:27:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-168","13:31:00","13:31:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-168","13:37:00","13:37:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-168","13:41:00","13:41:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-168","13:49:00","13:49:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-168","13:53:00","13:53:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-168","14:02:00","14:02:00","Chelsea",10,"",3,3,1 "CR-Weekday-Fall-16-168","14:13:00","14:13:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-169","17:15:00","17:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-169","17:27:00","17:27:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-169","17:35:00","17:35:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-169","17:40:00","17:40:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-169","17:47:00","17:47:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-169","17:51:00","17:51:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-169","17:56:00","17:56:00","North Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-169","18:00:00","18:00:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Weekday-Fall-16-169","18:06:00","18:06:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-169","18:12:00","18:12:00","Rowley",10,"",0,0,1 "CR-Weekday-Fall-16-169","18:20:00","18:20:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-170","14:55:00","14:55:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-170","15:00:00","15:00:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-170","15:06:00","15:06:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-170","15:12:00","15:12:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-170","15:16:00","15:16:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-170","15:22:00","15:22:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-170","15:26:00","15:26:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-170","15:34:00","15:34:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-170","15:38:00","15:38:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-170","15:41:00","15:41:00","River Works / GE Employees Only",10,"",3,3,1 "CR-Weekday-Fall-16-170","15:48:00","15:48:00","Chelsea",11,"",3,3,1 "CR-Weekday-Fall-16-170","15:59:00","15:59:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-171","17:40:00","17:40:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-171","17:52:00","17:52:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-171","18:00:00","18:00:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-171","18:02:00","18:02:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-171","18:07:00","18:07:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-171","18:14:00","18:14:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-171","18:18:00","18:18:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-171","18:23:00","18:23:00","North Beverly",8,"",0,0,1 "CR-Weekday-Fall-16-171","18:27:00","18:27:00","Hamilton/ Wenham",9,"",0,0,1 "CR-Weekday-Fall-16-171","18:33:00","18:33:00","Ipswich",10,"",0,0,1 "CR-Weekday-Fall-16-171","18:39:00","18:39:00","Rowley",11,"",0,0,1 "CR-Weekday-Fall-16-171","18:48:00","18:48:00","Newburyport",12,"",1,0,0 "CR-Weekday-Fall-16-172","16:44:00","16:44:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-172","16:49:00","16:49:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-172","16:55:00","16:55:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-172","17:01:00","17:01:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-172","17:05:00","17:05:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-172","17:11:00","17:11:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-172","17:15:00","17:15:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-172","17:23:00","17:23:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-172","17:27:00","17:27:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-172","17:30:00","17:30:00","River Works / GE Employees Only",10,"",3,3,1 "CR-Weekday-Fall-16-172","17:37:00","17:37:00","Chelsea",11,"",3,3,1 "CR-Weekday-Fall-16-172","17:50:00","17:50:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-173","18:05:00","18:05:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-173","18:17:00","18:17:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-173","18:25:00","18:25:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-173","18:30:00","18:30:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-173","18:37:00","18:37:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-173","18:41:00","18:41:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-173","18:46:00","18:46:00","North Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-173","18:50:00","18:50:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Weekday-Fall-16-173","18:56:00","18:56:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-173","19:02:00","19:02:00","Rowley",10,"",0,0,1 "CR-Weekday-Fall-16-173","19:10:00","19:10:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-174","17:46:00","17:46:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-174","17:51:00","17:51:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-174","17:57:00","17:57:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-174","18:06:00","18:06:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-174","18:14:00","18:14:00","Beverly",5,"",0,0,1 "CR-Weekday-Fall-16-174","18:18:00","18:18:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-174","18:44:00","18:44:00","North Station",7,"",1,0,0 "CR-Weekday-Fall-16-175","18:45:00","18:45:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-175","18:57:00","18:57:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-175","19:05:00","19:05:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-175","19:07:00","19:07:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-175","19:12:00","19:12:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-175","19:19:00","19:19:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-175","19:23:00","19:23:00","Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-175","19:28:00","19:28:00","North Beverly",8,"",0,0,1 "CR-Weekday-Fall-16-175","19:32:00","19:32:00","Hamilton/ Wenham",9,"",0,0,1 "CR-Weekday-Fall-16-175","19:38:00","19:38:00","Ipswich",10,"",0,0,1 "CR-Weekday-Fall-16-175","19:44:00","19:44:00","Rowley",11,"",0,0,1 "CR-Weekday-Fall-16-175","19:52:00","19:52:00","Newburyport",12,"",1,0,0 "CR-Weekday-Fall-16-176","19:06:00","19:06:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-176","19:11:00","19:11:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-176","19:17:00","19:17:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-176","19:23:00","19:23:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-176","19:27:00","19:27:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-176","19:33:00","19:33:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-176","19:37:00","19:37:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-176","19:45:00","19:45:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-176","19:49:00","19:49:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-176","19:58:00","19:58:00","Chelsea",10,"",3,3,1 "CR-Weekday-Fall-16-176","20:09:00","20:09:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-177","19:35:00","19:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-177","19:47:00","19:47:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-177","19:55:00","19:55:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-177","20:00:00","20:00:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-177","20:07:00","20:07:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-177","20:11:00","20:11:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-177","20:16:00","20:16:00","North Beverly",7,"",0,0,1 "CR-Weekday-Fall-16-177","20:21:00","20:21:00","Hamilton/ Wenham",8,"",0,0,1 "CR-Weekday-Fall-16-177","20:27:00","20:27:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-177","20:32:00","20:32:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-177","20:40:00","20:40:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-178","20:10:00","20:10:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-178","20:15:00","20:15:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-178","20:21:00","20:21:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-178","20:32:00","20:32:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-178","20:36:00","20:36:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-178","20:42:00","20:42:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-178","20:46:00","20:46:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-178","20:54:00","20:54:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-178","20:58:00","20:58:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-178","21:07:00","21:07:00","Chelsea",10,"",3,3,1 "CR-Weekday-Fall-16-178","21:18:00","21:18:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-179","21:10:00","21:10:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-179","21:22:00","21:22:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-179","21:30:00","21:30:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-179","21:35:00","21:35:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-179","21:42:00","21:42:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-179","21:46:00","21:46:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-179","21:50:00","21:50:00","North Beverly",7,"",3,3,1 "CR-Weekday-Fall-16-179","21:54:00","21:54:00","Hamilton/ Wenham",8,"",3,3,1 "CR-Weekday-Fall-16-179","22:00:00","22:00:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-179","22:05:00","22:05:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-179","22:13:00","22:13:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-180","21:25:00","21:25:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-180","21:30:00","21:30:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-180","21:36:00","21:36:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-180","21:42:00","21:42:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-180","21:46:00","21:46:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-180","21:52:00","21:52:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-180","21:56:00","21:56:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-180","22:04:00","22:04:00","Swampscott",8,"",0,0,1 "CR-Weekday-Fall-16-180","22:08:00","22:08:00","Lynn",9,"",0,0,1 "CR-Weekday-Fall-16-180","22:17:00","22:17:00","Chelsea",10,"",3,3,1 "CR-Weekday-Fall-16-180","22:28:00","22:28:00","North Station",11,"",1,0,0 "CR-Weekday-Fall-16-181","22:50:00","22:50:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-181","23:02:00","23:02:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-181","23:10:00","23:10:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-181","23:15:00","23:15:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-181","23:22:00","23:22:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-181","23:26:00","23:26:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-181","23:30:00","23:30:00","North Beverly",7,"",3,3,1 "CR-Weekday-Fall-16-181","23:34:00","23:34:00","Hamilton/ Wenham",8,"",3,3,1 "CR-Weekday-Fall-16-181","23:40:00","23:40:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-181","23:45:00","23:45:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-181","23:53:00","23:53:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-182","23:03:00","23:03:00","Newburyport",1,"",0,1,1 "CR-Weekday-Fall-16-182","23:08:00","23:08:00","Rowley",2,"",3,3,1 "CR-Weekday-Fall-16-182","23:14:00","23:14:00","Ipswich",3,"",0,0,1 "CR-Weekday-Fall-16-182","23:20:00","23:20:00","Hamilton/ Wenham",4,"",3,3,1 "CR-Weekday-Fall-16-182","23:24:00","23:24:00","North Beverly",5,"",3,3,1 "CR-Weekday-Fall-16-182","23:30:00","23:30:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-182","23:34:00","23:34:00","Salem",7,"",0,0,1 "CR-Weekday-Fall-16-182","24:00:00","24:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-183","24:15:00","24:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-183","24:27:00","24:27:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-183","24:35:00","24:35:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-183","24:40:00","24:40:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-183","24:47:00","24:47:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-183","24:51:00","24:51:00","Beverly",6,"",0,0,1 "CR-Weekday-Fall-16-183","24:55:00","24:55:00","North Beverly",7,"",3,3,1 "CR-Weekday-Fall-16-183","24:59:00","24:59:00","Hamilton/ Wenham",8,"",3,3,1 "CR-Weekday-Fall-16-183","25:05:00","25:05:00","Ipswich",9,"",0,0,1 "CR-Weekday-Fall-16-183","25:10:00","25:10:00","Rowley",10,"",3,3,1 "CR-Weekday-Fall-16-183","25:18:00","25:18:00","Newburyport",11,"",1,0,0 "CR-Weekday-Fall-16-191","7:08:00","7:08:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-191","7:19:00","7:19:00","Chelsea",2,"",3,3,1 "CR-Weekday-Fall-16-191","7:26:00","7:26:00","River Works / GE Employees Only",3,"",3,3,1 "CR-Weekday-Fall-16-191","7:28:00","7:28:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-191","7:33:00","7:33:00","Swampscott",5,"",0,0,1 "CR-Weekday-Fall-16-191","7:40:00","7:40:00","Salem",6,"",0,0,1 "CR-Weekday-Fall-16-191","7:44:00","7:44:00","Beverly",7,"",1,0,0 "CR-Weekday-Fall-16-192","8:33:00","8:33:00","Beverly",1,"",0,1,1 "CR-Weekday-Fall-16-192","8:37:00","8:37:00","Salem",2,"",0,0,1 "CR-Weekday-Fall-16-192","8:45:00","8:45:00","Swampscott",3,"",0,0,1 "CR-Weekday-Fall-16-192","8:49:00","8:49:00","Lynn",4,"",0,0,1 "CR-Weekday-Fall-16-192","8:52:00","8:52:00","River Works / GE Employees Only",5,"",3,3,1 "CR-Weekday-Fall-16-192","8:59:00","8:59:00","Chelsea",6,"",0,0,1 "CR-Weekday-Fall-16-192","9:11:00","9:11:00","North Station",7,"",1,0,0 "CR-Weekday-Fall-16-193","16:40:00","16:40:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-193","16:52:00","16:52:00","Chelsea",2,"",0,0,1 "CR-Weekday-Fall-16-193","17:00:00","17:00:00","Lynn",3,"",0,0,1 "CR-Weekday-Fall-16-193","17:05:00","17:05:00","Swampscott",4,"",0,0,1 "CR-Weekday-Fall-16-193","17:12:00","17:12:00","Salem",5,"",0,0,1 "CR-Weekday-Fall-16-193","17:16:00","17:16:00","Beverly",6,"",1,0,0 "CR-Weekday-Fall-16-194","17:35:00","17:35:00","Beverly",1,"",0,1,1 "CR-Weekday-Fall-16-194","17:39:00","17:39:00","Salem",2,"",0,0,1 "CR-Weekday-Fall-16-194","18:05:00","18:05:00","North Station",3,"",1,0,0 "CR-Weekday-Fall-16-200","5:05:00","5:05:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-200","5:07:00","5:07:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-200","5:16:00","5:16:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-200","5:23:00","5:23:00","Andover",4,"",0,0,1 "CR-Weekday-Fall-16-200","5:29:00","5:29:00","Ballardvale",5,"",0,0,1 "CR-Weekday-Fall-16-200","5:36:00","5:36:00","North Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-200","5:43:00","5:43:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-200","5:49:00","5:49:00","Wakefield",8,"",0,0,1 "CR-Weekday-Fall-16-200","5:52:00","5:52:00","Greenwood",9,"",0,0,1 "CR-Weekday-Fall-16-200","5:54:00","5:54:00","Melrose Highlands",10,"",0,0,1 "CR-Weekday-Fall-16-200","5:56:00","5:56:00","Melrose Cedar Park",11,"",0,0,1 "CR-Weekday-Fall-16-200","5:58:00","5:58:00","Wyoming Hill",12,"",0,0,1 "CR-Weekday-Fall-16-200","6:02:00","6:02:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-200","6:15:00","6:15:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-201","7:35:00","7:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-201","7:45:00","7:45:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-201","7:48:00","7:48:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-201","7:50:00","7:50:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-201","7:53:00","7:53:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-201","7:56:00","7:56:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-201","8:00:00","8:00:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-201","8:06:00","8:06:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-201","8:12:00","8:12:00","North Wilmington",9,"",0,0,1 "CR-Weekday-Fall-16-201","8:19:00","8:19:00","Ballardvale",10,"",0,0,1 "CR-Weekday-Fall-16-201","8:24:00","8:24:00","Andover",11,"",0,0,1 "CR-Weekday-Fall-16-201","8:31:00","8:31:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-201","8:40:00","8:40:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-201","8:42:00","8:42:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-202","5:40:00","5:40:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-202","5:42:00","5:42:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-202","5:51:00","5:51:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-202","5:58:00","5:58:00","Andover",4,"",0,0,1 "CR-Weekday-Fall-16-202","6:04:00","6:04:00","Ballardvale",5,"",0,0,1 "CR-Weekday-Fall-16-202","6:11:00","6:11:00","North Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-202","6:18:00","6:18:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-202","6:24:00","6:24:00","Wakefield",8,"",0,0,1 "CR-Weekday-Fall-16-202","6:27:00","6:27:00","Greenwood",9,"",0,0,1 "CR-Weekday-Fall-16-202","6:29:00","6:29:00","Melrose Highlands",10,"",0,0,1 "CR-Weekday-Fall-16-202","6:31:00","6:31:00","Melrose Cedar Park",11,"",0,0,1 "CR-Weekday-Fall-16-202","6:33:00","6:33:00","Wyoming Hill",12,"",0,0,1 "CR-Weekday-Fall-16-202","6:37:00","6:37:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-202","6:50:00","6:50:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-203","10:00:00","10:00:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-203","10:05:00","10:05:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-203","10:12:00","10:12:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-203","10:21:00","10:21:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-203","10:23:00","10:23:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-203","9:15:00","9:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-203","9:26:00","9:26:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-203","9:29:00","9:29:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-203","9:31:00","9:31:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-203","9:34:00","9:34:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-203","9:37:00","9:37:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-203","9:41:00","9:41:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-203","9:47:00","9:47:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-203","9:53:00","9:53:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-204","6:10:00","6:10:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-204","6:12:00","6:12:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-204","6:21:00","6:21:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-204","6:28:00","6:28:00","Andover",4,"",0,0,1 "CR-Weekday-Fall-16-204","6:34:00","6:34:00","Ballardvale",5,"",0,0,1 "CR-Weekday-Fall-16-204","6:41:00","6:41:00","North Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-204","6:48:00","6:48:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-204","6:54:00","6:54:00","Wakefield",8,"",0,0,1 "CR-Weekday-Fall-16-204","6:57:00","6:57:00","Greenwood",9,"",0,0,1 "CR-Weekday-Fall-16-204","6:59:00","6:59:00","Melrose Highlands",10,"",0,0,1 "CR-Weekday-Fall-16-204","7:01:00","7:01:00","Melrose Cedar Park",11,"",0,0,1 "CR-Weekday-Fall-16-204","7:03:00","7:03:00","Wyoming Hill",12,"",0,0,1 "CR-Weekday-Fall-16-204","7:07:00","7:07:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-204","7:20:00","7:20:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-205","10:55:00","10:55:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-205","11:06:00","11:06:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-205","11:09:00","11:09:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-205","11:11:00","11:11:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-205","11:14:00","11:14:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-205","11:17:00","11:17:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-205","11:21:00","11:21:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-205","11:27:00","11:27:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-205","11:33:00","11:33:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-205","11:40:00","11:40:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-205","11:45:00","11:45:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-205","11:52:00","11:52:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-205","12:01:00","12:01:00","Bradford",13,"",0,0,1 "CR-Weekday-Fall-16-205","12:03:00","12:03:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-206","6:40:00","6:40:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-206","6:42:00","6:42:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-206","6:51:00","6:51:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-206","6:58:00","6:58:00","Andover",4,"",0,0,1 "CR-Weekday-Fall-16-206","7:04:00","7:04:00","Ballardvale",5,"",0,0,1 "CR-Weekday-Fall-16-206","7:38:00","7:38:00","North Station",6,"",1,0,0 "CR-Weekday-Fall-16-207","12:20:00","12:20:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-207","12:31:00","12:31:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-207","12:34:00","12:34:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-207","12:36:00","12:36:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-207","12:39:00","12:39:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-207","12:42:00","12:42:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-207","12:46:00","12:46:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-207","12:52:00","12:52:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-207","12:58:00","12:58:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-207","13:05:00","13:05:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-207","13:10:00","13:10:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-207","13:17:00","13:17:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-207","13:40:00","13:40:00","Bradford",13,"",0,0,1 "CR-Weekday-Fall-16-207","13:50:00","13:50:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-208","7:35:00","7:35:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-208","7:37:00","7:37:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-208","7:46:00","7:46:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-208","7:53:00","7:53:00","Andover",4,"",0,0,1 "CR-Weekday-Fall-16-208","7:59:00","7:59:00","Ballardvale",5,"",0,0,1 "CR-Weekday-Fall-16-208","8:35:00","8:35:00","North Station",6,"",1,0,0 "CR-Weekday-Fall-16-209","14:02:00","14:02:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-209","14:13:00","14:13:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-209","14:16:00","14:16:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-209","14:18:00","14:18:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-209","14:21:00","14:21:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-209","14:24:00","14:24:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-209","14:28:00","14:28:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-209","14:34:00","14:34:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-209","14:40:00","14:40:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-209","14:47:00","14:47:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-209","14:52:00","14:52:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-209","14:59:00","14:59:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-209","15:10:00","15:10:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-209","15:12:00","15:12:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-210","10:10:00","10:10:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-210","9:05:00","9:05:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-210","9:07:00","9:07:00","Bradford",2,"",3,3,1 "CR-Weekday-Fall-16-210","9:15:00","9:15:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-210","9:22:00","9:22:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-210","9:27:00","9:27:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-210","9:34:00","9:34:00","North Wilmington",6,"",3,3,1 "CR-Weekday-Fall-16-210","9:41:00","9:41:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-210","9:46:00","9:46:00","Wakefield",8,"",3,3,1 "CR-Weekday-Fall-16-210","9:49:00","9:49:00","Greenwood",9,"",3,3,1 "CR-Weekday-Fall-16-210","9:51:00","9:51:00","Melrose Highlands",10,"",3,3,1 "CR-Weekday-Fall-16-210","9:53:00","9:53:00","Melrose Cedar Park",11,"",3,3,1 "CR-Weekday-Fall-16-210","9:55:00","9:55:00","Wyoming Hill",12,"",3,3,1 "CR-Weekday-Fall-16-210","9:58:00","9:58:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-211","15:15:00","15:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-211","15:26:00","15:26:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-211","15:30:00","15:30:00","Wyoming Hill",3,"",0,0,1 "CR-Weekday-Fall-16-211","15:32:00","15:32:00","Melrose Cedar Park",4,"",0,0,1 "CR-Weekday-Fall-16-211","15:36:00","15:36:00","Melrose Highlands",5,"",0,0,1 "CR-Weekday-Fall-16-211","15:39:00","15:39:00","Greenwood",6,"",0,0,1 "CR-Weekday-Fall-16-211","15:43:00","15:43:00","Wakefield",7,"",0,0,1 "CR-Weekday-Fall-16-211","15:49:00","15:49:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-211","15:56:00","15:56:00","North Wilmington",9,"",0,0,1 "CR-Weekday-Fall-16-211","16:03:00","16:03:00","Ballardvale",10,"",0,0,1 "CR-Weekday-Fall-16-211","16:09:00","16:09:00","Andover",11,"",0,0,1 "CR-Weekday-Fall-16-211","16:15:00","16:15:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-211","16:24:00","16:24:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-211","16:27:00","16:27:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-212","10:44:00","10:44:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-212","10:46:00","10:46:00","Bradford",2,"",3,3,1 "CR-Weekday-Fall-16-212","10:54:00","10:54:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-212","11:01:00","11:01:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-212","11:06:00","11:06:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-212","11:13:00","11:13:00","North Wilmington",6,"",3,3,1 "CR-Weekday-Fall-16-212","11:20:00","11:20:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-212","11:25:00","11:25:00","Wakefield",8,"",3,3,1 "CR-Weekday-Fall-16-212","11:28:00","11:28:00","Greenwood",9,"",3,3,1 "CR-Weekday-Fall-16-212","11:30:00","11:30:00","Melrose Highlands",10,"",3,3,1 "CR-Weekday-Fall-16-212","11:32:00","11:32:00","Melrose Cedar Park",11,"",3,3,1 "CR-Weekday-Fall-16-212","11:34:00","11:34:00","Wyoming Hill",12,"",3,3,1 "CR-Weekday-Fall-16-212","11:37:00","11:37:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-212","11:49:00","11:49:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-213","16:30:00","16:30:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-213","16:41:00","16:41:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-213","16:45:00","16:45:00","Wyoming Hill",3,"",0,0,1 "CR-Weekday-Fall-16-213","16:47:00","16:47:00","Melrose Cedar Park",4,"",0,0,1 "CR-Weekday-Fall-16-213","16:51:00","16:51:00","Melrose Highlands",5,"",0,0,1 "CR-Weekday-Fall-16-213","16:54:00","16:54:00","Greenwood",6,"",0,0,1 "CR-Weekday-Fall-16-213","16:58:00","16:58:00","Wakefield",7,"",0,0,1 "CR-Weekday-Fall-16-213","17:04:00","17:04:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-213","17:11:00","17:11:00","North Wilmington",9,"",0,0,1 "CR-Weekday-Fall-16-213","17:18:00","17:18:00","Ballardvale",10,"",0,0,1 "CR-Weekday-Fall-16-213","17:24:00","17:24:00","Andover",11,"",0,0,1 "CR-Weekday-Fall-16-213","17:30:00","17:30:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-213","17:50:00","17:50:00","Bradford",13,"",0,0,1 "CR-Weekday-Fall-16-213","18:00:00","18:00:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-214","12:25:00","12:25:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-214","12:27:00","12:27:00","Bradford",2,"",3,3,1 "CR-Weekday-Fall-16-214","12:35:00","12:35:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-214","12:42:00","12:42:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-214","12:47:00","12:47:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-214","13:23:00","13:23:00","North Station",6,"",1,0,0 "CR-Weekday-Fall-16-215","17:15:00","17:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-215","17:26:00","17:26:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-215","17:36:00","17:36:00","Wakefield",3,"",0,0,1 "CR-Weekday-Fall-16-215","17:42:00","17:42:00","Reading",4,"",0,0,1 "CR-Weekday-Fall-16-215","17:49:00","17:49:00","North Wilmington",5,"",0,0,1 "CR-Weekday-Fall-16-215","17:56:00","17:56:00","Ballardvale",6,"",0,0,1 "CR-Weekday-Fall-16-215","18:02:00","18:02:00","Andover",7,"",0,0,1 "CR-Weekday-Fall-16-215","18:08:00","18:08:00","Lawrence",8,"",0,0,1 "CR-Weekday-Fall-16-215","18:18:00","18:18:00","Bradford",9,"",0,0,0 "CR-Weekday-Fall-16-215","18:21:00","18:21:00","Haverhill",10,"",1,0,0 "CR-Weekday-Fall-16-216","13:35:00","13:35:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-216","13:45:00","13:45:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-216","14:00:00","14:00:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-216","14:07:00","14:07:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-216","14:12:00","14:12:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-216","14:19:00","14:19:00","North Wilmington",6,"",3,3,1 "CR-Weekday-Fall-16-216","14:26:00","14:26:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-216","14:31:00","14:31:00","Wakefield",8,"",3,3,1 "CR-Weekday-Fall-16-216","14:34:00","14:34:00","Greenwood",9,"",3,3,1 "CR-Weekday-Fall-16-216","14:36:00","14:36:00","Melrose Highlands",10,"",3,3,1 "CR-Weekday-Fall-16-216","14:38:00","14:38:00","Melrose Cedar Park",11,"",3,3,1 "CR-Weekday-Fall-16-216","14:40:00","14:40:00","Wyoming Hill",12,"",3,3,1 "CR-Weekday-Fall-16-216","14:43:00","14:43:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-216","14:55:00","14:55:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-217","17:35:00","17:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-217","17:46:00","17:46:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-217","17:50:00","17:50:00","Wyoming Hill",3,"",0,0,1 "CR-Weekday-Fall-16-217","17:52:00","17:52:00","Melrose Cedar Park",4,"",0,0,1 "CR-Weekday-Fall-16-217","17:56:00","17:56:00","Melrose Highlands",5,"",0,0,1 "CR-Weekday-Fall-16-217","17:59:00","17:59:00","Greenwood",6,"",0,0,1 "CR-Weekday-Fall-16-217","18:03:00","18:03:00","Wakefield",7,"",0,0,1 "CR-Weekday-Fall-16-217","18:09:00","18:09:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-217","18:16:00","18:16:00","North Wilmington",9,"",0,0,1 "CR-Weekday-Fall-16-217","18:23:00","18:23:00","Ballardvale",10,"",0,0,1 "CR-Weekday-Fall-16-217","18:29:00","18:29:00","Andover",11,"",0,0,1 "CR-Weekday-Fall-16-217","18:35:00","18:35:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-217","18:45:00","18:45:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-217","18:48:00","18:48:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-218","15:30:00","15:30:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-218","15:32:00","15:32:00","Bradford",2,"",3,3,1 "CR-Weekday-Fall-16-218","15:40:00","15:40:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-218","15:47:00","15:47:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-218","15:52:00","15:52:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-218","16:28:00","16:28:00","North Station",6,"",1,0,0 "CR-Weekday-Fall-16-219","18:25:00","18:25:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-219","18:36:00","18:36:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-219","18:40:00","18:40:00","Wyoming Hill",3,"",0,0,1 "CR-Weekday-Fall-16-219","18:42:00","18:42:00","Melrose Cedar Park",4,"",0,0,1 "CR-Weekday-Fall-16-219","18:46:00","18:46:00","Melrose Highlands",5,"",0,0,1 "CR-Weekday-Fall-16-219","18:49:00","18:49:00","Greenwood",6,"",0,0,1 "CR-Weekday-Fall-16-219","18:53:00","18:53:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-219","18:59:00","18:59:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-219","19:06:00","19:06:00","North Wilmington",9,"",0,0,1 "CR-Weekday-Fall-16-219","19:13:00","19:13:00","Ballardvale",10,"",0,0,1 "CR-Weekday-Fall-16-219","19:19:00","19:19:00","Andover",11,"",0,0,1 "CR-Weekday-Fall-16-219","19:25:00","19:25:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-219","19:35:00","19:35:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-219","19:38:00","19:38:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-220","16:45:00","16:45:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-220","16:47:00","16:47:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-220","16:55:00","16:55:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-220","17:02:00","17:02:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-220","17:07:00","17:07:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-220","17:43:00","17:43:00","North Station",6,"",1,0,0 "CR-Weekday-Fall-16-221","18:55:00","18:55:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-221","19:06:00","19:06:00","West Medford",2,"",0,0,1 "CR-Weekday-Fall-16-221","19:11:00","19:11:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-221","19:13:00","19:13:00","Winchester Center",4,"",0,0,1 "CR-Weekday-Fall-16-221","19:20:00","19:20:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-221","19:24:00","19:24:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-221","19:35:00","19:35:00","Ballardvale",7,"",0,0,1 "CR-Weekday-Fall-16-221","19:41:00","19:41:00","Andover",8,"",0,0,1 "CR-Weekday-Fall-16-221","19:47:00","19:47:00","Lawrence",9,"",0,0,1 "CR-Weekday-Fall-16-221","20:07:00","20:07:00","Bradford",10,"",0,0,1 "CR-Weekday-Fall-16-221","20:17:00","20:17:00","Haverhill",11,"",1,0,0 "CR-Weekday-Fall-16-222","18:09:00","18:09:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-222","18:19:00","18:19:00","Bradford",2,"",0,0,1 "CR-Weekday-Fall-16-222","18:39:00","18:39:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-222","18:46:00","18:46:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-222","18:51:00","18:51:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-222","19:25:00","19:25:00","North Station",6,"",1,0,0 "CR-Weekday-Fall-16-223","19:40:00","19:40:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-223","19:51:00","19:51:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-223","19:54:00","19:54:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-223","19:56:00","19:56:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-223","19:59:00","19:59:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-223","20:02:00","20:02:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-223","20:06:00","20:06:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-223","20:12:00","20:12:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-223","20:18:00","20:18:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-223","20:25:00","20:25:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-223","20:30:00","20:30:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-223","20:37:00","20:37:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-223","20:46:00","20:46:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-223","20:48:00","20:48:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-224","19:45:00","19:45:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-224","19:47:00","19:47:00","Bradford",2,"",3,3,1 "CR-Weekday-Fall-16-224","19:55:00","19:55:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-224","20:02:00","20:02:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-224","20:07:00","20:07:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-224","20:38:00","20:38:00","North Station",6,"",1,0,0 "CR-Weekday-Fall-16-225","21:20:00","21:20:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-225","21:31:00","21:31:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-225","21:34:00","21:34:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-225","21:36:00","21:36:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-225","21:39:00","21:39:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-225","21:42:00","21:42:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-225","21:46:00","21:46:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-225","21:52:00","21:52:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-225","21:58:00","21:58:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-225","22:05:00","22:05:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-225","22:10:00","22:10:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-225","22:17:00","22:17:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-225","22:26:00","22:26:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-225","22:28:00","22:28:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-226","21:10:00","21:10:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-226","21:12:00","21:12:00","Bradford",2,"",3,3,1 "CR-Weekday-Fall-16-226","21:20:00","21:20:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-226","21:27:00","21:27:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-226","21:32:00","21:32:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-226","21:39:00","21:39:00","North Wilmington",6,"",3,3,1 "CR-Weekday-Fall-16-226","21:46:00","21:46:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-226","21:51:00","21:51:00","Wakefield",8,"",3,3,1 "CR-Weekday-Fall-16-226","21:54:00","21:54:00","Greenwood",9,"",3,3,1 "CR-Weekday-Fall-16-226","21:56:00","21:56:00","Melrose Highlands",10,"",3,3,1 "CR-Weekday-Fall-16-226","21:58:00","21:58:00","Melrose Cedar Park",11,"",3,3,1 "CR-Weekday-Fall-16-226","22:00:00","22:00:00","Wyoming Hill",12,"",3,3,1 "CR-Weekday-Fall-16-226","22:03:00","22:03:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-226","22:15:00","22:15:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-227","23:00:00","23:00:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-227","23:11:00","23:11:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-227","23:14:00","23:14:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-227","23:16:00","23:16:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-227","23:19:00","23:19:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-227","23:22:00","23:22:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-227","23:26:00","23:26:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-227","23:32:00","23:32:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-227","23:38:00","23:38:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-227","23:45:00","23:45:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-227","23:50:00","23:50:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-227","23:57:00","23:57:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-227","24:06:00","24:06:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-227","24:08:00","24:08:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-228","22:50:00","22:50:00","Haverhill",1,"",0,1,1 "CR-Weekday-Fall-16-228","22:52:00","22:52:00","Bradford",2,"",3,3,1 "CR-Weekday-Fall-16-228","23:00:00","23:00:00","Lawrence",3,"",0,0,1 "CR-Weekday-Fall-16-228","23:07:00","23:07:00","Andover",4,"",3,3,1 "CR-Weekday-Fall-16-228","23:12:00","23:12:00","Ballardvale",5,"",3,3,1 "CR-Weekday-Fall-16-228","23:19:00","23:19:00","North Wilmington",6,"",3,3,1 "CR-Weekday-Fall-16-228","23:26:00","23:26:00","Reading",7,"",0,0,1 "CR-Weekday-Fall-16-228","23:31:00","23:31:00","Wakefield",8,"",3,3,1 "CR-Weekday-Fall-16-228","23:34:00","23:34:00","Greenwood",9,"",3,3,1 "CR-Weekday-Fall-16-228","23:36:00","23:36:00","Melrose Highlands",10,"",3,3,1 "CR-Weekday-Fall-16-228","23:38:00","23:38:00","Melrose Cedar Park",11,"",3,3,1 "CR-Weekday-Fall-16-228","23:40:00","23:40:00","Wyoming Hill",12,"",3,3,1 "CR-Weekday-Fall-16-228","23:43:00","23:43:00","Malden Center",13,"",0,0,0 "CR-Weekday-Fall-16-228","23:55:00","23:55:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-229","24:10:00","24:10:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-229","24:21:00","24:21:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-229","24:24:00","24:24:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-229","24:26:00","24:26:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-229","24:29:00","24:29:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-229","24:32:00","24:32:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-229","24:36:00","24:36:00","Wakefield",7,"",0,0,1 "CR-Weekday-Fall-16-229","24:42:00","24:42:00","Reading",8,"",0,0,1 "CR-Weekday-Fall-16-229","24:48:00","24:48:00","North Wilmington",9,"",3,3,1 "CR-Weekday-Fall-16-229","24:55:00","24:55:00","Ballardvale",10,"",3,3,1 "CR-Weekday-Fall-16-229","25:00:00","25:00:00","Andover",11,"",3,3,1 "CR-Weekday-Fall-16-229","25:07:00","25:07:00","Lawrence",12,"",0,0,1 "CR-Weekday-Fall-16-229","25:16:00","25:16:00","Bradford",13,"",0,0,0 "CR-Weekday-Fall-16-229","25:18:00","25:18:00","Haverhill",14,"",1,0,0 "CR-Weekday-Fall-16-285","6:43:00","6:43:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-285","6:54:00","6:54:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-285","6:57:00","6:57:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-285","6:59:00","6:59:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-285","7:02:00","7:02:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-285","7:05:00","7:05:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-285","7:09:00","7:09:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-285","7:15:00","7:15:00","Reading",8,"",1,0,0 "CR-Weekday-Fall-16-286","7:30:00","7:30:00","Reading",1,"",0,1,1 "CR-Weekday-Fall-16-286","7:36:00","7:36:00","Wakefield",2,"",0,0,1 "CR-Weekday-Fall-16-286","7:39:00","7:39:00","Greenwood",3,"",0,0,1 "CR-Weekday-Fall-16-286","7:41:00","7:41:00","Melrose Highlands",4,"",0,0,1 "CR-Weekday-Fall-16-286","7:43:00","7:43:00","Melrose Cedar Park",5,"",0,0,1 "CR-Weekday-Fall-16-286","7:45:00","7:45:00","Wyoming Hill",6,"",0,0,1 "CR-Weekday-Fall-16-286","7:51:00","7:51:00","Malden Center",7,"",0,0,0 "CR-Weekday-Fall-16-286","8:02:00","8:02:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-287","7:10:00","7:10:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-287","7:21:00","7:21:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-287","7:24:00","7:24:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-287","7:26:00","7:26:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-287","7:29:00","7:29:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-287","7:32:00","7:32:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-287","7:36:00","7:36:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-287","7:42:00","7:42:00","Reading",8,"",1,0,0 "CR-Weekday-Fall-16-288","8:00:00","8:00:00","Reading",1,"",0,1,1 "CR-Weekday-Fall-16-288","8:06:00","8:06:00","Wakefield",2,"",0,0,1 "CR-Weekday-Fall-16-288","8:09:00","8:09:00","Greenwood",3,"",0,0,1 "CR-Weekday-Fall-16-288","8:11:00","8:11:00","Melrose Highlands",4,"",0,0,1 "CR-Weekday-Fall-16-288","8:13:00","8:13:00","Melrose Cedar Park",5,"",0,0,1 "CR-Weekday-Fall-16-288","8:15:00","8:15:00","Wyoming Hill",6,"",0,0,1 "CR-Weekday-Fall-16-288","8:19:00","8:19:00","Malden Center",7,"",0,0,0 "CR-Weekday-Fall-16-288","8:30:00","8:30:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-289","7:55:00","7:55:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-289","8:17:00","8:17:00","Reading",2,"",1,0,0 "CR-Weekday-Fall-16-290","8:30:00","8:30:00","Reading",1,"",0,1,1 "CR-Weekday-Fall-16-290","8:36:00","8:36:00","Wakefield",2,"",0,0,1 "CR-Weekday-Fall-16-290","8:39:00","8:39:00","Greenwood",3,"",0,0,1 "CR-Weekday-Fall-16-290","8:41:00","8:41:00","Melrose Highlands",4,"",0,0,1 "CR-Weekday-Fall-16-290","8:43:00","8:43:00","Melrose Cedar Park",5,"",0,0,1 "CR-Weekday-Fall-16-290","8:45:00","8:45:00","Wyoming Hill",6,"",0,0,1 "CR-Weekday-Fall-16-290","8:49:00","8:49:00","Malden Center",7,"",0,0,0 "CR-Weekday-Fall-16-290","9:00:00","9:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-291","15:50:00","15:50:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-291","16:01:00","16:01:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-291","16:05:00","16:05:00","Wyoming Hill",3,"",0,0,1 "CR-Weekday-Fall-16-291","16:07:00","16:07:00","Melrose Cedar Park",4,"",0,0,1 "CR-Weekday-Fall-16-291","16:11:00","16:11:00","Melrose Highlands",5,"",0,0,1 "CR-Weekday-Fall-16-291","16:14:00","16:14:00","Greenwood",6,"",0,0,1 "CR-Weekday-Fall-16-291","16:18:00","16:18:00","Wakefield",7,"",0,0,1 "CR-Weekday-Fall-16-291","16:24:00","16:24:00","Reading",8,"",1,0,0 "CR-Weekday-Fall-16-292","16:50:00","16:50:00","Reading",1,"",0,1,1 "CR-Weekday-Fall-16-292","16:55:00","16:55:00","Wakefield",2,"",3,3,1 "CR-Weekday-Fall-16-292","16:58:00","16:58:00","Greenwood",3,"",3,3,1 "CR-Weekday-Fall-16-292","17:00:00","17:00:00","Melrose Highlands",4,"",3,3,1 "CR-Weekday-Fall-16-292","17:01:00","17:01:00","Melrose Cedar Park",5,"",3,3,1 "CR-Weekday-Fall-16-292","17:03:00","17:03:00","Wyoming Hill",6,"",3,3,1 "CR-Weekday-Fall-16-292","17:06:00","17:06:00","Malden Center",7,"",0,0,0 "CR-Weekday-Fall-16-292","17:17:00","17:17:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-293","16:48:00","16:48:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-293","16:59:00","16:59:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-293","17:03:00","17:03:00","Wyoming Hill",3,"",0,0,1 "CR-Weekday-Fall-16-293","17:05:00","17:05:00","Melrose Cedar Park",4,"",0,0,1 "CR-Weekday-Fall-16-293","17:09:00","17:09:00","Melrose Highlands",5,"",0,0,1 "CR-Weekday-Fall-16-293","17:12:00","17:12:00","Greenwood",6,"",0,0,1 "CR-Weekday-Fall-16-293","17:16:00","17:16:00","Wakefield",7,"",0,0,1 "CR-Weekday-Fall-16-293","17:22:00","17:22:00","Reading",8,"",1,0,0 "CR-Weekday-Fall-16-294","17:38:00","17:38:00","Reading",1,"",0,1,1 "CR-Weekday-Fall-16-294","17:43:00","17:43:00","Wakefield",2,"",3,3,1 "CR-Weekday-Fall-16-294","17:46:00","17:46:00","Greenwood",3,"",3,3,1 "CR-Weekday-Fall-16-294","17:48:00","17:48:00","Melrose Highlands",4,"",3,3,1 "CR-Weekday-Fall-16-294","17:49:00","17:49:00","Melrose Cedar Park",5,"",3,3,1 "CR-Weekday-Fall-16-294","17:51:00","17:51:00","Wyoming Hill",6,"",3,3,1 "CR-Weekday-Fall-16-294","17:54:00","17:54:00","Malden Center",7,"",0,0,0 "CR-Weekday-Fall-16-294","18:05:00","18:05:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-295","18:05:00","18:05:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-295","18:16:00","18:16:00","Malden Center",2,"",0,0,1 "CR-Weekday-Fall-16-295","18:20:00","18:20:00","Wyoming Hill",3,"",0,0,1 "CR-Weekday-Fall-16-295","18:22:00","18:22:00","Melrose Cedar Park",4,"",0,0,1 "CR-Weekday-Fall-16-295","18:26:00","18:26:00","Melrose Highlands",5,"",0,0,1 "CR-Weekday-Fall-16-295","18:29:00","18:29:00","Greenwood",6,"",0,0,1 "CR-Weekday-Fall-16-295","18:33:00","18:33:00","Wakefield",7,"",0,0,1 "CR-Weekday-Fall-16-295","18:39:00","18:39:00","Reading",8,"",1,0,0 "CR-Weekday-Fall-16-296","18:55:00","18:55:00","Reading",1,"",0,1,1 "CR-Weekday-Fall-16-296","19:00:00","19:00:00","Wakefield",2,"",3,3,1 "CR-Weekday-Fall-16-296","19:03:00","19:03:00","Greenwood",3,"",3,3,1 "CR-Weekday-Fall-16-296","19:05:00","19:05:00","Melrose Highlands",4,"",3,3,1 "CR-Weekday-Fall-16-296","19:06:00","19:06:00","Melrose Cedar Park",5,"",3,3,1 "CR-Weekday-Fall-16-296","19:08:00","19:08:00","Wyoming Hill",6,"",3,3,1 "CR-Weekday-Fall-16-296","19:11:00","19:11:00","Malden Center",7,"",0,0,0 "CR-Weekday-Fall-16-296","19:22:00","19:22:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-297","19:20:00","19:20:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-297","19:31:00","19:31:00","Malden Center",2,"",3,3,1 "CR-Weekday-Fall-16-297","19:34:00","19:34:00","Wyoming Hill",3,"",3,3,1 "CR-Weekday-Fall-16-297","19:36:00","19:36:00","Melrose Cedar Park",4,"",3,3,1 "CR-Weekday-Fall-16-297","19:39:00","19:39:00","Melrose Highlands",5,"",3,3,1 "CR-Weekday-Fall-16-297","19:42:00","19:42:00","Greenwood",6,"",3,3,1 "CR-Weekday-Fall-16-297","19:46:00","19:46:00","Wakefield",7,"",3,3,1 "CR-Weekday-Fall-16-297","19:52:00","19:52:00","Reading",8,"",1,0,0 "CR-Weekday-Fall-16-298","20:07:00","20:07:00","Reading",1,"",0,1,1 "CR-Weekday-Fall-16-298","20:12:00","20:12:00","Wakefield",2,"",3,3,1 "CR-Weekday-Fall-16-298","20:15:00","20:15:00","Greenwood",3,"",3,3,1 "CR-Weekday-Fall-16-298","20:17:00","20:17:00","Melrose Highlands",4,"",3,3,1 "CR-Weekday-Fall-16-298","20:18:00","20:18:00","Melrose Cedar Park",5,"",3,3,1 "CR-Weekday-Fall-16-298","20:20:00","20:20:00","Wyoming Hill",6,"",3,3,1 "CR-Weekday-Fall-16-298","20:23:00","20:23:00","Malden Center",7,"",0,0,0 "CR-Weekday-Fall-16-298","20:34:00","20:34:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-300","5:35:00","5:35:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-300","5:43:00","5:43:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-300","5:51:00","5:51:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-300","5:56:00","5:56:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-300","6:03:00","6:03:00","Winchester Center",5,"",0,0,1 "CR-Weekday-Fall-16-300","6:05:00","6:05:00","Wedgemere",6,"",0,0,1 "CR-Weekday-Fall-16-300","6:09:00","6:09:00","West Medford",7,"",0,0,1 "CR-Weekday-Fall-16-300","6:22:00","6:22:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-301","5:35:00","5:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-301","5:46:00","5:46:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-301","5:50:00","5:50:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-301","5:52:00","5:52:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-301","5:59:00","5:59:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-301","6:02:00","6:02:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-301","6:12:00","6:12:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-301","6:19:00","6:19:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-302","6:15:00","6:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-302","6:23:00","6:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-302","6:31:00","6:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-302","6:36:00","6:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-302","6:43:00","6:43:00","Winchester Center",5,"",0,0,1 "CR-Weekday-Fall-16-302","6:45:00","6:45:00","Wedgemere",6,"",0,0,1 "CR-Weekday-Fall-16-302","6:48:00","6:48:00","West Medford",7,"",0,0,1 "CR-Weekday-Fall-16-302","7:01:00","7:01:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-303","6:15:00","6:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-303","6:34:00","6:34:00","Anderson/ Woburn",2,"",0,0,1 "CR-Weekday-Fall-16-303","6:37:00","6:37:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-303","6:47:00","6:47:00","North Billerica",4,"",0,0,1 "CR-Weekday-Fall-16-303","6:54:00","6:54:00","Lowell",5,"",1,0,0 "CR-Weekday-Fall-16-304","6:40:00","6:40:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-304","6:48:00","6:48:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-304","6:56:00","6:56:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-304","7:01:00","7:01:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-304","7:08:00","7:08:00","Winchester Center",5,"",0,0,1 "CR-Weekday-Fall-16-304","7:10:00","7:10:00","Wedgemere",6,"",0,0,1 "CR-Weekday-Fall-16-304","7:14:00","7:14:00","West Medford",7,"",0,0,1 "CR-Weekday-Fall-16-304","7:27:00","7:27:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-305","6:37:00","6:37:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-305","6:48:00","6:48:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-305","6:52:00","6:52:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-305","6:54:00","6:54:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-305","7:00:00","7:00:00","Mishawum",5,"",0,0,0 "CR-Weekday-Fall-16-305","7:01:00","7:01:00","Anderson/ Woburn",6,"",0,0,1 "CR-Weekday-Fall-16-305","7:04:00","7:04:00","Wilmington",7,"",0,0,1 "CR-Weekday-Fall-16-305","7:14:00","7:14:00","North Billerica",8,"",0,0,1 "CR-Weekday-Fall-16-305","7:21:00","7:21:00","Lowell",9,"",1,0,0 "CR-Weekday-Fall-16-306","7:00:00","7:00:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-306","7:08:00","7:08:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-306","7:16:00","7:16:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-306","7:19:00","7:19:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-306","7:28:00","7:28:00","Winchester Center",5,"",0,0,1 "CR-Weekday-Fall-16-306","7:30:00","7:30:00","Wedgemere",6,"",0,0,1 "CR-Weekday-Fall-16-306","7:34:00","7:34:00","West Medford",7,"",0,0,1 "CR-Weekday-Fall-16-306","7:47:00","7:47:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-307","7:21:00","7:21:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-307","7:32:00","7:32:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-307","7:36:00","7:36:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-307","7:38:00","7:38:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-307","7:44:00","7:44:00","Mishawum",5,"",0,0,0 "CR-Weekday-Fall-16-307","7:45:00","7:45:00","Anderson/ Woburn",6,"",0,0,1 "CR-Weekday-Fall-16-307","7:48:00","7:48:00","Wilmington",7,"",0,0,1 "CR-Weekday-Fall-16-307","7:58:00","7:58:00","North Billerica",8,"",0,0,1 "CR-Weekday-Fall-16-307","8:05:00","8:05:00","Lowell",9,"",1,0,0 "CR-Weekday-Fall-16-308","7:20:00","7:20:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-308","7:28:00","7:28:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-308","7:36:00","7:36:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-308","7:41:00","7:41:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-308","7:48:00","7:48:00","Winchester Center",5,"",0,0,1 "CR-Weekday-Fall-16-308","7:50:00","7:50:00","Wedgemere",6,"",0,0,1 "CR-Weekday-Fall-16-308","7:53:00","7:53:00","West Medford",7,"",0,0,1 "CR-Weekday-Fall-16-308","8:06:00","8:06:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-309","8:16:00","8:16:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-309","8:27:00","8:27:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-309","8:31:00","8:31:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-309","8:33:00","8:33:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-309","8:39:00","8:39:00","Mishawum",5,"",0,0,0 "CR-Weekday-Fall-16-309","8:40:00","8:40:00","Anderson/ Woburn",6,"",0,0,1 "CR-Weekday-Fall-16-309","8:43:00","8:43:00","Wilmington",7,"",0,0,1 "CR-Weekday-Fall-16-309","8:53:00","8:53:00","North Billerica",8,"",0,0,1 "CR-Weekday-Fall-16-309","9:00:00","9:00:00","Lowell",9,"",1,0,0 "CR-Weekday-Fall-16-310","7:40:00","7:40:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-310","7:48:00","7:48:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-310","7:56:00","7:56:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-310","8:01:00","8:01:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-310","8:21:00","8:21:00","North Station",5,"",1,0,0 "CR-Weekday-Fall-16-311","9:15:00","9:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-311","9:26:00","9:26:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-311","9:30:00","9:30:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-311","9:32:00","9:32:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-311","9:39:00","9:39:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-311","9:42:00","9:42:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-311","9:52:00","9:52:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-311","9:59:00","9:59:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-312","8:20:00","8:20:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-312","8:28:00","8:28:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-312","8:36:00","8:36:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-312","8:41:00","8:41:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-312","8:48:00","8:48:00","Winchester Center",5,"",0,0,1 "CR-Weekday-Fall-16-312","8:49:00","8:49:00","Wedgemere",6,"",0,0,1 "CR-Weekday-Fall-16-312","8:53:00","8:53:00","West Medford",7,"",0,0,1 "CR-Weekday-Fall-16-312","9:06:00","9:06:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-313","10:15:00","10:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-313","10:26:00","10:26:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-313","10:30:00","10:30:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-313","10:32:00","10:32:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-313","10:39:00","10:39:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-313","10:42:00","10:42:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-313","10:52:00","10:52:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-313","10:59:00","10:59:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-314","8:45:00","8:45:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-314","8:53:00","8:53:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-314","9:01:00","9:01:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-314","9:06:00","9:06:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-314","9:13:00","9:13:00","Winchester Center",5,"",0,0,1 "CR-Weekday-Fall-16-314","9:14:00","9:14:00","Wedgemere",6,"",0,0,1 "CR-Weekday-Fall-16-314","9:18:00","9:18:00","West Medford",7,"",0,0,1 "CR-Weekday-Fall-16-314","9:31:00","9:31:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-315","11:15:00","11:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-315","11:26:00","11:26:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-315","11:30:00","11:30:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-315","11:32:00","11:32:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-315","11:39:00","11:39:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-315","11:42:00","11:42:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-315","11:52:00","11:52:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-315","11:59:00","11:59:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-316","10:00:00","10:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-316","9:15:00","9:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-316","9:23:00","9:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-316","9:31:00","9:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-316","9:36:00","9:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-316","9:43:00","9:43:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-316","9:44:00","9:44:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-316","9:47:00","9:47:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-317","12:15:00","12:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-317","12:26:00","12:26:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-317","12:30:00","12:30:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-317","12:32:00","12:32:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-317","12:39:00","12:39:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-317","12:42:00","12:42:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-317","12:52:00","12:52:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-317","12:59:00","12:59:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-318","10:15:00","10:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-318","10:23:00","10:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-318","10:31:00","10:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-318","10:36:00","10:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-318","10:43:00","10:43:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-318","10:44:00","10:44:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-318","10:47:00","10:47:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-318","11:00:00","11:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-319","13:15:00","13:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-319","13:26:00","13:26:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-319","13:30:00","13:30:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-319","13:32:00","13:32:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-319","13:39:00","13:39:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-319","13:42:00","13:42:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-319","13:52:00","13:52:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-319","13:59:00","13:59:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-320","11:15:00","11:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-320","11:23:00","11:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-320","11:31:00","11:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-320","11:36:00","11:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-320","11:43:00","11:43:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-320","11:44:00","11:44:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-320","11:47:00","11:47:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-320","12:00:00","12:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-321","14:15:00","14:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-321","14:26:00","14:26:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-321","14:30:00","14:30:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-321","14:32:00","14:32:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-321","14:39:00","14:39:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-321","14:42:00","14:42:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-321","14:52:00","14:52:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-321","14:59:00","14:59:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-322","12:15:00","12:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-322","12:23:00","12:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-322","12:31:00","12:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-322","12:36:00","12:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-322","12:43:00","12:43:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-322","12:44:00","12:44:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-322","12:47:00","12:47:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-322","13:00:00","13:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-323","15:00:00","15:00:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-323","15:11:00","15:11:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-323","15:15:00","15:15:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-323","15:17:00","15:17:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-323","15:24:00","15:24:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-323","15:27:00","15:27:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-323","15:37:00","15:37:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-323","15:44:00","15:44:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-324","13:15:00","13:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-324","13:23:00","13:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-324","13:31:00","13:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-324","13:36:00","13:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-324","13:43:00","13:43:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-324","13:44:00","13:44:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-324","13:47:00","13:47:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-324","14:00:00","14:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-325","15:40:00","15:40:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-325","15:51:00","15:51:00","West Medford",2,"",0,0,1 "CR-Weekday-Fall-16-325","15:56:00","15:56:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-325","15:58:00","15:58:00","Winchester Center",4,"",0,0,1 "CR-Weekday-Fall-16-325","16:05:00","16:05:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-325","16:09:00","16:09:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-325","16:19:00","16:19:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-325","16:27:00","16:27:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-326","14:15:00","14:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-326","14:23:00","14:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-326","14:31:00","14:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-326","14:36:00","14:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-326","14:43:00","14:43:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-326","14:44:00","14:44:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-326","14:47:00","14:47:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-326","15:00:00","15:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-327","16:15:00","16:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-327","16:26:00","16:26:00","West Medford",2,"",0,0,1 "CR-Weekday-Fall-16-327","16:31:00","16:31:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-327","16:33:00","16:33:00","Winchester Center",4,"",0,0,1 "CR-Weekday-Fall-16-327","16:40:00","16:40:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-327","16:44:00","16:44:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-327","16:54:00","16:54:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-327","17:02:00","17:02:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-328","15:14:00","15:14:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-328","15:22:00","15:22:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-328","15:30:00","15:30:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-328","15:35:00","15:35:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-328","15:55:00","15:55:00","North Station",5,"",1,0,0 "CR-Weekday-Fall-16-329","16:45:00","16:45:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-329","16:56:00","16:56:00","West Medford",2,"",0,0,1 "CR-Weekday-Fall-16-329","17:01:00","17:01:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-329","17:03:00","17:03:00","Winchester Center",4,"",0,0,1 "CR-Weekday-Fall-16-329","17:10:00","17:10:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-329","17:14:00","17:14:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-329","17:24:00","17:24:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-329","17:32:00","17:32:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-330","16:00:00","16:00:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-330","16:08:00","16:08:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-330","16:16:00","16:16:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-330","16:21:00","16:21:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-330","16:22:00","16:22:00","Mishawum",5,"",3,3,1 "CR-Weekday-Fall-16-330","16:28:00","16:28:00","Winchester Center",6,"",3,3,1 "CR-Weekday-Fall-16-330","16:29:00","16:29:00","Wedgemere",7,"",3,3,1 "CR-Weekday-Fall-16-330","16:32:00","16:32:00","West Medford",8,"",3,3,1 "CR-Weekday-Fall-16-330","16:45:00","16:45:00","North Station",9,"",1,0,0 "CR-Weekday-Fall-16-331","17:10:00","17:10:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-331","17:21:00","17:21:00","West Medford",2,"",0,0,1 "CR-Weekday-Fall-16-331","17:26:00","17:26:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-331","17:28:00","17:28:00","Winchester Center",4,"",0,0,1 "CR-Weekday-Fall-16-331","17:35:00","17:35:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-331","17:39:00","17:39:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-331","17:49:00","17:49:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-331","17:57:00","17:57:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-332","16:47:00","16:47:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-332","16:55:00","16:55:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-332","17:03:00","17:03:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-332","17:08:00","17:08:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-332","17:15:00","17:15:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-332","17:16:00","17:16:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-332","17:19:00","17:19:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-332","17:32:00","17:32:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-333","17:35:00","17:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-333","17:54:00","17:54:00","Anderson/ Woburn",2,"",0,0,1 "CR-Weekday-Fall-16-333","17:58:00","17:58:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-333","18:08:00","18:08:00","North Billerica",4,"",0,0,1 "CR-Weekday-Fall-16-333","18:16:00","18:16:00","Lowell",5,"",1,0,0 "CR-Weekday-Fall-16-334","17:17:00","17:17:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-334","17:25:00","17:25:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-334","17:33:00","17:33:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-334","17:38:00","17:38:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-334","17:39:00","17:39:00","Mishawum",5,"",3,3,1 "CR-Weekday-Fall-16-334","17:45:00","17:45:00","Winchester Center",6,"",3,3,1 "CR-Weekday-Fall-16-334","17:46:00","17:46:00","Wedgemere",7,"",3,3,1 "CR-Weekday-Fall-16-334","17:49:00","17:49:00","West Medford",8,"",3,3,1 "CR-Weekday-Fall-16-334","18:02:00","18:02:00","North Station",9,"",1,0,0 "CR-Weekday-Fall-16-335","17:50:00","17:50:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-335","18:01:00","18:01:00","West Medford",2,"",0,0,1 "CR-Weekday-Fall-16-335","18:06:00","18:06:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-335","18:08:00","18:08:00","Winchester Center",4,"",0,0,1 "CR-Weekday-Fall-16-335","18:15:00","18:15:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-335","18:19:00","18:19:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-335","18:29:00","18:29:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-335","18:37:00","18:37:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-336","17:47:00","17:47:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-336","17:55:00","17:55:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-336","18:03:00","18:03:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-336","18:08:00","18:08:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-336","18:09:00","18:09:00","Mishawum",5,"",3,3,1 "CR-Weekday-Fall-16-336","18:15:00","18:15:00","Winchester Center",6,"",3,3,1 "CR-Weekday-Fall-16-336","18:16:00","18:16:00","Wedgemere",7,"",3,3,1 "CR-Weekday-Fall-16-336","18:19:00","18:19:00","West Medford",8,"",3,3,1 "CR-Weekday-Fall-16-336","18:32:00","18:32:00","North Station",9,"",1,0,0 "CR-Weekday-Fall-16-337","18:30:00","18:30:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-337","18:41:00","18:41:00","West Medford",2,"",0,0,1 "CR-Weekday-Fall-16-337","18:46:00","18:46:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-337","18:48:00","18:48:00","Winchester Center",4,"",0,0,1 "CR-Weekday-Fall-16-337","18:55:00","18:55:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-337","18:59:00","18:59:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-337","19:09:00","19:09:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-337","19:17:00","19:17:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-338","18:15:00","18:15:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-338","18:23:00","18:23:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-338","18:31:00","18:31:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-338","18:36:00","18:36:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-338","18:43:00","18:43:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-338","18:44:00","18:44:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-338","18:47:00","18:47:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-338","19:00:00","19:00:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-339","19:25:00","19:25:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-339","19:36:00","19:36:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-339","19:40:00","19:40:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-339","19:42:00","19:42:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-339","19:49:00","19:49:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-339","19:52:00","19:52:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-339","20:02:00","20:02:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-339","20:09:00","20:09:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-340","18:52:00","18:52:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-340","19:00:00","19:00:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-340","19:08:00","19:08:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-340","19:13:00","19:13:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-340","19:20:00","19:20:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-340","19:21:00","19:21:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-340","19:24:00","19:24:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-340","19:37:00","19:37:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-341","20:35:00","20:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-341","20:46:00","20:46:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-341","20:50:00","20:50:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-341","20:52:00","20:52:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-341","20:59:00","20:59:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-341","21:02:00","21:02:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-341","21:12:00","21:12:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-341","21:19:00","21:19:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-342","19:32:00","19:32:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-342","19:40:00","19:40:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-342","19:48:00","19:48:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-342","19:53:00","19:53:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-342","20:00:00","20:00:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-342","20:01:00","20:01:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-342","20:04:00","20:04:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-342","20:17:00","20:17:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-343","21:45:00","21:45:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-343","21:56:00","21:56:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-343","22:00:00","22:00:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-343","22:02:00","22:02:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-343","22:09:00","22:09:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-343","22:12:00","22:12:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-343","22:22:00","22:22:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-343","22:29:00","22:29:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-344","20:45:00","20:45:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-344","20:53:00","20:53:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-344","21:01:00","21:01:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-344","21:06:00","21:06:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-344","21:13:00","21:13:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-344","21:14:00","21:14:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-344","21:17:00","21:17:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-344","21:30:00","21:30:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-345","22:55:00","22:55:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-345","23:06:00","23:06:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-345","23:10:00","23:10:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-345","23:12:00","23:12:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-345","23:19:00","23:19:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-345","23:22:00","23:22:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-345","23:32:00","23:32:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-345","23:39:00","23:39:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-346","21:55:00","21:55:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-346","22:03:00","22:03:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-346","22:11:00","22:11:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-346","22:16:00","22:16:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-346","22:23:00","22:23:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-346","22:24:00","22:24:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-346","22:27:00","22:27:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-346","22:40:00","22:40:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-347","24:15:00","24:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-347","24:26:00","24:26:00","West Medford",2,"",3,3,1 "CR-Weekday-Fall-16-347","24:30:00","24:30:00","Wedgemere",3,"",3,3,1 "CR-Weekday-Fall-16-347","24:32:00","24:32:00","Winchester Center",4,"",3,3,1 "CR-Weekday-Fall-16-347","24:39:00","24:39:00","Anderson/ Woburn",5,"",0,0,1 "CR-Weekday-Fall-16-347","24:42:00","24:42:00","Wilmington",6,"",0,0,1 "CR-Weekday-Fall-16-347","24:52:00","24:52:00","North Billerica",7,"",0,0,1 "CR-Weekday-Fall-16-347","24:59:00","24:59:00","Lowell",8,"",1,0,0 "CR-Weekday-Fall-16-348","23:05:00","23:05:00","Lowell",1,"",0,1,1 "CR-Weekday-Fall-16-348","23:13:00","23:13:00","North Billerica",2,"",0,0,1 "CR-Weekday-Fall-16-348","23:21:00","23:21:00","Wilmington",3,"",0,0,1 "CR-Weekday-Fall-16-348","23:26:00","23:26:00","Anderson/ Woburn",4,"",0,0,1 "CR-Weekday-Fall-16-348","23:33:00","23:33:00","Winchester Center",5,"",3,3,1 "CR-Weekday-Fall-16-348","23:34:00","23:34:00","Wedgemere",6,"",3,3,1 "CR-Weekday-Fall-16-348","23:37:00","23:37:00","West Medford",7,"",3,3,1 "CR-Weekday-Fall-16-348","23:50:00","23:50:00","North Station",8,"",1,0,0 "CR-Weekday-Fall-16-391","7:42:00","7:42:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-391","8:02:00","8:02:00","Anderson/ Woburn",2,"",1,0,0 "CR-Weekday-Fall-16-392","8:21:00","8:21:00","Anderson/ Woburn",1,"",0,1,1 "CR-Weekday-Fall-16-392","8:28:00","8:28:00","Winchester Center",2,"",0,0,1 "CR-Weekday-Fall-16-392","8:30:00","8:30:00","Wedgemere",3,"",0,0,1 "CR-Weekday-Fall-16-392","8:34:00","8:34:00","West Medford",4,"",0,0,1 "CR-Weekday-Fall-16-392","8:47:00","8:47:00","North Station",5,"",1,0,0 "CR-Weekday-Fall-16-400","4:50:00","4:50:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-400","4:58:00","4:58:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-400","5:04:00","5:04:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-400","5:12:00","5:12:00","Shirley",4,"",0,0,1 "CR-Weekday-Fall-16-400","5:17:00","5:17:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-400","5:25:00","5:25:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-400","5:32:00","5:32:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-400","5:36:00","5:36:00","West Concord",8,"",0,0,1 "CR-Weekday-Fall-16-400","5:41:00","5:41:00","Concord",9,"",0,0,1 "CR-Weekday-Fall-16-400","5:49:00","5:49:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-400","5:54:00","5:54:00","Hastings",11,"",0,0,1 "CR-Weekday-Fall-16-400","5:57:00","5:57:00","Kendal Green",12,"",0,0,1 "CR-Weekday-Fall-16-400","6:00:00","6:00:00","Brandeis/ Roberts",13,"",0,0,1 "CR-Weekday-Fall-16-400","6:04:00","6:04:00","Waltham",14,"",0,0,1 "CR-Weekday-Fall-16-400","6:09:00","6:09:00","Waverley",15,"",0,0,1 "CR-Weekday-Fall-16-400","6:12:00","6:12:00","Belmont",16,"",0,0,1 "CR-Weekday-Fall-16-400","6:17:00","6:17:00","Porter Square",17,"",0,0,1 "CR-Weekday-Fall-16-400","6:27:00","6:27:00","North Station",18,"",1,0,0 "CR-Weekday-Fall-16-401","6:25:00","6:25:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-401","6:35:00","6:35:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-401","6:59:00","6:59:00","South Acton",3,"",0,0,1 "CR-Weekday-Fall-16-401","7:06:00","7:06:00","Littleton / Rte 495",4,"",0,0,1 "CR-Weekday-Fall-16-401","7:14:00","7:14:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-401","7:19:00","7:19:00","Shirley",6,"",3,3,1 "CR-Weekday-Fall-16-401","7:28:00","7:28:00","North Leominster",7,"",0,0,1 "CR-Weekday-Fall-16-401","7:35:00","7:35:00","Fitchburg",8,"",0,0,0 "CR-Weekday-Fall-16-401","7:45:00","7:45:00","Wachusett",9,"",1,0,0 "CR-Weekday-Fall-16-402","5:45:00","5:45:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-402","5:53:00","5:53:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-402","5:59:00","5:59:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-402","6:07:00","6:07:00","Shirley",4,"",0,0,1 "CR-Weekday-Fall-16-402","6:12:00","6:12:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-402","6:20:00","6:20:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-402","6:27:00","6:27:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-402","6:31:00","6:31:00","West Concord",8,"",0,0,1 "CR-Weekday-Fall-16-402","6:36:00","6:36:00","Concord",9,"",0,0,1 "CR-Weekday-Fall-16-402","6:44:00","6:44:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-402","6:47:00","6:47:00","Silver Hill",11,"",3,3,1 "CR-Weekday-Fall-16-402","6:50:00","6:50:00","Hastings",12,"",0,0,1 "CR-Weekday-Fall-16-402","6:53:00","6:53:00","Kendal Green",13,"",0,0,1 "CR-Weekday-Fall-16-402","6:56:00","6:56:00","Brandeis/ Roberts",14,"",0,0,1 "CR-Weekday-Fall-16-402","7:00:00","7:00:00","Waltham",15,"",0,0,1 "CR-Weekday-Fall-16-402","7:05:00","7:05:00","Waverley",16,"",0,0,1 "CR-Weekday-Fall-16-402","7:08:00","7:08:00","Belmont",17,"",0,0,1 "CR-Weekday-Fall-16-402","7:13:00","7:13:00","Porter Square",18,"",0,0,1 "CR-Weekday-Fall-16-402","7:23:00","7:23:00","North Station",19,"",1,0,0 "CR-Weekday-Fall-16-403","7:43:00","7:43:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-403","7:53:00","7:53:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-403","7:58:00","7:58:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-403","8:00:00","8:00:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-403","8:05:00","8:05:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-403","8:08:00","8:08:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-403","8:12:00","8:12:00","Kendal Green",7,"",0,0,1 "CR-Weekday-Fall-16-403","8:18:00","8:18:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-403","8:23:00","8:23:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-403","8:27:00","8:27:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-403","8:31:00","8:31:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-403","8:38:00","8:38:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-403","8:46:00","8:46:00","Ayer",13,"",3,3,1 "CR-Weekday-Fall-16-403","8:51:00","8:51:00","Shirley",14,"",3,3,1 "CR-Weekday-Fall-16-403","9:00:00","9:00:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-403","9:07:00","9:07:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-403","9:17:00","9:17:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-404","6:20:00","6:20:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-404","6:28:00","6:28:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-404","6:34:00","6:34:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-404","6:42:00","6:42:00","Shirley",4,"",0,0,1 "CR-Weekday-Fall-16-404","6:47:00","6:47:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-404","6:55:00","6:55:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-404","7:02:00","7:02:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-404","7:28:00","7:28:00","Porter Square",8,"",0,0,1 "CR-Weekday-Fall-16-404","7:38:00","7:38:00","North Station",9,"",1,0,0 "CR-Weekday-Fall-16-405","10:04:00","10:04:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-405","10:14:00","10:14:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-405","8:40:00","8:40:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-405","8:50:00","8:50:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-405","8:55:00","8:55:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-405","8:57:00","8:57:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-405","9:02:00","9:02:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-405","9:05:00","9:05:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-405","9:09:00","9:09:00","Kendal Green",7,"",3,3,1 "CR-Weekday-Fall-16-405","9:15:00","9:15:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-405","9:20:00","9:20:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-405","9:24:00","9:24:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-405","9:28:00","9:28:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-405","9:35:00","9:35:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-405","9:43:00","9:43:00","Ayer",13,"",3,3,1 "CR-Weekday-Fall-16-405","9:48:00","9:48:00","Shirley",14,"",3,3,1 "CR-Weekday-Fall-16-405","9:57:00","9:57:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-406","6:45:00","6:45:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-406","6:53:00","6:53:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-406","6:59:00","6:59:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-406","7:07:00","7:07:00","Shirley",4,"",0,0,1 "CR-Weekday-Fall-16-406","7:12:00","7:12:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-406","7:20:00","7:20:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-406","7:27:00","7:27:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-406","7:31:00","7:31:00","West Concord",8,"",0,0,1 "CR-Weekday-Fall-16-406","7:36:00","7:36:00","Concord",9,"",0,0,1 "CR-Weekday-Fall-16-406","7:44:00","7:44:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-406","7:51:00","7:51:00","Kendal Green",11,"",0,0,1 "CR-Weekday-Fall-16-406","7:54:00","7:54:00","Brandeis/ Roberts",12,"",0,0,1 "CR-Weekday-Fall-16-406","7:58:00","7:58:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-406","8:03:00","8:03:00","Waverley",14,"",0,0,1 "CR-Weekday-Fall-16-406","8:06:00","8:06:00","Belmont",15,"",0,0,1 "CR-Weekday-Fall-16-406","8:11:00","8:11:00","Porter Square",16,"",0,0,1 "CR-Weekday-Fall-16-406","8:21:00","8:21:00","North Station",17,"",1,0,0 "CR-Weekday-Fall-16-407","10:00:00","10:00:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-407","10:10:00","10:10:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-407","10:15:00","10:15:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-407","10:17:00","10:17:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-407","10:22:00","10:22:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-407","10:25:00","10:25:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-407","10:29:00","10:29:00","Kendal Green",7,"",3,3,1 "CR-Weekday-Fall-16-407","10:35:00","10:35:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-407","10:40:00","10:40:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-407","10:44:00","10:44:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-407","10:48:00","10:48:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-407","10:55:00","10:55:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-407","11:03:00","11:03:00","Ayer",13,"",3,3,1 "CR-Weekday-Fall-16-407","11:08:00","11:08:00","Shirley",14,"",3,3,1 "CR-Weekday-Fall-16-407","11:17:00","11:17:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-407","11:24:00","11:24:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-407","11:34:00","11:34:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-408","7:10:00","7:10:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-408","7:18:00","7:18:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-408","7:25:00","7:25:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-408","7:33:00","7:33:00","Shirley",4,"",0,0,1 "CR-Weekday-Fall-16-408","7:38:00","7:38:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-408","7:46:00","7:46:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-408","7:53:00","7:53:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-408","8:12:00","8:12:00","Waltham",8,"",0,0,1 "CR-Weekday-Fall-16-408","8:22:00","8:22:00","Porter Square",9,"",0,0,1 "CR-Weekday-Fall-16-408","8:32:00","8:32:00","North Station",10,"",1,0,0 "CR-Weekday-Fall-16-409","11:20:00","11:20:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-409","11:30:00","11:30:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-409","11:35:00","11:35:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-409","11:41:00","11:41:00","Waltham",4,"",0,0,1 "CR-Weekday-Fall-16-409","11:44:00","11:44:00","Brandeis/ Roberts",5,"",3,3,1 "CR-Weekday-Fall-16-409","11:48:00","11:48:00","Kendal Green",6,"",3,3,1 "CR-Weekday-Fall-16-409","11:54:00","11:54:00","Lincoln",7,"",3,3,1 "CR-Weekday-Fall-16-409","11:59:00","11:59:00","Concord",8,"",3,3,1 "CR-Weekday-Fall-16-409","12:03:00","12:03:00","West Concord",9,"",3,3,1 "CR-Weekday-Fall-16-409","12:07:00","12:07:00","South Acton",10,"",0,0,1 "CR-Weekday-Fall-16-409","12:14:00","12:14:00","Littleton / Rte 495",11,"",0,0,1 "CR-Weekday-Fall-16-409","12:22:00","12:22:00","Ayer",12,"",3,3,1 "CR-Weekday-Fall-16-409","12:27:00","12:27:00","Shirley",13,"",3,3,1 "CR-Weekday-Fall-16-409","12:36:00","12:36:00","North Leominster",14,"",0,0,1 "CR-Weekday-Fall-16-409","12:45:00","12:45:00","Fitchburg",15,"",0,0,0 "CR-Weekday-Fall-16-409","12:55:00","12:55:00","Wachusett",16,"",1,0,0 "CR-Weekday-Fall-16-410","8:00:00","8:00:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-410","8:08:00","8:08:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-410","8:14:00","8:14:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-410","8:22:00","8:22:00","Shirley",4,"",0,0,1 "CR-Weekday-Fall-16-410","8:27:00","8:27:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-410","8:35:00","8:35:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-410","8:42:00","8:42:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-410","8:46:00","8:46:00","West Concord",8,"",0,0,1 "CR-Weekday-Fall-16-410","8:51:00","8:51:00","Concord",9,"",0,0,1 "CR-Weekday-Fall-16-410","8:59:00","8:59:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-410","9:05:00","9:05:00","Kendal Green",11,"",0,0,1 "CR-Weekday-Fall-16-410","9:08:00","9:08:00","Brandeis/ Roberts",12,"",0,0,1 "CR-Weekday-Fall-16-410","9:12:00","9:12:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-410","9:17:00","9:17:00","Waverley",14,"",0,0,1 "CR-Weekday-Fall-16-410","9:20:00","9:20:00","Belmont",15,"",0,0,1 "CR-Weekday-Fall-16-410","9:25:00","9:25:00","Porter Square",16,"",0,0,1 "CR-Weekday-Fall-16-410","9:35:00","9:35:00","North Station",17,"",1,0,0 "CR-Weekday-Fall-16-411","13:00:00","13:00:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-411","13:10:00","13:10:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-411","13:15:00","13:15:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-411","13:21:00","13:21:00","Waltham",4,"",0,0,1 "CR-Weekday-Fall-16-411","13:24:00","13:24:00","Brandeis/ Roberts",5,"",3,3,1 "CR-Weekday-Fall-16-411","13:28:00","13:28:00","Kendal Green",6,"",3,3,1 "CR-Weekday-Fall-16-411","13:34:00","13:34:00","Lincoln",7,"",3,3,1 "CR-Weekday-Fall-16-411","13:39:00","13:39:00","Concord",8,"",3,3,1 "CR-Weekday-Fall-16-411","13:43:00","13:43:00","West Concord",9,"",3,3,1 "CR-Weekday-Fall-16-411","13:47:00","13:47:00","South Acton",10,"",0,0,1 "CR-Weekday-Fall-16-411","13:54:00","13:54:00","Littleton / Rte 495",11,"",0,0,1 "CR-Weekday-Fall-16-411","14:02:00","14:02:00","Ayer",12,"",3,3,1 "CR-Weekday-Fall-16-411","14:07:00","14:07:00","Shirley",13,"",3,3,1 "CR-Weekday-Fall-16-411","14:16:00","14:16:00","North Leominster",14,"",0,0,1 "CR-Weekday-Fall-16-411","14:23:00","14:23:00","Fitchburg",15,"",0,0,0 "CR-Weekday-Fall-16-411","14:33:00","14:33:00","Wachusett",16,"",1,0,0 "CR-Weekday-Fall-16-412","10:07:00","10:07:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-412","10:14:00","10:14:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-412","10:17:00","10:17:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-412","10:21:00","10:21:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-412","10:28:00","10:28:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-412","10:32:00","10:32:00","Hastings",11,"",3,3,1 "CR-Weekday-Fall-16-412","10:34:00","10:34:00","Kendal Green",12,"",3,3,1 "CR-Weekday-Fall-16-412","10:36:00","10:36:00","Brandeis/ Roberts",13,"",3,3,1 "CR-Weekday-Fall-16-412","10:40:00","10:40:00","Waltham",14,"",0,0,1 "CR-Weekday-Fall-16-412","10:45:00","10:45:00","Waverley",15,"",3,3,1 "CR-Weekday-Fall-16-412","10:47:00","10:47:00","Belmont",16,"",3,3,1 "CR-Weekday-Fall-16-412","10:52:00","10:52:00","Porter Square",17,"",0,0,1 "CR-Weekday-Fall-16-412","11:02:00","11:02:00","North Station",18,"",1,0,0 "CR-Weekday-Fall-16-412","9:32:00","9:32:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-412","9:40:00","9:40:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-412","9:46:00","9:46:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-412","9:54:00","9:54:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-412","9:59:00","9:59:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-413","13:55:00","13:55:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-413","14:05:00","14:05:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-413","14:10:00","14:10:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-413","14:12:00","14:12:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-413","14:17:00","14:17:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-413","14:20:00","14:20:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-413","14:24:00","14:24:00","Kendal Green",7,"",3,3,1 "CR-Weekday-Fall-16-413","14:30:00","14:30:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-413","14:35:00","14:35:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-413","14:39:00","14:39:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-413","14:43:00","14:43:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-413","14:50:00","14:50:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-413","14:58:00","14:58:00","Ayer",13,"",3,3,1 "CR-Weekday-Fall-16-413","15:03:00","15:03:00","Shirley",14,"",3,3,1 "CR-Weekday-Fall-16-413","15:12:00","15:12:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-413","15:21:00","15:21:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-413","15:31:00","15:31:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-414","10:50:00","10:50:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-414","10:58:00","10:58:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-414","11:04:00","11:04:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-414","11:12:00","11:12:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-414","11:17:00","11:17:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-414","11:25:00","11:25:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-414","11:32:00","11:32:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-414","11:35:00","11:35:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-414","11:39:00","11:39:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-414","11:46:00","11:46:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-414","11:50:00","11:50:00","Hastings",11,"",3,3,1 "CR-Weekday-Fall-16-414","11:52:00","11:52:00","Kendal Green",12,"",3,3,1 "CR-Weekday-Fall-16-414","11:54:00","11:54:00","Brandeis/ Roberts",13,"",3,3,1 "CR-Weekday-Fall-16-414","11:58:00","11:58:00","Waltham",14,"",0,0,1 "CR-Weekday-Fall-16-414","12:03:00","12:03:00","Waverley",15,"",3,3,1 "CR-Weekday-Fall-16-414","12:05:00","12:05:00","Belmont",16,"",3,3,1 "CR-Weekday-Fall-16-414","12:10:00","12:10:00","Porter Square",17,"",0,0,1 "CR-Weekday-Fall-16-414","12:20:00","12:20:00","North Station",18,"",1,0,0 "CR-Weekday-Fall-16-415","15:30:00","15:30:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-415","15:40:00","15:40:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-415","15:45:00","15:45:00","Belmont",3,"",0,0,1 "CR-Weekday-Fall-16-415","15:48:00","15:48:00","Waverley",4,"",0,0,1 "CR-Weekday-Fall-16-415","15:53:00","15:53:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-415","15:57:00","15:57:00","Brandeis/ Roberts",6,"",0,0,1 "CR-Weekday-Fall-16-415","16:01:00","16:01:00","Kendal Green",7,"",0,0,1 "CR-Weekday-Fall-16-415","16:07:00","16:07:00","Lincoln",8,"",0,0,1 "CR-Weekday-Fall-16-415","16:12:00","16:12:00","Concord",9,"",0,0,1 "CR-Weekday-Fall-16-415","16:17:00","16:17:00","West Concord",10,"",0,0,1 "CR-Weekday-Fall-16-415","16:21:00","16:21:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-415","16:28:00","16:28:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-415","16:36:00","16:36:00","Ayer",13,"",0,0,1 "CR-Weekday-Fall-16-415","16:42:00","16:42:00","Shirley",14,"",0,0,1 "CR-Weekday-Fall-16-415","16:51:00","16:51:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-415","16:58:00","16:58:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-415","17:08:00","17:08:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-416","12:00:00","12:00:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-416","12:08:00","12:08:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-416","12:14:00","12:14:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-416","12:22:00","12:22:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-416","12:27:00","12:27:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-416","12:35:00","12:35:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-416","12:42:00","12:42:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-416","12:45:00","12:45:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-416","12:49:00","12:49:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-416","12:56:00","12:56:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-416","13:02:00","13:02:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-416","13:04:00","13:04:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-416","13:08:00","13:08:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-416","13:14:00","13:14:00","Belmont",14,"",3,3,1 "CR-Weekday-Fall-16-416","13:19:00","13:19:00","Porter Square",15,"",0,0,1 "CR-Weekday-Fall-16-416","13:29:00","13:29:00","North Station",16,"",1,0,0 "CR-Weekday-Fall-16-417","16:30:00","16:30:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-417","16:41:00","16:41:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-417","17:07:00","17:07:00","South Acton",3,"",0,0,1 "CR-Weekday-Fall-16-417","17:14:00","17:14:00","Littleton / Rte 495",4,"",0,0,1 "CR-Weekday-Fall-16-417","17:22:00","17:22:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-417","17:27:00","17:27:00","Shirley",6,"",0,0,1 "CR-Weekday-Fall-16-417","17:36:00","17:36:00","North Leominster",7,"",0,0,1 "CR-Weekday-Fall-16-417","17:43:00","17:43:00","Fitchburg",8,"",0,0,0 "CR-Weekday-Fall-16-417","17:53:00","17:53:00","Wachusett",9,"",1,0,0 "CR-Weekday-Fall-16-418","13:30:00","13:30:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-418","13:38:00","13:38:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-418","13:44:00","13:44:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-418","13:52:00","13:52:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-418","13:57:00","13:57:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-418","14:05:00","14:05:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-418","14:12:00","14:12:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-418","14:15:00","14:15:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-418","14:19:00","14:19:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-418","14:26:00","14:26:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-418","14:32:00","14:32:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-418","14:34:00","14:34:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-418","14:38:00","14:38:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-418","14:44:00","14:44:00","Belmont",14,"",3,3,1 "CR-Weekday-Fall-16-418","14:49:00","14:49:00","Porter Square",15,"",0,0,1 "CR-Weekday-Fall-16-418","14:59:00","14:59:00","North Station",16,"",1,0,0 "CR-Weekday-Fall-16-419","17:00:00","17:00:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-419","17:10:00","17:10:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-419","17:15:00","17:15:00","Belmont",3,"",0,0,1 "CR-Weekday-Fall-16-419","17:18:00","17:18:00","Waverley",4,"",0,0,1 "CR-Weekday-Fall-16-419","17:23:00","17:23:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-419","17:27:00","17:27:00","Brandeis/ Roberts",6,"",0,0,1 "CR-Weekday-Fall-16-419","17:31:00","17:31:00","Kendal Green",7,"",0,0,1 "CR-Weekday-Fall-16-419","17:34:00","17:34:00","Hastings",8,"",0,0,1 "CR-Weekday-Fall-16-419","17:40:00","17:40:00","Lincoln",9,"",0,0,1 "CR-Weekday-Fall-16-419","17:45:00","17:45:00","Concord",10,"",0,0,1 "CR-Weekday-Fall-16-419","17:50:00","17:50:00","West Concord",11,"",0,0,1 "CR-Weekday-Fall-16-419","17:54:00","17:54:00","South Acton",12,"",0,0,1 "CR-Weekday-Fall-16-419","18:01:00","18:01:00","Littleton / Rte 495",13,"",0,0,1 "CR-Weekday-Fall-16-419","18:09:00","18:09:00","Ayer",14,"",0,0,1 "CR-Weekday-Fall-16-419","18:15:00","18:15:00","Shirley",15,"",0,0,1 "CR-Weekday-Fall-16-419","18:24:00","18:24:00","North Leominster",16,"",0,0,1 "CR-Weekday-Fall-16-419","18:31:00","18:31:00","Fitchburg",17,"",0,0,0 "CR-Weekday-Fall-16-419","18:41:00","18:41:00","Wachusett",18,"",1,0,0 "CR-Weekday-Fall-16-420","14:55:00","14:55:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-420","15:03:00","15:03:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-420","15:09:00","15:09:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-420","15:17:00","15:17:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-420","15:22:00","15:22:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-420","15:30:00","15:30:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-420","15:37:00","15:37:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-420","15:40:00","15:40:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-420","15:44:00","15:44:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-420","15:51:00","15:51:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-420","15:57:00","15:57:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-420","15:59:00","15:59:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-420","16:03:00","16:03:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-420","16:09:00","16:09:00","Belmont",14,"",3,3,1 "CR-Weekday-Fall-16-420","16:14:00","16:14:00","Porter Square",15,"",0,0,1 "CR-Weekday-Fall-16-420","16:24:00","16:24:00","North Station",16,"",1,0,0 "CR-Weekday-Fall-16-421","17:35:00","17:35:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-421","17:46:00","17:46:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-421","17:55:00","17:55:00","Waltham",3,"",0,0,1 "CR-Weekday-Fall-16-421","18:06:00","18:06:00","Lincoln",4,"",0,0,1 "CR-Weekday-Fall-16-421","18:11:00","18:11:00","Concord",5,"",0,0,1 "CR-Weekday-Fall-16-421","18:16:00","18:16:00","West Concord",6,"",0,0,1 "CR-Weekday-Fall-16-421","18:21:00","18:21:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-421","18:28:00","18:28:00","Littleton / Rte 495",8,"",0,0,1 "CR-Weekday-Fall-16-421","18:36:00","18:36:00","Ayer",9,"",0,0,1 "CR-Weekday-Fall-16-421","18:42:00","18:42:00","Shirley",10,"",0,0,1 "CR-Weekday-Fall-16-421","18:51:00","18:51:00","North Leominster",11,"",0,0,1 "CR-Weekday-Fall-16-421","19:00:00","19:00:00","Fitchburg",12,"",0,0,0 "CR-Weekday-Fall-16-421","19:10:00","19:10:00","Wachusett",13,"",1,0,0 "CR-Weekday-Fall-16-422","16:06:00","16:06:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-422","16:14:00","16:14:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-422","16:20:00","16:20:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-422","16:28:00","16:28:00","Shirley",4,"",0,0,1 "CR-Weekday-Fall-16-422","16:33:00","16:33:00","Ayer",5,"",0,0,1 "CR-Weekday-Fall-16-422","16:41:00","16:41:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-422","16:48:00","16:48:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-422","16:53:00","16:53:00","West Concord",8,"",0,0,1 "CR-Weekday-Fall-16-422","16:57:00","16:57:00","Concord",9,"",0,0,1 "CR-Weekday-Fall-16-422","17:04:00","17:04:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-422","17:10:00","17:10:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-422","17:13:00","17:13:00","Brandeis/ Roberts",12,"",0,0,1 "CR-Weekday-Fall-16-422","17:17:00","17:17:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-422","17:22:00","17:22:00","Waverley",14,"",3,3,1 "CR-Weekday-Fall-16-422","17:24:00","17:24:00","Belmont",15,"",3,3,1 "CR-Weekday-Fall-16-422","17:29:00","17:29:00","Porter Square",16,"",0,0,1 "CR-Weekday-Fall-16-422","17:39:00","17:39:00","North Station",17,"",1,0,0 "CR-Weekday-Fall-16-423","17:55:00","17:55:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-423","18:05:00","18:05:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-423","18:10:00","18:10:00","Belmont",3,"",0,0,1 "CR-Weekday-Fall-16-423","18:13:00","18:13:00","Waverley",4,"",0,0,1 "CR-Weekday-Fall-16-423","18:18:00","18:18:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-423","18:22:00","18:22:00","Brandeis/ Roberts",6,"",0,0,1 "CR-Weekday-Fall-16-423","18:26:00","18:26:00","Kendal Green",7,"",0,0,1 "CR-Weekday-Fall-16-423","18:29:00","18:29:00","Hastings",8,"",0,0,1 "CR-Weekday-Fall-16-423","18:31:00","18:31:00","Silver Hill",9,"",3,3,1 "CR-Weekday-Fall-16-423","18:36:00","18:36:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-423","18:41:00","18:41:00","Concord",11,"",0,0,1 "CR-Weekday-Fall-16-423","18:46:00","18:46:00","West Concord",12,"",0,0,1 "CR-Weekday-Fall-16-423","18:50:00","18:50:00","South Acton",13,"",0,0,1 "CR-Weekday-Fall-16-423","18:57:00","18:57:00","Littleton / Rte 495",14,"",0,0,1 "CR-Weekday-Fall-16-423","19:05:00","19:05:00","Ayer",15,"",0,0,1 "CR-Weekday-Fall-16-423","19:11:00","19:11:00","Shirley",16,"",0,0,1 "CR-Weekday-Fall-16-423","19:20:00","19:20:00","North Leominster",17,"",0,0,1 "CR-Weekday-Fall-16-423","19:27:00","19:27:00","Fitchburg",18,"",0,0,0 "CR-Weekday-Fall-16-423","19:37:00","19:37:00","Wachusett",19,"",1,0,0 "CR-Weekday-Fall-16-424","17:43:00","17:43:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-424","17:51:00","17:51:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-424","17:57:00","17:57:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-424","18:05:00","18:05:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-424","18:10:00","18:10:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-424","18:18:00","18:18:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-424","18:25:00","18:25:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-424","18:28:00","18:28:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-424","18:32:00","18:32:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-424","18:39:00","18:39:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-424","18:45:00","18:45:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-424","18:47:00","18:47:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-424","18:51:00","18:51:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-424","18:57:00","18:57:00","Belmont",14,"",3,3,1 "CR-Weekday-Fall-16-424","19:02:00","19:02:00","Porter Square",15,"",0,0,1 "CR-Weekday-Fall-16-424","19:12:00","19:12:00","North Station",16,"",1,0,0 "CR-Weekday-Fall-16-425","18:25:00","18:25:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-425","18:35:00","18:35:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-425","18:40:00","18:40:00","Belmont",3,"",0,0,1 "CR-Weekday-Fall-16-425","18:43:00","18:43:00","Waverley",4,"",0,0,1 "CR-Weekday-Fall-16-425","18:48:00","18:48:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-425","18:52:00","18:52:00","Brandeis/ Roberts",6,"",0,0,1 "CR-Weekday-Fall-16-425","18:56:00","18:56:00","Kendal Green",7,"",0,0,1 "CR-Weekday-Fall-16-425","18:59:00","18:59:00","Hastings",8,"",0,0,1 "CR-Weekday-Fall-16-425","19:01:00","19:01:00","Silver Hill",9,"",3,3,1 "CR-Weekday-Fall-16-425","19:06:00","19:06:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-425","19:11:00","19:11:00","Concord",11,"",0,0,1 "CR-Weekday-Fall-16-425","19:16:00","19:16:00","West Concord",12,"",0,0,1 "CR-Weekday-Fall-16-425","19:20:00","19:20:00","South Acton",13,"",0,0,1 "CR-Weekday-Fall-16-425","19:27:00","19:27:00","Littleton / Rte 495",14,"",0,0,1 "CR-Weekday-Fall-16-425","19:35:00","19:35:00","Ayer",15,"",0,0,1 "CR-Weekday-Fall-16-425","19:41:00","19:41:00","Shirley",16,"",0,0,1 "CR-Weekday-Fall-16-425","19:50:00","19:50:00","North Leominster",17,"",0,0,1 "CR-Weekday-Fall-16-425","19:59:00","19:59:00","Fitchburg",18,"",0,0,0 "CR-Weekday-Fall-16-425","20:09:00","20:09:00","Wachusett",19,"",1,0,0 "CR-Weekday-Fall-16-426","18:59:00","18:59:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-426","19:07:00","19:07:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-426","19:13:00","19:13:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-426","19:21:00","19:21:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-426","19:26:00","19:26:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-426","19:34:00","19:34:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-426","19:41:00","19:41:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-426","19:44:00","19:44:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-426","19:48:00","19:48:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-426","19:55:00","19:55:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-426","20:01:00","20:01:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-426","20:03:00","20:03:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-426","20:07:00","20:07:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-426","20:13:00","20:13:00","Belmont",14,"",3,3,1 "CR-Weekday-Fall-16-426","20:18:00","20:18:00","Porter Square",15,"",0,0,1 "CR-Weekday-Fall-16-426","20:28:00","20:28:00","North Station",16,"",1,0,0 "CR-Weekday-Fall-16-427","19:15:00","19:15:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-427","19:25:00","19:25:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-427","19:30:00","19:30:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-427","19:32:00","19:32:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-427","19:37:00","19:37:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-427","19:40:00","19:40:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-427","19:44:00","19:44:00","Kendal Green",7,"",3,3,1 "CR-Weekday-Fall-16-427","19:47:00","19:47:00","Hastings",8,"",3,3,1 "CR-Weekday-Fall-16-427","19:49:00","19:49:00","Silver Hill",9,"",3,3,1 "CR-Weekday-Fall-16-427","19:54:00","19:54:00","Lincoln",10,"",0,0,1 "CR-Weekday-Fall-16-427","19:59:00","19:59:00","Concord",11,"",0,0,1 "CR-Weekday-Fall-16-427","20:03:00","20:03:00","West Concord",12,"",0,0,1 "CR-Weekday-Fall-16-427","20:07:00","20:07:00","South Acton",13,"",0,0,1 "CR-Weekday-Fall-16-427","20:14:00","20:14:00","Littleton / Rte 495",14,"",0,0,1 "CR-Weekday-Fall-16-427","20:22:00","20:22:00","Ayer",15,"",0,0,1 "CR-Weekday-Fall-16-427","20:27:00","20:27:00","Shirley",16,"",0,0,1 "CR-Weekday-Fall-16-427","20:36:00","20:36:00","North Leominster",17,"",0,0,1 "CR-Weekday-Fall-16-427","20:43:00","20:43:00","Fitchburg",18,"",0,0,0 "CR-Weekday-Fall-16-427","20:53:00","20:53:00","Wachusett",19,"",1,0,0 "CR-Weekday-Fall-16-428","20:25:00","20:25:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-428","20:33:00","20:33:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-428","20:39:00","20:39:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-428","20:47:00","20:47:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-428","20:52:00","20:52:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-428","21:00:00","21:00:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-428","21:07:00","21:07:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-428","21:10:00","21:10:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-428","21:14:00","21:14:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-428","21:21:00","21:21:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-428","21:27:00","21:27:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-428","21:29:00","21:29:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-428","21:33:00","21:33:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-428","21:38:00","21:38:00","Waverley",14,"",3,3,1 "CR-Weekday-Fall-16-428","21:40:00","21:40:00","Belmont",15,"",3,3,1 "CR-Weekday-Fall-16-428","21:45:00","21:45:00","Porter Square",16,"",0,0,1 "CR-Weekday-Fall-16-428","21:55:00","21:55:00","North Station",17,"",1,0,0 "CR-Weekday-Fall-16-429","20:45:00","20:45:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-429","20:55:00","20:55:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-429","21:00:00","21:00:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-429","21:02:00","21:02:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-429","21:07:00","21:07:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-429","21:10:00","21:10:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-429","21:14:00","21:14:00","Kendal Green",7,"",3,3,1 "CR-Weekday-Fall-16-429","21:20:00","21:20:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-429","21:25:00","21:25:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-429","21:29:00","21:29:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-429","21:33:00","21:33:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-429","21:40:00","21:40:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-429","21:48:00","21:48:00","Ayer",13,"",3,3,1 "CR-Weekday-Fall-16-429","21:53:00","21:53:00","Shirley",14,"",3,3,1 "CR-Weekday-Fall-16-429","22:02:00","22:02:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-429","22:09:00","22:09:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-429","22:19:00","22:19:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-430","21:30:00","21:30:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-430","21:38:00","21:38:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-430","21:44:00","21:44:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-430","21:52:00","21:52:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-430","21:57:00","21:57:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-430","22:05:00","22:05:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-430","22:12:00","22:12:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-430","22:15:00","22:15:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-430","22:19:00","22:19:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-430","22:26:00","22:26:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-430","22:32:00","22:32:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-430","22:34:00","22:34:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-430","22:38:00","22:38:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-430","22:44:00","22:44:00","Belmont",14,"",3,3,1 "CR-Weekday-Fall-16-430","22:49:00","22:49:00","Porter Square",15,"",0,0,1 "CR-Weekday-Fall-16-430","22:59:00","22:59:00","North Station",16,"",1,0,0 "CR-Weekday-Fall-16-431","22:40:00","22:40:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-431","22:50:00","22:50:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-431","22:55:00","22:55:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-431","22:57:00","22:57:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-431","23:02:00","23:02:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-431","23:05:00","23:05:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-431","23:09:00","23:09:00","Kendal Green",7,"",3,3,1 "CR-Weekday-Fall-16-431","23:15:00","23:15:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-431","23:20:00","23:20:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-431","23:24:00","23:24:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-431","23:28:00","23:28:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-431","23:35:00","23:35:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-431","23:43:00","23:43:00","Ayer",13,"",3,3,1 "CR-Weekday-Fall-16-431","23:48:00","23:48:00","Shirley",14,"",3,3,1 "CR-Weekday-Fall-16-431","23:57:00","23:57:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-431","24:04:00","24:04:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-431","24:14:00","24:14:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-432","22:35:00","22:35:00","Wachusett",1,"",0,1,1 "CR-Weekday-Fall-16-432","22:43:00","22:43:00","Fitchburg",2,"",0,0,1 "CR-Weekday-Fall-16-432","22:49:00","22:49:00","North Leominster",3,"",0,0,1 "CR-Weekday-Fall-16-432","22:57:00","22:57:00","Shirley",4,"",3,3,1 "CR-Weekday-Fall-16-432","23:02:00","23:02:00","Ayer",5,"",3,3,1 "CR-Weekday-Fall-16-432","23:10:00","23:10:00","Littleton / Rte 495",6,"",0,0,1 "CR-Weekday-Fall-16-432","23:17:00","23:17:00","South Acton",7,"",0,0,1 "CR-Weekday-Fall-16-432","23:20:00","23:20:00","West Concord",8,"",3,3,1 "CR-Weekday-Fall-16-432","23:24:00","23:24:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-432","23:31:00","23:31:00","Lincoln",10,"",3,3,1 "CR-Weekday-Fall-16-432","23:37:00","23:37:00","Kendal Green",11,"",3,3,1 "CR-Weekday-Fall-16-432","23:39:00","23:39:00","Brandeis/ Roberts",12,"",3,3,1 "CR-Weekday-Fall-16-432","23:43:00","23:43:00","Waltham",13,"",0,0,1 "CR-Weekday-Fall-16-432","23:49:00","23:49:00","Belmont",14,"",3,3,1 "CR-Weekday-Fall-16-432","23:54:00","23:54:00","Porter Square",15,"",0,0,1 "CR-Weekday-Fall-16-432","24:04:00","24:04:00","North Station",16,"",1,0,0 "CR-Weekday-Fall-16-433","24:10:00","24:10:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-433","24:20:00","24:20:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-433","24:25:00","24:25:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-433","24:27:00","24:27:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-433","24:32:00","24:32:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-433","24:35:00","24:35:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-433","24:39:00","24:39:00","Kendal Green",7,"",3,3,1 "CR-Weekday-Fall-16-433","24:45:00","24:45:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-433","24:50:00","24:50:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-433","24:54:00","24:54:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-433","24:58:00","24:58:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-433","25:05:00","25:05:00","Littleton / Rte 495",12,"",0,0,1 "CR-Weekday-Fall-16-433","25:13:00","25:13:00","Ayer",13,"",3,3,1 "CR-Weekday-Fall-16-433","25:18:00","25:18:00","Shirley",14,"",3,3,1 "CR-Weekday-Fall-16-433","25:27:00","25:27:00","North Leominster",15,"",0,0,1 "CR-Weekday-Fall-16-433","25:34:00","25:34:00","Fitchburg",16,"",0,0,0 "CR-Weekday-Fall-16-433","25:44:00","25:44:00","Wachusett",17,"",1,0,0 "CR-Weekday-Fall-16-491","6:45:00","6:45:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-491","6:55:00","6:55:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-491","7:00:00","7:00:00","Belmont",3,"",3,3,1 "CR-Weekday-Fall-16-491","7:02:00","7:02:00","Waverley",4,"",3,3,1 "CR-Weekday-Fall-16-491","7:07:00","7:07:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-491","7:10:00","7:10:00","Brandeis/ Roberts",6,"",3,3,1 "CR-Weekday-Fall-16-491","7:14:00","7:14:00","Kendal Green",7,"",0,0,1 "CR-Weekday-Fall-16-491","7:20:00","7:20:00","Lincoln",8,"",3,3,1 "CR-Weekday-Fall-16-491","7:25:00","7:25:00","Concord",9,"",3,3,1 "CR-Weekday-Fall-16-491","7:29:00","7:29:00","West Concord",10,"",3,3,1 "CR-Weekday-Fall-16-491","7:33:00","7:33:00","South Acton",11,"",0,0,1 "CR-Weekday-Fall-16-491","7:40:00","7:40:00","Littleton / Rte 495",12,"",1,0,0 "CR-Weekday-Fall-16-492","7:55:00","7:55:00","Littleton / Rte 495",1,"",0,1,1 "CR-Weekday-Fall-16-492","8:02:00","8:02:00","South Acton",2,"",0,0,1 "CR-Weekday-Fall-16-492","8:06:00","8:06:00","West Concord",3,"",0,0,1 "CR-Weekday-Fall-16-492","8:11:00","8:11:00","Concord",4,"",0,0,1 "CR-Weekday-Fall-16-492","8:19:00","8:19:00","Lincoln",5,"",0,0,1 "CR-Weekday-Fall-16-492","8:22:00","8:22:00","Silver Hill",6,"",3,3,1 "CR-Weekday-Fall-16-492","8:25:00","8:25:00","Hastings",7,"",0,0,1 "CR-Weekday-Fall-16-492","8:28:00","8:28:00","Kendal Green",8,"",0,0,1 "CR-Weekday-Fall-16-492","8:31:00","8:31:00","Brandeis/ Roberts",9,"",0,0,1 "CR-Weekday-Fall-16-492","8:35:00","8:35:00","Waltham",10,"",0,0,1 "CR-Weekday-Fall-16-492","8:40:00","8:40:00","Waverley",11,"",0,0,1 "CR-Weekday-Fall-16-492","8:43:00","8:43:00","Belmont",12,"",0,0,1 "CR-Weekday-Fall-16-492","8:48:00","8:48:00","Porter Square",13,"",0,0,1 "CR-Weekday-Fall-16-492","8:58:00","8:58:00","North Station",14,"",1,0,0 "CR-Weekday-Fall-16-493","15:59:00","15:59:00","North Station",1,"",0,1,1 "CR-Weekday-Fall-16-493","16:09:00","16:09:00","Porter Square",2,"",0,0,1 "CR-Weekday-Fall-16-493","16:14:00","16:14:00","Belmont",3,"",0,0,1 "CR-Weekday-Fall-16-493","16:17:00","16:17:00","Waverley",4,"",0,0,1 "CR-Weekday-Fall-16-493","16:22:00","16:22:00","Waltham",5,"",0,0,1 "CR-Weekday-Fall-16-493","16:26:00","16:26:00","Brandeis/ Roberts",6,"",0,0,1 "CR-Weekday-Fall-16-493","16:30:00","16:30:00","Kendal Green",7,"",0,0,1 "CR-Weekday-Fall-16-493","16:33:00","16:33:00","Hastings",8,"",0,0,1 "CR-Weekday-Fall-16-493","16:39:00","16:39:00","Lincoln",9,"",0,0,1 "CR-Weekday-Fall-16-493","16:44:00","16:44:00","Concord",10,"",0,0,1 "CR-Weekday-Fall-16-493","16:49:00","16:49:00","West Concord",11,"",0,0,1 "CR-Weekday-Fall-16-493","16:53:00","16:53:00","South Acton",12,"",0,0,1 "CR-Weekday-Fall-16-493","17:00:00","17:00:00","Littleton / Rte 495",13,"",1,0,0 "CR-Weekday-Fall-16-494","17:15:00","17:15:00","Littleton / Rte 495",1,"",0,1,1 "CR-Weekday-Fall-16-494","17:22:00","17:22:00","South Acton",2,"",0,0,1 "CR-Weekday-Fall-16-494","17:25:00","17:25:00","West Concord",3,"",3,3,1 "CR-Weekday-Fall-16-494","17:29:00","17:29:00","Concord",4,"",3,3,1 "CR-Weekday-Fall-16-494","17:36:00","17:36:00","Lincoln",5,"",3,3,1 "CR-Weekday-Fall-16-494","17:42:00","17:42:00","Kendal Green",6,"",3,3,1 "CR-Weekday-Fall-16-494","17:44:00","17:44:00","Brandeis/ Roberts",7,"",3,3,1 "CR-Weekday-Fall-16-494","17:48:00","17:48:00","Waltham",8,"",0,0,1 "CR-Weekday-Fall-16-494","17:53:00","17:53:00","Waverley",9,"",3,3,1 "CR-Weekday-Fall-16-494","17:55:00","17:55:00","Belmont",10,"",3,3,1 "CR-Weekday-Fall-16-494","18:00:00","18:00:00","Porter Square",11,"",0,0,1 "CR-Weekday-Fall-16-494","18:10:00","18:10:00","North Station",12,"",1,0,0 "CR-Weekday-Fall-16-500","4:45:00","4:45:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-500","4:58:00","4:58:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-500","5:02:00","5:02:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-500","5:11:00","5:11:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-500","5:15:00","5:15:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-500","5:26:00","5:26:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-500","5:31:00","5:31:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-500","5:36:00","5:36:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-500","5:41:00","5:41:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-500","5:45:00","5:45:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-500","5:48:00","5:48:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-500","5:53:00","5:53:00","Auburndale",12,"",0,0,1 "CR-Weekday-Fall-16-500","5:56:00","5:56:00","West Newton",13,"",0,0,1 "CR-Weekday-Fall-16-500","5:59:00","5:59:00","Newtonville",14,"",0,0,1 "CR-Weekday-Fall-16-500","6:07:00","6:07:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-500","6:12:00","6:12:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-500","6:18:00","6:18:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-501","4:55:00","4:55:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-501","5:00:00","5:00:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-501","5:05:00","5:05:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-501","5:24:00","5:24:00","West Natick",4,"",0,0,1 "CR-Weekday-Fall-16-501","5:28:00","5:28:00","Framingham",5,"",0,0,1 "CR-Weekday-Fall-16-501","5:34:00","5:34:00","Ashland",6,"",0,0,1 "CR-Weekday-Fall-16-501","5:39:00","5:39:00","Southborough",7,"",0,0,1 "CR-Weekday-Fall-16-501","5:48:00","5:48:00","Westborough",8,"",0,0,1 "CR-Weekday-Fall-16-501","5:53:00","5:53:00","Grafton",9,"",0,0,1 "CR-Weekday-Fall-16-501","6:06:00","6:06:00","Worcester",10,"",1,0,0 "CR-Weekday-Fall-16-502","5:15:00","5:15:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-502","5:28:00","5:28:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-502","5:32:00","5:32:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-502","5:41:00","5:41:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-502","5:45:00","5:45:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-502","5:56:00","5:56:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-502","6:01:00","6:01:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-502","6:05:00","6:05:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-502","6:22:00","6:22:00","Yawkey",9,"",0,0,0 "CR-Weekday-Fall-16-502","6:27:00","6:27:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-502","6:33:00","6:33:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-503","5:45:00","5:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-503","5:50:00","5:50:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-503","5:55:00","5:55:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-503","6:08:00","6:08:00","Wellesley Farms",4,"",0,0,1 "CR-Weekday-Fall-16-503","6:11:00","6:11:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-503","6:15:00","6:15:00","Wellesley Square",6,"",0,0,1 "CR-Weekday-Fall-16-503","6:19:00","6:19:00","Natick Center",7,"",0,0,1 "CR-Weekday-Fall-16-503","6:24:00","6:24:00","West Natick",8,"",0,0,1 "CR-Weekday-Fall-16-503","6:29:00","6:29:00","Framingham",9,"",0,0,1 "CR-Weekday-Fall-16-503","6:35:00","6:35:00","Ashland",10,"",0,0,1 "CR-Weekday-Fall-16-503","6:40:00","6:40:00","Southborough",11,"",0,0,1 "CR-Weekday-Fall-16-503","6:49:00","6:49:00","Westborough",12,"",0,0,1 "CR-Weekday-Fall-16-503","6:54:00","6:54:00","Grafton",13,"",0,0,1 "CR-Weekday-Fall-16-503","7:07:00","7:07:00","Worcester",14,"",1,0,0 "CR-Weekday-Fall-16-504","5:55:00","5:55:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-504","6:08:00","6:08:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-504","6:12:00","6:12:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-504","6:21:00","6:21:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-504","6:25:00","6:25:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-504","6:36:00","6:36:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-504","6:41:00","6:41:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-504","7:00:00","7:00:00","Yawkey",8,"",0,0,0 "CR-Weekday-Fall-16-504","7:05:00","7:05:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-504","7:11:00","7:11:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-505","7:15:00","7:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-505","7:21:00","7:21:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-505","7:46:00","7:46:00","Framingham",3,"",0,0,1 "CR-Weekday-Fall-16-505","7:52:00","7:52:00","Ashland",4,"",0,0,1 "CR-Weekday-Fall-16-505","7:57:00","7:57:00","Southborough",5,"",0,0,1 "CR-Weekday-Fall-16-505","8:06:00","8:06:00","Westborough",6,"",0,0,1 "CR-Weekday-Fall-16-505","8:11:00","8:11:00","Grafton",7,"",0,0,1 "CR-Weekday-Fall-16-505","8:24:00","8:24:00","Worcester",8,"",1,0,0 "CR-Weekday-Fall-16-506","6:30:00","6:30:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-506","6:43:00","6:43:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-506","6:47:00","6:47:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-506","6:56:00","6:56:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-506","7:00:00","7:00:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-506","7:11:00","7:11:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-506","7:16:00","7:16:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-506","7:21:00","7:21:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-506","7:26:00","7:26:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-506","7:30:00","7:30:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-506","7:34:00","7:34:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-506","7:39:00","7:39:00","Auburndale",12,"",0,0,1 "CR-Weekday-Fall-16-506","7:42:00","7:42:00","West Newton",13,"",0,0,1 "CR-Weekday-Fall-16-506","7:46:00","7:46:00","Newtonville",14,"",0,0,1 "CR-Weekday-Fall-16-506","7:56:00","7:56:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-506","8:01:00","8:01:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-506","8:07:00","8:07:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-507","10:04:00","10:04:00","Grafton",13,"",0,0,1 "CR-Weekday-Fall-16-507","10:17:00","10:17:00","Worcester",14,"",1,0,0 "CR-Weekday-Fall-16-507","8:55:00","8:55:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-507","9:01:00","9:01:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-507","9:06:00","9:06:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-507","9:19:00","9:19:00","Wellesley Farms",4,"",0,0,1 "CR-Weekday-Fall-16-507","9:22:00","9:22:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-507","9:26:00","9:26:00","Wellesley Square",6,"",0,0,1 "CR-Weekday-Fall-16-507","9:30:00","9:30:00","Natick Center",7,"",0,0,1 "CR-Weekday-Fall-16-507","9:34:00","9:34:00","West Natick",8,"",0,0,1 "CR-Weekday-Fall-16-507","9:39:00","9:39:00","Framingham",9,"",0,0,1 "CR-Weekday-Fall-16-507","9:45:00","9:45:00","Ashland",10,"",0,0,1 "CR-Weekday-Fall-16-507","9:50:00","9:50:00","Southborough",11,"",0,0,1 "CR-Weekday-Fall-16-507","9:59:00","9:59:00","Westborough",12,"",0,0,1 "CR-Weekday-Fall-16-508","7:00:00","7:00:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-508","7:13:00","7:13:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-508","7:17:00","7:17:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-508","7:26:00","7:26:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-508","7:30:00","7:30:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-508","7:42:00","7:42:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-508","7:49:00","7:49:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-508","8:09:00","8:09:00","Yawkey",8,"",0,0,0 "CR-Weekday-Fall-16-508","8:14:00","8:14:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-508","8:20:00","8:20:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-509","10:15:00","10:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-509","10:21:00","10:21:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-509","10:26:00","10:26:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-509","10:35:00","10:35:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-509","10:39:00","10:39:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-509","10:42:00","10:42:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-509","10:45:00","10:45:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-509","10:48:00","10:48:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-509","10:52:00","10:52:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-509","10:56:00","10:56:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-509","11:01:00","11:01:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-509","11:06:00","11:06:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-509","11:12:00","11:12:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-509","11:17:00","11:17:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-509","11:26:00","11:26:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-509","11:31:00","11:31:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-509","11:45:00","11:45:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-510","7:30:00","7:30:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-510","7:43:00","7:43:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-510","7:47:00","7:47:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-510","7:56:00","7:56:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-510","8:00:00","8:00:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-510","8:11:00","8:11:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-510","8:16:00","8:16:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-510","8:20:00","8:20:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-510","8:25:00","8:25:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-510","8:29:00","8:29:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-510","8:32:00","8:32:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-510","8:46:00","8:46:00","Yawkey",12,"",0,0,0 "CR-Weekday-Fall-16-510","8:51:00","8:51:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-510","8:57:00","8:57:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-511","11:55:00","11:55:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-511","12:01:00","12:01:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-511","12:06:00","12:06:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-511","12:15:00","12:15:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-511","12:19:00","12:19:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-511","12:22:00","12:22:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-511","12:25:00","12:25:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-511","12:28:00","12:28:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-511","12:32:00","12:32:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-511","12:36:00","12:36:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-511","12:41:00","12:41:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-511","12:46:00","12:46:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-511","12:52:00","12:52:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-511","12:57:00","12:57:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-511","13:06:00","13:06:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-511","13:11:00","13:11:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-511","13:24:00","13:24:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-512","9:00:00","9:00:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-512","9:13:00","9:13:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-512","9:17:00","9:17:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-512","9:26:00","9:26:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-512","9:30:00","9:30:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-512","9:41:00","9:41:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-512","9:46:00","9:46:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-512","9:51:00","9:51:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-512","9:56:00","9:56:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-512","10:00:00","10:00:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-512","10:03:00","10:03:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-512","10:08:00","10:08:00","Auburndale",12,"",3,3,1 "CR-Weekday-Fall-16-512","10:11:00","10:11:00","West Newton",13,"",3,3,1 "CR-Weekday-Fall-16-512","10:14:00","10:14:00","Newtonville",14,"",3,3,1 "CR-Weekday-Fall-16-512","10:22:00","10:22:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-512","10:27:00","10:27:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-512","10:32:00","10:32:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-514","10:40:00","10:40:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-514","10:53:00","10:53:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-514","10:57:00","10:57:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-514","11:06:00","11:06:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-514","11:10:00","11:10:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-514","11:21:00","11:21:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-514","11:26:00","11:26:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-514","11:31:00","11:31:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-514","11:35:00","11:35:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-514","11:39:00","11:39:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-514","11:42:00","11:42:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-514","11:47:00","11:47:00","Auburndale",12,"",3,3,1 "CR-Weekday-Fall-16-514","11:50:00","11:50:00","West Newton",13,"",3,3,1 "CR-Weekday-Fall-16-514","11:53:00","11:53:00","Newtonville",14,"",3,3,1 "CR-Weekday-Fall-16-514","12:01:00","12:01:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-514","12:06:00","12:06:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-514","12:11:00","12:11:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-515","14:00:00","14:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-515","14:06:00","14:06:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-515","14:11:00","14:11:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-515","14:20:00","14:20:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-515","14:24:00","14:24:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-515","14:27:00","14:27:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-515","14:30:00","14:30:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-515","14:33:00","14:33:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-515","14:37:00","14:37:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-515","14:41:00","14:41:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-515","14:46:00","14:46:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-515","14:51:00","14:51:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-515","14:57:00","14:57:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-515","15:02:00","15:02:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-515","15:11:00","15:11:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-515","15:16:00","15:16:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-515","15:30:00","15:30:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-516","12:05:00","12:05:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-516","12:18:00","12:18:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-516","12:22:00","12:22:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-516","12:31:00","12:31:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-516","12:35:00","12:35:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-516","12:46:00","12:46:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-516","12:51:00","12:51:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-516","12:56:00","12:56:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-516","13:00:00","13:00:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-516","13:04:00","13:04:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-516","13:07:00","13:07:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-516","13:12:00","13:12:00","Auburndale",12,"",3,3,1 "CR-Weekday-Fall-16-516","13:15:00","13:15:00","West Newton",13,"",3,3,1 "CR-Weekday-Fall-16-516","13:18:00","13:18:00","Newtonville",14,"",3,3,1 "CR-Weekday-Fall-16-516","13:26:00","13:26:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-516","13:31:00","13:31:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-516","13:36:00","13:36:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-517","15:30:00","15:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-517","15:36:00","15:36:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-517","15:41:00","15:41:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-517","16:01:00","16:01:00","West Natick",4,"",0,0,1 "CR-Weekday-Fall-16-517","16:06:00","16:06:00","Framingham",5,"",0,0,1 "CR-Weekday-Fall-16-517","16:12:00","16:12:00","Ashland",6,"",0,0,1 "CR-Weekday-Fall-16-517","16:17:00","16:17:00","Southborough",7,"",0,0,1 "CR-Weekday-Fall-16-517","16:26:00","16:26:00","Westborough",8,"",0,0,1 "CR-Weekday-Fall-16-517","16:31:00","16:31:00","Grafton",9,"",0,0,1 "CR-Weekday-Fall-16-517","16:49:00","16:49:00","Worcester",10,"",1,0,0 "CR-Weekday-Fall-16-518","14:15:00","14:15:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-518","14:28:00","14:28:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-518","14:32:00","14:32:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-518","14:41:00","14:41:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-518","14:45:00","14:45:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-518","14:56:00","14:56:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-518","15:01:00","15:01:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-518","15:06:00","15:06:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-518","15:10:00","15:10:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-518","15:14:00","15:14:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-518","15:17:00","15:17:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-518","15:30:00","15:30:00","Yawkey",12,"",0,0,0 "CR-Weekday-Fall-16-518","15:35:00","15:35:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-518","15:40:00","15:40:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-519","16:25:00","16:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-519","16:31:00","16:31:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-519","16:36:00","16:36:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-519","16:55:00","16:55:00","Natick Center",4,"",0,0,1 "CR-Weekday-Fall-16-519","17:00:00","17:00:00","West Natick",5,"",0,0,1 "CR-Weekday-Fall-16-519","17:05:00","17:05:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-519","17:11:00","17:11:00","Ashland",7,"",0,0,1 "CR-Weekday-Fall-16-519","17:16:00","17:16:00","Southborough",8,"",0,0,1 "CR-Weekday-Fall-16-519","17:25:00","17:25:00","Westborough",9,"",0,0,1 "CR-Weekday-Fall-16-519","17:30:00","17:30:00","Grafton",10,"",0,0,1 "CR-Weekday-Fall-16-519","17:50:00","17:50:00","Worcester",11,"",1,0,0 "CR-Weekday-Fall-16-521","17:05:00","17:05:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-521","17:11:00","17:11:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-521","17:16:00","17:16:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-521","17:37:00","17:37:00","West Natick",4,"",0,0,1 "CR-Weekday-Fall-16-521","17:45:00","17:45:00","Framingham",5,"",0,0,1 "CR-Weekday-Fall-16-521","17:52:00","17:52:00","Ashland",6,"",0,0,1 "CR-Weekday-Fall-16-521","17:57:00","17:57:00","Southborough",7,"",0,0,1 "CR-Weekday-Fall-16-521","18:06:00","18:06:00","Westborough",8,"",0,0,1 "CR-Weekday-Fall-16-521","18:11:00","18:11:00","Grafton",9,"",0,0,1 "CR-Weekday-Fall-16-521","18:32:00","18:32:00","Worcester",10,"",1,0,0 "CR-Weekday-Fall-16-522","15:45:00","15:45:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-522","15:58:00","15:58:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-522","16:02:00","16:02:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-522","16:11:00","16:11:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-522","16:15:00","16:15:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-522","16:26:00","16:26:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-522","16:46:00","16:46:00","Yawkey",7,"",0,0,1 "CR-Weekday-Fall-16-522","16:51:00","16:51:00","Back Bay",8,"",0,0,1 "CR-Weekday-Fall-16-522","17:06:00","17:06:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-523","17:40:00","17:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-523","17:46:00","17:46:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-523","17:51:00","17:51:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-523","18:12:00","18:12:00","West Natick",4,"",0,0,1 "CR-Weekday-Fall-16-523","18:20:00","18:20:00","Framingham",5,"",0,0,1 "CR-Weekday-Fall-16-523","18:27:00","18:27:00","Ashland",6,"",0,0,1 "CR-Weekday-Fall-16-523","18:32:00","18:32:00","Southborough",7,"",0,0,1 "CR-Weekday-Fall-16-523","18:41:00","18:41:00","Westborough",8,"",0,0,1 "CR-Weekday-Fall-16-523","18:46:00","18:46:00","Grafton",9,"",0,0,1 "CR-Weekday-Fall-16-523","19:10:00","19:10:00","Worcester",10,"",1,0,0 "CR-Weekday-Fall-16-524","17:20:00","17:20:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-524","17:33:00","17:33:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-524","17:37:00","17:37:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-524","17:46:00","17:46:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-524","17:50:00","17:50:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-524","18:01:00","18:01:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-524","18:06:00","18:06:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-524","18:11:00","18:11:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-524","18:15:00","18:15:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-524","18:19:00","18:19:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-524","18:22:00","18:22:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-524","18:35:00","18:35:00","Yawkey",12,"",0,0,0 "CR-Weekday-Fall-16-524","18:40:00","18:40:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-524","18:45:00","18:45:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-525","17:50:00","17:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-525","17:56:00","17:56:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-525","18:01:00","18:01:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-525","18:11:00","18:11:00","Newtonville",4,"",0,0,1 "CR-Weekday-Fall-16-525","18:15:00","18:15:00","West Newton",5,"",0,0,1 "CR-Weekday-Fall-16-525","18:18:00","18:18:00","Auburndale",6,"",0,0,1 "CR-Weekday-Fall-16-525","18:23:00","18:23:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-525","18:26:00","18:26:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-525","18:30:00","18:30:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-525","18:34:00","18:34:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-525","18:39:00","18:39:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-525","18:44:00","18:44:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-525","18:50:00","18:50:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-525","18:55:00","18:55:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-525","19:04:00","19:04:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-525","19:09:00","19:09:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-525","19:28:00","19:28:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-526","18:05:00","18:05:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-526","18:18:00","18:18:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-526","18:22:00","18:22:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-526","18:31:00","18:31:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-526","18:35:00","18:35:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-526","18:46:00","18:46:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-526","19:08:00","19:08:00","Yawkey",7,"",0,0,0 "CR-Weekday-Fall-16-526","19:13:00","19:13:00","Back Bay",8,"",0,0,0 "CR-Weekday-Fall-16-526","19:23:00","19:23:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-527","18:20:00","18:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-527","18:26:00","18:26:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-527","18:31:00","18:31:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-527","18:45:00","18:45:00","Wellesley Farms",4,"",0,0,1 "CR-Weekday-Fall-16-527","18:48:00","18:48:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-527","18:52:00","18:52:00","Wellesley Square",6,"",0,0,1 "CR-Weekday-Fall-16-527","18:56:00","18:56:00","Natick Center",7,"",0,0,1 "CR-Weekday-Fall-16-527","19:01:00","19:01:00","West Natick",8,"",0,0,1 "CR-Weekday-Fall-16-527","19:06:00","19:06:00","Framingham",9,"",0,0,1 "CR-Weekday-Fall-16-527","19:12:00","19:12:00","Ashland",10,"",0,0,1 "CR-Weekday-Fall-16-527","19:17:00","19:17:00","Southborough",11,"",0,0,1 "CR-Weekday-Fall-16-527","19:26:00","19:26:00","Westborough",12,"",0,0,1 "CR-Weekday-Fall-16-527","19:31:00","19:31:00","Grafton",13,"",0,0,1 "CR-Weekday-Fall-16-527","19:45:00","19:45:00","Worcester",14,"",1,0,0 "CR-Weekday-Fall-16-528","19:15:00","19:15:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-528","19:28:00","19:28:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-528","19:32:00","19:32:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-528","19:41:00","19:41:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-528","19:45:00","19:45:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-528","19:56:00","19:56:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-528","20:01:00","20:01:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-528","20:06:00","20:06:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-528","20:10:00","20:10:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-528","20:14:00","20:14:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-528","20:17:00","20:17:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-528","20:30:00","20:30:00","Yawkey",12,"",0,0,0 "CR-Weekday-Fall-16-528","20:35:00","20:35:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-528","20:40:00","20:40:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-529","18:45:00","18:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-529","18:51:00","18:51:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-529","18:56:00","18:56:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-529","19:05:00","19:05:00","Newtonville",4,"",0,0,1 "CR-Weekday-Fall-16-529","19:09:00","19:09:00","West Newton",5,"",0,0,1 "CR-Weekday-Fall-16-529","19:12:00","19:12:00","Auburndale",6,"",0,0,1 "CR-Weekday-Fall-16-529","19:15:00","19:15:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-529","19:18:00","19:18:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-529","19:22:00","19:22:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-529","19:26:00","19:26:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-529","19:31:00","19:31:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-529","19:36:00","19:36:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-529","19:42:00","19:42:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-529","19:47:00","19:47:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-529","19:56:00","19:56:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-529","20:01:00","20:01:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-529","20:14:00","20:14:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-530","20:00:00","20:00:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-530","20:13:00","20:13:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-530","20:17:00","20:17:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-530","20:26:00","20:26:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-530","20:30:00","20:30:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-530","20:41:00","20:41:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-530","20:46:00","20:46:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-530","20:51:00","20:51:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-530","20:55:00","20:55:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-530","20:59:00","20:59:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-530","21:02:00","21:02:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-530","21:07:00","21:07:00","Auburndale",12,"",3,3,1 "CR-Weekday-Fall-16-530","21:10:00","21:10:00","West Newton",13,"",3,3,1 "CR-Weekday-Fall-16-530","21:13:00","21:13:00","Newtonville",14,"",3,3,1 "CR-Weekday-Fall-16-530","21:21:00","21:21:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-530","21:26:00","21:26:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-530","21:31:00","21:31:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-531","19:45:00","19:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-531","19:51:00","19:51:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-531","19:56:00","19:56:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-531","20:05:00","20:05:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-531","20:09:00","20:09:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-531","20:12:00","20:12:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-531","20:15:00","20:15:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-531","20:18:00","20:18:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-531","20:22:00","20:22:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-531","20:26:00","20:26:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-531","20:31:00","20:31:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-531","20:36:00","20:36:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-531","20:42:00","20:42:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-531","20:47:00","20:47:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-531","20:56:00","20:56:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-531","21:01:00","21:01:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-531","21:15:00","21:15:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-532","20:30:00","20:30:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-532","20:43:00","20:43:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-532","20:47:00","20:47:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-532","20:56:00","20:56:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-532","21:00:00","21:00:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-532","21:11:00","21:11:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-532","21:16:00","21:16:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-532","21:21:00","21:21:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-532","21:25:00","21:25:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-532","21:29:00","21:29:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-532","21:32:00","21:32:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-532","21:45:00","21:45:00","Yawkey",12,"",0,0,0 "CR-Weekday-Fall-16-532","21:50:00","21:50:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-532","21:55:00","21:55:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-533","20:30:00","20:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-533","20:36:00","20:36:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-533","20:41:00","20:41:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-533","20:50:00","20:50:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-533","20:54:00","20:54:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-533","20:57:00","20:57:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-533","21:00:00","21:00:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-533","21:03:00","21:03:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-533","21:07:00","21:07:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-533","21:11:00","21:11:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-533","21:16:00","21:16:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-533","21:21:00","21:21:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-533","21:27:00","21:27:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-533","21:32:00","21:32:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-533","21:41:00","21:41:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-533","21:46:00","21:46:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-533","22:00:00","22:00:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-534","21:35:00","21:35:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-534","21:48:00","21:48:00","Grafton",2,"",0,0,1 "CR-Weekday-Fall-16-534","21:52:00","21:52:00","Westborough",3,"",0,0,1 "CR-Weekday-Fall-16-534","22:01:00","22:01:00","Southborough",4,"",0,0,1 "CR-Weekday-Fall-16-534","22:05:00","22:05:00","Ashland",5,"",0,0,1 "CR-Weekday-Fall-16-534","22:16:00","22:16:00","Framingham",6,"",0,0,1 "CR-Weekday-Fall-16-534","22:21:00","22:21:00","West Natick",7,"",0,0,1 "CR-Weekday-Fall-16-534","22:26:00","22:26:00","Natick Center",8,"",0,0,1 "CR-Weekday-Fall-16-534","22:30:00","22:30:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-534","22:34:00","22:34:00","Wellesley Hills",10,"",0,0,1 "CR-Weekday-Fall-16-534","22:37:00","22:37:00","Wellesley Farms",11,"",0,0,1 "CR-Weekday-Fall-16-534","22:50:00","22:50:00","Yawkey",12,"",0,0,0 "CR-Weekday-Fall-16-534","22:55:00","22:55:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-534","23:00:00","23:00:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-535","21:35:00","21:35:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-535","21:41:00","21:41:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-535","21:46:00","21:46:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-535","21:55:00","21:55:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-535","21:59:00","21:59:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-535","22:02:00","22:02:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-535","22:05:00","22:05:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-535","22:08:00","22:08:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-535","22:12:00","22:12:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-535","22:16:00","22:16:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-535","22:21:00","22:21:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-535","22:26:00","22:26:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-535","22:32:00","22:32:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-535","22:37:00","22:37:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-535","22:46:00","22:46:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-535","22:51:00","22:51:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-535","23:05:00","23:05:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-536","23:20:00","23:20:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-536","23:33:00","23:33:00","Grafton",2,"",3,3,1 "CR-Weekday-Fall-16-536","23:37:00","23:37:00","Westborough",3,"",3,3,1 "CR-Weekday-Fall-16-536","23:46:00","23:46:00","Southborough",4,"",3,3,1 "CR-Weekday-Fall-16-536","23:50:00","23:50:00","Ashland",5,"",3,3,1 "CR-Weekday-Fall-16-536","24:01:00","24:01:00","Framingham",6,"",3,3,1 "CR-Weekday-Fall-16-536","24:06:00","24:06:00","West Natick",7,"",3,3,1 "CR-Weekday-Fall-16-536","24:11:00","24:11:00","Natick Center",8,"",3,3,1 "CR-Weekday-Fall-16-536","24:15:00","24:15:00","Wellesley Square",9,"",3,3,1 "CR-Weekday-Fall-16-536","24:19:00","24:19:00","Wellesley Hills",10,"",3,3,1 "CR-Weekday-Fall-16-536","24:22:00","24:22:00","Wellesley Farms",11,"",3,3,1 "CR-Weekday-Fall-16-536","24:27:00","24:27:00","Auburndale",12,"",3,3,1 "CR-Weekday-Fall-16-536","24:30:00","24:30:00","West Newton",13,"",3,3,1 "CR-Weekday-Fall-16-536","24:33:00","24:33:00","Newtonville",14,"",3,3,1 "CR-Weekday-Fall-16-536","24:41:00","24:41:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-536","24:46:00","24:46:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-536","24:51:00","24:51:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-537","22:30:00","22:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-537","22:36:00","22:36:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-537","22:41:00","22:41:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-537","22:50:00","22:50:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-537","22:54:00","22:54:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-537","22:57:00","22:57:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-537","23:00:00","23:00:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-537","23:03:00","23:03:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-537","23:07:00","23:07:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-537","23:11:00","23:11:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-537","23:16:00","23:16:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-537","23:21:00","23:21:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-537","23:27:00","23:27:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-537","23:32:00","23:32:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-537","23:41:00","23:41:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-537","23:46:00","23:46:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-537","24:00:00","24:00:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-538","24:20:00","24:20:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-538","24:33:00","24:33:00","Grafton",2,"",3,3,1 "CR-Weekday-Fall-16-538","24:37:00","24:37:00","Westborough",3,"",3,3,1 "CR-Weekday-Fall-16-538","24:46:00","24:46:00","Southborough",4,"",3,3,1 "CR-Weekday-Fall-16-538","24:50:00","24:50:00","Ashland",5,"",3,3,1 "CR-Weekday-Fall-16-538","25:01:00","25:01:00","Framingham",6,"",3,3,1 "CR-Weekday-Fall-16-538","25:06:00","25:06:00","West Natick",7,"",3,3,1 "CR-Weekday-Fall-16-538","25:11:00","25:11:00","Natick Center",8,"",3,3,1 "CR-Weekday-Fall-16-538","25:15:00","25:15:00","Wellesley Square",9,"",3,3,1 "CR-Weekday-Fall-16-538","25:19:00","25:19:00","Wellesley Hills",10,"",3,3,1 "CR-Weekday-Fall-16-538","25:22:00","25:22:00","Wellesley Farms",11,"",3,3,1 "CR-Weekday-Fall-16-538","25:27:00","25:27:00","Auburndale",12,"",3,3,1 "CR-Weekday-Fall-16-538","25:30:00","25:30:00","West Newton",13,"",3,3,1 "CR-Weekday-Fall-16-538","25:33:00","25:33:00","Newtonville",14,"",3,3,1 "CR-Weekday-Fall-16-538","25:41:00","25:41:00","Yawkey",15,"",0,0,0 "CR-Weekday-Fall-16-538","25:46:00","25:46:00","Back Bay",16,"",0,0,0 "CR-Weekday-Fall-16-538","25:51:00","25:51:00","South Station",17,"",1,0,0 "CR-Weekday-Fall-16-539","23:30:00","23:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-539","23:36:00","23:36:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-539","23:41:00","23:41:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-539","23:50:00","23:50:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-539","23:54:00","23:54:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-539","23:57:00","23:57:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-539","24:00:00","24:00:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-539","24:03:00","24:03:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-539","24:07:00","24:07:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-539","24:11:00","24:11:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-539","24:16:00","24:16:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-539","24:21:00","24:21:00","Framingham",12,"",0,0,1 "CR-Weekday-Fall-16-539","24:27:00","24:27:00","Ashland",13,"",0,0,1 "CR-Weekday-Fall-16-539","24:32:00","24:32:00","Southborough",14,"",0,0,1 "CR-Weekday-Fall-16-539","24:41:00","24:41:00","Westborough",15,"",0,0,1 "CR-Weekday-Fall-16-539","24:46:00","24:46:00","Grafton",16,"",0,0,1 "CR-Weekday-Fall-16-539","25:00:00","25:00:00","Worcester",17,"",1,0,0 "CR-Weekday-Fall-16-551","19:35:00","19:35:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-551","19:41:00","19:41:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-551","19:46:00","19:46:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-551","20:40:00","20:40:00","Worcester",4,"",1,0,0 "CR-Weekday-Fall-16-552","8:05:00","8:05:00","Worcester",1,"",0,1,1 "CR-Weekday-Fall-16-552","8:57:00","8:57:00","Yawkey",2,"",0,0,0 "CR-Weekday-Fall-16-552","9:02:00","9:02:00","Back Bay",3,"",0,0,0 "CR-Weekday-Fall-16-552","9:07:00","9:07:00","South Station",4,"",1,0,0 "CR-Weekday-Fall-16-580","6:05:00","6:05:00","Framingham",1,"",0,1,1 "CR-Weekday-Fall-16-580","6:10:00","6:10:00","West Natick",2,"",0,0,1 "CR-Weekday-Fall-16-580","6:15:00","6:15:00","Natick Center",3,"",0,0,1 "CR-Weekday-Fall-16-580","6:20:00","6:20:00","Wellesley Square",4,"",0,0,1 "CR-Weekday-Fall-16-580","6:24:00","6:24:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-580","6:27:00","6:27:00","Wellesley Farms",6,"",0,0,1 "CR-Weekday-Fall-16-580","6:32:00","6:32:00","Auburndale",7,"",0,0,1 "CR-Weekday-Fall-16-580","6:35:00","6:35:00","West Newton",8,"",0,0,1 "CR-Weekday-Fall-16-580","6:38:00","6:38:00","Newtonville",9,"",0,0,1 "CR-Weekday-Fall-16-580","6:48:00","6:48:00","Yawkey",10,"",0,0,0 "CR-Weekday-Fall-16-580","6:53:00","6:53:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-580","6:59:00","6:59:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-581","5:00:00","5:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-581","5:05:00","5:05:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-581","5:10:00","5:10:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-581","5:19:00","5:19:00","Newtonville",4,"",3,3,1 "CR-Weekday-Fall-16-581","5:23:00","5:23:00","West Newton",5,"",3,3,1 "CR-Weekday-Fall-16-581","5:26:00","5:26:00","Auburndale",6,"",3,3,1 "CR-Weekday-Fall-16-581","5:29:00","5:29:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-581","5:32:00","5:32:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-581","5:36:00","5:36:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-581","5:40:00","5:40:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-581","5:45:00","5:45:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-581","5:50:00","5:50:00","Framingham",12,"",1,0,0 "CR-Weekday-Fall-16-582","6:46:00","6:46:00","Framingham",1,"",0,1,1 "CR-Weekday-Fall-16-582","6:51:00","6:51:00","West Natick",2,"",0,0,1 "CR-Weekday-Fall-16-582","6:56:00","6:56:00","Natick Center",3,"",0,0,1 "CR-Weekday-Fall-16-582","7:01:00","7:01:00","Wellesley Square",4,"",0,0,1 "CR-Weekday-Fall-16-582","7:05:00","7:05:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-582","7:08:00","7:08:00","Wellesley Farms",6,"",0,0,1 "CR-Weekday-Fall-16-582","7:13:00","7:13:00","Auburndale",7,"",0,0,1 "CR-Weekday-Fall-16-582","7:16:00","7:16:00","West Newton",8,"",0,0,1 "CR-Weekday-Fall-16-582","7:19:00","7:19:00","Newtonville",9,"",0,0,1 "CR-Weekday-Fall-16-582","7:27:00","7:27:00","Yawkey",10,"",0,0,0 "CR-Weekday-Fall-16-582","7:32:00","7:32:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-582","7:38:00","7:38:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-583","5:30:00","5:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-583","5:35:00","5:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-583","5:40:00","5:40:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-583","5:53:00","5:53:00","Wellesley Farms",4,"",0,0,1 "CR-Weekday-Fall-16-583","5:56:00","5:56:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-583","6:00:00","6:00:00","Wellesley Square",6,"",0,0,1 "CR-Weekday-Fall-16-583","6:04:00","6:04:00","Natick Center",7,"",0,0,1 "CR-Weekday-Fall-16-583","6:09:00","6:09:00","West Natick",8,"",0,0,1 "CR-Weekday-Fall-16-583","6:14:00","6:14:00","Framingham",9,"",1,0,0 "CR-Weekday-Fall-16-584","7:50:00","7:50:00","Framingham",1,"",0,1,1 "CR-Weekday-Fall-16-584","7:55:00","7:55:00","West Natick",2,"",0,0,1 "CR-Weekday-Fall-16-584","8:00:00","8:00:00","Natick Center",3,"",0,0,1 "CR-Weekday-Fall-16-584","8:05:00","8:05:00","Wellesley Square",4,"",0,0,1 "CR-Weekday-Fall-16-584","8:09:00","8:09:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-584","8:12:00","8:12:00","Wellesley Farms",6,"",0,0,1 "CR-Weekday-Fall-16-584","8:17:00","8:17:00","Auburndale",7,"",0,0,1 "CR-Weekday-Fall-16-584","8:20:00","8:20:00","West Newton",8,"",0,0,1 "CR-Weekday-Fall-16-584","8:23:00","8:23:00","Newtonville",9,"",0,0,1 "CR-Weekday-Fall-16-584","8:33:00","8:33:00","Yawkey",10,"",0,0,0 "CR-Weekday-Fall-16-584","8:38:00","8:38:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-584","8:44:00","8:44:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-585","6:48:00","6:48:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-585","6:53:00","6:53:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-585","6:58:00","6:58:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-585","7:11:00","7:11:00","Wellesley Farms",4,"",0,0,1 "CR-Weekday-Fall-16-585","7:14:00","7:14:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-585","7:18:00","7:18:00","Wellesley Square",6,"",0,0,1 "CR-Weekday-Fall-16-585","7:22:00","7:22:00","Natick Center",7,"",0,0,1 "CR-Weekday-Fall-16-585","7:27:00","7:27:00","West Natick",8,"",0,0,1 "CR-Weekday-Fall-16-585","7:32:00","7:32:00","Framingham",9,"",1,0,0 "CR-Weekday-Fall-16-586","8:40:00","8:40:00","Framingham",1,"",0,1,1 "CR-Weekday-Fall-16-586","8:45:00","8:45:00","West Natick",2,"",0,0,1 "CR-Weekday-Fall-16-586","8:50:00","8:50:00","Natick Center",3,"",0,0,1 "CR-Weekday-Fall-16-586","8:55:00","8:55:00","Wellesley Square",4,"",0,0,1 "CR-Weekday-Fall-16-586","8:59:00","8:59:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-586","9:02:00","9:02:00","Wellesley Farms",6,"",0,0,1 "CR-Weekday-Fall-16-586","9:07:00","9:07:00","Auburndale",7,"",0,0,1 "CR-Weekday-Fall-16-586","9:10:00","9:10:00","West Newton",8,"",0,0,1 "CR-Weekday-Fall-16-586","9:13:00","9:13:00","Newtonville",9,"",0,0,1 "CR-Weekday-Fall-16-586","9:23:00","9:23:00","Yawkey",10,"",0,0,0 "CR-Weekday-Fall-16-586","9:28:00","9:28:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-586","9:34:00","9:34:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-587","7:26:00","7:26:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-587","7:32:00","7:32:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-587","7:37:00","7:37:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-587","7:50:00","7:50:00","Wellesley Farms",4,"",0,0,1 "CR-Weekday-Fall-16-587","7:53:00","7:53:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-587","7:57:00","7:57:00","Wellesley Square",6,"",0,0,1 "CR-Weekday-Fall-16-587","8:01:00","8:01:00","Natick Center",7,"",0,0,1 "CR-Weekday-Fall-16-587","8:05:00","8:05:00","West Natick",8,"",0,0,1 "CR-Weekday-Fall-16-587","8:10:00","8:10:00","Framingham",9,"",1,0,0 "CR-Weekday-Fall-16-588","16:47:00","16:47:00","Framingham",1,"",0,1,1 "CR-Weekday-Fall-16-588","16:52:00","16:52:00","West Natick",2,"",0,0,1 "CR-Weekday-Fall-16-588","16:57:00","16:57:00","Natick Center",3,"",0,0,1 "CR-Weekday-Fall-16-588","17:01:00","17:01:00","Wellesley Square",4,"",0,0,1 "CR-Weekday-Fall-16-588","17:05:00","17:05:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-588","17:08:00","17:08:00","Wellesley Farms",6,"",0,0,1 "CR-Weekday-Fall-16-588","17:21:00","17:21:00","Yawkey",7,"",0,0,0 "CR-Weekday-Fall-16-588","17:26:00","17:26:00","Back Bay",8,"",0,0,0 "CR-Weekday-Fall-16-588","17:41:00","17:41:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-589","15:40:00","15:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-589","15:46:00","15:46:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-589","15:51:00","15:51:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-589","16:00:00","16:00:00","Newtonville",4,"",0,0,1 "CR-Weekday-Fall-16-589","16:04:00","16:04:00","West Newton",5,"",0,0,1 "CR-Weekday-Fall-16-589","16:07:00","16:07:00","Auburndale",6,"",0,0,1 "CR-Weekday-Fall-16-589","16:10:00","16:10:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-589","16:13:00","16:13:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-589","16:17:00","16:17:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-589","16:21:00","16:21:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-589","16:26:00","16:26:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-589","16:32:00","16:32:00","Framingham",12,"",1,0,0 "CR-Weekday-Fall-16-590","17:40:00","17:40:00","Framingham",1,"",0,1,1 "CR-Weekday-Fall-16-590","18:07:00","18:07:00","Yawkey",2,"",0,0,0 "CR-Weekday-Fall-16-590","18:12:00","18:12:00","Back Bay",3,"",0,0,0 "CR-Weekday-Fall-16-590","18:17:00","18:17:00","South Station",4,"",1,0,0 "CR-Weekday-Fall-16-591","16:35:00","16:35:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-591","16:41:00","16:41:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-591","16:46:00","16:46:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-591","16:55:00","16:55:00","Newtonville",4,"",0,0,1 "CR-Weekday-Fall-16-591","16:59:00","16:59:00","West Newton",5,"",0,0,1 "CR-Weekday-Fall-16-591","17:02:00","17:02:00","Auburndale",6,"",0,0,1 "CR-Weekday-Fall-16-591","17:05:00","17:05:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-591","17:08:00","17:08:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-591","17:12:00","17:12:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-591","17:16:00","17:16:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-591","17:21:00","17:21:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-591","17:27:00","17:27:00","Framingham",12,"",1,0,0 "CR-Weekday-Fall-16-592","19:05:00","19:05:00","Framingham",1,"",0,1,1 "CR-Weekday-Fall-16-592","19:10:00","19:10:00","West Natick",2,"",0,0,1 "CR-Weekday-Fall-16-592","19:15:00","19:15:00","Natick Center",3,"",0,0,1 "CR-Weekday-Fall-16-592","19:19:00","19:19:00","Wellesley Square",4,"",0,0,1 "CR-Weekday-Fall-16-592","19:23:00","19:23:00","Wellesley Hills",5,"",0,0,1 "CR-Weekday-Fall-16-592","19:26:00","19:26:00","Wellesley Farms",6,"",0,0,1 "CR-Weekday-Fall-16-592","19:31:00","19:31:00","Auburndale",7,"",3,3,1 "CR-Weekday-Fall-16-592","19:34:00","19:34:00","West Newton",8,"",3,3,1 "CR-Weekday-Fall-16-592","19:37:00","19:37:00","Newtonville",9,"",3,3,1 "CR-Weekday-Fall-16-592","19:45:00","19:45:00","Yawkey",10,"",0,0,0 "CR-Weekday-Fall-16-592","19:50:00","19:50:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-592","19:55:00","19:55:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-593","17:15:00","17:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-593","17:21:00","17:21:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-593","17:26:00","17:26:00","Yawkey",3,"",0,0,1 "CR-Weekday-Fall-16-593","17:35:00","17:35:00","Newtonville",4,"",0,0,1 "CR-Weekday-Fall-16-593","17:39:00","17:39:00","West Newton",5,"",0,0,1 "CR-Weekday-Fall-16-593","17:42:00","17:42:00","Auburndale",6,"",0,0,1 "CR-Weekday-Fall-16-593","17:45:00","17:45:00","Wellesley Farms",7,"",0,0,1 "CR-Weekday-Fall-16-593","17:48:00","17:48:00","Wellesley Hills",8,"",0,0,1 "CR-Weekday-Fall-16-593","17:52:00","17:52:00","Wellesley Square",9,"",0,0,1 "CR-Weekday-Fall-16-593","17:56:00","17:56:00","Natick Center",10,"",0,0,1 "CR-Weekday-Fall-16-593","18:01:00","18:01:00","West Natick",11,"",0,0,1 "CR-Weekday-Fall-16-593","18:14:00","18:14:00","Framingham",12,"",1,0,0 "CR-Weekday-Fall-16-600","6:05:00","6:05:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-600","6:09:00","6:09:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-600","6:14:00","6:14:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-600","6:17:00","6:17:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-600","6:23:00","6:23:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-600","6:26:00","6:26:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-600","6:30:00","6:30:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-600","6:33:00","6:33:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-600","6:36:00","6:36:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-600","6:41:00","6:41:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-600","6:45:00","6:45:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-600","6:50:00","6:50:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-601","7:05:00","7:05:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-601","7:10:00","7:10:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-601","7:17:00","7:17:00","Forest Hills",3,"",0,0,1 "CR-Weekday-Fall-16-601","7:20:00","7:20:00","Roslindale Village",4,"",0,0,1 "CR-Weekday-Fall-16-601","7:23:00","7:23:00","Bellevue",5,"",0,0,1 "CR-Weekday-Fall-16-601","7:25:00","7:25:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-601","7:27:00","7:27:00","West Roxbury",7,"",0,0,1 "CR-Weekday-Fall-16-601","7:32:00","7:32:00","Hersey",8,"",0,0,1 "CR-Weekday-Fall-16-601","7:44:00","7:44:00","Needham Junction",9,"",0,0,1 "CR-Weekday-Fall-16-601","7:47:00","7:47:00","Needham Center",10,"",0,0,1 "CR-Weekday-Fall-16-601","7:51:00","7:51:00","Needham Heights",11,"",1,0,0 "CR-Weekday-Fall-16-602","6:40:00","6:40:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-602","6:44:00","6:44:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-602","6:49:00","6:49:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-602","6:52:00","6:52:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-602","6:58:00","6:58:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-602","7:01:00","7:01:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-602","7:05:00","7:05:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-602","7:08:00","7:08:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-602","7:11:00","7:11:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-602","7:16:00","7:16:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-602","7:20:00","7:20:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-602","7:25:00","7:25:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-603","7:52:00","7:52:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-603","7:57:00","7:57:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-603","8:09:00","8:09:00","West Roxbury",3,"",0,0,1 "CR-Weekday-Fall-16-603","8:25:00","8:25:00","Needham Junction",4,"",0,0,1 "CR-Weekday-Fall-16-603","8:28:00","8:28:00","Needham Center",5,"",0,0,0 "CR-Weekday-Fall-16-603","8:32:00","8:32:00","Needham Heights",6,"",1,0,0 "CR-Weekday-Fall-16-604","7:32:00","7:32:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-604","7:36:00","7:36:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-604","7:41:00","7:41:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-604","7:44:00","7:44:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-604","7:50:00","7:50:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-604","7:53:00","7:53:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-604","7:57:00","7:57:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-604","8:00:00","8:00:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-604","8:03:00","8:03:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-604","8:08:00","8:08:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-604","8:12:00","8:12:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-604","8:18:00","8:18:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-605","9:05:00","9:05:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-605","9:10:00","9:10:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-605","9:18:00","9:18:00","Forest Hills",3,"",0,0,1 "CR-Weekday-Fall-16-605","9:21:00","9:21:00","Roslindale Village",4,"",0,0,1 "CR-Weekday-Fall-16-605","9:24:00","9:24:00","Bellevue",5,"",0,0,1 "CR-Weekday-Fall-16-605","9:26:00","9:26:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-605","9:29:00","9:29:00","West Roxbury",7,"",0,0,1 "CR-Weekday-Fall-16-605","9:34:00","9:34:00","Hersey",8,"",0,0,1 "CR-Weekday-Fall-16-605","9:36:00","9:36:00","Needham Junction",9,"",0,0,1 "CR-Weekday-Fall-16-605","9:39:00","9:39:00","Needham Center",10,"",0,0,1 "CR-Weekday-Fall-16-605","9:43:00","9:43:00","Needham Heights",11,"",1,0,0 "CR-Weekday-Fall-16-606","8:02:00","8:02:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-606","8:06:00","8:06:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-606","8:11:00","8:11:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-606","8:15:00","8:15:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-606","8:21:00","8:21:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-606","8:24:00","8:24:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-606","8:26:00","8:26:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-606","8:30:00","8:30:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-606","8:33:00","8:33:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-606","8:38:00","8:38:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-606","8:42:00","8:42:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-606","8:47:00","8:47:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-607","10:02:00","10:02:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-607","10:08:00","10:08:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-607","10:11:00","10:11:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-607","10:14:00","10:14:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-607","10:16:00","10:16:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-607","10:18:00","10:18:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-607","10:25:00","10:25:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-607","10:28:00","10:28:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-607","10:31:00","10:31:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-607","10:35:00","10:35:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-607","9:53:00","9:53:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-607","9:58:00","9:58:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-608","8:45:00","8:45:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-608","8:49:00","8:49:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-608","8:54:00","8:54:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-608","8:57:00","8:57:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-608","9:03:00","9:03:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-608","9:06:00","9:06:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-608","9:10:00","9:10:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-608","9:13:00","9:13:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-608","9:16:00","9:16:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-608","9:21:00","9:21:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-608","9:25:00","9:25:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-608","9:30:00","9:30:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-609","11:50:00","11:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-609","11:55:00","11:55:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-609","11:59:00","11:59:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-609","12:05:00","12:05:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-609","12:08:00","12:08:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-609","12:11:00","12:11:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-609","12:13:00","12:13:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-609","12:15:00","12:15:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-609","12:20:00","12:20:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-609","12:23:00","12:23:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-609","12:26:00","12:26:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-609","12:30:00","12:30:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-610","10:05:00","10:05:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-610","10:09:00","10:09:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-610","10:13:00","10:13:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-610","10:16:00","10:16:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-610","10:21:00","10:21:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-610","10:23:00","10:23:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-610","10:25:00","10:25:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-610","10:28:00","10:28:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-610","10:31:00","10:31:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-610","10:36:00","10:36:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-610","10:40:00","10:40:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-610","10:45:00","10:45:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-611","13:52:00","13:52:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-611","13:57:00","13:57:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-611","14:01:00","14:01:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-611","14:07:00","14:07:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-611","14:10:00","14:10:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-611","14:13:00","14:13:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-611","14:15:00","14:15:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-611","14:17:00","14:17:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-611","14:22:00","14:22:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-611","14:25:00","14:25:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-611","14:28:00","14:28:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-611","14:33:00","14:33:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-612","11:05:00","11:05:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-612","11:09:00","11:09:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-612","11:13:00","11:13:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-612","11:16:00","11:16:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-612","11:21:00","11:21:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-612","11:23:00","11:23:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-612","11:25:00","11:25:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-612","11:28:00","11:28:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-612","11:31:00","11:31:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-612","11:36:00","11:36:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-612","11:40:00","11:40:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-612","11:45:00","11:45:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-613","15:00:00","15:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-613","15:05:00","15:05:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-613","15:09:00","15:09:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-613","15:15:00","15:15:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-613","15:18:00","15:18:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-613","15:21:00","15:21:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-613","15:23:00","15:23:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-613","15:25:00","15:25:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-613","15:30:00","15:30:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-613","15:34:00","15:34:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-613","15:37:00","15:37:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-613","15:42:00","15:42:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-614","12:50:00","12:50:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-614","12:54:00","12:54:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-614","12:58:00","12:58:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-614","13:01:00","13:01:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-614","13:06:00","13:06:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-614","13:08:00","13:08:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-614","13:10:00","13:10:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-614","13:13:00","13:13:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-614","13:16:00","13:16:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-614","13:21:00","13:21:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-614","13:25:00","13:25:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-614","13:30:00","13:30:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-615","16:05:00","16:05:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-615","16:10:00","16:10:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-615","16:14:00","16:14:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-615","16:20:00","16:20:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-615","16:25:00","16:25:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-615","16:28:00","16:28:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-615","16:30:00","16:30:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-615","16:32:00","16:32:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-615","16:37:00","16:37:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-615","16:41:00","16:41:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-615","16:44:00","16:44:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-615","16:49:00","16:49:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-616","14:50:00","14:50:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-616","14:54:00","14:54:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-616","14:58:00","14:58:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-616","15:01:00","15:01:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-616","15:06:00","15:06:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-616","15:08:00","15:08:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-616","15:10:00","15:10:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-616","15:13:00","15:13:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-616","15:16:00","15:16:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-616","15:24:00","15:24:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-616","15:29:00","15:29:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-617","16:47:00","16:47:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-617","16:52:00","16:52:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-617","16:56:00","16:56:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-617","17:02:00","17:02:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-617","17:07:00","17:07:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-617","17:10:00","17:10:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-617","17:12:00","17:12:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-617","17:14:00","17:14:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-617","17:20:00","17:20:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-617","17:24:00","17:24:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-617","17:27:00","17:27:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-617","17:32:00","17:32:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-618","15:55:00","15:55:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-618","15:59:00","15:59:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-618","16:03:00","16:03:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-618","16:09:00","16:09:00","West Roxbury",4,"",0,0,1 "CR-Weekday-Fall-16-618","16:22:00","16:22:00","Back Bay",5,"",0,0,0 "CR-Weekday-Fall-16-618","16:27:00","16:27:00","South Station",6,"",1,0,0 "CR-Weekday-Fall-16-619","17:26:00","17:26:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-619","17:31:00","17:31:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-619","17:35:00","17:35:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-619","17:41:00","17:41:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-619","17:47:00","17:47:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-619","17:50:00","17:50:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-619","17:52:00","17:52:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-619","17:54:00","17:54:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-619","18:00:00","18:00:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-619","18:04:00","18:04:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-619","18:07:00","18:07:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-619","18:12:00","18:12:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-620","17:04:00","17:04:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-620","17:18:00","17:18:00","West Roxbury",2,"",0,0,1 "CR-Weekday-Fall-16-620","17:20:00","17:20:00","Highland",3,"",0,0,1 "CR-Weekday-Fall-16-620","17:22:00","17:22:00","Bellevue",4,"",0,0,1 "CR-Weekday-Fall-16-620","17:25:00","17:25:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-620","17:28:00","17:28:00","Forest Hills",6,"",0,0,1 "CR-Weekday-Fall-16-620","17:40:00","17:40:00","Back Bay",7,"",0,0,0 "CR-Weekday-Fall-16-620","17:45:00","17:45:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-621","17:58:00","17:58:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-621","18:03:00","18:03:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-621","18:07:00","18:07:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-621","18:13:00","18:13:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-621","18:18:00","18:18:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-621","18:21:00","18:21:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-621","18:23:00","18:23:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-621","18:25:00","18:25:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-621","18:30:00","18:30:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-621","18:37:00","18:37:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-621","18:40:00","18:40:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-621","18:45:00","18:45:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-622","17:44:00","17:44:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-622","17:48:00","17:48:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-622","17:52:00","17:52:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-622","17:59:00","17:59:00","West Roxbury",4,"",0,0,1 "CR-Weekday-Fall-16-622","18:17:00","18:17:00","Back Bay",5,"",0,0,0 "CR-Weekday-Fall-16-622","18:22:00","18:22:00","South Station",6,"",1,0,0 "CR-Weekday-Fall-16-623","18:36:00","18:36:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-623","18:41:00","18:41:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-623","18:45:00","18:45:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-623","18:51:00","18:51:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-623","18:56:00","18:56:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-623","18:59:00","18:59:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-623","19:01:00","19:01:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-623","19:03:00","19:03:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-623","19:08:00","19:08:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-623","19:12:00","19:12:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-623","19:15:00","19:15:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-623","19:20:00","19:20:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-624","18:25:00","18:25:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-624","18:29:00","18:29:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-624","18:33:00","18:33:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-624","18:36:00","18:36:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-624","18:41:00","18:41:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-624","18:43:00","18:43:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-624","18:45:00","18:45:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-624","18:48:00","18:48:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-624","18:53:00","18:53:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-624","19:03:00","19:03:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-624","19:08:00","19:08:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-625","19:30:00","19:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-625","19:35:00","19:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-625","19:39:00","19:39:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-625","19:45:00","19:45:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-625","19:48:00","19:48:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-625","19:51:00","19:51:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-625","19:53:00","19:53:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-625","19:55:00","19:55:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-625","20:00:00","20:00:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-625","20:03:00","20:03:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-625","20:06:00","20:06:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-625","20:10:00","20:10:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-626","19:50:00","19:50:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-626","19:54:00","19:54:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-626","19:58:00","19:58:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-626","20:03:00","20:03:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-626","20:08:00","20:08:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-626","20:10:00","20:10:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-626","20:12:00","20:12:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-626","20:15:00","20:15:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-626","20:18:00","20:18:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-626","20:23:00","20:23:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-626","20:27:00","20:27:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-626","20:32:00","20:32:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-627","20:50:00","20:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-627","20:55:00","20:55:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-627","20:59:00","20:59:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-627","21:05:00","21:05:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-627","21:08:00","21:08:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-627","21:11:00","21:11:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-627","21:13:00","21:13:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-627","21:15:00","21:15:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-627","21:20:00","21:20:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-627","21:23:00","21:23:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-627","21:26:00","21:26:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-627","21:30:00","21:30:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-628","20:37:00","20:37:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-628","20:41:00","20:41:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-628","20:45:00","20:45:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-628","20:48:00","20:48:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-628","20:53:00","20:53:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-628","20:55:00","20:55:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-628","20:57:00","20:57:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-628","21:00:00","21:00:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-628","21:03:00","21:03:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-628","21:08:00","21:08:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-628","21:12:00","21:12:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-628","21:17:00","21:17:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-629","21:50:00","21:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-629","21:55:00","21:55:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-629","21:59:00","21:59:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-629","22:05:00","22:05:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-629","22:08:00","22:08:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-629","22:11:00","22:11:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-629","22:13:00","22:13:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-629","22:15:00","22:15:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-629","22:20:00","22:20:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-629","22:23:00","22:23:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-629","22:26:00","22:26:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-629","22:30:00","22:30:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-630","22:02:00","22:02:00","Needham Heights",1,"",0,1,1 "CR-Weekday-Fall-16-630","22:06:00","22:06:00","Needham Center",2,"",0,0,1 "CR-Weekday-Fall-16-630","22:10:00","22:10:00","Needham Junction",3,"",0,0,1 "CR-Weekday-Fall-16-630","22:13:00","22:13:00","Hersey",4,"",0,0,1 "CR-Weekday-Fall-16-630","22:23:00","22:23:00","West Roxbury",5,"",0,0,1 "CR-Weekday-Fall-16-630","22:25:00","22:25:00","Highland",6,"",0,0,1 "CR-Weekday-Fall-16-630","22:27:00","22:27:00","Bellevue",7,"",0,0,1 "CR-Weekday-Fall-16-630","22:30:00","22:30:00","Roslindale Village",8,"",0,0,1 "CR-Weekday-Fall-16-630","22:33:00","22:33:00","Forest Hills",9,"",0,0,1 "CR-Weekday-Fall-16-630","22:38:00","22:38:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-630","22:42:00","22:42:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-630","22:47:00","22:47:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-631","23:20:00","23:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-631","23:25:00","23:25:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-631","23:29:00","23:29:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-631","23:35:00","23:35:00","Forest Hills",4,"",0,0,1 "CR-Weekday-Fall-16-631","23:38:00","23:38:00","Roslindale Village",5,"",0,0,1 "CR-Weekday-Fall-16-631","23:41:00","23:41:00","Bellevue",6,"",0,0,1 "CR-Weekday-Fall-16-631","23:43:00","23:43:00","Highland",7,"",0,0,1 "CR-Weekday-Fall-16-631","23:45:00","23:45:00","West Roxbury",8,"",0,0,1 "CR-Weekday-Fall-16-631","23:50:00","23:50:00","Hersey",9,"",0,0,1 "CR-Weekday-Fall-16-631","23:53:00","23:53:00","Needham Junction",10,"",0,0,1 "CR-Weekday-Fall-16-631","23:56:00","23:56:00","Needham Center",11,"",0,0,1 "CR-Weekday-Fall-16-631","24:00:00","24:00:00","Needham Heights",12,"",1,0,0 "CR-Weekday-Fall-16-700","5:30:00","5:30:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-700","5:37:00","5:37:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-700","5:44:00","5:44:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-700","5:50:00","5:50:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-700","5:54:00","5:54:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-700","5:58:00","5:58:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-700","6:02:00","6:02:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-700","6:05:00","6:05:00","Dedham Corp Center",8,"",0,0,1 "CR-Weekday-Fall-16-700","6:08:00","6:08:00","Endicott",9,"",0,0,1 "CR-Weekday-Fall-16-700","6:12:00","6:12:00","Readville",10,"",0,0,1 "CR-Weekday-Fall-16-700","6:24:00","6:24:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-700","6:30:00","6:30:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-701","3:50:00","3:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-701","4:12:00","4:12:00","Norwood Central",2,"",0,0,0 "CR-Weekday-Fall-16-701","4:18:00","4:18:00","Walpole",3,"",0,0,0 "CR-Weekday-Fall-16-701","4:30:00","4:30:00","Franklin",4,"",0,0,1 "CR-Weekday-Fall-16-701","4:40:00","4:40:00","Forge Park / 495",5,"",1,0,0 "CR-Weekday-Fall-16-702","6:05:00","6:05:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-702","6:12:00","6:12:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-702","6:19:00","6:19:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-702","6:26:00","6:26:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-702","6:30:00","6:30:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-702","6:35:00","6:35:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-702","6:38:00","6:38:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-702","6:42:00","6:42:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-702","6:45:00","6:45:00","Dedham Corp Center",9,"",0,0,1 "CR-Weekday-Fall-16-702","6:48:00","6:48:00","Endicott",10,"",0,0,1 "CR-Weekday-Fall-16-702","6:53:00","6:53:00","Readville",11,"",0,0,1 "CR-Weekday-Fall-16-702","7:03:00","7:03:00","Ruggles",12,"",0,0,0 "CR-Weekday-Fall-16-702","7:07:00","7:07:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-702","7:13:00","7:13:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-703","8:04:00","8:04:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-703","8:09:00","8:09:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-703","8:13:00","8:13:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-703","8:26:00","8:26:00","Dedham Corp Center",4,"",0,0,1 "CR-Weekday-Fall-16-703","8:29:00","8:29:00","Islington",5,"",0,0,1 "CR-Weekday-Fall-16-703","8:32:00","8:32:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-703","8:35:00","8:35:00","Norwood Central",7,"",0,0,1 "CR-Weekday-Fall-16-703","8:39:00","8:39:00","Windsor Gardens",8,"",0,0,1 "CR-Weekday-Fall-16-703","8:43:00","8:43:00","Walpole",9,"",0,0,1 "CR-Weekday-Fall-16-703","8:49:00","8:49:00","Norfolk",10,"",0,0,1 "CR-Weekday-Fall-16-703","8:56:00","8:56:00","Franklin",11,"",0,0,1 "CR-Weekday-Fall-16-703","9:04:00","9:04:00","Forge Park / 495",12,"",1,0,0 "CR-Weekday-Fall-16-704","6:35:00","6:35:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-704","6:42:00","6:42:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-704","6:49:00","6:49:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-704","6:55:00","6:55:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-704","6:58:00","6:58:00","Plimptonville",5,"",3,3,1 "CR-Weekday-Fall-16-704","7:01:00","7:01:00","Windsor Gardens",6,"",0,0,1 "CR-Weekday-Fall-16-704","7:06:00","7:06:00","Norwood Central",7,"",0,0,1 "CR-Weekday-Fall-16-704","7:09:00","7:09:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-704","7:13:00","7:13:00","Islington",9,"",0,0,1 "CR-Weekday-Fall-16-704","7:16:00","7:16:00","Dedham Corp Center",10,"",0,0,1 "CR-Weekday-Fall-16-704","7:20:00","7:20:00","Endicott",11,"",0,0,1 "CR-Weekday-Fall-16-704","7:25:00","7:25:00","Readville",12,"",0,0,1 "CR-Weekday-Fall-16-704","7:35:00","7:35:00","Ruggles",13,"",0,0,0 "CR-Weekday-Fall-16-704","7:39:00","7:39:00","Back Bay",14,"",0,0,0 "CR-Weekday-Fall-16-704","7:45:00","7:45:00","South Station",15,"",1,0,0 "CR-Weekday-Fall-16-705","10:02:00","10:02:00","Dedham Corp Center",5,"",0,0,1 "CR-Weekday-Fall-16-705","10:05:00","10:05:00","Islington",6,"",0,0,1 "CR-Weekday-Fall-16-705","10:08:00","10:08:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-705","10:11:00","10:11:00","Norwood Central",8,"",0,0,1 "CR-Weekday-Fall-16-705","10:15:00","10:15:00","Windsor Gardens",9,"",0,0,1 "CR-Weekday-Fall-16-705","10:19:00","10:19:00","Walpole",10,"",0,0,1 "CR-Weekday-Fall-16-705","10:25:00","10:25:00","Norfolk",11,"",0,0,1 "CR-Weekday-Fall-16-705","10:32:00","10:32:00","Franklin",12,"",0,0,1 "CR-Weekday-Fall-16-705","10:40:00","10:40:00","Forge Park / 495",13,"",1,0,0 "CR-Weekday-Fall-16-705","9:40:00","9:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-705","9:45:00","9:45:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-705","9:56:00","9:56:00","Readville",3,"",0,0,1 "CR-Weekday-Fall-16-705","9:59:00","9:59:00","Endicott",4,"",0,0,1 "CR-Weekday-Fall-16-706","7:08:00","7:08:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-706","7:15:00","7:15:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-706","7:22:00","7:22:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-706","7:30:00","7:30:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-706","7:34:00","7:34:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-706","7:39:00","7:39:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-706","7:45:00","7:45:00","Dedham Corp Center",7,"",0,0,1 "CR-Weekday-Fall-16-706","8:00:00","8:00:00","Ruggles",8,"",0,0,0 "CR-Weekday-Fall-16-706","8:04:00","8:04:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-706","8:10:00","8:10:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-707","11:00:00","11:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-707","11:05:00","11:05:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-707","11:08:00","11:08:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-707","11:19:00","11:19:00","Endicott",4,"",0,0,1 "CR-Weekday-Fall-16-707","11:22:00","11:22:00","Dedham Corp Center",5,"",0,0,1 "CR-Weekday-Fall-16-707","11:25:00","11:25:00","Islington",6,"",0,0,1 "CR-Weekday-Fall-16-707","11:28:00","11:28:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-707","11:31:00","11:31:00","Norwood Central",8,"",0,0,1 "CR-Weekday-Fall-16-707","11:35:00","11:35:00","Windsor Gardens",9,"",0,0,1 "CR-Weekday-Fall-16-707","11:39:00","11:39:00","Walpole",10,"",0,0,1 "CR-Weekday-Fall-16-707","11:45:00","11:45:00","Norfolk",11,"",0,0,1 "CR-Weekday-Fall-16-707","11:52:00","11:52:00","Franklin",12,"",0,0,1 "CR-Weekday-Fall-16-707","12:00:00","12:00:00","Forge Park / 495",13,"",1,0,0 "CR-Weekday-Fall-16-708","7:50:00","7:50:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-708","7:57:00","7:57:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-708","8:04:00","8:04:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-708","8:11:00","8:11:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-708","8:15:00","8:15:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-708","8:20:00","8:20:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-708","8:26:00","8:26:00","Dedham Corp Center",7,"",0,0,1 "CR-Weekday-Fall-16-708","8:29:00","8:29:00","Endicott",8,"",0,0,1 "CR-Weekday-Fall-16-708","8:33:00","8:33:00","Readville",9,"",0,0,1 "CR-Weekday-Fall-16-708","8:44:00","8:44:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-708","8:48:00","8:48:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-708","8:54:00","8:54:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-709","12:20:00","12:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-709","12:25:00","12:25:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-709","12:28:00","12:28:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-709","12:38:00","12:38:00","Readville",4,"",0,0,1 "CR-Weekday-Fall-16-709","12:41:00","12:41:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-709","12:44:00","12:44:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-709","12:47:00","12:47:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-709","12:50:00","12:50:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-709","12:53:00","12:53:00","Norwood Central",9,"",0,0,1 "CR-Weekday-Fall-16-709","12:57:00","12:57:00","Windsor Gardens",10,"",0,0,1 "CR-Weekday-Fall-16-709","13:01:00","13:01:00","Walpole",11,"",0,0,1 "CR-Weekday-Fall-16-709","13:07:00","13:07:00","Norfolk",12,"",0,0,1 "CR-Weekday-Fall-16-709","13:14:00","13:14:00","Franklin",13,"",0,0,1 "CR-Weekday-Fall-16-709","13:22:00","13:22:00","Forge Park / 495",14,"",1,0,0 "CR-Weekday-Fall-16-710","10:02:00","10:02:00","Endicott",10,"",0,0,1 "CR-Weekday-Fall-16-710","10:06:00","10:06:00","Readville",11,"",0,0,1 "CR-Weekday-Fall-16-710","10:16:00","10:16:00","Ruggles",12,"",0,0,0 "CR-Weekday-Fall-16-710","10:20:00","10:20:00","Back Bay",13,"",0,0,0 "CR-Weekday-Fall-16-710","10:25:00","10:25:00","South Station",14,"",1,0,0 "CR-Weekday-Fall-16-710","9:22:00","9:22:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-710","9:29:00","9:29:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-710","9:36:00","9:36:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-710","9:43:00","9:43:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-710","9:47:00","9:47:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-710","9:51:00","9:51:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-710","9:53:00","9:53:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-710","9:56:00","9:56:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-710","9:59:00","9:59:00","Dedham Corp Center",9,"",0,0,1 "CR-Weekday-Fall-16-711","13:35:00","13:35:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-711","13:40:00","13:40:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-711","13:44:00","13:44:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-711","13:53:00","13:53:00","Readville",4,"",0,0,1 "CR-Weekday-Fall-16-711","13:57:00","13:57:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-711","13:59:00","13:59:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-711","14:02:00","14:02:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-711","14:05:00","14:05:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-711","14:08:00","14:08:00","Norwood Central",9,"",0,0,1 "CR-Weekday-Fall-16-711","14:12:00","14:12:00","Windsor Gardens",10,"",0,0,1 "CR-Weekday-Fall-16-711","14:16:00","14:16:00","Walpole",11,"",0,0,1 "CR-Weekday-Fall-16-711","14:22:00","14:22:00","Norfolk",12,"",0,0,1 "CR-Weekday-Fall-16-711","14:29:00","14:29:00","Franklin",13,"",0,0,1 "CR-Weekday-Fall-16-711","14:37:00","14:37:00","Forge Park / 495",14,"",1,0,0 "CR-Weekday-Fall-16-712","10:55:00","10:55:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-712","11:02:00","11:02:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-712","11:09:00","11:09:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-712","11:16:00","11:16:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-712","11:20:00","11:20:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-712","11:24:00","11:24:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-712","11:26:00","11:26:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-712","11:29:00","11:29:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-712","11:31:00","11:31:00","Dedham Corp Center",9,"",0,0,1 "CR-Weekday-Fall-16-712","11:34:00","11:34:00","Endicott",10,"",0,0,1 "CR-Weekday-Fall-16-712","11:38:00","11:38:00","Readville",11,"",0,0,1 "CR-Weekday-Fall-16-712","11:49:00","11:49:00","Back Bay",12,"",0,0,0 "CR-Weekday-Fall-16-712","11:54:00","11:54:00","South Station",13,"",1,0,0 "CR-Weekday-Fall-16-713","14:40:00","14:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-713","14:45:00","14:45:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-713","14:49:00","14:49:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-713","14:59:00","14:59:00","Readville",4,"",0,0,1 "CR-Weekday-Fall-16-713","15:02:00","15:02:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-713","15:05:00","15:05:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-713","15:08:00","15:08:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-713","15:11:00","15:11:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-713","15:14:00","15:14:00","Norwood Central",9,"",0,0,1 "CR-Weekday-Fall-16-713","15:18:00","15:18:00","Windsor Gardens",10,"",0,0,1 "CR-Weekday-Fall-16-713","15:22:00","15:22:00","Walpole",11,"",0,0,1 "CR-Weekday-Fall-16-713","15:30:00","15:30:00","Norfolk",12,"",0,0,1 "CR-Weekday-Fall-16-713","15:37:00","15:37:00","Franklin",13,"",0,0,1 "CR-Weekday-Fall-16-713","15:45:00","15:45:00","Forge Park / 495",14,"",1,0,0 "CR-Weekday-Fall-16-714","12:20:00","12:20:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-714","12:27:00","12:27:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-714","12:34:00","12:34:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-714","12:41:00","12:41:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-714","12:45:00","12:45:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-714","12:49:00","12:49:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-714","12:51:00","12:51:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-714","12:54:00","12:54:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-714","12:56:00","12:56:00","Dedham Corp Center",9,"",0,0,1 "CR-Weekday-Fall-16-714","12:59:00","12:59:00","Endicott",10,"",0,0,1 "CR-Weekday-Fall-16-714","13:03:00","13:03:00","Readville",11,"",0,0,1 "CR-Weekday-Fall-16-714","13:14:00","13:14:00","Back Bay",12,"",0,0,0 "CR-Weekday-Fall-16-714","13:19:00","13:19:00","South Station",13,"",1,0,0 "CR-Weekday-Fall-16-715","15:48:00","15:48:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-715","15:53:00","15:53:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-715","15:57:00","15:57:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-715","16:12:00","16:12:00","Dedham Corp Center",4,"",0,0,1 "CR-Weekday-Fall-16-715","16:17:00","16:17:00","Norwood Central",5,"",0,0,1 "CR-Weekday-Fall-16-715","16:21:00","16:21:00","Windsor Gardens",6,"",0,0,1 "CR-Weekday-Fall-16-715","16:26:00","16:26:00","Walpole",7,"",0,0,1 "CR-Weekday-Fall-16-715","16:34:00","16:34:00","Norfolk",8,"",0,0,1 "CR-Weekday-Fall-16-715","16:41:00","16:41:00","Franklin",9,"",0,0,1 "CR-Weekday-Fall-16-715","16:49:00","16:49:00","Forge Park / 495",10,"",1,0,0 "CR-Weekday-Fall-16-716","13:35:00","13:35:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-716","13:42:00","13:42:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-716","13:49:00","13:49:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-716","13:56:00","13:56:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-716","14:01:00","14:01:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-716","14:05:00","14:05:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-716","14:07:00","14:07:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-716","14:10:00","14:10:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-716","14:12:00","14:12:00","Dedham Corp Center",9,"",0,0,1 "CR-Weekday-Fall-16-716","14:15:00","14:15:00","Endicott",10,"",0,0,1 "CR-Weekday-Fall-16-716","14:19:00","14:19:00","Readville",11,"",0,0,1 "CR-Weekday-Fall-16-716","14:30:00","14:30:00","Back Bay",12,"",0,0,0 "CR-Weekday-Fall-16-716","14:35:00","14:35:00","South Station",13,"",1,0,0 "CR-Weekday-Fall-16-717","16:43:00","16:43:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-717","16:48:00","16:48:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-717","16:52:00","16:52:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-717","17:07:00","17:07:00","Dedham Corp Center",4,"",0,0,1 "CR-Weekday-Fall-16-717","17:10:00","17:10:00","Islington",5,"",0,0,1 "CR-Weekday-Fall-16-717","17:13:00","17:13:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-717","17:17:00","17:17:00","Norwood Central",7,"",0,0,1 "CR-Weekday-Fall-16-717","17:21:00","17:21:00","Windsor Gardens",8,"",0,0,1 "CR-Weekday-Fall-16-717","17:27:00","17:27:00","Walpole",9,"",0,0,1 "CR-Weekday-Fall-16-717","17:35:00","17:35:00","Norfolk",10,"",0,0,1 "CR-Weekday-Fall-16-717","17:42:00","17:42:00","Franklin",11,"",0,0,1 "CR-Weekday-Fall-16-717","17:50:00","17:50:00","Forge Park / 495",12,"",1,0,0 "CR-Weekday-Fall-16-718","14:57:00","14:57:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-718","15:04:00","15:04:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-718","15:11:00","15:11:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-718","15:26:00","15:26:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-718","15:31:00","15:31:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-718","15:35:00","15:35:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-718","15:37:00","15:37:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-718","15:40:00","15:40:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-718","15:42:00","15:42:00","Dedham Corp Center",9,"",0,0,1 "CR-Weekday-Fall-16-718","16:02:00","16:02:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-718","16:07:00","16:07:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-719","17:20:00","17:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-719","17:25:00","17:25:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-719","17:29:00","17:29:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-719","17:46:00","17:46:00","Dedham Corp Center",4,"",0,0,1 "CR-Weekday-Fall-16-719","17:49:00","17:49:00","Islington",5,"",0,0,1 "CR-Weekday-Fall-16-719","17:54:00","17:54:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-719","17:58:00","17:58:00","Windsor Gardens",7,"",0,0,1 "CR-Weekday-Fall-16-719","18:04:00","18:04:00","Walpole",8,"",0,0,1 "CR-Weekday-Fall-16-719","18:10:00","18:10:00","Norfolk",9,"",0,0,1 "CR-Weekday-Fall-16-719","18:17:00","18:17:00","Franklin",10,"",0,0,1 "CR-Weekday-Fall-16-719","18:25:00","18:25:00","Forge Park / 495",11,"",1,0,0 "CR-Weekday-Fall-16-720","16:01:00","16:01:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-720","16:08:00","16:08:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-720","16:15:00","16:15:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-720","16:30:00","16:30:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-720","16:37:00","16:37:00","Norwood Central",5,"",0,0,1 "CR-Weekday-Fall-16-720","16:39:00","16:39:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-720","16:42:00","16:42:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-720","16:45:00","16:45:00","Dedham Corp Center",8,"",0,0,1 "CR-Weekday-Fall-16-720","16:50:00","16:50:00","Endicott",9,"",0,0,1 "CR-Weekday-Fall-16-720","17:10:00","17:10:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-720","17:15:00","17:15:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-721","17:45:00","17:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-721","17:50:00","17:50:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-721","17:54:00","17:54:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-721","18:08:00","18:08:00","Endicott",4,"",0,0,1 "CR-Weekday-Fall-16-721","18:11:00","18:11:00","Dedham Corp Center",5,"",0,0,1 "CR-Weekday-Fall-16-721","18:18:00","18:18:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-721","18:22:00","18:22:00","Norwood Central",7,"",0,0,1 "CR-Weekday-Fall-16-721","18:26:00","18:26:00","Windsor Gardens",8,"",0,0,1 "CR-Weekday-Fall-16-721","18:31:00","18:31:00","Walpole",9,"",0,0,1 "CR-Weekday-Fall-16-721","18:38:00","18:38:00","Norfolk",10,"",0,0,1 "CR-Weekday-Fall-16-721","18:45:00","18:45:00","Franklin",11,"",0,0,1 "CR-Weekday-Fall-16-721","18:52:00","18:52:00","Forge Park / 495",12,"",1,0,0 "CR-Weekday-Fall-16-722","17:03:00","17:03:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-722","17:10:00","17:10:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-722","17:17:00","17:17:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-722","17:31:00","17:31:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-722","17:38:00","17:38:00","Norwood Central",5,"",0,0,1 "CR-Weekday-Fall-16-722","17:43:00","17:43:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-722","17:47:00","17:47:00","Endicott",7,"",0,0,1 "CR-Weekday-Fall-16-722","17:50:00","17:50:00","Readville",8,"",0,0,1 "CR-Weekday-Fall-16-722","18:11:00","18:11:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-722","18:16:00","18:16:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-723","18:20:00","18:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-723","18:25:00","18:25:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-723","18:29:00","18:29:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-723","18:38:00","18:38:00","Readville",4,"",0,0,1 "CR-Weekday-Fall-16-723","18:42:00","18:42:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-723","18:45:00","18:45:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-723","18:48:00","18:48:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-723","18:52:00","18:52:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-723","18:56:00","18:56:00","Norwood Central",9,"",0,0,1 "CR-Weekday-Fall-16-723","19:00:00","19:00:00","Windsor Gardens",10,"",0,0,1 "CR-Weekday-Fall-16-723","19:05:00","19:05:00","Walpole",11,"",0,0,1 "CR-Weekday-Fall-16-723","19:12:00","19:12:00","Norfolk",12,"",0,0,1 "CR-Weekday-Fall-16-723","19:19:00","19:19:00","Franklin",13,"",0,0,1 "CR-Weekday-Fall-16-723","19:27:00","19:27:00","Forge Park / 495",14,"",1,0,0 "CR-Weekday-Fall-16-724","19:05:00","19:05:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-724","19:24:00","19:24:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-724","19:31:00","19:31:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-724","19:38:00","19:38:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-724","19:45:00","19:45:00","Norwood Central",5,"",0,0,1 "CR-Weekday-Fall-16-724","19:47:00","19:47:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-724","19:50:00","19:50:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-724","19:52:00","19:52:00","Dedham Corp Center",8,"",0,0,1 "CR-Weekday-Fall-16-724","19:55:00","19:55:00","Endicott",9,"",0,0,1 "CR-Weekday-Fall-16-724","20:07:00","20:07:00","Ruggles",10,"",0,0,0 "CR-Weekday-Fall-16-724","20:11:00","20:11:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-724","20:16:00","20:16:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-725","19:45:00","19:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-725","19:50:00","19:50:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-725","19:54:00","19:54:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-725","20:03:00","20:03:00","Readville",4,"",0,0,1 "CR-Weekday-Fall-16-725","20:06:00","20:06:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-725","20:09:00","20:09:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-725","20:12:00","20:12:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-725","20:15:00","20:15:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-725","20:18:00","20:18:00","Norwood Central",9,"",0,0,1 "CR-Weekday-Fall-16-725","20:22:00","20:22:00","Windsor Gardens",10,"",0,0,1 "CR-Weekday-Fall-16-725","20:27:00","20:27:00","Walpole",11,"",0,0,1 "CR-Weekday-Fall-16-725","20:34:00","20:34:00","Norfolk",12,"",0,0,1 "CR-Weekday-Fall-16-725","20:41:00","20:41:00","Franklin",13,"",0,0,1 "CR-Weekday-Fall-16-725","20:49:00","20:49:00","Forge Park / 495",14,"",1,0,0 "CR-Weekday-Fall-16-726","19:43:00","19:43:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-726","19:50:00","19:50:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-726","19:57:00","19:57:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-726","20:04:00","20:04:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-726","20:11:00","20:11:00","Norwood Central",5,"",0,0,1 "CR-Weekday-Fall-16-726","20:13:00","20:13:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-726","20:16:00","20:16:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-726","20:18:00","20:18:00","Dedham Corp Center",8,"",0,0,1 "CR-Weekday-Fall-16-726","20:21:00","20:21:00","Endicott",9,"",0,0,1 "CR-Weekday-Fall-16-726","20:25:00","20:25:00","Readville",10,"",0,0,1 "CR-Weekday-Fall-16-726","20:35:00","20:35:00","Ruggles",11,"",0,0,0 "CR-Weekday-Fall-16-726","20:39:00","20:39:00","Back Bay",12,"",0,0,0 "CR-Weekday-Fall-16-726","20:44:00","20:44:00","South Station",13,"",1,0,0 "CR-Weekday-Fall-16-727","21:00:00","21:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-727","21:05:00","21:05:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-727","21:08:00","21:08:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-727","21:18:00","21:18:00","Readville",4,"",0,0,1 "CR-Weekday-Fall-16-727","21:21:00","21:21:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-727","21:24:00","21:24:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-727","21:27:00","21:27:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-727","21:30:00","21:30:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-727","21:33:00","21:33:00","Norwood Central",9,"",0,0,1 "CR-Weekday-Fall-16-727","21:37:00","21:37:00","Windsor Gardens",10,"",0,0,1 "CR-Weekday-Fall-16-727","21:42:00","21:42:00","Walpole",11,"",0,0,1 "CR-Weekday-Fall-16-727","21:49:00","21:49:00","Norfolk",12,"",0,0,1 "CR-Weekday-Fall-16-727","21:56:00","21:56:00","Franklin",13,"",0,0,1 "CR-Weekday-Fall-16-727","22:04:00","22:04:00","Forge Park / 495",14,"",1,0,0 "CR-Weekday-Fall-16-728","21:01:00","21:01:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-728","21:08:00","21:08:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-728","21:15:00","21:15:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-728","21:22:00","21:22:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-728","21:29:00","21:29:00","Norwood Central",5,"",0,0,1 "CR-Weekday-Fall-16-728","21:31:00","21:31:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-728","21:34:00","21:34:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-728","21:36:00","21:36:00","Dedham Corp Center",8,"",0,0,1 "CR-Weekday-Fall-16-728","21:39:00","21:39:00","Endicott",9,"",0,0,1 "CR-Weekday-Fall-16-728","21:43:00","21:43:00","Readville",10,"",0,0,1 "CR-Weekday-Fall-16-728","21:53:00","21:53:00","Ruggles",11,"",0,0,0 "CR-Weekday-Fall-16-728","21:57:00","21:57:00","Back Bay",12,"",0,0,0 "CR-Weekday-Fall-16-728","22:02:00","22:02:00","South Station",13,"",1,0,0 "CR-Weekday-Fall-16-729","22:30:00","22:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-729","22:35:00","22:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-729","22:38:00","22:38:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-729","22:46:00","22:46:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-729","22:50:00","22:50:00","Readville",5,"",0,0,1 "CR-Weekday-Fall-16-729","22:53:00","22:53:00","Endicott",6,"",0,0,1 "CR-Weekday-Fall-16-729","22:56:00","22:56:00","Dedham Corp Center",7,"",0,0,1 "CR-Weekday-Fall-16-729","22:59:00","22:59:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-729","23:02:00","23:02:00","Norwood Depot",9,"",0,0,1 "CR-Weekday-Fall-16-729","23:05:00","23:05:00","Norwood Central",10,"",0,0,1 "CR-Weekday-Fall-16-729","23:08:00","23:08:00","Windsor Gardens",11,"",0,0,1 "CR-Weekday-Fall-16-729","23:12:00","23:12:00","Walpole",12,"",0,0,1 "CR-Weekday-Fall-16-729","23:19:00","23:19:00","Norfolk",13,"",0,0,1 "CR-Weekday-Fall-16-729","23:26:00","23:26:00","Franklin",14,"",0,0,1 "CR-Weekday-Fall-16-729","23:34:00","23:34:00","Forge Park / 495",15,"",1,0,0 "CR-Weekday-Fall-16-730","22:25:00","22:25:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-730","22:32:00","22:32:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-730","22:39:00","22:39:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-730","22:46:00","22:46:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-730","22:53:00","22:53:00","Norwood Central",5,"",0,0,1 "CR-Weekday-Fall-16-730","22:55:00","22:55:00","Norwood Depot",6,"",0,0,1 "CR-Weekday-Fall-16-730","22:57:00","22:57:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-730","23:00:00","23:00:00","Dedham Corp Center",8,"",0,0,1 "CR-Weekday-Fall-16-730","23:03:00","23:03:00","Endicott",9,"",0,0,1 "CR-Weekday-Fall-16-730","23:07:00","23:07:00","Readville",10,"",0,0,1 "CR-Weekday-Fall-16-730","23:19:00","23:19:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-730","23:24:00","23:24:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-731","23:50:00","23:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-731","23:55:00","23:55:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-731","23:58:00","23:58:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-731","24:08:00","24:08:00","Readville",4,"",0,0,1 "CR-Weekday-Fall-16-731","24:11:00","24:11:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-731","24:14:00","24:14:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-731","24:17:00","24:17:00","Islington",7,"",0,0,1 "CR-Weekday-Fall-16-731","24:20:00","24:20:00","Norwood Depot",8,"",0,0,1 "CR-Weekday-Fall-16-731","24:23:00","24:23:00","Norwood Central",9,"",0,0,1 "CR-Weekday-Fall-16-731","24:26:00","24:26:00","Windsor Gardens",10,"",0,0,1 "CR-Weekday-Fall-16-731","24:31:00","24:31:00","Walpole",11,"",0,0,1 "CR-Weekday-Fall-16-731","24:38:00","24:38:00","Norfolk",12,"",0,0,1 "CR-Weekday-Fall-16-731","24:45:00","24:45:00","Franklin",13,"",0,0,1 "CR-Weekday-Fall-16-731","24:53:00","24:53:00","Forge Park / 495",14,"",1,0,0 "CR-Weekday-Fall-16-732","23:46:00","23:46:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-732","23:53:00","23:53:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-732","24:00:00","24:00:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-732","24:07:00","24:07:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-732","24:14:00","24:14:00","Norwood Central",5,"",3,3,1 "CR-Weekday-Fall-16-732","24:16:00","24:16:00","Norwood Depot",6,"",3,3,1 "CR-Weekday-Fall-16-732","24:18:00","24:18:00","Islington",7,"",3,3,1 "CR-Weekday-Fall-16-732","24:21:00","24:21:00","Dedham Corp Center",8,"",3,3,1 "CR-Weekday-Fall-16-732","24:24:00","24:24:00","Endicott",9,"",3,3,1 "CR-Weekday-Fall-16-732","24:28:00","24:28:00","Readville",10,"",3,3,1 "CR-Weekday-Fall-16-732","24:39:00","24:39:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-732","24:44:00","24:44:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-740","7:40:00","7:40:00","Walpole",1,"",0,1,1 "CR-Weekday-Fall-16-740","7:44:00","7:44:00","Windsor Gardens",2,"",0,0,1 "CR-Weekday-Fall-16-740","7:49:00","7:49:00","Norwood Central",3,"",0,0,1 "CR-Weekday-Fall-16-740","7:52:00","7:52:00","Norwood Depot",4,"",0,0,1 "CR-Weekday-Fall-16-740","7:56:00","7:56:00","Islington",5,"",0,0,1 "CR-Weekday-Fall-16-740","7:59:00","7:59:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-740","8:03:00","8:03:00","Endicott",7,"",0,0,1 "CR-Weekday-Fall-16-740","8:08:00","8:08:00","Readville",8,"",0,0,1 "CR-Weekday-Fall-16-740","8:20:00","8:20:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-740","8:26:00","8:26:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-741","6:45:00","6:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-741","6:50:00","6:50:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-741","7:01:00","7:01:00","Readville",3,"",0,0,1 "CR-Weekday-Fall-16-741","7:04:00","7:04:00","Endicott",4,"",3,3,1 "CR-Weekday-Fall-16-741","7:07:00","7:07:00","Dedham Corp Center",5,"",3,3,1 "CR-Weekday-Fall-16-741","7:10:00","7:10:00","Islington",6,"",3,3,1 "CR-Weekday-Fall-16-741","7:13:00","7:13:00","Norwood Depot",7,"",3,3,1 "CR-Weekday-Fall-16-741","7:16:00","7:16:00","Norwood Central",8,"",3,3,1 "CR-Weekday-Fall-16-741","7:19:00","7:19:00","Windsor Gardens",9,"",3,3,1 "CR-Weekday-Fall-16-741","7:23:00","7:23:00","Walpole",10,"",1,0,0 "CR-Weekday-Fall-16-742","8:31:00","8:31:00","Norwood Central",1,"",0,1,1 "CR-Weekday-Fall-16-742","8:34:00","8:34:00","Norwood Depot",2,"",0,0,1 "CR-Weekday-Fall-16-742","8:38:00","8:38:00","Islington",3,"",0,0,1 "CR-Weekday-Fall-16-742","8:40:00","8:40:00","Dedham Corp Center",4,"",0,0,1 "CR-Weekday-Fall-16-742","8:43:00","8:43:00","Endicott",5,"",0,0,1 "CR-Weekday-Fall-16-742","8:48:00","8:48:00","Readville",6,"",0,0,1 "CR-Weekday-Fall-16-742","8:59:00","8:59:00","Ruggles",7,"",0,0,0 "CR-Weekday-Fall-16-742","9:03:00","9:03:00","Back Bay",8,"",0,0,0 "CR-Weekday-Fall-16-742","9:09:00","9:09:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-743","16:15:00","16:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-743","16:20:00","16:20:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-743","16:24:00","16:24:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-743","16:33:00","16:33:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-743","16:37:00","16:37:00","Readville",5,"",0,0,1 "CR-Weekday-Fall-16-743","16:40:00","16:40:00","Endicott",6,"",0,0,1 "CR-Weekday-Fall-16-743","16:43:00","16:43:00","Dedham Corp Center",7,"",0,0,1 "CR-Weekday-Fall-16-743","16:46:00","16:46:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-743","16:49:00","16:49:00","Norwood Depot",9,"",0,0,1 "CR-Weekday-Fall-16-743","16:52:00","16:52:00","Norwood Central",10,"",1,0,0 "CR-Weekday-Fall-16-744","17:05:00","17:05:00","Norwood Central",1,"",0,1,1 "CR-Weekday-Fall-16-744","17:25:00","17:25:00","Back Bay",2,"",0,0,0 "CR-Weekday-Fall-16-744","17:30:00","17:30:00","South Station",3,"",1,0,0 "CR-Weekday-Fall-16-745","17:02:00","17:02:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-745","17:07:00","17:07:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-745","17:11:00","17:11:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-745","17:20:00","17:20:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-745","17:24:00","17:24:00","Readville",5,"",0,0,1 "CR-Weekday-Fall-16-745","17:28:00","17:28:00","Endicott",6,"",0,0,1 "CR-Weekday-Fall-16-745","17:32:00","17:32:00","Dedham Corp Center",7,"",0,0,1 "CR-Weekday-Fall-16-745","17:35:00","17:35:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-745","17:39:00","17:39:00","Norwood Depot",9,"",0,0,1 "CR-Weekday-Fall-16-745","17:43:00","17:43:00","Norwood Central",10,"",0,0,1 "CR-Weekday-Fall-16-745","17:50:00","17:50:00","Plimptonville",11,"",0,0,0 "CR-Weekday-Fall-16-745","17:54:00","17:54:00","Walpole",12,"",1,0,0 "CR-Weekday-Fall-16-746","18:08:00","18:08:00","Walpole",1,"",0,1,1 "CR-Weekday-Fall-16-746","18:11:00","18:11:00","Windsor Gardens",2,"",3,3,1 "CR-Weekday-Fall-16-746","18:15:00","18:15:00","Norwood Central",3,"",0,0,1 "CR-Weekday-Fall-16-746","18:17:00","18:17:00","Norwood Depot",4,"",0,0,1 "CR-Weekday-Fall-16-746","18:20:00","18:20:00","Islington",5,"",0,0,1 "CR-Weekday-Fall-16-746","18:22:00","18:22:00","Dedham Corp Center",6,"",0,0,1 "CR-Weekday-Fall-16-746","18:25:00","18:25:00","Endicott",7,"",0,0,1 "CR-Weekday-Fall-16-746","18:30:00","18:30:00","Readville",8,"",0,0,1 "CR-Weekday-Fall-16-746","18:33:00","18:33:00","Fairmount",9,"",3,3,1 "CR-Weekday-Fall-16-746","18:38:00","18:38:00","Morton Street",10,"",3,3,1 "CR-Weekday-Fall-16-746","18:41:00","18:41:00","Talbot Avenue",11,"",3,3,1 "CR-Weekday-Fall-16-746","18:44:00","18:44:00","Four Corners / Geneva",12,"",3,3,1 "CR-Weekday-Fall-16-746","18:47:00","18:47:00","Uphams Corner",13,"",3,3,1 "CR-Weekday-Fall-16-746","18:50:00","18:50:00","Newmarket",14,"",3,3,1 "CR-Weekday-Fall-16-746","19:00:00","19:00:00","South Station",15,"",1,0,0 "CR-Weekday-Fall-16-750","6:25:00","6:25:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-750","6:28:00","6:28:00","Fairmount",2,"",0,0,1 "CR-Weekday-Fall-16-750","6:33:00","6:33:00","Morton Street",3,"",0,0,1 "CR-Weekday-Fall-16-750","6:36:00","6:36:00","Talbot Avenue",4,"",0,0,1 "CR-Weekday-Fall-16-750","6:39:00","6:39:00","Four Corners / Geneva",5,"",0,0,1 "CR-Weekday-Fall-16-750","6:42:00","6:42:00","Uphams Corner",6,"",0,0,1 "CR-Weekday-Fall-16-750","6:45:00","6:45:00","Newmarket",7,"",0,0,1 "CR-Weekday-Fall-16-750","6:55:00","6:55:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-751","6:24:00","6:24:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-751","6:33:00","6:33:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-751","6:36:00","6:36:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-751","6:39:00","6:39:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-751","6:42:00","6:42:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-751","6:45:00","6:45:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-751","6:49:00","6:49:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-751","6:54:00","6:54:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-752","7:15:00","7:15:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-752","7:18:00","7:18:00","Fairmount",2,"",0,0,1 "CR-Weekday-Fall-16-752","7:23:00","7:23:00","Morton Street",3,"",0,0,1 "CR-Weekday-Fall-16-752","7:26:00","7:26:00","Talbot Avenue",4,"",0,0,1 "CR-Weekday-Fall-16-752","7:29:00","7:29:00","Four Corners / Geneva",5,"",0,0,1 "CR-Weekday-Fall-16-752","7:32:00","7:32:00","Uphams Corner",6,"",0,0,1 "CR-Weekday-Fall-16-752","7:35:00","7:35:00","Newmarket",7,"",0,0,1 "CR-Weekday-Fall-16-752","7:45:00","7:45:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-753","7:10:00","7:10:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-753","7:19:00","7:19:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-753","7:22:00","7:22:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-753","7:25:00","7:25:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-753","7:28:00","7:28:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-753","7:31:00","7:31:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-753","7:35:00","7:35:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-753","7:40:00","7:40:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-754","7:55:00","7:55:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-754","7:58:00","7:58:00","Fairmount",2,"",0,0,1 "CR-Weekday-Fall-16-754","8:03:00","8:03:00","Morton Street",3,"",0,0,1 "CR-Weekday-Fall-16-754","8:06:00","8:06:00","Talbot Avenue",4,"",0,0,1 "CR-Weekday-Fall-16-754","8:09:00","8:09:00","Four Corners / Geneva",5,"",0,0,1 "CR-Weekday-Fall-16-754","8:12:00","8:12:00","Uphams Corner",6,"",0,0,1 "CR-Weekday-Fall-16-754","8:15:00","8:15:00","Newmarket",7,"",0,0,1 "CR-Weekday-Fall-16-754","8:25:00","8:25:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-755","8:00:00","8:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-755","8:09:00","8:09:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-755","8:12:00","8:12:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-755","8:15:00","8:15:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-755","8:18:00","8:18:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-755","8:21:00","8:21:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-755","8:25:00","8:25:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-755","8:30:00","8:30:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-756","8:45:00","8:45:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-756","8:48:00","8:48:00","Fairmount",2,"",0,0,1 "CR-Weekday-Fall-16-756","8:53:00","8:53:00","Morton Street",3,"",0,0,1 "CR-Weekday-Fall-16-756","8:56:00","8:56:00","Talbot Avenue",4,"",0,0,1 "CR-Weekday-Fall-16-756","8:59:00","8:59:00","Four Corners / Geneva",5,"",0,0,1 "CR-Weekday-Fall-16-756","9:02:00","9:02:00","Uphams Corner",6,"",0,0,1 "CR-Weekday-Fall-16-756","9:05:00","9:05:00","Newmarket",7,"",0,0,1 "CR-Weekday-Fall-16-756","9:15:00","9:15:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-757","8:40:00","8:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-757","8:49:00","8:49:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-757","8:52:00","8:52:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-757","8:55:00","8:55:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-757","8:58:00","8:58:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-757","9:01:00","9:01:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-757","9:05:00","9:05:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-757","9:10:00","9:10:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-758","10:00:00","10:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-758","10:03:00","10:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-758","10:08:00","10:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-758","10:11:00","10:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-758","10:14:00","10:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-758","10:17:00","10:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-758","10:20:00","10:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-758","10:30:00","10:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-759","10:00:00","10:00:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-759","10:03:00","10:03:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-759","10:06:00","10:06:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-759","10:10:00","10:10:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-759","10:15:00","10:15:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-759","9:45:00","9:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-759","9:54:00","9:54:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-759","9:57:00","9:57:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-760","11:00:00","11:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-760","11:03:00","11:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-760","11:08:00","11:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-760","11:11:00","11:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-760","11:14:00","11:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-760","11:17:00","11:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-760","11:20:00","11:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-760","11:30:00","11:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-761","10:45:00","10:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-761","10:54:00","10:54:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-761","10:57:00","10:57:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-761","11:00:00","11:00:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-761","11:03:00","11:03:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-761","11:06:00","11:06:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-761","11:10:00","11:10:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-761","11:15:00","11:15:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-762","12:00:00","12:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-762","12:03:00","12:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-762","12:08:00","12:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-762","12:11:00","12:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-762","12:14:00","12:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-762","12:17:00","12:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-762","12:20:00","12:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-762","12:30:00","12:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-763","11:45:00","11:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-763","11:54:00","11:54:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-763","11:57:00","11:57:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-763","12:00:00","12:00:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-763","12:03:00","12:03:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-763","12:06:00","12:06:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-763","12:10:00","12:10:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-763","12:15:00","12:15:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-764","13:00:00","13:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-764","13:03:00","13:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-764","13:08:00","13:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-764","13:11:00","13:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-764","13:14:00","13:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-764","13:17:00","13:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-764","13:20:00","13:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-764","13:30:00","13:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-765","12:45:00","12:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-765","12:54:00","12:54:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-765","12:57:00","12:57:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-765","13:00:00","13:00:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-765","13:03:00","13:03:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-765","13:06:00","13:06:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-765","13:10:00","13:10:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-765","13:15:00","13:15:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-766","14:00:00","14:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-766","14:03:00","14:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-766","14:08:00","14:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-766","14:11:00","14:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-766","14:14:00","14:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-766","14:17:00","14:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-766","14:20:00","14:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-766","14:30:00","14:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-767","13:45:00","13:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-767","13:54:00","13:54:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-767","13:57:00","13:57:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-767","14:00:00","14:00:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-767","14:03:00","14:03:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-767","14:06:00","14:06:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-767","14:10:00","14:10:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-767","14:15:00","14:15:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-768","14:40:00","14:40:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-768","14:43:00","14:43:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-768","14:48:00","14:48:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-768","14:51:00","14:51:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-768","14:54:00","14:54:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-768","14:57:00","14:57:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-768","15:00:00","15:00:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-768","15:10:00","15:10:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-769","14:45:00","14:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-769","14:54:00","14:54:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-769","14:57:00","14:57:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-769","15:00:00","15:00:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-769","15:03:00","15:03:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-769","15:06:00","15:06:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-769","15:10:00","15:10:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-769","15:15:00","15:15:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-770","15:30:00","15:30:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-770","15:33:00","15:33:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-770","15:38:00","15:38:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-770","15:41:00","15:41:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-770","15:44:00","15:44:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-770","15:47:00","15:47:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-770","15:50:00","15:50:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-770","16:00:00","16:00:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-771","15:30:00","15:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-771","15:39:00","15:39:00","Newmarket",2,"",0,0,1 "CR-Weekday-Fall-16-771","15:42:00","15:42:00","Uphams Corner",3,"",0,0,1 "CR-Weekday-Fall-16-771","15:45:00","15:45:00","Four Corners / Geneva",4,"",0,0,1 "CR-Weekday-Fall-16-771","15:48:00","15:48:00","Talbot Avenue",5,"",0,0,1 "CR-Weekday-Fall-16-771","15:51:00","15:51:00","Morton Street",6,"",0,0,1 "CR-Weekday-Fall-16-771","15:55:00","15:55:00","Fairmount",7,"",0,0,1 "CR-Weekday-Fall-16-771","16:00:00","16:00:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-772","16:15:00","16:15:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-772","16:18:00","16:18:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-772","16:23:00","16:23:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-772","16:26:00","16:26:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-772","16:29:00","16:29:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-772","16:32:00","16:32:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-772","16:35:00","16:35:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-772","16:45:00","16:45:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-773","16:15:00","16:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-773","16:24:00","16:24:00","Newmarket",2,"",0,0,1 "CR-Weekday-Fall-16-773","16:27:00","16:27:00","Uphams Corner",3,"",0,0,1 "CR-Weekday-Fall-16-773","16:30:00","16:30:00","Four Corners / Geneva",4,"",0,0,1 "CR-Weekday-Fall-16-773","16:33:00","16:33:00","Talbot Avenue",5,"",0,0,1 "CR-Weekday-Fall-16-773","16:36:00","16:36:00","Morton Street",6,"",0,0,1 "CR-Weekday-Fall-16-773","16:40:00","16:40:00","Fairmount",7,"",0,0,1 "CR-Weekday-Fall-16-773","16:45:00","16:45:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-774","17:00:00","17:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-774","17:03:00","17:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-774","17:08:00","17:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-774","17:11:00","17:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-774","17:14:00","17:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-774","17:17:00","17:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-774","17:20:00","17:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-774","17:30:00","17:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-775","17:00:00","17:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-775","17:09:00","17:09:00","Newmarket",2,"",0,0,1 "CR-Weekday-Fall-16-775","17:12:00","17:12:00","Uphams Corner",3,"",0,0,1 "CR-Weekday-Fall-16-775","17:15:00","17:15:00","Four Corners / Geneva",4,"",0,0,1 "CR-Weekday-Fall-16-775","17:18:00","17:18:00","Talbot Avenue",5,"",0,0,1 "CR-Weekday-Fall-16-775","17:21:00","17:21:00","Morton Street",6,"",0,0,1 "CR-Weekday-Fall-16-775","17:25:00","17:25:00","Fairmount",7,"",0,0,1 "CR-Weekday-Fall-16-775","17:30:00","17:30:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-776","17:45:00","17:45:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-776","17:48:00","17:48:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-776","17:53:00","17:53:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-776","17:56:00","17:56:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-776","17:59:00","17:59:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-776","18:02:00","18:02:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-776","18:05:00","18:05:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-776","18:15:00","18:15:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-777","17:45:00","17:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-777","17:54:00","17:54:00","Newmarket",2,"",0,0,1 "CR-Weekday-Fall-16-777","17:57:00","17:57:00","Uphams Corner",3,"",0,0,1 "CR-Weekday-Fall-16-777","18:00:00","18:00:00","Four Corners / Geneva",4,"",0,0,1 "CR-Weekday-Fall-16-777","18:03:00","18:03:00","Talbot Avenue",5,"",0,0,1 "CR-Weekday-Fall-16-777","18:06:00","18:06:00","Morton Street",6,"",0,0,1 "CR-Weekday-Fall-16-777","18:10:00","18:10:00","Fairmount",7,"",0,0,1 "CR-Weekday-Fall-16-777","18:15:00","18:15:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-778","18:25:00","18:25:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-778","18:45:00","18:45:00","South Station",2,"",1,0,0 "CR-Weekday-Fall-16-779","18:30:00","18:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-779","18:39:00","18:39:00","Newmarket",2,"",0,0,1 "CR-Weekday-Fall-16-779","18:42:00","18:42:00","Uphams Corner",3,"",0,0,1 "CR-Weekday-Fall-16-779","18:45:00","18:45:00","Four Corners / Geneva",4,"",0,0,1 "CR-Weekday-Fall-16-779","18:48:00","18:48:00","Talbot Avenue",5,"",0,0,1 "CR-Weekday-Fall-16-779","18:51:00","18:51:00","Morton Street",6,"",0,0,1 "CR-Weekday-Fall-16-779","18:55:00","18:55:00","Fairmount",7,"",0,0,1 "CR-Weekday-Fall-16-779","19:00:00","19:00:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-780","19:15:00","19:15:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-780","19:18:00","19:18:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-780","19:23:00","19:23:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-780","19:26:00","19:26:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-780","19:29:00","19:29:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-780","19:32:00","19:32:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-780","19:35:00","19:35:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-780","19:45:00","19:45:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-781","19:15:00","19:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-781","19:24:00","19:24:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-781","19:27:00","19:27:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-781","19:30:00","19:30:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-781","19:33:00","19:33:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-781","19:36:00","19:36:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-781","19:40:00","19:40:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-781","19:45:00","19:45:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-782","20:00:00","20:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-782","20:03:00","20:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-782","20:08:00","20:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-782","20:11:00","20:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-782","20:14:00","20:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-782","20:17:00","20:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-782","20:20:00","20:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-782","20:30:00","20:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-783","20:15:00","20:15:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-783","20:24:00","20:24:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-783","20:27:00","20:27:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-783","20:30:00","20:30:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-783","20:33:00","20:33:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-783","20:36:00","20:36:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-783","20:40:00","20:40:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-783","20:45:00","20:45:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-784","21:00:00","21:00:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-784","21:03:00","21:03:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-784","21:08:00","21:08:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-784","21:11:00","21:11:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-784","21:14:00","21:14:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-784","21:17:00","21:17:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-784","21:20:00","21:20:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-784","21:30:00","21:30:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-785","21:00:00","21:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-785","21:09:00","21:09:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-785","21:12:00","21:12:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-785","21:15:00","21:15:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-785","21:18:00","21:18:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-785","21:21:00","21:21:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-785","21:25:00","21:25:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-785","21:30:00","21:30:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-786","21:45:00","21:45:00","Readville",1,"",0,1,1 "CR-Weekday-Fall-16-786","21:48:00","21:48:00","Fairmount",2,"",3,3,1 "CR-Weekday-Fall-16-786","21:53:00","21:53:00","Morton Street",3,"",3,3,1 "CR-Weekday-Fall-16-786","21:56:00","21:56:00","Talbot Avenue",4,"",3,3,1 "CR-Weekday-Fall-16-786","21:59:00","21:59:00","Four Corners / Geneva",5,"",3,3,1 "CR-Weekday-Fall-16-786","22:02:00","22:02:00","Uphams Corner",6,"",3,3,1 "CR-Weekday-Fall-16-786","22:05:00","22:05:00","Newmarket",7,"",3,3,1 "CR-Weekday-Fall-16-786","22:15:00","22:15:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-787","22:00:00","22:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-787","22:09:00","22:09:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-787","22:12:00","22:12:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-787","22:15:00","22:15:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-787","22:18:00","22:18:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-787","22:21:00","22:21:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-787","22:25:00","22:25:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-787","22:30:00","22:30:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-789","23:00:00","23:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-789","23:09:00","23:09:00","Newmarket",2,"",3,3,1 "CR-Weekday-Fall-16-789","23:12:00","23:12:00","Uphams Corner",3,"",3,3,1 "CR-Weekday-Fall-16-789","23:15:00","23:15:00","Four Corners / Geneva",4,"",3,3,1 "CR-Weekday-Fall-16-789","23:18:00","23:18:00","Talbot Avenue",5,"",3,3,1 "CR-Weekday-Fall-16-789","23:21:00","23:21:00","Morton Street",6,"",3,3,1 "CR-Weekday-Fall-16-789","23:25:00","23:25:00","Fairmount",7,"",3,3,1 "CR-Weekday-Fall-16-789","23:30:00","23:30:00","Readville",8,"",1,0,0 "CR-Weekday-Fall-16-790","4:55:00","4:55:00","Forge Park / 495",1,"",0,1,1 "CR-Weekday-Fall-16-790","5:02:00","5:02:00","Franklin",2,"",0,0,1 "CR-Weekday-Fall-16-790","5:08:00","5:08:00","Norfolk",3,"",0,0,1 "CR-Weekday-Fall-16-790","5:15:00","5:15:00","Walpole",4,"",0,0,1 "CR-Weekday-Fall-16-790","5:19:00","5:19:00","Windsor Gardens",5,"",0,0,1 "CR-Weekday-Fall-16-790","5:23:00","5:23:00","Norwood Central",6,"",0,0,1 "CR-Weekday-Fall-16-790","5:26:00","5:26:00","Norwood Depot",7,"",0,0,1 "CR-Weekday-Fall-16-790","5:29:00","5:29:00","Islington",8,"",0,0,1 "CR-Weekday-Fall-16-790","5:32:00","5:32:00","Dedham Corp Center",9,"",0,0,1 "CR-Weekday-Fall-16-790","5:35:00","5:35:00","Endicott",10,"",0,0,1 "CR-Weekday-Fall-16-790","5:39:00","5:39:00","Readville",11,"",0,0,1 "CR-Weekday-Fall-16-790","5:42:00","5:42:00","Fairmount",12,"",0,0,1 "CR-Weekday-Fall-16-790","5:47:00","5:47:00","Morton Street",13,"",0,0,1 "CR-Weekday-Fall-16-790","5:50:00","5:50:00","Talbot Avenue",14,"",0,0,1 "CR-Weekday-Fall-16-790","5:53:00","5:53:00","Four Corners / Geneva",15,"",0,0,1 "CR-Weekday-Fall-16-790","5:56:00","5:56:00","Uphams Corner",16,"",0,0,1 "CR-Weekday-Fall-16-790","5:59:00","5:59:00","Newmarket",17,"",0,0,1 "CR-Weekday-Fall-16-790","6:09:00","6:09:00","South Station",18,"",1,0,0 "CR-Weekday-Fall-16-800","5:00:00","5:00:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-800","5:09:00","5:09:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-800","5:19:00","5:19:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-800","5:29:00","5:29:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-800","5:38:00","5:38:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-800","5:45:00","5:45:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-800","5:50:00","5:50:00","Route 128",7,"",0,0,1 "CR-Weekday-Fall-16-800","5:55:00","5:55:00","Hyde Park",8,"",0,0,1 "CR-Weekday-Fall-16-800","6:04:00","6:04:00","Ruggles",9,"",0,0,0 "CR-Weekday-Fall-16-800","6:08:00","6:08:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-800","6:14:00","6:14:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-801","5:30:00","5:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-801","5:35:00","5:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-801","5:49:00","5:49:00","Route 128",3,"",0,0,1 "CR-Weekday-Fall-16-801","5:57:00","5:57:00","Sharon",4,"",0,0,1 "CR-Weekday-Fall-16-801","6:04:00","6:04:00","Mansfield",5,"",0,0,1 "CR-Weekday-Fall-16-801","6:12:00","6:12:00","Attleboro",6,"",0,0,1 "CR-Weekday-Fall-16-801","6:21:00","6:21:00","South Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-801","6:30:00","6:30:00","Providence",8,"",1,0,0 "CR-Weekday-Fall-16-802","4:45:00","4:45:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-802","5:00:00","5:00:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-802","5:25:00","5:25:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-802","5:34:00","5:34:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-802","5:44:00","5:44:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-802","5:54:00","5:54:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-802","6:03:00","6:03:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-802","6:10:00","6:10:00","Canton Junction",8,"",0,0,1 "CR-Weekday-Fall-16-802","6:15:00","6:15:00","Route 128",9,"",0,0,1 "CR-Weekday-Fall-16-802","6:20:00","6:20:00","Hyde Park",10,"",0,0,1 "CR-Weekday-Fall-16-802","6:30:00","6:30:00","Ruggles",11,"",0,0,0 "CR-Weekday-Fall-16-802","6:34:00","6:34:00","Back Bay",12,"",0,0,0 "CR-Weekday-Fall-16-802","6:40:00","6:40:00","South Station",13,"",1,0,0 "CR-Weekday-Fall-16-803","6:31:00","6:31:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-803","6:36:00","6:36:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-803","6:39:00","6:39:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-803","6:51:00","6:51:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-803","6:56:00","6:56:00","Canton Junction",5,"",0,0,1 "CR-Weekday-Fall-16-803","7:02:00","7:02:00","Sharon",6,"",0,0,1 "CR-Weekday-Fall-16-803","7:09:00","7:09:00","Mansfield",7,"",0,0,1 "CR-Weekday-Fall-16-803","7:17:00","7:17:00","Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-803","7:26:00","7:26:00","South Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-803","7:35:00","7:35:00","Providence",10,"",1,0,0 "CR-Weekday-Fall-16-804","6:00:00","6:00:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-804","6:09:00","6:09:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-804","6:19:00","6:19:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-804","6:29:00","6:29:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-804","6:39:00","6:39:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-804","6:47:00","6:47:00","Route 128",6,"",0,0,1 "CR-Weekday-Fall-16-804","6:59:00","6:59:00","Back Bay",7,"",0,0,0 "CR-Weekday-Fall-16-804","7:05:00","7:05:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-805","7:25:00","7:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-805","7:30:00","7:30:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-805","7:33:00","7:33:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-805","7:45:00","7:45:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-805","7:51:00","7:51:00","Canton Junction",5,"",0,0,1 "CR-Weekday-Fall-16-805","7:57:00","7:57:00","Sharon",6,"",0,0,1 "CR-Weekday-Fall-16-805","8:05:00","8:05:00","Mansfield",7,"",0,0,1 "CR-Weekday-Fall-16-805","8:13:00","8:13:00","Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-805","8:20:00","8:20:00","South Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-805","8:29:00","8:29:00","Providence",10,"",0,0,1 "CR-Weekday-Fall-16-805","8:45:00","8:45:00","TF Green Airport",11,"",0,0,1 "CR-Weekday-Fall-16-805","9:01:00","9:01:00","Wickford Junction",12,"",1,0,0 "CR-Weekday-Fall-16-806","5:45:00","5:45:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-806","6:00:00","6:00:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-806","6:25:00","6:25:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-806","6:34:00","6:34:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-806","6:44:00","6:44:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-806","6:54:00","6:54:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-806","7:04:00","7:04:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-806","7:12:00","7:12:00","Route 128",8,"",0,0,1 "CR-Weekday-Fall-16-806","7:25:00","7:25:00","Ruggles",9,"",0,0,0 "CR-Weekday-Fall-16-806","7:29:00","7:29:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-806","7:35:00","7:35:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-807","10:02:00","10:02:00","Canton Junction",5,"",0,0,1 "CR-Weekday-Fall-16-807","10:08:00","10:08:00","Sharon",6,"",0,0,1 "CR-Weekday-Fall-16-807","10:16:00","10:16:00","Mansfield",7,"",0,0,1 "CR-Weekday-Fall-16-807","10:24:00","10:24:00","Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-807","10:34:00","10:34:00","South Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-807","10:44:00","10:44:00","Providence",10,"",1,0,0 "CR-Weekday-Fall-16-807","9:35:00","9:35:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-807","9:40:00","9:40:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-807","9:44:00","9:44:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-807","9:56:00","9:56:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-808","6:35:00","6:35:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-808","6:50:00","6:50:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-808","7:15:00","7:15:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-808","7:25:00","7:25:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-808","7:35:00","7:35:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-808","7:45:00","7:45:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-808","8:10:00","8:10:00","Back Bay",7,"",0,0,0 "CR-Weekday-Fall-16-808","8:16:00","8:16:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-809","10:25:00","10:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-809","10:30:00","10:30:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-809","10:33:00","10:33:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-809","10:43:00","10:43:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-809","10:48:00","10:48:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-809","10:54:00","10:54:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-809","11:00:00","11:00:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-809","11:08:00","11:08:00","Mansfield",8,"",0,0,1 "CR-Weekday-Fall-16-809","11:16:00","11:16:00","Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-809","11:26:00","11:26:00","South Attleboro",10,"",0,0,1 "CR-Weekday-Fall-16-809","11:36:00","11:36:00","Providence",11,"",1,0,0 "CR-Weekday-Fall-16-810","7:30:00","7:30:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-810","7:39:00","7:39:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-810","7:49:00","7:49:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-810","7:59:00","7:59:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-810","8:08:00","8:08:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-810","8:16:00","8:16:00","Route 128",6,"",0,0,1 "CR-Weekday-Fall-16-810","8:21:00","8:21:00","Hyde Park",7,"",0,0,1 "CR-Weekday-Fall-16-810","8:30:00","8:30:00","Back Bay",8,"",0,0,0 "CR-Weekday-Fall-16-810","8:36:00","8:36:00","South Station",9,"",1,0,0 "CR-Weekday-Fall-16-811","11:25:00","11:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-811","11:30:00","11:30:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-811","11:33:00","11:33:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-811","11:45:00","11:45:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-811","11:53:00","11:53:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-811","12:00:00","12:00:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-811","12:08:00","12:08:00","Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-811","12:17:00","12:17:00","South Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-811","12:26:00","12:26:00","Providence",9,"",0,0,1 "CR-Weekday-Fall-16-811","12:42:00","12:42:00","TF Green Airport",10,"",0,0,1 "CR-Weekday-Fall-16-811","12:58:00","12:58:00","Wickford Junction",11,"",1,0,0 "CR-Weekday-Fall-16-812","7:50:00","7:50:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-812","7:59:00","7:59:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-812","8:09:00","8:09:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-812","8:19:00","8:19:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-812","8:28:00","8:28:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-812","8:36:00","8:36:00","Route 128",6,"",0,0,1 "CR-Weekday-Fall-16-812","8:49:00","8:49:00","Back Bay",7,"",0,0,0 "CR-Weekday-Fall-16-812","8:55:00","8:55:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-813","13:43:00","13:43:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-813","13:48:00","13:48:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-813","13:52:00","13:52:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-813","14:04:00","14:04:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-813","14:12:00","14:12:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-813","14:20:00","14:20:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-813","14:28:00","14:28:00","Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-813","14:35:00","14:35:00","South Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-813","14:45:00","14:45:00","Providence",9,"",1,0,0 "CR-Weekday-Fall-16-814","7:45:00","7:45:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-814","8:00:00","8:00:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-814","8:25:00","8:25:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-814","8:34:00","8:34:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-814","8:44:00","8:44:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-814","8:54:00","8:54:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-814","9:03:00","9:03:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-814","9:10:00","9:10:00","Canton Junction",8,"",0,0,1 "CR-Weekday-Fall-16-814","9:15:00","9:15:00","Route 128",9,"",0,0,1 "CR-Weekday-Fall-16-814","9:20:00","9:20:00","Hyde Park",10,"",0,0,1 "CR-Weekday-Fall-16-814","9:29:00","9:29:00","Ruggles",11,"",0,0,0 "CR-Weekday-Fall-16-814","9:33:00","9:33:00","Back Bay",12,"",0,0,0 "CR-Weekday-Fall-16-814","9:39:00","9:39:00","South Station",13,"",1,0,0 "CR-Weekday-Fall-16-815","14:30:00","14:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-815","14:35:00","14:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-815","14:38:00","14:38:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-815","14:51:00","14:51:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-815","14:57:00","14:57:00","Canton Junction",5,"",0,0,1 "CR-Weekday-Fall-16-815","15:03:00","15:03:00","Sharon",6,"",0,0,1 "CR-Weekday-Fall-16-815","15:11:00","15:11:00","Mansfield",7,"",0,0,1 "CR-Weekday-Fall-16-815","15:19:00","15:19:00","Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-815","15:29:00","15:29:00","South Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-815","15:39:00","15:39:00","Providence",10,"",1,0,0 "CR-Weekday-Fall-16-816","10:09:00","10:09:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-816","10:19:00","10:19:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-816","10:28:00","10:28:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-816","10:37:00","10:37:00","Route 128",8,"",0,0,1 "CR-Weekday-Fall-16-816","10:50:00","10:50:00","Ruggles",9,"",0,0,0 "CR-Weekday-Fall-16-816","10:54:00","10:54:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-816","10:59:00","10:59:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-816","9:20:00","9:20:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-816","9:34:00","9:34:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-816","9:50:00","9:50:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-816","9:59:00","9:59:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-817","15:25:00","15:25:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-817","15:30:00","15:30:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-817","15:34:00","15:34:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-817","15:51:00","15:51:00","Sharon",4,"",0,0,1 "CR-Weekday-Fall-16-817","15:59:00","15:59:00","Mansfield",5,"",0,0,1 "CR-Weekday-Fall-16-817","16:07:00","16:07:00","Attleboro",6,"",0,0,1 "CR-Weekday-Fall-16-817","16:17:00","16:17:00","South Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-817","16:27:00","16:27:00","Providence",8,"",0,0,1 "CR-Weekday-Fall-16-817","16:43:00","16:43:00","TF Green Airport",9,"",0,0,1 "CR-Weekday-Fall-16-817","16:59:00","16:59:00","Wickford Junction",10,"",1,0,0 "CR-Weekday-Fall-16-818","11:10:00","11:10:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-818","11:19:00","11:19:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-818","11:29:00","11:29:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-818","11:39:00","11:39:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-818","11:48:00","11:48:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-818","11:55:00","11:55:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-818","12:00:00","12:00:00","Route 128",7,"",0,0,1 "CR-Weekday-Fall-16-818","12:05:00","12:05:00","Hyde Park",8,"",0,0,1 "CR-Weekday-Fall-16-818","12:14:00","12:14:00","Ruggles",9,"",0,0,0 "CR-Weekday-Fall-16-818","12:18:00","12:18:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-818","12:23:00","12:23:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-819","15:55:00","15:55:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-819","16:00:00","16:00:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-819","16:04:00","16:04:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-819","16:22:00","16:22:00","Sharon",4,"",0,0,1 "CR-Weekday-Fall-16-819","16:30:00","16:30:00","Mansfield",5,"",0,0,1 "CR-Weekday-Fall-16-819","16:38:00","16:38:00","Attleboro",6,"",0,0,1 "CR-Weekday-Fall-16-819","16:48:00","16:48:00","South Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-819","16:58:00","16:58:00","Providence",8,"",1,0,0 "CR-Weekday-Fall-16-820","13:00:00","13:00:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-820","13:11:00","13:11:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-820","13:21:00","13:21:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-820","13:31:00","13:31:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-820","13:40:00","13:40:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-820","13:47:00","13:47:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-820","13:52:00","13:52:00","Route 128",7,"",0,0,1 "CR-Weekday-Fall-16-820","13:57:00","13:57:00","Hyde Park",8,"",0,0,1 "CR-Weekday-Fall-16-820","14:06:00","14:06:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-820","14:11:00","14:11:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-821","16:30:00","16:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-821","16:35:00","16:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-821","16:39:00","16:39:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-821","16:53:00","16:53:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-821","17:01:00","17:01:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-821","17:09:00","17:09:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-821","17:17:00","17:17:00","Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-821","17:27:00","17:27:00","South Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-821","17:37:00","17:37:00","Providence",9,"",0,0,1 "CR-Weekday-Fall-16-821","17:53:00","17:53:00","TF Green Airport",10,"",0,0,1 "CR-Weekday-Fall-16-821","18:09:00","18:09:00","Wickford Junction",11,"",1,0,0 "CR-Weekday-Fall-16-822","13:25:00","13:25:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-822","13:39:00","13:39:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-822","13:55:00","13:55:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-822","14:06:00","14:06:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-822","14:16:00","14:16:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-822","14:26:00","14:26:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-822","14:35:00","14:35:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-822","14:43:00","14:43:00","Route 128",8,"",0,0,1 "CR-Weekday-Fall-16-822","14:48:00","14:48:00","Hyde Park",9,"",0,0,1 "CR-Weekday-Fall-16-822","14:57:00","14:57:00","Back Bay",10,"",0,0,0 "CR-Weekday-Fall-16-822","15:02:00","15:02:00","South Station",11,"",1,0,0 "CR-Weekday-Fall-16-823","16:55:00","16:55:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-823","17:00:00","17:00:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-823","17:04:00","17:04:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-823","17:18:00","17:18:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-823","17:26:00","17:26:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-823","17:34:00","17:34:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-823","17:44:00","17:44:00","Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-823","17:57:00","17:57:00","South Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-823","18:07:00","18:07:00","Providence",9,"",1,0,0 "CR-Weekday-Fall-16-824","15:02:00","15:02:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-824","15:13:00","15:13:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-824","15:23:00","15:23:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-824","15:33:00","15:33:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-824","15:42:00","15:42:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-824","15:50:00","15:50:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-824","15:55:00","15:55:00","Route 128",7,"",0,0,1 "CR-Weekday-Fall-16-824","16:00:00","16:00:00","Hyde Park",8,"",0,0,1 "CR-Weekday-Fall-16-824","16:10:00","16:10:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-824","16:15:00","16:15:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-825","17:40:00","17:40:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-825","17:45:00","17:45:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-825","17:49:00","17:49:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-825","18:07:00","18:07:00","Sharon",4,"",0,0,1 "CR-Weekday-Fall-16-825","18:15:00","18:15:00","Mansfield",5,"",0,0,1 "CR-Weekday-Fall-16-825","18:23:00","18:23:00","Attleboro",6,"",0,0,1 "CR-Weekday-Fall-16-825","18:33:00","18:33:00","South Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-825","18:43:00","18:43:00","Providence",8,"",0,0,1 "CR-Weekday-Fall-16-825","18:59:00","18:59:00","TF Green Airport",9,"",0,0,1 "CR-Weekday-Fall-16-825","19:15:00","19:15:00","Wickford Junction",10,"",1,0,0 "CR-Weekday-Fall-16-826","16:08:00","16:08:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-826","16:20:00","16:20:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-826","16:30:00","16:30:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-826","16:40:00","16:40:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-826","16:49:00","16:49:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-826","16:56:00","16:56:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-826","17:01:00","17:01:00","Route 128",7,"",0,0,1 "CR-Weekday-Fall-16-826","17:06:00","17:06:00","Hyde Park",8,"",0,0,1 "CR-Weekday-Fall-16-826","17:17:00","17:17:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-826","17:22:00","17:22:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-827","18:10:00","18:10:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-827","18:15:00","18:15:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-827","18:19:00","18:19:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-827","18:37:00","18:37:00","Sharon",4,"",0,0,1 "CR-Weekday-Fall-16-827","18:45:00","18:45:00","Mansfield",5,"",0,0,1 "CR-Weekday-Fall-16-827","18:53:00","18:53:00","Attleboro",6,"",0,0,1 "CR-Weekday-Fall-16-827","19:03:00","19:03:00","South Attleboro",7,"",0,0,1 "CR-Weekday-Fall-16-827","19:13:00","19:13:00","Providence",8,"",1,0,0 "CR-Weekday-Fall-16-828","17:20:00","17:20:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-828","17:29:00","17:29:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-828","17:39:00","17:39:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-828","17:48:00","17:48:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-828","17:55:00","17:55:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-828","18:03:00","18:03:00","Route 128",6,"",0,0,1 "CR-Weekday-Fall-16-828","18:17:00","18:17:00","Back Bay",7,"",0,0,0 "CR-Weekday-Fall-16-828","18:22:00","18:22:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-829","18:50:00","18:50:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-829","18:55:00","18:55:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-829","18:58:00","18:58:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-829","19:08:00","19:08:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-829","19:13:00","19:13:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-829","19:19:00","19:19:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-829","19:25:00","19:25:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-829","19:33:00","19:33:00","Mansfield",8,"",0,0,1 "CR-Weekday-Fall-16-829","19:41:00","19:41:00","Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-829","19:51:00","19:51:00","South Attleboro",10,"",0,0,1 "CR-Weekday-Fall-16-829","20:01:00","20:01:00","Providence",11,"",0,0,1 "CR-Weekday-Fall-16-829","20:17:00","20:17:00","TF Green Airport",12,"",0,0,1 "CR-Weekday-Fall-16-829","20:33:00","20:33:00","Wickford Junction",13,"",1,0,0 "CR-Weekday-Fall-16-830","17:30:00","17:30:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-830","17:44:00","17:44:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-830","18:00:00","18:00:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-830","18:09:00","18:09:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-830","18:19:00","18:19:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-830","18:28:00","18:28:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-830","18:37:00","18:37:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-830","18:45:00","18:45:00","Route 128",8,"",0,0,1 "CR-Weekday-Fall-16-830","18:55:00","18:55:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-830","19:00:00","19:00:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-831","19:30:00","19:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-831","19:35:00","19:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-831","19:38:00","19:38:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-831","19:52:00","19:52:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-831","19:58:00","19:58:00","Canton Junction",5,"",0,0,1 "CR-Weekday-Fall-16-831","20:04:00","20:04:00","Sharon",6,"",0,0,1 "CR-Weekday-Fall-16-831","20:12:00","20:12:00","Mansfield",7,"",0,0,1 "CR-Weekday-Fall-16-831","20:20:00","20:20:00","Attleboro",8,"",0,0,1 "CR-Weekday-Fall-16-831","20:30:00","20:30:00","South Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-831","20:40:00","20:40:00","Providence",10,"",1,0,0 "CR-Weekday-Fall-16-832","18:55:00","18:55:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-832","19:09:00","19:09:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-832","19:25:00","19:25:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-832","19:34:00","19:34:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-832","19:44:00","19:44:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-832","19:54:00","19:54:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-832","20:03:00","20:03:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-832","20:10:00","20:10:00","Canton Junction",8,"",0,0,1 "CR-Weekday-Fall-16-832","20:15:00","20:15:00","Route 128",9,"",0,0,1 "CR-Weekday-Fall-16-832","20:20:00","20:20:00","Hyde Park",10,"",0,0,1 "CR-Weekday-Fall-16-832","20:29:00","20:29:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-832","20:34:00","20:34:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-833","20:30:00","20:30:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-833","20:35:00","20:35:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-833","20:38:00","20:38:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-833","20:46:00","20:46:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-833","20:51:00","20:51:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-833","20:57:00","20:57:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-833","21:03:00","21:03:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-833","21:11:00","21:11:00","Mansfield",8,"",0,0,1 "CR-Weekday-Fall-16-833","21:19:00","21:19:00","Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-833","21:29:00","21:29:00","South Attleboro",10,"",0,0,1 "CR-Weekday-Fall-16-833","21:39:00","21:39:00","Providence",11,"",1,0,0 "CR-Weekday-Fall-16-834","19:45:00","19:45:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-834","19:59:00","19:59:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-834","20:15:00","20:15:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-834","20:24:00","20:24:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-834","20:34:00","20:34:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-834","20:44:00","20:44:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-834","20:53:00","20:53:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-834","21:00:00","21:00:00","Canton Junction",8,"",0,0,1 "CR-Weekday-Fall-16-834","21:05:00","21:05:00","Route 128",9,"",0,0,1 "CR-Weekday-Fall-16-834","21:10:00","21:10:00","Hyde Park",10,"",0,0,1 "CR-Weekday-Fall-16-834","21:19:00","21:19:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-834","21:24:00","21:24:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-835","22:00:00","22:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-835","22:05:00","22:05:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-835","22:08:00","22:08:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-835","22:18:00","22:18:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-835","22:23:00","22:23:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-835","22:29:00","22:29:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-835","22:35:00","22:35:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-835","22:43:00","22:43:00","Mansfield",8,"",0,0,1 "CR-Weekday-Fall-16-835","22:51:00","22:51:00","Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-835","23:01:00","23:01:00","South Attleboro",10,"",0,0,1 "CR-Weekday-Fall-16-835","23:11:00","23:11:00","Providence",11,"",0,0,1 "CR-Weekday-Fall-16-835","23:27:00","23:27:00","TF Green Airport",12,"",0,0,1 "CR-Weekday-Fall-16-835","23:43:00","23:43:00","Wickford Junction",13,"",1,0,0 "CR-Weekday-Fall-16-836","20:53:00","20:53:00","Wickford Junction",1,"",0,1,1 "CR-Weekday-Fall-16-836","21:07:00","21:07:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-836","21:23:00","21:23:00","Providence",3,"",0,0,1 "CR-Weekday-Fall-16-836","21:34:00","21:34:00","South Attleboro",4,"",0,0,1 "CR-Weekday-Fall-16-836","21:44:00","21:44:00","Attleboro",5,"",0,0,1 "CR-Weekday-Fall-16-836","21:54:00","21:54:00","Mansfield",6,"",0,0,1 "CR-Weekday-Fall-16-836","22:03:00","22:03:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-836","22:10:00","22:10:00","Canton Junction",8,"",0,0,1 "CR-Weekday-Fall-16-836","22:15:00","22:15:00","Route 128",9,"",0,0,1 "CR-Weekday-Fall-16-836","22:20:00","22:20:00","Hyde Park",10,"",0,0,1 "CR-Weekday-Fall-16-836","22:29:00","22:29:00","Back Bay",11,"",0,0,0 "CR-Weekday-Fall-16-836","22:34:00","22:34:00","South Station",12,"",1,0,0 "CR-Weekday-Fall-16-837","23:00:00","23:00:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-837","23:05:00","23:05:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-837","23:08:00","23:08:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-837","23:18:00","23:18:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-837","23:23:00","23:23:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-837","23:29:00","23:29:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-837","23:35:00","23:35:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-837","23:43:00","23:43:00","Mansfield",8,"",0,0,1 "CR-Weekday-Fall-16-837","23:51:00","23:51:00","Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-837","24:01:00","24:01:00","South Attleboro",10,"",0,0,1 "CR-Weekday-Fall-16-837","24:11:00","24:11:00","Providence",11,"",1,0,0 "CR-Weekday-Fall-16-838","22:30:00","22:30:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-838","22:39:00","22:39:00","South Attleboro",2,"",0,0,1 "CR-Weekday-Fall-16-838","22:49:00","22:49:00","Attleboro",3,"",0,0,1 "CR-Weekday-Fall-16-838","22:59:00","22:59:00","Mansfield",4,"",0,0,1 "CR-Weekday-Fall-16-838","23:08:00","23:08:00","Sharon",5,"",0,0,1 "CR-Weekday-Fall-16-838","23:15:00","23:15:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-838","23:20:00","23:20:00","Route 128",7,"",0,0,1 "CR-Weekday-Fall-16-838","23:25:00","23:25:00","Hyde Park",8,"",0,0,1 "CR-Weekday-Fall-16-838","23:34:00","23:34:00","Back Bay",9,"",0,0,0 "CR-Weekday-Fall-16-838","23:39:00","23:39:00","South Station",10,"",1,0,0 "CR-Weekday-Fall-16-839","23:59:00","23:59:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-839","24:04:00","24:04:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-839","24:07:00","24:07:00","Ruggles",3,"",0,0,1 "CR-Weekday-Fall-16-839","24:17:00","24:17:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-839","24:22:00","24:22:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-839","24:28:00","24:28:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-839","24:34:00","24:34:00","Sharon",7,"",0,0,1 "CR-Weekday-Fall-16-839","24:42:00","24:42:00","Mansfield",8,"",0,0,1 "CR-Weekday-Fall-16-839","24:50:00","24:50:00","Attleboro",9,"",0,0,1 "CR-Weekday-Fall-16-839","25:00:00","25:00:00","South Attleboro",10,"",0,0,1 "CR-Weekday-Fall-16-839","25:10:00","25:10:00","Providence",11,"",1,0,0 "CR-Weekday-Fall-16-842","7:12:00","7:12:00","Attleboro",1,"",0,1,1 "CR-Weekday-Fall-16-842","7:22:00","7:22:00","Mansfield",2,"",0,0,1 "CR-Weekday-Fall-16-842","7:33:00","7:33:00","Sharon",3,"",0,0,1 "CR-Weekday-Fall-16-842","7:40:00","7:40:00","Canton Junction",4,"",0,0,1 "CR-Weekday-Fall-16-842","7:45:00","7:45:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-842","7:51:00","7:51:00","Hyde Park",6,"",0,0,1 "CR-Weekday-Fall-16-842","8:00:00","8:00:00","Back Bay",7,"",0,0,0 "CR-Weekday-Fall-16-842","8:06:00","8:06:00","South Station",8,"",1,0,0 "CR-Weekday-Fall-16-843","6:18:00","6:18:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-843","6:23:00","6:23:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-843","6:37:00","6:37:00","Route 128",3,"",0,0,1 "CR-Weekday-Fall-16-843","6:55:00","6:55:00","Attleboro",4,"",1,0,0 "CR-Weekday-Fall-16-8801","4:58:00","4:58:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-8801","5:14:00","5:14:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-8801","5:30:00","5:30:00","Wickford Junction",3,"",1,0,0 "CR-Weekday-Fall-16-8803","5:49:00","5:49:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-8803","6:07:00","6:07:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-8803","6:21:00","6:21:00","Wickford Junction",3,"",1,0,0 "CR-Weekday-Fall-16-8805","6:55:00","6:55:00","Providence",1,"",0,1,1 "CR-Weekday-Fall-16-8805","7:11:00","7:11:00","TF Green Airport",2,"",0,0,1 "CR-Weekday-Fall-16-8805","7:27:00","7:27:00","Wickford Junction",3,"",1,0,0 "CR-Weekday-Fall-16-900","6:20:00","6:20:00","Stoughton",1,"",0,1,1 "CR-Weekday-Fall-16-900","6:28:00","6:28:00","Canton Center",2,"",0,0,1 "CR-Weekday-Fall-16-900","6:31:00","6:31:00","Canton Junction",3,"",0,0,1 "CR-Weekday-Fall-16-900","6:37:00","6:37:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-900","6:43:00","6:43:00","Hyde Park",5,"",0,0,1 "CR-Weekday-Fall-16-900","6:52:00","6:52:00","Back Bay",6,"",0,0,0 "CR-Weekday-Fall-16-900","6:58:00","6:58:00","South Station",7,"",1,0,0 "CR-Weekday-Fall-16-901","5:20:00","5:20:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-901","5:25:00","5:25:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-901","5:37:00","5:37:00","Route 128",3,"",0,0,1 "CR-Weekday-Fall-16-901","5:45:00","5:45:00","Canton Center",4,"",0,0,1 "CR-Weekday-Fall-16-901","5:53:00","5:53:00","Stoughton",5,"",1,0,0 "CR-Weekday-Fall-16-902","6:45:00","6:45:00","Stoughton",1,"",0,1,1 "CR-Weekday-Fall-16-902","6:53:00","6:53:00","Canton Center",2,"",0,0,1 "CR-Weekday-Fall-16-902","6:56:00","6:56:00","Canton Junction",3,"",0,0,1 "CR-Weekday-Fall-16-902","7:02:00","7:02:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-902","7:08:00","7:08:00","Hyde Park",5,"",0,0,1 "CR-Weekday-Fall-16-902","7:17:00","7:17:00","Back Bay",6,"",0,0,0 "CR-Weekday-Fall-16-902","7:23:00","7:23:00","South Station",7,"",1,0,0 "CR-Weekday-Fall-16-903","6:59:00","6:59:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-903","7:04:00","7:04:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-903","7:19:00","7:19:00","Route 128",3,"",0,0,1 "CR-Weekday-Fall-16-903","7:25:00","7:25:00","Canton Junction",4,"",0,0,1 "CR-Weekday-Fall-16-903","7:28:00","7:28:00","Canton Center",5,"",0,0,1 "CR-Weekday-Fall-16-903","7:36:00","7:36:00","Stoughton",6,"",1,0,0 "CR-Weekday-Fall-16-904","7:50:00","7:50:00","Stoughton",1,"",0,1,1 "CR-Weekday-Fall-16-904","7:58:00","7:58:00","Canton Center",2,"",0,0,1 "CR-Weekday-Fall-16-904","8:01:00","8:01:00","Canton Junction",3,"",0,0,1 "CR-Weekday-Fall-16-904","8:06:00","8:06:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-904","8:20:00","8:20:00","Ruggles",5,"",0,0,0 "CR-Weekday-Fall-16-904","8:24:00","8:24:00","Back Bay",6,"",0,0,0 "CR-Weekday-Fall-16-904","8:30:00","8:30:00","South Station",7,"",1,0,0 "CR-Weekday-Fall-16-905","7:35:00","7:35:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-905","7:40:00","7:40:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-905","7:55:00","7:55:00","Route 128",3,"",0,0,1 "CR-Weekday-Fall-16-905","8:01:00","8:01:00","Canton Junction",4,"",0,0,1 "CR-Weekday-Fall-16-905","8:04:00","8:04:00","Canton Center",5,"",0,0,1 "CR-Weekday-Fall-16-905","8:12:00","8:12:00","Stoughton",6,"",1,0,0 "CR-Weekday-Fall-16-906","8:30:00","8:30:00","Stoughton",1,"",0,1,1 "CR-Weekday-Fall-16-906","8:38:00","8:38:00","Canton Center",2,"",0,0,1 "CR-Weekday-Fall-16-906","8:41:00","8:41:00","Canton Junction",3,"",0,0,1 "CR-Weekday-Fall-16-906","8:46:00","8:46:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-906","8:51:00","8:51:00","Hyde Park",5,"",0,0,1 "CR-Weekday-Fall-16-906","9:00:00","9:00:00","Back Bay",6,"",0,0,0 "CR-Weekday-Fall-16-906","9:06:00","9:06:00","South Station",7,"",1,0,0 "CR-Weekday-Fall-16-907","8:23:00","8:23:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-907","8:28:00","8:28:00","Back Bay",2,"",0,0,1 "CR-Weekday-Fall-16-907","8:43:00","8:43:00","Route 128",3,"",0,0,1 "CR-Weekday-Fall-16-907","8:49:00","8:49:00","Canton Junction",4,"",0,0,1 "CR-Weekday-Fall-16-907","8:52:00","8:52:00","Canton Center",5,"",0,0,1 "CR-Weekday-Fall-16-907","9:00:00","9:00:00","Stoughton",6,"",1,0,0 "CR-Weekday-Fall-16-908","9:15:00","9:15:00","Stoughton",1,"",0,1,1 "CR-Weekday-Fall-16-908","9:23:00","9:23:00","Canton Center",2,"",0,0,1 "CR-Weekday-Fall-16-908","9:26:00","9:26:00","Canton Junction",3,"",0,0,1 "CR-Weekday-Fall-16-908","9:31:00","9:31:00","Route 128",4,"",0,0,1 "CR-Weekday-Fall-16-908","9:36:00","9:36:00","Hyde Park",5,"",0,0,1 "CR-Weekday-Fall-16-908","9:45:00","9:45:00","Back Bay",6,"",0,0,0 "CR-Weekday-Fall-16-908","9:51:00","9:51:00","South Station",7,"",1,0,0 "CR-Weekday-Fall-16-909","10:01:00","10:01:00","Hyde Park",4,"",0,0,1 "CR-Weekday-Fall-16-909","10:08:00","10:08:00","Route 128",5,"",0,0,1 "CR-Weekday-Fall-16-909","10:14:00","10:14:00","Canton Junction",6,"",0,0,1 "CR-Weekday-Fall-16-909","10:17:00","10:17:00","Canton Center",7,"",0,0,1 "CR-Weekday-Fall-16-909","10:25:00","10:25:00","Stoughton",8,"",1,0,0 "CR-Weekday-Fall-16-909","9:45:00","9:45:00","South Station",1,"",0,1,1 "CR-Weekday-Fall-16-909","9:50:00","9:50:00","Back Bay",2,"",0,0,1 csv-1.3.0/examples/data/bench/nfl.csv000064400000000000000000051512621046102023000155360ustar 00000000000000gameid,qtr,min,sec,off,def,down,togo,ydline,description,offscore,defscore,season 20120905_DAL@NYG,1,,0,DAL,NYG,,,,D.Bailey kicks 69 yards from DAL 35 to NYG -4. D.Wilson to NYG 16 for 20 yards (A.Holmes).,0,0,2012 20120905_DAL@NYG,1,59,56,NYG,DAL,1,10,84,(14:56) E.Manning pass incomplete deep left to H.Nicks.,0,0,2012 20120905_DAL@NYG,1,59,49,NYG,DAL,2,10,84,(14:49) E.Manning pass short middle to V.Cruz to NYG 21 for 5 yards (S.Lee) [J.Hatcher].,0,0,2012 20120905_DAL@NYG,1,59,5,NYG,DAL,3,5,79,(14:05) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,0,0,2012 20120905_DAL@NYG,1,58,58,NYG,DAL,4,5,79,(13:58) S.Weatherford punts 56 yards to DAL 23 Center-Z.DeOssie. D.Bryant to DAL 24 for 1 yard (Z.DeOssie).,0,0,2012 20120905_DAL@NYG,1,58,44,DAL,NYG,1,10,76,(13:44) D.Murray left guard to DAL 27 for 3 yards (C.Blackburn).,0,0,2012 20120905_DAL@NYG,1,58,7,DAL,NYG,2,7,73,(13:07) T.Romo sacked at DAL 19 for -8 yards (R.Bernard).,0,0,2012 20120905_DAL@NYG,1,57,27,DAL,NYG,3,15,81,(12:27) (Shotgun) T.Romo pass incomplete short left to F.Jones.,0,0,2012 20120905_DAL@NYG,1,57,21,DAL,NYG,4,15,81,(12:21) C.Jones punts 60 yards to NYG 21 Center-L.Ladouceur. D.Hixon to NYG 31 for 10 yards (A.Albright L.Vickers). PENALTY on NYG-J.Hosley Clipping 13 yards enforced at NYG 26. Officially a return for 5 yards.,0,0,2012 20120905_DAL@NYG,1,57,9,NYG,DAL,1,10,87,(12:09) A.Bradshaw left tackle to NYG 15 for 2 yards (J.Hatcher J.Price-Brent).,0,0,2012 20120905_DAL@NYG,1,56,31,NYG,DAL,2,8,85,(11:31) D.Wilson right tackle to NYG 18 for 3 yards (D.Ware S.Lee).,0,0,2012 20120905_DAL@NYG,1,55,50,NYG,DAL,3,5,82,(10:50) (Shotgun) E.Manning pass deep left to V.Cruz ran ob at NYG 44 for 26 yards (B.Carr).,0,0,2012 20120905_DAL@NYG,1,55,20,NYG,DAL,1,10,56,(10:20) E.Manning pass short middle to M.Bennett to DAL 47 for 9 yards (B.Carter).,0,0,2012 20120905_DAL@NYG,1,54,36,NYG,DAL,2,1,47,(9:36) PENALTY on NYG-V.Cruz False Start 5 yards enforced at DAL 47 - No Play.,0,0,2012 20120905_DAL@NYG,1,54,12,NYG,DAL,2,6,52,(9:12) E.Manning pass short right to M.Bennett to DAL 42 for 10 yards (S.Lee B.Carter).,0,0,2012 20120905_DAL@NYG,1,53,29,NYG,DAL,1,10,42,(8:29) A.Bradshaw left tackle to DAL 39 for 3 yards (D.Ware S.Lee).,0,0,2012 20120905_DAL@NYG,1,52,53,NYG,DAL,2,7,39,(7:53) E.Manning pass short left to H.Nicks pushed ob at DAL 31 for 8 yards (M.Claiborne).,0,0,2012 20120905_DAL@NYG,1,52,25,NYG,DAL,1,10,31,(7:25) A.Bradshaw right tackle to DAL 29 for 2 yards (D.Ware S.Lissemore).,0,0,2012 20120905_DAL@NYG,1,51,43,NYG,DAL,2,8,29,(6:43) D.Wilson left end to DAL 27 for 2 yards (S.Lee). FUMBLES (S.Lee) RECOVERED by DAL-B.Church at DAL 28. B.Church to DAL 34 for 6 yards (C.Snee). Officially a rush for 1 yard.,0,0,2012 20120905_DAL@NYG,1,51,33,DAL,NYG,1,10,66,(6:33) D.Murray left tackle to DAL 36 for 2 yards (L.Joseph R.Bernard).,0,0,2012 20120905_DAL@NYG,1,50,54,DAL,NYG,2,8,64,(5:54) (Shotgun) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 36 - No Play.,0,0,2012 20120905_DAL@NYG,1,50,39,DAL,NYG,2,13,69,(5:39) (Shotgun) T.Romo pass short middle to M.Austin to DAL 40 for 9 yards (K.Rivers J.Hosley).,0,0,2012 20120905_DAL@NYG,1,50,1,DAL,NYG,3,4,60,(5:01) (Shotgun) T.Romo pass short right to K.Ogletree to NYG 46 for 14 yards (J.Williams K.Phillips).,0,0,2012 20120905_DAL@NYG,1,49,26,DAL,NYG,1,10,46,(4:26) PENALTY on DAL-J.Witten False Start 5 yards enforced at NYG 46 - No Play.,0,0,2012 20120905_DAL@NYG,1,49,9,DAL,NYG,1,15,51,(4:09) D.Murray left guard to NYG 46 for 5 yards (K.Rivers).,0,0,2012 20120905_DAL@NYG,1,48,22,DAL,NYG,2,10,46,(3:22) (Shotgun) T.Romo pass incomplete deep left to D.Bryant (C.Webster).,0,0,2012 20120905_DAL@NYG,1,48,13,DAL,NYG,3,10,46,(3:13) (Shotgun) T.Romo pass short left to K.Ogletree to NYG 37 for 9 yards (A.Rolle M.Coe).,0,0,2012 20120905_DAL@NYG,1,47,46,DAL,NYG,4,1,37,(2:46) L.Vickers left guard to NYG 37 for no gain (A.Rolle K.Rivers).,0,0,2012 20120905_DAL@NYG,1,47,12,NYG,DAL,1,10,63,(2:12) E.Manning pass short right to H.Nicks to NYG 47 for 10 yards (M.Claiborne).,0,0,2012 20120905_DAL@NYG,1,46,35,NYG,DAL,1,10,53,(1:35) A.Bradshaw left end to 50 for 3 yards (S.Lissemore A.Spencer).,0,0,2012 20120905_DAL@NYG,1,45,58,NYG,DAL,2,7,50,(:58) A.Bradshaw right guard to DAL 45 for 5 yards (J.Hatcher).,0,0,2012 20120905_DAL@NYG,1,45,21,NYG,DAL,3,2,45,(:21) (Shotgun) E.Manning pass short right to V.Cruz pushed ob at DAL 41 for 4 yards (O.Scandrick).,0,0,2012 20120905_DAL@NYG,2,45,0,NYG,DAL,1,10,41,(15:00) E.Manning sacked at NYG 44 for -15 yards (D.Ware).,0,0,2012 20120905_DAL@NYG,2,44,30,NYG,DAL,2,25,56,(14:30) (Shotgun) E.Manning pass short middle to V.Cruz to DAL 45 for 11 yards (S.Lee).,0,0,2012 20120905_DAL@NYG,2,43,46,NYG,DAL,3,14,45,(13:46) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,0,0,2012 20120905_DAL@NYG,2,43,36,NYG,DAL,4,14,45,(13:36) S.Weatherford punts 45 yards to end zone Center-Z.DeOssie Touchback.,0,0,2012 20120905_DAL@NYG,2,43,27,DAL,NYG,1,10,80,(13:27) T.Romo pass short middle to D.Bryant to DAL 38 for 18 yards (C.Blackburn).,0,0,2012 20120905_DAL@NYG,2,42,41,DAL,NYG,1,10,62,(12:41) D.Murray right end to DAL 37 for -1 yards (K.Rivers).,0,0,2012 20120905_DAL@NYG,2,41,57,DAL,NYG,2,11,63,(11:57) T.Romo up the middle to DAL 45 for 8 yards (J.Tuck).,0,0,2012 20120905_DAL@NYG,2,41,10,DAL,NYG,3,3,55,(11:10) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 45 - No Play.,0,0,2012 20120905_DAL@NYG,2,40,46,DAL,NYG,3,8,60,(10:46) (Shotgun) T.Romo pass short middle intended for K.Ogletree INTERCEPTED by M.Boley at NYG 47. M.Boley pushed ob at DAL 2 for 51 yards (T.Smith). PENALTY on DAL-T.Smith Horse Collar Tackle 1 yard enforced at DAL 2.,0,0,2012 20120905_DAL@NYG,2,40,30,NYG,DAL,1,1,1,(10:30) A.Bradshaw right end pushed ob at DAL 3 for -2 yards (A.Spencer).,0,0,2012 20120905_DAL@NYG,2,40,5,NYG,DAL,2,3,3,(10:05) A.Bradshaw left tackle to DAL 4 for -1 yards (M.Spears J.Price-Brent).,0,0,2012 20120905_DAL@NYG,2,39,23,NYG,DAL,3,4,4,(9:23) (Shotgun) E.Manning pass incomplete short middle to V.Cruz (O.Scandrick).,0,0,2012 20120905_DAL@NYG,2,39,14,NYG,DAL,4,4,4,(9:14) L.Tynes 22 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 20120905_DAL@NYG,2,39,14,NYG,DAL,,,4,L.Tynes kicks 67 yards from NYG 35 to DAL -2. F.Jones to DAL 20 for 22 yards (W.Hill).,3,0,2012 20120905_DAL@NYG,2,39,5,DAL,NYG,1,10,80,(9:05) D.Murray right tackle to DAL 22 for 2 yards (M.Coe K.Rivers).,0,3,2012 20120905_DAL@NYG,2,38,33,DAL,NYG,2,8,78,(8:33) T.Romo pass short left to J.Hanna to DAL 32 for 10 yards (K.Rivers).,0,3,2012 20120905_DAL@NYG,2,37,59,DAL,NYG,1,10,68,(7:59) D.Murray right tackle to DAL 35 for 3 yards (R.Bernard J.Pierre-Paul).,0,3,2012 20120905_DAL@NYG,2,37,20,DAL,NYG,2,7,65,(7:20) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 35 - No Play.,0,3,2012 20120905_DAL@NYG,2,36,52,DAL,NYG,2,12,70,(6:52) D.Murray left guard to DAL 27 for -3 yards (J.Pierre-Paul).,0,3,2012 20120905_DAL@NYG,2,36,6,DAL,NYG,3,15,73,(6:06) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 36 for 9 yards (M.Coe).,0,3,2012 20120905_DAL@NYG,2,35,28,DAL,NYG,4,6,64,(5:28) C.Jones punts 48 yards to NYG 16 Center-L.Ladouceur fair catch by D.Hixon.,0,3,2012 20120905_DAL@NYG,2,35,18,NYG,DAL,1,10,84,(5:18) A.Bradshaw left guard to NYG 16 for no gain (B.Carter).,3,0,2012 20120905_DAL@NYG,2,34,37,NYG,DAL,2,10,84,(4:37) A.Bradshaw right end to NYG 18 for 2 yards (K.Coleman A.Spencer).,3,0,2012 20120905_DAL@NYG,2,33,50,NYG,DAL,3,8,82,(3:50) (Shotgun) E.Manning pass incomplete deep right to M.Bennett.,3,0,2012 20120905_DAL@NYG,2,33,42,NYG,DAL,4,8,82,(3:42) S.Weatherford punts 54 yards to DAL 28 Center-Z.DeOssie. D.Bryant ran ob at DAL 27 for -1 yards.,3,0,2012 20120905_DAL@NYG,2,33,34,DAL,NYG,1,10,73,(3:34) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 27 - No Play.,0,3,2012 20120905_DAL@NYG,2,33,34,DAL,NYG,1,15,78,(3:34) T.Romo pass short left to D.Bryant ran ob at DAL 35 for 13 yards.,0,3,2012 20120905_DAL@NYG,2,33,11,DAL,NYG,2,2,65,(3:11) T.Romo pass short left to J.Witten to DAL 38 for 3 yards (C.Blackburn M.Coe).,0,3,2012 20120905_DAL@NYG,2,32,34,DAL,NYG,1,10,62,(2:34) D.Murray left guard to DAL 47 for 9 yards (K.Phillips).,0,3,2012 20120905_DAL@NYG,2,32,4,DAL,NYG,2,1,53,(2:04) T.Romo pass incomplete short right to K.Ogletree.,0,3,2012 20120905_DAL@NYG,2,31,59,DAL,NYG,3,1,53,(1:59) (Shotgun) T.Romo pass deep right to D.Bryant to NYG 15 for 38 yards (K.Phillips).,0,3,2012 20120905_DAL@NYG,2,31,15,DAL,NYG,1,10,15,(1:15) (Shotgun) T.Romo pass short right to K.Ogletree to NYG 10 for 5 yards (J.Williams).,0,3,2012 20120905_DAL@NYG,2,31,7,DAL,NYG,2,5,10,(1:07) (Shotgun) T.Romo pass short middle to K.Ogletree for 10 yards TOUCHDOWN.,0,3,2012 20120905_DAL@NYG,2,31,7,DAL,NYG,,,10,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,3,2012 20120905_DAL@NYG,2,31,7,DAL,NYG,,,10,D.Bailey kicks 67 yards from DAL 35 to NYG -2. D.Wilson to NYG 30 for 32 yards (B.Church).,7,3,2012 20120905_DAL@NYG,2,30,54,NYG,DAL,1,10,70,(:54) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,3,7,2012 20120905_DAL@NYG,2,30,48,NYG,DAL,2,10,70,(:48) (Shotgun) E.Manning sacked at NYG 24 for -6 yards (D.Ware).,3,7,2012 20120905_DAL@NYG,2,30,4,NYG,DAL,3,16,76,(:04) (Shotgun) A.Bradshaw up the middle to NYG 29 for 5 yards (A.Spencer).,3,7,2012 20120905_DAL@NYG,3,30,0,NYG,DAL,,,76,L.Tynes kicks 73 yards from NYG 35 to DAL -8. F.Jones Touchback.,3,7,2012 20120905_DAL@NYG,3,30,0,DAL,NYG,1,10,80,(15:00) T.Romo pass short right to D.Murray to DAL 29 for 9 yards (M.Kiwanuka J.Tuck).,7,3,2012 20120905_DAL@NYG,3,29,25,DAL,NYG,2,1,71,(14:25) D.Murray left guard to DAL 31 for 2 yards (J.Pierre-Paul J.Williams).,7,3,2012 20120905_DAL@NYG,3,28,42,DAL,NYG,1,10,69,(13:42) T.Romo pass short left to D.Murray to DAL 31 for no gain (A.Rolle).,7,3,2012 20120905_DAL@NYG,3,28,0,DAL,NYG,2,10,69,(13:00) D.Murray left tackle to DAL 40 for 9 yards (A.Rolle J.Williams).,7,3,2012 20120905_DAL@NYG,3,27,8,DAL,NYG,3,1,60,(12:08) D.Murray left end to DAL 44 for 4 yards (A.Rolle).,7,3,2012 20120905_DAL@NYG,3,26,27,DAL,NYG,1,10,56,(11:27) T.Romo pass incomplete short middle to F.Jones.,7,3,2012 20120905_DAL@NYG,3,26,20,DAL,NYG,2,10,56,(11:20) T.Romo pass short right to D.Bryant to NYG 40 for 16 yards (A.Rolle).,7,3,2012 20120905_DAL@NYG,3,25,42,DAL,NYG,1,10,40,(10:42) T.Romo pass incomplete short left to J.Witten.,7,3,2012 20120905_DAL@NYG,3,25,32,DAL,NYG,2,10,40,(10:32) T.Romo pass deep right to K.Ogletree for 40 yards TOUCHDOWN.,7,3,2012 20120905_DAL@NYG,3,25,32,DAL,NYG,,,40,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,7,3,2012 20120905_DAL@NYG,3,25,32,DAL,NYG,,,40,D.Bailey kicks 61 yards from DAL 35 to NYG 4. A.Brown to NYG 11 for 7 yards (J.Hanna A.Albright).,14,3,2012 20120905_DAL@NYG,3,25,19,NYG,DAL,1,10,89,(10:19) (Shotgun) E.Manning pass short right to D.Hixon to NYG 23 for 12 yards (B.Carter).,3,14,2012 20120905_DAL@NYG,3,24,47,NYG,DAL,1,10,77,(9:47) A.Bradshaw left guard to NYG 25 for 2 yards (J.Hatcher).,3,14,2012 20120905_DAL@NYG,3,24,11,NYG,DAL,2,8,75,(9:11) E.Manning pass short right to M.Bennett pushed ob at NYG 37 for 12 yards (A.Spencer; B.Church). PENALTY on NYG-V.Cruz Illegal Block Above the Waist 10 yards enforced at NYG 37.,3,14,2012 20120905_DAL@NYG,3,23,46,NYG,DAL,2,6,73,(8:46) (Shotgun) E.Manning pass short right to A.Bradshaw to NYG 33 for 6 yards (S.Lee).,3,14,2012 20120905_DAL@NYG,3,22,52,NYG,DAL,1,10,67,(7:52) E.Manning pass short left to H.Nicks to NYG 45 for 12 yards (M.Claiborne).,3,14,2012 20120905_DAL@NYG,3,22,20,NYG,DAL,1,10,55,(7:20) A.Bradshaw left end to 50 for 5 yards (G.Sensabaugh).,3,14,2012 20120905_DAL@NYG,3,21,48,NYG,DAL,2,5,50,(6:48) E.Manning pass short right to H.Hynoski to DAL 49 for 1 yard (A.Spencer) [V.Butler].,3,14,2012 20120905_DAL@NYG,3,21,9,NYG,DAL,3,4,49,(6:09) (Shotgun) E.Manning pass deep left to D.Hixon to DAL 10 for 39 yards (M.Silva).,3,14,2012 20120905_DAL@NYG,3,20,19,NYG,DAL,1,10,10,(5:19) A.Bradshaw left tackle for 10 yards TOUCHDOWN.,3,14,2012 20120905_DAL@NYG,3,20,19,NYG,DAL,,,10,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,14,2012 20120905_DAL@NYG,3,20,19,NYG,DAL,,,10,L.Tynes kicks 70 yards from NYG 35 to DAL -5. F.Jones to DAL 20 for 25 yards (J.Williams S.Paysinger).,10,14,2012 20120905_DAL@NYG,3,20,4,DAL,NYG,1,10,80,(5:04) T.Romo pass short middle to J.Witten to DAL 27 for 7 yards (J.Williams).,14,10,2012 20120905_DAL@NYG,3,19,35,DAL,NYG,2,3,73,(4:35) D.Murray right end to NYG 25 for 48 yards (A.Rolle).,14,10,2012 20120905_DAL@NYG,3,18,42,DAL,NYG,1,10,25,(3:42) T.Romo pass short middle to J.Phillips to NYG 19 for 6 yards (C.Blackburn).,14,10,2012 20120905_DAL@NYG,3,17,53,DAL,NYG,2,4,19,(2:53) (Shotgun) T.Romo scrambles up the middle to NYG 10 for 9 yards (M.Coe).,14,10,2012 20120905_DAL@NYG,3,17,20,DAL,NYG,1,10,10,(2:20) D.Murray up the middle to NYG 6 for 4 yards (K.Rivers C.Blackburn).,14,10,2012 20120905_DAL@NYG,3,16,33,DAL,NYG,2,6,6,(1:33) (Shotgun) T.Romo sacked at NYG 15 for -9 yards (L.Joseph).,14,10,2012 20120905_DAL@NYG,3,15,53,DAL,NYG,3,15,15,(:53) (Shotgun) T.Romo pass incomplete short middle to K.Ogletree (M.Coe).,14,10,2012 20120905_DAL@NYG,3,15,45,DAL,NYG,4,15,15,(:45) D.Bailey 33 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,14,10,2012 20120905_DAL@NYG,3,15,45,DAL,NYG,,,15,D.Bailey kicks 69 yards from DAL 35 to NYG -4. A.Brown to NYG 18 for 22 yards (M.Silva).,17,10,2012 20120905_DAL@NYG,3,15,34,NYG,DAL,1,10,82,(:34) A.Bradshaw left tackle to NYG 23 for 5 yards (M.Spears).,10,17,2012 20120905_DAL@NYG,4,15,0,NYG,DAL,2,5,77,(15:00) E.Manning pass incomplete short right to V.Cruz.,10,17,2012 20120905_DAL@NYG,4,14,55,NYG,DAL,3,5,77,(14:55) (Shotgun) E.Manning pass incomplete short left to A.Bradshaw [J.Hatcher]. PENALTY on DAL-J.Hatcher Roughing the Passer 15 yards enforced at NYG 23 - No Play.,10,17,2012 20120905_DAL@NYG,4,14,49,NYG,DAL,1,10,62,(14:49) A.Bradshaw right tackle to NYG 38 for no gain (B.Carter).,10,17,2012 20120905_DAL@NYG,4,14,13,NYG,DAL,2,10,62,(14:13) E.Manning pass short right to B.Pascoe to NYG 44 for 6 yards (S.Lee).,10,17,2012 20120905_DAL@NYG,4,13,28,NYG,DAL,3,4,56,(13:28) (Shotgun) E.Manning sacked at NYG 39 for -5 yards (J.Hatcher).,10,17,2012 20120905_DAL@NYG,4,13,17,NYG,DAL,4,9,61,(13:17) S.Weatherford punts 46 yards to DAL 15 Center-Z.DeOssie. D.Harris to DAL 18 for 3 yards (S.Brown).,10,17,2012 20120905_DAL@NYG,4,13,3,DAL,NYG,1,10,82,(13:03) D.Murray up the middle to DAL 23 for 5 yards (J.Tryon M.Kuhn).,17,10,2012 20120905_DAL@NYG,4,12,14,DAL,NYG,2,5,77,(12:14) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 23 - No Play.,17,10,2012 20120905_DAL@NYG,4,12,0,DAL,NYG,2,10,82,(12:00) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 32 for 14 yards (A.Rolle J.Tryon).,17,10,2012 20120905_DAL@NYG,4,11,27,DAL,NYG,1,10,68,(11:27) D.Murray left tackle to DAL 37 for 5 yards (M.Boley J.Tuck).,17,10,2012 20120905_DAL@NYG,4,10,46,DAL,NYG,2,5,63,(10:46) T.Romo pass deep right to M.Austin to NYG 43 for 20 yards (C.Webster).,17,10,2012 20120905_DAL@NYG,4,10,11,DAL,NYG,1,10,43,(10:11) D.Murray left tackle to NYG 34 for 9 yards (A.Rolle).,17,10,2012 20120905_DAL@NYG,4,9,33,DAL,NYG,2,1,34,(9:33) D.Murray right guard to NYG 38 for -4 yards (M.Boley). PENALTY on NYG-L.Joseph Defensive Offside 5 yards enforced at NYG 34 - No Play.,17,10,2012 20120905_DAL@NYG,4,9,8,DAL,NYG,1,10,29,(9:08) PENALTY on DAL-T.Smith False Start 5 yards enforced at NYG 29 - No Play.,17,10,2012 20120905_DAL@NYG,4,8,45,DAL,NYG,1,15,34,(8:45) (Shotgun) T.Romo pass short right to M.Austin to NYG 24 for 10 yards (O.Umenyiora).,17,10,2012 20120905_DAL@NYG,4,8,4,DAL,NYG,2,5,24,(8:04) D.Murray left tackle to NYG 22 for 2 yards (M.Boley C.Blackburn). PENALTY on DAL-D.Bryant Illegal Motion 5 yards enforced at NYG 24 - No Play.,17,10,2012 20120905_DAL@NYG,4,7,48,DAL,NYG,2,10,29,(7:48) D.Murray left tackle to NYG 14 for 15 yards (C.Webster).,17,10,2012 20120905_DAL@NYG,4,7,8,DAL,NYG,1,10,14,(7:08) D.Murray left end to NYG 11 for 3 yards (C.Blackburn). PENALTY on DAL-M.Bernadeau Illegal Use of Hands 10 yards enforced at NYG 14 - No Play.,17,10,2012 20120905_DAL@NYG,4,6,39,DAL,NYG,1,20,24,(6:39) T.Romo pass short right to K.Ogletree to NYG 8 for 16 yards (J.Tryon). PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at NYG 24 - No Play.,17,10,2012 20120905_DAL@NYG,4,6,12,DAL,NYG,1,30,34,(6:12) T.Romo pass deep left to M.Austin for 34 yards TOUCHDOWN.,17,10,2012 20120905_DAL@NYG,4,6,12,DAL,NYG,,,34,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,17,10,2012 20120905_DAL@NYG,4,6,12,DAL,NYG,,,34,D.Bailey kicks 63 yards from DAL 35 to NYG 2. D.Wilson to NYG 21 for 19 yards (G.Sensabaugh).,24,10,2012 20120905_DAL@NYG,4,5,51,NYG,DAL,1,10,79,(5:51) (Shotgun) E.Manning pass short middle to A.Bradshaw to NYG 30 for 9 yards (O.Scandrick J.Hatcher).,10,24,2012 20120905_DAL@NYG,4,5,21,NYG,DAL,2,1,70,(5:21) (No Huddle Shotgun) E.Manning pass incomplete short right to D.Hixon (B.Carr).,10,24,2012 20120905_DAL@NYG,4,5,14,NYG,DAL,3,1,70,(5:14) (Shotgun) A.Bradshaw right guard to DAL 37 for 33 yards (S.Lee).,10,24,2012 20120905_DAL@NYG,4,4,44,NYG,DAL,1,10,37,(4:44) (No Huddle Shotgun) E.Manning pass incomplete short middle to M.Bennett.,10,24,2012 20120905_DAL@NYG,4,4,38,NYG,DAL,2,10,37,(4:38) (Shotgun) E.Manning pass incomplete deep left to V.Cruz.,10,24,2012 20120905_DAL@NYG,4,4,30,NYG,DAL,3,10,37,(4:30) (Shotgun) E.Manning pass short right to H.Nicks to DAL 29 for 8 yards (M.Claiborne).,10,24,2012 20120905_DAL@NYG,4,4,3,NYG,DAL,4,2,29,(4:03) (Shotgun) E.Manning pass short middle to V.Cruz to DAL 22 for 7 yards (S.Lee). Penalty on DAL-D.Ware Defensive Offside declined.,10,24,2012 20120905_DAL@NYG,4,3,56,NYG,DAL,1,10,22,(3:56) (No Huddle Shotgun) E.Manning pass incomplete deep middle to D.Hixon.,10,24,2012 20120905_DAL@NYG,4,3,51,NYG,DAL,2,10,22,(3:51) (Shotgun) E.Manning pass short left to D.Hixon to DAL 18 for 4 yards (S.Lee).,10,24,2012 20120905_DAL@NYG,4,3,27,NYG,DAL,3,6,18,(3:27) (Shotgun) E.Manning pass short right to V.Cruz to DAL 13 for 5 yards (B.Carr).,10,24,2012 20120905_DAL@NYG,4,3,5,NYG,DAL,4,1,13,(3:05) (No Huddle Shotgun) A.Bradshaw left tackle to DAL 9 for 4 yards (S.Lee A.Spencer).,10,24,2012 20120905_DAL@NYG,4,2,42,NYG,DAL,1,9,9,(2:42) (No Huddle Shotgun) E.Manning pass short middle to M.Bennett for 9 yards TOUCHDOWN. Penalty on DAL-B.Church Defensive Pass Interference declined.,10,24,2012 20120905_DAL@NYG,4,2,42,NYG,DAL,,,9,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,24,2012 20120905_DAL@NYG,4,2,42,NYG,DAL,,,9,L.Tynes kicks 53 yards from NYG 35 to DAL 12. F.Jones to DAL 26 for 14 yards (S.Brown).,17,24,2012 20120905_DAL@NYG,4,2,31,DAL,NYG,1,10,74,(2:31) D.Murray right tackle to DAL 27 for 1 yard (J.Pierre-Paul J.Tuck).,24,17,2012 20120905_DAL@NYG,4,2,26,DAL,NYG,2,9,73,(2:26) D.Murray right tackle to DAL 34 for 7 yards (C.Blackburn).,24,17,2012 20120905_DAL@NYG,4,2,17,DAL,NYG,3,2,66,(2:17) D.Murray left end to DAL 37 for 3 yards (K.Phillips). PENALTY on DAL-J.Witten Offensive Holding 10 yards enforced at DAL 36. Officially a rush for 2 yards.,24,17,2012 20120905_DAL@NYG,4,2,11,DAL,NYG,3,10,74,(2:11) T.Romo pass short left to K.Ogletree to DAL 39 for 13 yards (J.Tryon).,24,17,2012 20120905_DAL@NYG,4,2,0,DAL,NYG,1,10,61,(2:00) T.Romo kneels to DAL 38 for -1 yards.,24,17,2012 20120905_DAL@NYG,4,1,24,DAL,NYG,2,11,62,(1:24) T.Romo kneels to DAL 35 for -3 yards.,24,17,2012 20120905_DAL@NYG,4,0,38,DAL,NYG,3,14,65,(:38) T.Romo kneels to DAL 34 for -1 yards.,24,17,2012 20120905_DAL@NYG,4,0,38,DAL,NYG,,,65,                      ,24,17,2012 20120909_IND@CHI,1,0,0,IND,CHI,,,65,P.McAfee kicks 67 yards from IND 35 to CHI -2. D.Hester to CHI 16 for 18 yards (J.Hickman).,0,0,2012 20120909_IND@CHI,1,59,56,CHI,IND,1,10,84,(14:56) J.Cutler sacked at CHI 4 for -12 yards (R.Mathis).,0,0,2012 20120909_IND@CHI,1,59,22,CHI,IND,2,22,96,(14:22) PENALTY on CHI-G.Carimi False Start 2 yards enforced at CHI 4 - No Play.,0,0,2012 20120909_IND@CHI,1,59,1,CHI,IND,2,24,98,(14:01) M.Forte left guard to CHI 5 for 3 yards (J.King; M.Fokou).,0,0,2012 20120909_IND@CHI,1,58,21,CHI,IND,3,21,95,(13:21) (Shotgun) J.Cutler pass incomplete short right to A.Jeffery.,0,0,2012 20120909_IND@CHI,1,58,15,CHI,IND,4,21,95,(13:15) (Punt formation) A.Podlesh punts 45 yards to 50 Center-P.Mannelly fair catch by L.Brazill.,0,0,2012 20120909_IND@CHI,1,58,8,IND,CHI,1,10,50,(13:08) A.Luck pass short right to D.Jones to CHI 42 for 8 yards (L.Briggs).,0,0,2012 20120909_IND@CHI,1,57,28,IND,CHI,2,2,42,(12:28) D.Brown right tackle to CHI 44 for -2 yards (I.Idonije).,0,0,2012 20120909_IND@CHI,1,56,45,IND,CHI,3,4,44,(11:45) (Shotgun) A.Luck pass incomplete short left to R.Wayne.,0,0,2012 20120909_IND@CHI,1,56,40,IND,CHI,4,4,44,(11:40) (Punt formation) P.McAfee punts 41 yards to CHI 3 Center-M.Overton downed by IND-J.Hickman. CHI-C.Tillman was injured during the play. His return is Questionable.,0,0,2012 20120909_IND@CHI,1,56,28,CHI,IND,1,10,97,(11:28) (Shotgun) J.Cutler pass short right intended for M.Forte INTERCEPTED by J.Freeman at CHI 4. J.Freeman for 4 yards TOUCHDOWN.,0,0,2012 20120909_IND@CHI,1,56,28,IND,CHI,,,97,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 20120909_IND@CHI,1,56,28,IND,CHI,,,97,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,7,0,2012 20120909_IND@CHI,1,56,23,CHI,IND,1,10,80,(11:23) M.Forte left tackle to CHI 20 for no gain (K.Conner).,0,7,2012 20120909_IND@CHI,1,55,47,CHI,IND,2,10,80,(10:47) J.Cutler pass incomplete short right to E.Rodriguez [K.Conner].,0,7,2012 20120909_IND@CHI,1,55,42,CHI,IND,3,10,80,(10:42) (Shotgun) J.Cutler pass short right to B.Marshall to CHI 33 for 13 yards (V.Davis).,0,7,2012 20120909_IND@CHI,1,55,0,CHI,IND,1,10,67,(10:00) J.Cutler pass incomplete short left to M.Forte.,0,7,2012 20120909_IND@CHI,1,54,56,CHI,IND,2,10,67,(9:56) M.Forte left end to IND 35 for 32 yards (A.Bethea).,0,7,2012 20120909_IND@CHI,1,54,9,CHI,IND,1,10,35,(9:09) J.Cutler pass incomplete deep left to K.Davis.,0,7,2012 20120909_IND@CHI,1,54,4,CHI,IND,2,10,35,(9:04) J.Cutler pass incomplete deep left to B.Marshall (J.Powers).,0,7,2012 20120909_IND@CHI,1,53,56,CHI,IND,3,10,35,(8:56) (Shotgun) J.Cutler pass incomplete deep middle to E.Bennett. PENALTY on IND-J.King Defensive Pass Interference 19 yards enforced at IND 35 - No Play.,0,7,2012 20120909_IND@CHI,1,53,49,CHI,IND,1,10,16,(8:49) J.Cutler pass incomplete deep left to A.Jeffery.,0,7,2012 20120909_IND@CHI,1,53,45,CHI,IND,2,10,16,(8:45) M.Forte right tackle to IND 1 for 15 yards (T.Zbikowski).,0,7,2012 20120909_IND@CHI,1,52,58,CHI,IND,1,1,1,(7:58) J.Cutler pass incomplete short left to B.Marshall. PENALTY on IND-C.Vaughn Defensive Pass Interference 0 yards enforced at IND 1 - No Play.,0,7,2012 20120909_IND@CHI,1,52,54,CHI,IND,1,1,1,(7:54) M.Bush right tackle to IND 1 for no gain (M.Harvey).,0,7,2012 20120909_IND@CHI,1,52,21,CHI,IND,2,1,1,(7:21) C.Williams reported in as eligible. M.Bush right tackle for 1 yard TOUCHDOWN.,0,7,2012 20120909_IND@CHI,1,52,21,CHI,IND,,,1,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,7,2012 20120909_IND@CHI,1,52,21,CHI,IND,,,1,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,7,7,2012 20120909_IND@CHI,1,52,19,IND,CHI,1,10,80,(7:19) (Shotgun) A.Luck pass short middle to R.Wayne to IND 28 for 8 yards (B.Urlacher).,7,7,2012 20120909_IND@CHI,1,51,42,IND,CHI,2,2,72,(6:42) A.Luck pass incomplete short left to R.Wayne (B.Urlacher) [M.Toeaina].,7,7,2012 20120909_IND@CHI,1,51,36,IND,CHI,3,2,72,(6:36) A.Luck scrambles left guard to IND 31 for 3 yards (H.Melton).,7,7,2012 20120909_IND@CHI,1,50,51,IND,CHI,1,10,69,(5:51) D.Brown left guard to IND 27 for -4 yards (H.Melton).,7,7,2012 20120909_IND@CHI,1,50,11,IND,CHI,2,14,73,(5:11) (Shotgun) A.Luck pass short right to L.Brazill to IND 37 for 10 yards (M.Wright).,7,7,2012 20120909_IND@CHI,1,49,33,IND,CHI,3,4,63,(4:33) (Shotgun) A.Luck pass incomplete short left to R.Wayne [S.McClellin].,7,7,2012 20120909_IND@CHI,1,49,28,IND,CHI,4,4,63,(4:28) (Punt formation) P.McAfee punts 63 yards to end zone Center-M.Overton Touchback.,7,7,2012 20120909_IND@CHI,1,49,19,CHI,IND,1,10,80,(4:19) J.Cutler pass incomplete short left to B.Marshall (T.Zbikowski).,7,7,2012 20120909_IND@CHI,1,49,15,CHI,IND,2,10,80,(4:15) M.Bush left guard to CHI 23 for 3 yards (R.Mathis).,7,7,2012 20120909_IND@CHI,1,48,35,CHI,IND,3,7,77,(3:35) (Shotgun) J.Cutler pass incomplete deep right to B.Marshall (A.Bethea).,7,7,2012 20120909_IND@CHI,1,48,29,CHI,IND,4,7,77,(3:29) (Punt formation) A.Podlesh punts 33 yards to IND 44 Center-P.Mannelly out of bounds.,7,7,2012 20120909_IND@CHI,1,48,21,IND,CHI,1,10,56,(3:21) V.Ballard left end to IND 45 for 1 yard (L.Briggs).,7,7,2012 20120909_IND@CHI,1,47,36,IND,CHI,2,9,55,(2:36) (Shotgun) V.Ballard left tackle to IND 48 for 3 yards (J.Peppers).,7,7,2012 20120909_IND@CHI,1,46,48,IND,CHI,3,6,52,(1:48) (Shotgun) A.Luck sacked at IND 40 for -8 yards (J.Peppers). FUMBLES (J.Peppers) and recovers at IND 38. A.Luck to IND 38 for no gain (J.Peppers). PENALTY on CHI-S.McClellin Neutral Zone Infraction 5 yards enforced at IND 48 - No Play.,7,7,2012 20120909_IND@CHI,1,46,41,IND,CHI,3,1,47,(1:41) (Shotgun) A.Luck pass incomplete short right to D.Brown.,7,7,2012 20120909_IND@CHI,1,46,38,IND,CHI,4,1,47,(1:38) (Punt formation) P.McAfee punts 42 yards to CHI 5 Center-M.Overton downed by IND-J.Hickman.,7,7,2012 20120909_IND@CHI,1,46,25,CHI,IND,1,10,95,(1:25) J.Cutler pass short left to B.Marshall to CHI 12 for 7 yards (J.Powers).,7,7,2012 20120909_IND@CHI,1,45,50,CHI,IND,2,3,88,(:50) M.Forte right tackle to CHI 15 for 3 yards (A.Bethea).,7,7,2012 20120909_IND@CHI,1,45,9,CHI,IND,1,10,85,(:09) J.Cutler pass short left to M.Forte to CHI 16 for 1 yard (T.Zbikowski).,7,7,2012 20120909_IND@CHI,2,45,0,CHI,IND,2,9,84,(15:00) M.Forte left guard to CHI 21 for 5 yards (A.Bethea).,7,7,2012 20120909_IND@CHI,2,44,18,CHI,IND,3,4,79,(14:18) (Shotgun) J.Cutler pass short left to E.Bennett to CHI 31 for 10 yards (R.Mathis).,7,7,2012 20120909_IND@CHI,2,43,40,CHI,IND,1,10,69,(13:40) (No Huddle) J.Cutler pass deep left to B.Marshall pushed ob at CHI 47 for 16 yards (A.Bethea).,7,7,2012 20120909_IND@CHI,2,43,18,CHI,IND,1,10,53,(13:18) (No Huddle) J.Cutler pass incomplete short left to B.Marshall (J.Powers).,7,7,2012 20120909_IND@CHI,2,43,11,CHI,IND,2,10,53,(13:11) (No Huddle) M.Forte right guard to IND 49 for 4 yards (K.Conner). PENALTY on CHI-C.Spencer Offensive Holding 10 yards enforced at CHI 47 - No Play.,7,7,2012 20120909_IND@CHI,2,42,33,CHI,IND,2,20,63,(12:33) (Shotgun) J.Cutler pass deep right to D.Hester to IND 34 for 29 yards (J.Freeman).,7,7,2012 20120909_IND@CHI,2,41,45,CHI,IND,1,10,34,(11:45) M.Forte left guard to IND 34 for no gain (K.Conner).,7,7,2012 20120909_IND@CHI,2,41,8,CHI,IND,2,10,34,(11:08) (Shotgun) J.Cutler pass short right to M.Forte pushed ob at IND 3 for 31 yards (T.Zbikowski).,7,7,2012 20120909_IND@CHI,2,40,37,CHI,IND,1,3,3,(10:37) J.Cutler pass short right to B.Marshall for 3 yards TOUCHDOWN.,7,7,2012 20120909_IND@CHI,2,40,37,CHI,IND,,,3,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,7,2012 20120909_IND@CHI,2,40,37,CHI,IND,,,3,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,14,7,2012 20120909_IND@CHI,2,40,33,IND,CHI,1,10,80,(10:33) A.Luck pass deep left to R.Wayne to IND 37 for 17 yards (K.Hayden).,7,14,2012 20120909_IND@CHI,2,39,53,IND,CHI,1,10,63,(9:53) A.Luck pass deep right intended for D.Avery INTERCEPTED by T.Jennings at CHI 20. T.Jennings to CHI 37 for 17 yards (C.Fleener).,7,14,2012 20120909_IND@CHI,2,39,40,CHI,IND,1,10,63,(9:40) J.Cutler pass deep middle to B.Marshall to IND 39 for 24 yards (A.Bethea).,14,7,2012 20120909_IND@CHI,2,39,2,CHI,IND,1,10,39,(9:02) M.Bush left guard to IND 38 for 1 yard (D.Nevis).,14,7,2012 20120909_IND@CHI,2,38,21,CHI,IND,2,9,38,(8:21) J.Cutler pass short middle to A.Jeffery to IND 23 for 15 yards (V.Davis).,14,7,2012 20120909_IND@CHI,2,37,44,CHI,IND,1,10,23,(7:44) M.Bush left tackle to IND 23 for no gain (K.Conner).,14,7,2012 20120909_IND@CHI,2,37,4,CHI,IND,2,10,23,(7:04) J.Cutler pass incomplete deep middle to D.Hester. PENALTY on CHI-D.Hester Offensive Pass Interference 10 yards enforced at IND 23 - No Play.,14,7,2012 20120909_IND@CHI,2,36,57,CHI,IND,2,20,33,(6:57) (Shotgun) J.Cutler pass short left to B.Marshall to IND 24 for 9 yards (J.Powers).,14,7,2012 20120909_IND@CHI,2,36,19,CHI,IND,3,11,24,(6:19) (Shotgun) M.Bush right guard to IND 17 for 7 yards (A.Bethea).,14,7,2012 20120909_IND@CHI,2,35,36,CHI,IND,4,4,17,(5:36) (Field Goal formation) R.Gould 35 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,14,7,2012 20120909_IND@CHI,2,35,36,CHI,IND,,,17,R.Gould kicks 70 yards from CHI 35 to IND -5. C.Vaughn pushed ob at IND 23 for 28 yards (D.Moore).,17,7,2012 20120909_IND@CHI,2,35,26,IND,CHI,1,10,77,(5:26) A.Luck pass deep left to R.Wayne to IND 46 for 23 yards (C.Conte) [S.Paea]. IND-R.Wayne was injured during the play. His return is Probable.,7,17,2012 20120909_IND@CHI,2,35,1,IND,CHI,1,10,54,(5:01) A.Luck pass incomplete short right to D.Avery (T.Jennings). PENALTY on CHI-T.Jennings Defensive Pass Interference 6 yards enforced at IND 46 - No Play.,7,17,2012 20120909_IND@CHI,2,34,58,IND,CHI,1,10,48,(4:58) D.Brown left guard to CHI 30 for 18 yards (K.Hayden; M.Wright).,7,17,2012 20120909_IND@CHI,2,34,14,IND,CHI,1,10,30,(4:14) (Shotgun) A.Luck pass incomplete short right to R.Wayne (C.Conte).,7,17,2012 20120909_IND@CHI,2,34,10,IND,CHI,2,10,30,(4:10) A.Luck pass short left to R.Wayne to CHI 18 for 12 yards (B.Urlacher; K.Hayden).,7,17,2012 20120909_IND@CHI,2,33,25,IND,CHI,1,10,18,(3:25) D.Brown left tackle for 18 yards TOUCHDOWN.,7,17,2012 20120909_IND@CHI,2,33,25,IND,CHI,,,18,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,17,2012 20120909_IND@CHI,2,33,25,IND,CHI,,,18,P.McAfee kicks 68 yards from IND 35 to CHI -3. D.Hester to CHI 28 for 31 yards (M.Harvey).,14,17,2012 20120909_IND@CHI,2,33,7,CHI,IND,1,10,72,(3:07) J.Cutler pass deep left to K.Adams to CHI 45 for 17 yards (J.Powers).,17,14,2012 20120909_IND@CHI,2,32,27,CHI,IND,1,10,55,(2:27) J.Cutler pass incomplete deep right to B.Marshall (J.King).,17,14,2012 20120909_IND@CHI,2,32,22,CHI,IND,2,10,55,(2:22) J.Cutler pass incomplete short middle to M.Forte (C.Redding).,17,14,2012 20120909_IND@CHI,2,32,17,CHI,IND,3,10,55,(2:17) (Shotgun) J.Cutler pass short middle to E.Bennett to IND 40 for 15 yards (J.King). Penalty on IND-T.Zbikowski Defensive Holding declined.,17,14,2012 20120909_IND@CHI,2,32,0,CHI,IND,1,10,40,(2:00) (Shotgun) M.Forte left guard to IND 39 for 1 yard (M.Fokou).,17,14,2012 20120909_IND@CHI,2,31,29,CHI,IND,2,9,39,(1:29) (Shotgun) J.Cutler pass short left to B.Marshall to IND 26 for 13 yards (T.Zbikowski).,17,14,2012 20120909_IND@CHI,2,30,58,CHI,IND,1,10,26,(:58) (No Huddle Shotgun) J.Cutler pass deep middle to E.Bennett for 26 yards TOUCHDOWN. Penalty on IND-J.King Defensive Pass Interference declined. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. (No Huddle Shotgun) J.Cutler pass deep middle to E.Bennett to IND 1 for 25 yards (A.Bethea). Penalty on IND-J.King Defensive Pass Interference declined.,17,14,2012 20120909_IND@CHI,2,30,50,CHI,IND,1,1,1,(:50) J.Cutler pass incomplete short right to B.Marshall. PENALTY on IND-V.Davis Defensive Pass Interference 0 yards enforced at IND 1 - No Play.,17,14,2012 20120909_IND@CHI,2,30,46,CHI,IND,1,1,1,(:46) M.Bush left guard for 1 yard TOUCHDOWN.,17,14,2012 20120909_IND@CHI,2,30,46,CHI,IND,,,1,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,17,14,2012 20120909_IND@CHI,2,30,46,CHI,IND,,,1,R.Gould kicks 66 yards from CHI 35 to IND -1. C.Vaughn to IND 22 for 23 yards (B.Costanzo).,24,14,2012 20120909_IND@CHI,2,30,39,IND,CHI,1,10,78,(:39) (Shotgun) A.Luck pass short middle to C.Fleener to IND 29 for 7 yards (M.Wright).,14,24,2012 20120909_IND@CHI,2,30,34,IND,CHI,2,3,71,(:34) (Shotgun) A.Luck pass short left to R.Wayne pushed ob at IND 37 for 8 yards (K.Hayden).,14,24,2012 20120909_IND@CHI,2,30,27,IND,CHI,1,10,63,(:27) (No Huddle Shotgun) A.Luck pass short left to C.Fleener pushed ob at CHI 41 for 22 yards (M.Wright).,14,24,2012 20120909_IND@CHI,2,30,20,IND,CHI,1,10,41,(:20) (Shotgun) A.Luck pass deep middle to C.Fleener to CHI 19 for 22 yards (M.Wright).,14,24,2012 20120909_IND@CHI,2,30,12,IND,CHI,1,10,19,(:12) (Shotgun) A.Luck pass incomplete deep right to D.Avery (T.Jennings).,14,24,2012 20120909_IND@CHI,2,30,6,IND,CHI,2,10,19,(:06) (Field Goal formation) A.Vinatieri 37 yard field goal is No Good Wide Right Center-M.Overton Holder-P.McAfee.,14,24,2012 20120909_IND@CHI,2,30,2,CHI,IND,1,10,73,(:02) J.Cutler kneels to CHI 26 for -1 yards.,24,14,2012 20120909_IND@CHI,3,30,0,CHI,IND,,,73,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,24,14,2012 20120909_IND@CHI,3,30,0,IND,CHI,1,10,80,(15:00) D.Brown right end pushed ob at IND 21 for 1 yard (T.Jennings).,14,24,2012 20120909_IND@CHI,3,29,27,IND,CHI,2,9,79,(14:27) A.Luck pass incomplete short left to C.Fleener.,14,24,2012 20120909_IND@CHI,3,29,22,IND,CHI,3,9,79,(14:22) (Shotgun) A.Luck pass incomplete short left to K.Adams.,14,24,2012 20120909_IND@CHI,3,29,19,IND,CHI,4,9,79,(14:19) (Punt formation) P.McAfee punts 57 yards to CHI 22 Center-M.Overton. D.Hester pushed ob at CHI 45 for 23 yards (M.Fokou).,14,24,2012 20120909_IND@CHI,3,29,2,CHI,IND,1,10,55,(14:02) M.Bush right end to IND 35 for 20 yards (A.Bethea). IND-A.Bethea was injured during the play. His return is Questionable.,24,14,2012 20120909_IND@CHI,3,28,23,CHI,IND,1,10,35,(13:23) J.Cutler pass short right to A.Jeffery to IND 12 for 23 yards (V.Davis).,24,14,2012 20120909_IND@CHI,3,27,37,CHI,IND,1,10,12,(12:37) M.Forte left guard to IND 6 for 6 yards (C.Redding; P.McAfee).,24,14,2012 20120909_IND@CHI,3,26,57,CHI,IND,2,4,6,(11:57) M.Forte left tackle for 6 yards TOUCHDOWN.,24,14,2012 20120909_IND@CHI,3,26,57,CHI,IND,,,6,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,24,14,2012 20120909_IND@CHI,3,26,57,CHI,IND,,,6,R.Gould kicks 71 yards from CHI 35 to IND -6. L.Brazill to IND 9 for 15 yards (J.Thomas). FUMBLES (J.Thomas) RECOVERED by CHI-K.Hayden at IND 12. K.Hayden ran ob at IND 12 for no gain.,31,14,2012 20120909_IND@CHI,3,26,46,CHI,IND,1,10,12,(11:46) D.Hester left end to IND 16 for -4 yards (J.Freeman).,31,14,2012 20120909_IND@CHI,3,25,57,CHI,IND,2,14,16,(10:57) (Shotgun) J.Cutler pass short right to M.Forte to IND 8 for 8 yards (V.Davis).,31,14,2012 20120909_IND@CHI,3,25,11,CHI,IND,3,6,8,(10:11) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall (J.King).,31,14,2012 20120909_IND@CHI,3,25,7,CHI,IND,4,6,8,(10:07) (Field Goal formation) R.Gould 26 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,31,14,2012 20120909_IND@CHI,3,25,7,CHI,IND,,,8,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,34,14,2012 20120909_IND@CHI,3,25,2,IND,CHI,1,10,80,(10:02) A.Luck pass short left to C.Fleener to IND 25 for 5 yards (N.Roach).,14,34,2012 20120909_IND@CHI,3,24,20,IND,CHI,2,5,75,(9:20) D.Brown right guard to IND 22 for -3 yards (H.Melton; N.Roach).,14,34,2012 20120909_IND@CHI,3,23,39,IND,CHI,3,8,78,(8:39) (Shotgun) A.Luck pass incomplete short right to L.Brazill (N.Roach) [S.Paea]. PENALTY on CHI-N.Roach Illegal Contact 5 yards enforced at IND 22 - No Play.,14,34,2012 20120909_IND@CHI,3,23,32,IND,CHI,1,10,73,(8:32) A.Luck pass incomplete short left to D.Brown.,14,34,2012 20120909_IND@CHI,3,23,26,IND,CHI,2,10,73,(8:26) (Shotgun) A.Luck pass short right to K.Adams to IND 40 for 13 yards (T.Jennings; N.Roach).,14,34,2012 20120909_IND@CHI,3,22,46,IND,CHI,1,10,60,(7:46) D.Brown left end to IND 40 for no gain (M.Toeaina; G.Hayes).,14,34,2012 20120909_IND@CHI,3,22,6,IND,CHI,2,10,60,(7:06) (Shotgun) A.Luck pass incomplete short left to D.Avery (K.Hayden).,14,34,2012 20120909_IND@CHI,3,22,1,IND,CHI,3,10,60,(7:01) (Shotgun) A.Luck pass short middle to R.Wayne to CHI 41 for 19 yards (C.Conte).,14,34,2012 20120909_IND@CHI,3,21,22,IND,CHI,1,10,41,(6:22) A.Luck pass deep middle to C.Fleener to CHI 17 for 24 yards (G.Hayes).,14,34,2012 20120909_IND@CHI,3,20,42,IND,CHI,1,10,17,(5:42) A.Luck pass incomplete short right to R.Wayne.,14,34,2012 20120909_IND@CHI,3,20,37,IND,CHI,2,10,17,(5:37) D.Brown right guard to CHI 10 for 7 yards (J.Peppers).,14,34,2012 20120909_IND@CHI,3,19,57,IND,CHI,3,3,10,(4:57) (Shotgun) A.Luck pass short right intended for R.Wayne INTERCEPTED by C.Conte (T.Jennings) at CHI -3. C.Conte to CHI 32 for 35 yards (K.Adams).,14,34,2012 20120909_IND@CHI,3,19,46,CHI,IND,1,10,68,(4:46) M.Forte right tackle to CHI 31 for -1 yards (R.Mathis).,34,14,2012 20120909_IND@CHI,3,19,2,CHI,IND,2,11,69,(4:02) J.Cutler pass short left to D.Hester to CHI 29 for -2 yards (J.Powers).,34,14,2012 20120909_IND@CHI,3,18,13,CHI,IND,3,13,71,(3:13) (Shotgun) J.Cutler sacked at CHI 22 for -7 yards (R.Mathis).,34,14,2012 20120909_IND@CHI,3,17,46,CHI,IND,4,20,78,(2:46) (Punt formation) A.Podlesh punts 40 yards to IND 38 Center-P.Mannelly. L.Brazill to IND 46 for 8 yards (B.Costanzo).,34,14,2012 20120909_IND@CHI,3,17,37,IND,CHI,1,10,54,(2:37) A.Luck pass incomplete short middle to C.Fleener.,14,34,2012 20120909_IND@CHI,3,17,32,IND,CHI,2,10,54,(2:32) (Shotgun) D.Brown right tackle to CHI 41 for 13 yards (T.Jennings; C.Conte).,14,34,2012 20120909_IND@CHI,3,16,53,IND,CHI,1,10,41,(1:53) A.Luck pass incomplete. Chicago challenged the incomplete pass ruling and the play was REVERSED. A.Luck sacked at CHI 45 for -4 yards (C.Wootton). FUMBLES (C.Wootton) RECOVERED by CHI-J.Peppers at CHI 41. J.Peppers to CHI 41 for no gain (A.Castonzo).,14,34,2012 20120909_IND@CHI,3,16,49,CHI,IND,1,10,59,(1:49) M.Forte left end to CHI 38 for -3 yards (K.Conner).,34,14,2012 20120909_IND@CHI,3,16,9,CHI,IND,2,13,62,(1:09) (Shotgun) J.Cutler pass incomplete deep middle to E.Bennett (A.Bethea).,34,14,2012 20120909_IND@CHI,3,16,3,CHI,IND,3,13,62,(1:03) (Shotgun) J.Cutler pass short left to B.Marshall to 50 for 12 yards (J.Powers). Measurement. Chicago challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1.),34,14,2012 20120909_IND@CHI,3,15,20,CHI,IND,4,1,50,(:20) (Punt formation) A.Podlesh punts 50 yards to end zone Center-P.Mannelly Touchback.,34,14,2012 20120909_IND@CHI,3,15,12,IND,CHI,1,10,80,(:12) A.Luck scrambles right end pushed ob at IND 26 for 6 yards (T.Jennings).,14,34,2012 20120909_IND@CHI,4,15,0,IND,CHI,2,4,74,(15:00) A.Luck pass short right to R.Wayne to IND 46 for 20 yards (M.Wright).,14,34,2012 20120909_IND@CHI,4,14,25,IND,CHI,1,10,54,(14:25) (Shotgun) V.Ballard left guard to IND 48 for 2 yards (M.Toeaina).,14,34,2012 20120909_IND@CHI,4,13,49,IND,CHI,2,8,52,(13:49) A.Luck pass deep left to R.Wayne to CHI 31 for 21 yards (C.Conte).,14,34,2012 20120909_IND@CHI,4,13,8,IND,CHI,1,10,31,(13:08) V.Ballard left end to CHI 31 for no gain (J.Peppers).,14,34,2012 20120909_IND@CHI,4,12,25,IND,CHI,2,10,31,(12:25) (Shotgun) A.Luck pass incomplete deep left to C.Fleener.,14,34,2012 20120909_IND@CHI,4,12,21,IND,CHI,3,10,31,(12:21) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,14,34,2012 20120909_IND@CHI,4,12,16,IND,CHI,4,10,31,(12:16) (Shotgun) A.Luck pass short middle to K.Adams to CHI 18 for 13 yards (D.Moore).,14,34,2012 20120909_IND@CHI,4,11,33,IND,CHI,1,10,18,(11:33) A.Luck pass short right to R.Wayne pushed ob at CHI 11 for 7 yards (K.Hayden).,14,34,2012 20120909_IND@CHI,4,11,6,IND,CHI,2,3,11,(11:06) A.Luck pass short left to D.Avery to CHI 4 for 7 yards (K.Hayden).,14,34,2012 20120909_IND@CHI,4,10,28,IND,CHI,1,4,4,(10:28) (Shotgun) A.Luck pass incomplete short middle to R.Wayne.,14,34,2012 20120909_IND@CHI,4,10,24,IND,CHI,2,4,4,(10:24) A.Luck pass short left to D.Avery for 4 yards TOUCHDOWN.,14,34,2012 20120909_IND@CHI,4,10,24,IND,CHI,,,4,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,14,34,2012 20120909_IND@CHI,4,10,24,IND,CHI,,,4,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,21,34,2012 20120909_IND@CHI,4,10,20,CHI,IND,1,10,80,(10:20) M.Forte right guard to CHI 21 for 1 yard (K.Conner).,34,21,2012 20120909_IND@CHI,4,9,39,CHI,IND,2,9,79,(9:39) J.Cutler pass deep left to B.Marshall to CHI 43 for 22 yards (J.Powers).,34,21,2012 20120909_IND@CHI,4,8,56,CHI,IND,1,10,57,(8:56) M.Forte right end pushed ob at CHI 46 for 3 yards (J.Freeman).,34,21,2012 20120909_IND@CHI,4,8,20,CHI,IND,2,7,54,(8:20) M.Forte left guard to IND 48 for 6 yards (A.Bethea).,34,21,2012 20120909_IND@CHI,4,7,40,CHI,IND,3,1,48,(7:40) M.Bush left tackle to IND 45 for 3 yards (J.Freeman).,34,21,2012 20120909_IND@CHI,4,7,0,CHI,IND,1,10,45,(7:00) M.Forte right tackle to IND 42 for 3 yards (V.Davis).,34,21,2012 20120909_IND@CHI,4,6,16,CHI,IND,2,7,42,(6:16) J.Cutler pass deep middle to A.Jeffery for 42 yards TOUCHDOWN.,34,21,2012 20120909_IND@CHI,4,6,16,CHI,IND,,,42,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,34,21,2012 20120909_IND@CHI,4,6,16,CHI,IND,,,42,R.Gould kicks 53 yards from CHI 35 to IND 12. M.Moore to IND 19 for 7 yards (A.Walters).,41,21,2012 20120909_IND@CHI,4,6,2,IND,CHI,1,10,81,(6:02) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (D.Moore).,21,41,2012 20120909_IND@CHI,4,5,54,IND,CHI,2,10,81,(5:54) (Shotgun) A.Luck pass short left to M.Moore to IND 30 for 11 yards (K.Hayden).,21,41,2012 20120909_IND@CHI,4,5,30,IND,CHI,1,10,70,(5:30) (No Huddle) A.Luck pass incomplete short right to R.Wayne (D.Moore).,21,41,2012 20120909_IND@CHI,4,5,28,IND,CHI,2,10,70,(5:28) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,21,41,2012 20120909_IND@CHI,4,5,24,IND,CHI,3,10,70,(5:24) (Shotgun) A.Luck sacked at IND 21 for -9 yards (H.Melton).,21,41,2012 20120909_IND@CHI,4,5,1,IND,CHI,4,19,79,(5:01) (Punt formation) P.McAfee punts 54 yards to CHI 25 Center-M.Overton downed by IND-J.Lefeged.,21,41,2012 20120909_IND@CHI,4,4,48,CHI,IND,1,10,75,(4:48) M.Bush right end to CHI 46 for 21 yards (J.Hughes). PENALTY on CHI-K.Davis Offensive Holding 10 yards enforced at CHI 25 - No Play.,41,21,2012 20120909_IND@CHI,4,4,16,CHI,IND,1,20,85,(4:16) M.Bush left tackle to CHI 18 for 3 yards (J.Freeman).,41,21,2012 20120909_IND@CHI,4,3,30,CHI,IND,2,17,82,(3:30) M.Bush right tackle to CHI 15 for -3 yards (M.Harvey).,41,21,2012 20120909_IND@CHI,4,2,43,CHI,IND,3,20,85,(2:43) M.Bush right tackle to CHI 21 for 6 yards (J.Lefeged).,41,21,2012 20120909_IND@CHI,4,2,37,CHI,IND,4,14,79,(2:37) (Punt formation) A.Podlesh punts 40 yards to IND 39 Center-P.Mannelly. L.Brazill pushed ob at IND 43 for 4 yards (S.McManis).,41,21,2012 20120909_IND@CHI,4,2,28,IND,CHI,1,10,57,(2:28) (Shotgun) A.Luck pass short right to C.Fleener to IND 45 for 2 yards (M.Wright).,21,41,2012 20120909_IND@CHI,4,2,10,IND,CHI,2,8,55,(2:10) (No Huddle Shotgun) A.Luck pass incomplete short right to C.Fleener.,21,41,2012 20120909_IND@CHI,4,2,4,IND,CHI,3,8,55,(2:04) (Shotgun) A.Luck sacked at IND 38 for -7 yards (H.Melton).,21,41,2012 20120909_IND@CHI,4,1,59,IND,CHI,4,15,62,(1:59) (Shotgun) A.Luck pass deep left to D.Avery to CHI 36 for 26 yards (D.Moore).,21,41,2012 20120909_IND@CHI,4,1,52,IND,CHI,1,10,36,(1:52) (Shotgun) A.Luck pass deep right intended for K.Adams INTERCEPTED by T.Jennings at CHI 15. T.Jennings to CHI 26 for 11 yards (A.Castonzo).,21,41,2012 20120909_IND@CHI,4,1,42,CHI,IND,1,10,74,(1:42) J.Cutler kneels to CHI 25 for -1 yards.,41,21,2012 20120909_IND@CHI,4,0,58,CHI,IND,2,11,75,(:58) J.Cutler kneels to CHI 24 for -1 yards.,41,21,2012 20120909_IND@CHI,4,0,33,CHI,IND,3,12,76,(:33) J.Cutler kneels to CHI 23 for -1 yards.,41,21,2012 20120909_IND@CHI,4,0,33,CHI,IND,,,76,                      ,41,21,2012 20120909_PHI@CLE,1,0,0,CLE,PHI,,,76,P.Dawson kicks 57 yards from CLV 35 to PHI 8. S.Havili to PHI 26 for 18 yards (L.Fort).,0,0,2012 20120909_PHI@CLE,1,59,56,PHI,CLE,1,10,74,(14:56) M.Vick pass short left to L.McCoy to PHI 20 for -6 yards (B.Winn).,0,0,2012 20120909_PHI@CLE,1,59,16,PHI,CLE,2,16,80,(14:16) (Shotgun) M.Vick pass short middle to B.Celek to PHI 31 for 11 yards (D.Jackson; C.Robertson).,0,0,2012 20120909_PHI@CLE,1,58,33,PHI,CLE,3,5,69,(13:33) (Shotgun) M.Vick pass short left to L.McCoy to CLV 45 for 24 yards (E.Hagg). PENALTY on PHI-J.Maclin Offensive Pass Interference 10 yards enforced at PHI 31 - No Play.,0,0,2012 20120909_PHI@CLE,1,58,14,PHI,CLE,3,15,79,(13:14) (Shotgun) M.Vick scrambles up the middle to PHI 37 for 16 yards (T.Ward).,0,0,2012 20120909_PHI@CLE,1,57,36,PHI,CLE,1,10,63,(12:36) M.Vick pass short left to D.Jackson to CLV 48 for 15 yards (J.Haden).,0,0,2012 20120909_PHI@CLE,1,56,58,PHI,CLE,1,10,48,(11:58) D.Jackson right end to CLV 43 for 5 yards (A.Rubin).,0,0,2012 20120909_PHI@CLE,1,56,18,PHI,CLE,2,5,43,(11:18) L.McCoy left end to CLV 48 for -5 yards (T.Ward). FUMBLES (T.Ward) RECOVERED by CLV-D.Jackson at CLV 49. D.Jackson to CLV 49 for no gain (M.Vick).,0,0,2012 20120909_PHI@CLE,1,56,10,CLE,PHI,1,10,51,(11:10) T.Richardson right guard to 50 for 1 yard (M.Kendricks).,0,0,2012 20120909_PHI@CLE,1,55,39,CLE,PHI,2,9,50,(10:39) B.Weeden pass short left to M.Massaquoi to PHI 26 for 24 yards (K.Coleman).,0,0,2012 20120909_PHI@CLE,1,55,2,CLE,PHI,1,10,26,(10:02) T.Richardson left guard to PHI 25 for 1 yard (J.Babin).,0,0,2012 20120909_PHI@CLE,1,54,25,CLE,PHI,2,9,25,(9:25) B.Weeden pass incomplete deep right to M.Massaquoi.,0,0,2012 20120909_PHI@CLE,1,54,19,CLE,PHI,3,9,25,(9:19) (Shotgun) B.Weeden pass incomplete short right to T.Benjamin (D.Rodgers-Cromartie).,0,0,2012 20120909_PHI@CLE,1,54,16,CLE,PHI,4,9,25,(9:16) P.Dawson 43 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,0,2012 20120909_PHI@CLE,1,54,16,CLE,PHI,,,25,P.Dawson kicks 68 yards from CLV 35 to PHI -3. B.Boykin to PHI 26 for 29 yards (T.Gipson).,3,0,2012 20120909_PHI@CLE,1,54,7,PHI,CLE,1,10,79,(9:07) M.Vick FUMBLES (Aborted) at PHI 21 recovered by PHI-L.McCoy at PHI 21.,0,3,2012 20120909_PHI@CLE,1,53,30,PHI,CLE,2,15,79,(8:30) (Shotgun) L.McCoy left tackle ran ob at PHI 30 for 9 yards (K.Maiava).,0,3,2012 20120909_PHI@CLE,1,53,7,PHI,CLE,3,6,70,(8:07) (Shotgun) M.Vick pass short right to C.Harbor to PHI 35 for 5 yards (C.Robertson). PENALTY on CLV-B.Winn Neutral Zone Infraction 5 yards enforced at PHI 30 - No Play.,0,3,2012 20120909_PHI@CLE,1,52,47,PHI,CLE,3,1,65,(7:47) M.Vick pass short left to L.McCoy to PHI 45 for 10 yards (S.Brown).,0,3,2012 20120909_PHI@CLE,1,52,22,PHI,CLE,1,10,55,(7:22) L.McCoy left tackle to PHI 48 for 3 yards (B.Winn). PENALTY on PHI-E.Mathis Offensive Holding 10 yards enforced at PHI 45 - No Play.,0,3,2012 20120909_PHI@CLE,1,52,6,PHI,CLE,1,20,65,(7:06) L.McCoy right guard to PHI 39 for 4 yards (J.Parker).,0,3,2012 20120909_PHI@CLE,1,51,29,PHI,CLE,2,16,61,(6:29) (Shotgun) M.Vick pass short right to J.Avant to PHI 44 for 5 yards (C.Robertson) [J.Parker].,0,3,2012 20120909_PHI@CLE,1,50,42,PHI,CLE,3,11,56,(5:42) (Shotgun) M.Vick pass deep left to D.Jackson to CLV 38 for 18 yards (J.Haden) [C.Robertson]. Penalty on CLV-J.Haden Defensive Pass Interference declined.,0,3,2012 20120909_PHI@CLE,1,50,22,PHI,CLE,1,10,38,(5:22) M.Vick sacked at CLV 39 for -1 yards (L.Fort).,0,3,2012 20120909_PHI@CLE,1,49,46,PHI,CLE,2,11,39,(4:46) (Shotgun) M.Vick pass incomplete short middle to J.Maclin. PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at CLV 39 - No Play.,0,3,2012 20120909_PHI@CLE,1,49,41,PHI,CLE,2,21,49,(4:41) (Shotgun) M.Vick pass short middle intended for B.Celek INTERCEPTED by C.Robertson at CLV 39. C.Robertson to CLV 40 for 1 yard (L.McCoy).,0,3,2012 20120909_PHI@CLE,1,49,32,CLE,PHI,1,10,60,(4:32) T.Richardson right tackle to CLV 42 for 2 yards (M.Kendricks).,3,0,2012 20120909_PHI@CLE,1,48,53,CLE,PHI,2,8,58,(3:53) B.Weeden pass short right to A.Smith to CLV 41 for -1 yards (N.Allen).,3,0,2012 20120909_PHI@CLE,1,48,12,CLE,PHI,3,9,59,(3:12) B.Weeden sacked at CLV 41 for 0 yards. FUMBLES recovered by CLV-J.Pinkston at CLV 38. J.Pinkston to CLV 38 for no gain (T.Cole). PENALTY on PHI-J.Babin Neutral Zone Infraction 5 yards enforced at CLV 41 - No Play.,3,0,2012 20120909_PHI@CLE,1,47,56,CLE,PHI,3,4,54,(2:56) (Shotgun) B.Weeden pass short left to B.Watson to CLV 49 for 3 yards (D.Ryans).,3,0,2012 20120909_PHI@CLE,1,47,14,CLE,PHI,4,1,51,(2:14) R.Hodges punts 44 yards to PHI 7 Center-C.Yount fair catch by D.Johnson. PENALTY on CLV-B.Skrine Interference with Opportunity to Catch 15 yards enforced at PHI 7.,3,0,2012 20120909_PHI@CLE,1,47,5,PHI,CLE,1,10,78,(2:05) (Shotgun) M.Vick pass short left to J.Maclin to PHI 31 for 9 yards (S.Brown) [D.Patterson].,0,3,2012 20120909_PHI@CLE,1,46,50,PHI,CLE,2,1,69,(1:50) L.McCoy right guard to PHI 40 for 9 yards (S.Brown; T.Ward). CLV-S.Brown was injured during the play. His return is Questionable.,0,3,2012 20120909_PHI@CLE,1,46,18,PHI,CLE,1,10,60,(1:18) M.Vick pass deep right to D.Jackson ran ob at CLV 25 for 35 yards (E.Hagg) [A.Rubin].,0,3,2012 20120909_PHI@CLE,1,45,47,PHI,CLE,1,10,25,(:47) (Shotgun) L.McCoy left tackle to CLV 23 for 2 yards (F.Rucker; D.Jackson).,0,3,2012 20120909_PHI@CLE,1,45,10,PHI,CLE,2,8,23,(:10) M.Vick pass incomplete short left to D.Jackson.,0,3,2012 20120909_PHI@CLE,1,45,1,PHI,CLE,3,8,23,(:01) (Shotgun) M.Vick pass incomplete deep left to D.Jackson [J.Parker].,0,3,2012 20120909_PHI@CLE,2,45,0,PHI,CLE,4,8,23,(15:00) A.Henery 42 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,0,3,2012 20120909_PHI@CLE,2,45,0,PHI,CLE,,,23,A.Henery kicks 70 yards from PHI 35 to CLV -5. J.Cribbs to CLV 34 for 39 yards (J.Chaney; C.Marsh).,3,3,2012 20120909_PHI@CLE,2,44,52,CLE,PHI,1,10,66,(14:52) T.Richardson left guard to CLV 39 for 5 yards (B.Graham).,3,3,2012 20120909_PHI@CLE,2,44,22,CLE,PHI,2,5,61,(14:22) B.Weeden pass short right to T.Benjamin to PHI 49 for 12 yards (D.Rodgers-Cromartie).,3,3,2012 20120909_PHI@CLE,2,43,49,CLE,PHI,1,10,49,(13:49) T.Richardson left guard to PHI 48 for 1 yard (M.Kendricks; T.Cole).,3,3,2012 20120909_PHI@CLE,2,43,10,CLE,PHI,2,9,48,(13:10) T.Benjamin left end to PHI 13 for 35 yards (N.Asomugha). 16 Cribbs hands off to 80 Benjamin on reverse,3,3,2012 20120909_PHI@CLE,2,42,25,CLE,PHI,1,10,13,(12:25) (Shotgun) B.Weeden pass incomplete short right to T.Richardson.,3,3,2012 20120909_PHI@CLE,2,42,20,CLE,PHI,2,10,13,(12:20) (Shotgun) B.Weeden pass short middle intended for G.Little INTERCEPTED by K.Coleman at PHI 1. K.Coleman to PHI 7 for 6 yards (G.Little). Ball deflected off 95 Kendricks,3,3,2012 20120909_PHI@CLE,2,42,11,PHI,CLE,1,10,93,(12:11) M.Vick pass short left to J.Maclin to PHI 12 for 5 yards (D.Patterson).,3,3,2012 20120909_PHI@CLE,2,41,46,PHI,CLE,2,5,88,(11:46) M.Vick pass incomplete short right to D.Johnson.,3,3,2012 20120909_PHI@CLE,2,41,38,PHI,CLE,3,5,88,(11:38) (Shotgun) M.Vick pass short left to J.Maclin to PHI 15 for 3 yards (D.Patterson). PHI-J.Maclin was injured during the play. His return is Questionable.,3,3,2012 20120909_PHI@CLE,2,41,12,PHI,CLE,4,2,85,(11:12) C.Henry punts 60 yards to CLV 25 Center-J.Dorenbos. J.Cribbs to CLV 31 for 6 yards (K.Coleman).,3,3,2012 20120909_PHI@CLE,2,41,0,CLE,PHI,1,10,69,(11:00) B.Weeden pass incomplete short right to T.Richardson.,3,3,2012 20120909_PHI@CLE,2,40,56,CLE,PHI,2,10,69,(10:56) T.Richardson left guard to CLV 40 for 9 yards (K.Coleman).,3,3,2012 20120909_PHI@CLE,2,40,13,CLE,PHI,3,1,60,(10:13) T.Richardson left guard to CLV 39 for -1 yards (D.Ryans).,3,3,2012 20120909_PHI@CLE,2,39,41,CLE,PHI,4,2,61,(9:41) R.Hodges punts 42 yards to PHI 19 Center-C.Yount downed by CLV-B.Skrine.,3,3,2012 20120909_PHI@CLE,2,39,27,PHI,CLE,1,10,81,(9:27) M.Vick scrambles right guard to PHI 30 for 11 yards (C.Robertson).,3,3,2012 20120909_PHI@CLE,2,38,47,PHI,CLE,1,10,70,(8:47) (Shotgun) M.Vick pass incomplete short left to B.Celek [B.Skrine].,3,3,2012 20120909_PHI@CLE,2,38,43,PHI,CLE,2,10,70,(8:43) L.McCoy left tackle to PHI 47 for 17 yards (J.Parker). PENALTY on PHI-J.Kelce Offensive Holding 10 yards enforced at PHI 30 - No Play.,3,3,2012 20120909_PHI@CLE,2,38,21,PHI,CLE,2,20,80,(8:21) (Shotgun) M.Vick pass short left to B.Celek to PHI 29 for 9 yards (B.Winn; J.Haden).,3,3,2012 20120909_PHI@CLE,2,37,40,PHI,CLE,3,11,71,(7:40) M.Vick pass incomplete short left to L.McCoy.,3,3,2012 20120909_PHI@CLE,2,37,33,PHI,CLE,4,11,71,(7:33) C.Henry punts 52 yards to CLV 19 Center-J.Dorenbos. J.Cribbs to CLV 36 for 17 yards (A.Jordan).,3,3,2012 20120909_PHI@CLE,2,37,22,CLE,PHI,1,10,64,(7:22) (Shotgun) B.Weeden pass incomplete short right to G.Little.,3,3,2012 20120909_PHI@CLE,2,37,18,CLE,PHI,2,10,64,(7:18) T.Richardson left tackle to CLV 35 for -1 yards (C.Jenkins).,3,3,2012 20120909_PHI@CLE,2,36,35,CLE,PHI,3,11,65,(6:35) (Shotgun) B.Weeden pass deep right intended for T.Benjamin INTERCEPTED by D.Rodgers-Cromartie at PHI 26. D.Rodgers-Cromartie to PHI 26 for no gain (T.Benjamin).,3,3,2012 20120909_PHI@CLE,2,36,28,PHI,CLE,1,10,74,(6:28) M.Vick sacked at PHI 16 for -10 yards (T.Ward).,3,3,2012 20120909_PHI@CLE,2,36,1,PHI,CLE,2,20,84,(6:01) (Shotgun) M.Vick pass short right to L.McCoy pushed ob at PHI 23 for 7 yards (C.Robertson).,3,3,2012 20120909_PHI@CLE,2,35,32,PHI,CLE,3,13,77,(5:32) (Shotgun) M.Vick pass short right to C.Harbor to PHI 33 for 10 yards (B.Skrine).,3,3,2012 20120909_PHI@CLE,2,35,1,PHI,CLE,4,3,67,(5:01) C.Henry punts 54 yards to CLV 13 Center-J.Dorenbos. J.Cribbs to CLV 36 for 23 yards (A.Jordan).,3,3,2012 20120909_PHI@CLE,2,34,47,CLE,PHI,1,10,64,(4:47) PENALTY on PHI-F.Cox Encroachment 5 yards enforced at CLV 36 - No Play.,3,3,2012 20120909_PHI@CLE,2,34,47,CLE,PHI,1,5,59,(4:47) B.Weeden pass short left to M.Massaquoi to CLV 45 for 4 yards (M.Kendricks).,3,3,2012 20120909_PHI@CLE,2,34,16,CLE,PHI,2,1,55,(4:16) T.Richardson up the middle to CLV 45 for no gain (A.Jordan).,3,3,2012 20120909_PHI@CLE,2,33,34,CLE,PHI,3,1,55,(3:34) B.Weeden pass short right to B.Jackson to PHI 49 for 6 yards (N.Allen).,3,3,2012 20120909_PHI@CLE,2,33,4,CLE,PHI,1,10,49,(3:04) B.Weeden pass incomplete deep right to O.Marecic.,3,3,2012 20120909_PHI@CLE,2,32,55,CLE,PHI,2,10,49,(2:55) B.Weeden pass incomplete short right to J.Gordon (N.Asomugha).,3,3,2012 20120909_PHI@CLE,2,32,52,CLE,PHI,3,10,49,(2:52) (Shotgun) B.Weeden pass incomplete deep right to M.Massaquoi [J.Babin].,3,3,2012 20120909_PHI@CLE,2,32,45,CLE,PHI,4,10,49,(2:45) R.Hodges punts 49 yards to end zone Center-C.Yount Touchback.,3,3,2012 20120909_PHI@CLE,2,32,37,PHI,CLE,1,10,80,(2:37) L.McCoy right guard to PHI 30 for 10 yards (K.Maiava). PENALTY on PHI-J.Maclin Offensive Holding 10 yards enforced at PHI 30.,3,3,2012 20120909_PHI@CLE,2,32,29,PHI,CLE,1,10,80,(2:29) (Shotgun) M.Vick pass short left to J.Maclin to PHI 24 for 4 yards (B.Skrine).,3,3,2012 20120909_PHI@CLE,2,31,59,PHI,CLE,2,6,76,(1:59) L.McCoy left tackle pushed ob at PHI 46 for 22 yards (B.Skrine).,3,3,2012 20120909_PHI@CLE,2,31,53,PHI,CLE,1,10,54,(1:53) (Shotgun) M.Vick pass incomplete deep right to D.Jackson.,3,3,2012 20120909_PHI@CLE,2,31,47,PHI,CLE,2,10,54,(1:47) (Shotgun) M.Vick pass incomplete short left to J.Maclin.,3,3,2012 20120909_PHI@CLE,2,31,42,PHI,CLE,3,10,54,(1:42) (Shotgun) M.Vick pass incomplete short right to D.Johnson.,3,3,2012 20120909_PHI@CLE,2,31,35,PHI,CLE,4,10,54,(1:35) C.Henry punts 41 yards to CLV 13 Center-J.Dorenbos. J.Cribbs to CLV 18 for 5 yards (A.Jordan).,3,3,2012 20120909_PHI@CLE,2,31,26,CLE,PHI,1,10,82,(1:26) T.Richardson left guard to CLV 21 for 3 yards (F.Cox).,3,3,2012 20120909_PHI@CLE,2,31,6,CLE,PHI,2,7,79,(1:06) T.Richardson left guard to CLV 26 for 5 yards (J.Babin).,3,3,2012 20120909_PHI@CLE,2,31,0,CLE,PHI,3,2,74,(1:00) B.Weeden pass incomplete short right to O.Marecic [J.Babin].,3,3,2012 20120909_PHI@CLE,2,30,56,CLE,PHI,4,2,74,(:56) R.Hodges punts 49 yards to PHI 25 Center-C.Yount fair catch by D.Johnson.,3,3,2012 20120909_PHI@CLE,2,30,49,PHI,CLE,1,10,74,(:49) (Shotgun) M.Vick pass incomplete short left to L.McCoy (C.Robertson) [E.Hagg].,3,3,2012 20120909_PHI@CLE,2,30,43,PHI,CLE,2,10,74,(:43) (Shotgun) M.Vick pass short left to L.McCoy ran ob at PHI 36 for 10 yards (J.Haden).,3,3,2012 20120909_PHI@CLE,2,30,35,PHI,CLE,1,10,64,(:35) (Shotgun) M.Vick pass incomplete short right to L.McCoy.,3,3,2012 20120909_PHI@CLE,2,30,30,PHI,CLE,2,10,64,(:30) (Shotgun) M.Vick pass deep left to J.Maclin to CLV 18 for 46 yards (B.Skrine).,3,3,2012 20120909_PHI@CLE,2,30,23,PHI,CLE,1,10,18,(:23) (Shotgun) M.Vick pass deep middle to J.Maclin for 18 yards TOUCHDOWN.,3,3,2012 20120909_PHI@CLE,2,30,23,PHI,CLE,,,18,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,3,3,2012 20120909_PHI@CLE,2,30,23,PHI,CLE,,,18,A.Henery kicks 40 yards from PHI 35 to CLV 25. E.Stephens to CLV 32 for 7 yards (C.Marsh).,10,3,2012 20120909_PHI@CLE,2,30,14,CLE,PHI,1,10,68,(:14) (Shotgun) B.Weeden pass incomplete deep left to T.Benjamin.,3,10,2012 20120909_PHI@CLE,2,30,9,CLE,PHI,2,10,68,(:09) (Shotgun) B.Weeden pass short right to J.Gordon ran ob at PHI 48 for 20 yards (D.Ryans).,3,10,2012 20120909_PHI@CLE,2,30,1,CLE,PHI,1,10,48,(:01) (Shotgun) B.Weeden scrambles left end to PHI 23 for 25 yards (D.Ryans).,3,10,2012 20120909_PHI@CLE,3,30,0,PHI,CLE,,,48,A.Henery kicks 71 yards from PHI 35 to CLV -6. J.Cribbs to CLV 13 for 19 yards (B.Rolle).,10,3,2012 20120909_PHI@CLE,3,29,56,CLE,PHI,1,10,87,(14:56) T.Richardson right guard to CLV 14 for 1 yard (J.Babin).,3,10,2012 20120909_PHI@CLE,3,29,16,CLE,PHI,2,9,86,(14:16) (Shotgun) B.Weeden pass short middle to J.Gordon to CLV 26 for 12 yards (K.Coleman).,3,10,2012 20120909_PHI@CLE,3,28,42,CLE,PHI,1,10,74,(13:42) B.Weeden sacked at CLV 19 for -7 yards (J.Babin). FUMBLES (J.Babin) recovered by CLV-J.Thomas at CLV 19. J.Thomas to CLV 26 for 7 yards.,3,10,2012 20120909_PHI@CLE,3,27,57,CLE,PHI,2,10,74,(12:57) T.Richardson left guard to CLV 31 for 5 yards (C.Jenkins).,3,10,2012 20120909_PHI@CLE,3,27,16,CLE,PHI,3,5,69,(12:16) B.Weeden pass incomplete short right to M.Massaquoi (B.Boykin).,3,10,2012 20120909_PHI@CLE,3,27,9,CLE,PHI,4,5,69,(12:09) R.Hodges punts 54 yards to PHI 15 Center-C.Yount. D.Johnson to PHI 21 for 6 yards (J.Bademosi). PENALTY on PHI-B.Rolle Illegal Block Above the Waist 10 yards enforced at PHI 21.,3,10,2012 20120909_PHI@CLE,3,26,59,PHI,CLE,1,10,89,(11:59) (Shotgun) M.Vick pass incomplete short right to C.Harbor (K.Maiava).,10,3,2012 20120909_PHI@CLE,3,26,54,PHI,CLE,2,10,89,(11:54) (Shotgun) L.McCoy left guard to PHI 6 for -5 yards (B.Skrine).,10,3,2012 20120909_PHI@CLE,3,26,11,PHI,CLE,3,15,94,(11:11) (Shotgun) M.Vick pass incomplete deep right to J.Maclin (A.Rubin). Penalty on PHI-D.Watkins Offensive Holding declined.,10,3,2012 20120909_PHI@CLE,3,26,5,PHI,CLE,4,15,94,(11:05) C.Henry punts 61 yards to CLV 33 Center-J.Dorenbos. J.Cribbs to CLV 39 for 6 yards (A.Jordan).,10,3,2012 20120909_PHI@CLE,3,25,52,CLE,PHI,1,10,61,(10:52) B.Weeden pass deep right intended for T.Benjamin INTERCEPTED by D.Rodgers-Cromartie at PHI 34. D.Rodgers-Cromartie to PHI 34 for no gain (G.Little). PENALTY on PHI-P.Hunt Unnecessary Roughness 15 yards enforced at PHI 34.,3,10,2012 20120909_PHI@CLE,3,25,46,PHI,CLE,1,10,81,(10:46) L.McCoy right tackle to PHI 19 for no gain (F.Rucker).,10,3,2012 20120909_PHI@CLE,3,25,10,PHI,CLE,2,10,81,(10:10) M.Vick pass incomplete short left to C.Harbor (D.Jackson).,10,3,2012 20120909_PHI@CLE,3,25,6,PHI,CLE,3,10,81,(10:06) M.Vick pass short left to D.Johnson to PHI 29 for 10 yards (B.Skrine).,10,3,2012 20120909_PHI@CLE,3,24,37,PHI,CLE,1,10,71,(9:37) L.McCoy right tackle to PHI 35 for 6 yards (A.Rubin; K.Maiava). Deflected off 52 Jackson,10,3,2012 20120909_PHI@CLE,3,24,2,PHI,CLE,2,4,65,(9:02) (Shotgun) L.McCoy left tackle to PHI 38 for 3 yards (J.Haden).,10,3,2012 20120909_PHI@CLE,3,23,17,PHI,CLE,3,1,62,(8:17) L.McCoy left tackle to PHI 39 for 1 yard (L.Fort).,10,3,2012 20120909_PHI@CLE,3,22,30,PHI,CLE,1,10,61,(7:30) M.Vick pass short middle intended for C.Harbor INTERCEPTED by L.Fort at CLV 47. L.Fort to PHI 43 for 10 yards (C.Harbor).,10,3,2012 20120909_PHI@CLE,3,22,19,CLE,PHI,1,10,46,(7:19) B.Weeden FUMBLES (Aborted) at PHI 43 recovered by CLV-T.Richardson at PHI 46.,3,10,2012 20120909_PHI@CLE,3,21,40,CLE,PHI,2,13,46,(6:40) (Shotgun) B.Weeden pass short left to M.Massaquoi to PHI 33 for 13 yards (N.Allen; B.Boykin).,3,10,2012 20120909_PHI@CLE,3,21,7,CLE,PHI,1,10,33,(6:07) B.Weeden sacked at PHI 40 for -7 yards (F.Cox). PENALTY on PHI Roughing the Passer 15 yards enforced at PHI 40.,3,10,2012 20120909_PHI@CLE,3,20,48,CLE,PHI,1,10,25,(5:48) B.Weeden pass incomplete short left to J.Gordon (N.Asomugha).,3,10,2012 20120909_PHI@CLE,3,20,42,CLE,PHI,2,10,25,(5:42) T.Richardson left tackle to PHI 24 for 1 yard (D.Ryans).,3,10,2012 20120909_PHI@CLE,3,20,5,CLE,PHI,3,9,24,(5:05) (Shotgun) B.Weeden pass incomplete short middle to M.Massaquoi.,3,10,2012 20120909_PHI@CLE,3,20,1,CLE,PHI,4,9,24,(5:01) (Field Goal formation) P.Dawson 42 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,3,10,2012 20120909_PHI@CLE,3,20,1,CLE,PHI,,,24,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,6,10,2012 20120909_PHI@CLE,3,19,57,PHI,CLE,1,10,80,(4:57) M.Vick pass incomplete short left to B.Celek [T.Ward].,10,6,2012 20120909_PHI@CLE,3,19,54,PHI,CLE,2,10,80,(4:54) M.Vick pass short middle to C.Harbor to PHI 22 for 2 yards (K.Maiava).,10,6,2012 20120909_PHI@CLE,3,19,8,PHI,CLE,3,8,78,(4:08) M.Vick pass short middle to L.McCoy to PHI 28 for 6 yards (C.Robertson).,10,6,2012 20120909_PHI@CLE,3,18,33,PHI,CLE,4,2,72,(3:33) C.Henry punts 62 yards to CLV 10 Center-J.Dorenbos. J.Cribbs to CLV 31 for 21 yards (B.Rolle).,10,6,2012 20120909_PHI@CLE,3,18,20,CLE,PHI,1,10,69,(3:20) B.Weeden pass incomplete short right to G.Little.,6,10,2012 20120909_PHI@CLE,3,18,15,CLE,PHI,2,10,69,(3:15) (Shotgun) B.Weeden pass incomplete short right to T.Benjamin (D.Rodgers-Cromartie).,6,10,2012 20120909_PHI@CLE,3,18,13,CLE,PHI,3,10,69,(3:13) (Shotgun) B.Weeden pass incomplete short right to B.Jackson [J.Babin].,6,10,2012 20120909_PHI@CLE,3,18,8,CLE,PHI,4,10,69,(3:08) R.Hodges punts 33 yards to PHI 36 Center-C.Yount downed by CLV-A.Smith.,6,10,2012 20120909_PHI@CLE,3,17,57,PHI,CLE,1,10,64,(2:57) (Shotgun) M.Vick pass deep middle to B.Celek to CLV 36 for 28 yards (C.Robertson; E.Hagg).,10,6,2012 20120909_PHI@CLE,3,17,15,PHI,CLE,1,10,36,(2:15) M.Vick pass incomplete short left to D.Jackson.,10,6,2012 20120909_PHI@CLE,3,17,9,PHI,CLE,2,10,36,(2:09) (Shotgun) M.Vick pass incomplete short middle to D.Jackson (J.Sheard).,10,6,2012 20120909_PHI@CLE,3,17,4,PHI,CLE,3,10,36,(2:04) (Shotgun) M.Vick pass short left intended for J.Maclin INTERCEPTED by J.Haden at CLV 28. J.Haden to PHI 22 for 50 yards (M.Vick). Penalty on PHI Offensive Holding declined.,10,6,2012 20120909_PHI@CLE,3,16,53,CLE,PHI,1,10,22,(1:53) B.Weeden pass short right to T.Richardson to PHI 17 for 5 yards (M.Kendricks).,6,10,2012 20120909_PHI@CLE,3,16,6,CLE,PHI,2,5,17,(1:06) T.Richardson right guard to PHI 12 for 5 yards (N.Allen).,6,10,2012 20120909_PHI@CLE,3,15,21,CLE,PHI,1,10,12,(:21) (Shotgun) B.Weeden pass incomplete short right to A.Smith. PENALTY on PHI Defensive Holding 5 yards enforced at PHI 12 - No Play.,6,10,2012 20120909_PHI@CLE,3,15,16,CLE,PHI,1,7,7,(:16) T.Richardson left guard to PHI 10 for -3 yards (C.Jenkins).,6,10,2012 20120909_PHI@CLE,4,15,0,CLE,PHI,2,10,10,(15:00) (Shotgun) B.Weeden pass short right to B.Watson to PHI 4 for 6 yards (B.Boykin).,6,10,2012 20120909_PHI@CLE,4,14,22,CLE,PHI,3,4,4,(14:22) B.Weeden pass incomplete short right to J.Cameron.,6,10,2012 20120909_PHI@CLE,4,14,17,CLE,PHI,4,4,4,(14:17) P.Dawson 22 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,6,10,2012 20120909_PHI@CLE,4,14,17,CLE,PHI,,,4,P.Dawson kicks 64 yards from CLV 35 to PHI 1. B.Boykin to PHI 18 for 17 yards (B.Skrine; C.Robertson).,9,10,2012 20120909_PHI@CLE,4,14,15,PHI,CLE,1,10,82,(14:15) PENALTY on PHI-E.Mathis False Start 5 yards enforced at PHI 18 - No Play.,10,9,2012 20120909_PHI@CLE,4,14,10,PHI,CLE,1,15,87,(14:10) M.Vick pass short left intended for J.Maclin INTERCEPTED by D.Jackson at PHI 27. D.Jackson for 27 yards TOUCHDOWN.,10,9,2012 20120909_PHI@CLE,4,14,10,CLE,PHI,,,87,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,9,10,2012 20120909_PHI@CLE,4,14,10,CLE,PHI,,,87,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,16,10,2012 20120909_PHI@CLE,4,13,59,PHI,CLE,1,10,80,(13:59) L.McCoy right tackle to PHI 35 for 15 yards (T.Ward).,10,16,2012 20120909_PHI@CLE,4,13,24,PHI,CLE,1,10,65,(13:24) L.McCoy right tackle ran ob at PHI 40 for 5 yards (K.Maiava).,10,16,2012 20120909_PHI@CLE,4,13,3,PHI,CLE,2,5,60,(13:03) L.McCoy left tackle to PHI 47 for 7 yards (T.Ward).,10,16,2012 20120909_PHI@CLE,4,12,25,PHI,CLE,1,10,53,(12:25) B.Brown right guard to CLV 49 for 4 yards (F.Rucker; C.Robertson).,10,16,2012 20120909_PHI@CLE,4,11,50,PHI,CLE,2,6,49,(11:50) M.Vick pass incomplete short right to J.Maclin (B.Skrine).,10,16,2012 20120909_PHI@CLE,4,11,46,PHI,CLE,3,6,49,(11:46) (Shotgun) M.Vick pass short left to J.Avant to CLV 41 for 8 yards (J.Haden).,10,16,2012 20120909_PHI@CLE,4,11,9,PHI,CLE,1,10,41,(11:09) L.McCoy right tackle to CLV 28 for 13 yards (E.Stephens).,10,16,2012 20120909_PHI@CLE,4,10,27,PHI,CLE,1,10,28,(10:27) (Shotgun) M.Vick pass short left to L.McCoy to CLV 29 for -1 yards (I.Kitchen).,10,16,2012 20120909_PHI@CLE,4,9,51,PHI,CLE,2,11,29,(9:51) L.McCoy right tackle to CLV 27 for 2 yards (E.Stephens).,10,16,2012 20120909_PHI@CLE,4,9,13,PHI,CLE,3,9,27,(9:13) M.Vick pass incomplete deep right to D.Jackson.,10,16,2012 20120909_PHI@CLE,4,9,4,PHI,CLE,4,9,27,(9:04) A.Henery 45 yard field goal is No Good Wide Left Center-J.Dorenbos Holder-C.Henry.,10,16,2012 20120909_PHI@CLE,4,9,1,CLE,PHI,1,10,65,(9:01) T.Richardson left guard to CLV 39 for 4 yards (K.Coleman).,16,10,2012 20120909_PHI@CLE,4,8,24,CLE,PHI,2,6,61,(8:24) T.Richardson right guard to CLV 41 for 2 yards (D.Tapp).,16,10,2012 20120909_PHI@CLE,4,7,49,CLE,PHI,3,4,59,(7:49) B.Weeden pass short right to B.Jackson pushed ob at PHI 45 for 14 yards (N.Allen).,16,10,2012 20120909_PHI@CLE,4,7,24,CLE,PHI,1,10,45,(7:24) T.Richardson right guard to PHI 46 for -1 yards (T.Cole).,16,10,2012 20120909_PHI@CLE,4,6,41,CLE,PHI,2,11,46,(6:41) B.Weeden pass incomplete short left to G.Little.,16,10,2012 20120909_PHI@CLE,4,6,37,CLE,PHI,3,11,46,(6:37) (Shotgun) B.Weeden pass incomplete short left to B.Jackson (N.Asomugha).,16,10,2012 20120909_PHI@CLE,4,6,33,CLE,PHI,4,11,46,(6:33) R.Hodges punts 37 yards to PHI 9 Center-C.Yount fair catch by D.Johnson.,16,10,2012 20120909_PHI@CLE,4,6,25,PHI,CLE,1,10,91,(6:25) (Shotgun) M.Vick pass incomplete deep left to B.Celek.,10,16,2012 20120909_PHI@CLE,4,6,20,PHI,CLE,2,10,91,(6:20) (Shotgun) M.Vick pass short middle to J.Avant to PHI 17 for 8 yards (D.Patterson).,10,16,2012 20120909_PHI@CLE,4,5,56,PHI,CLE,3,2,83,(5:56) (No Huddle) M.Vick pass short left to J.Avant to PHI 23 for 6 yards (C.Robertson).,10,16,2012 20120909_PHI@CLE,4,5,27,PHI,CLE,1,10,77,(5:27) (No Huddle) L.McCoy right guard to PHI 26 for 3 yards (J.Sheard).,10,16,2012 20120909_PHI@CLE,4,4,58,PHI,CLE,2,7,74,(4:58) (No Huddle Shotgun) M.Vick pass incomplete deep left to J.Maclin. PENALTY on CLV-A.Rubin Roughing the Passer 15 yards enforced at PHI 26 - No Play. Penalty on CLV-B.Skrine Defensive Holding declined.,10,16,2012 20120909_PHI@CLE,4,4,50,PHI,CLE,1,10,59,(4:50) (Shotgun) M.Vick pass short left to D.Jackson to 50 for 9 yards.,10,16,2012 20120909_PHI@CLE,4,4,23,PHI,CLE,2,1,50,(4:23) (No Huddle) L.McCoy left tackle to CLV 43 for 7 yards (T.Ward).,10,16,2012 20120909_PHI@CLE,4,3,56,PHI,CLE,1,10,43,(3:56) (No Huddle Shotgun) M.Vick pass short left to J.Maclin to CLV 32 for 11 yards (B.Skrine).,10,16,2012 20120909_PHI@CLE,4,3,24,PHI,CLE,1,10,32,(3:24) (No Huddle Shotgun) M.Vick pass incomplete deep right to D.Jackson.,10,16,2012 20120909_PHI@CLE,4,3,18,PHI,CLE,2,10,32,(3:18) (Shotgun) M.Vick pass incomplete short middle to J.Avant (E.Hagg).,10,16,2012 20120909_PHI@CLE,4,3,14,PHI,CLE,3,10,32,(3:14) (Shotgun) M.Vick scrambles left end to CLV 23 for 9 yards (A.Rubin). FUMBLES (A.Rubin) and recovers at CLV 23. M.Vick to CLV 23 for no gain (A.Rubin).,10,16,2012 20120909_PHI@CLE,4,2,50,PHI,CLE,4,1,23,(2:50) L.McCoy right tackle to CLV 20 for 3 yards (K.Maiava).,10,16,2012 20120909_PHI@CLE,4,2,17,PHI,CLE,1,10,20,(2:17) M.Vick pass incomplete deep middle to J.Maclin [A.Rubin].,10,16,2012 20120909_PHI@CLE,4,2,12,PHI,CLE,2,10,20,(2:12) M.Vick pass short right to B.Celek to CLV 3 for 17 yards (T.Ward).,10,16,2012 20120909_PHI@CLE,4,2,0,PHI,CLE,1,3,3,(2:00) B.Brown right guard to CLV 4 for -1 yards (D.Jackson).,10,16,2012 20120909_PHI@CLE,4,1,29,PHI,CLE,2,4,4,(1:29) M.Vick pass incomplete short right to J.Maclin (L.Fort).,10,16,2012 20120909_PHI@CLE,4,1,23,PHI,CLE,3,4,4,(1:23) (Shotgun) M.Vick pass short right to C.Harbor for 4 yards TOUCHDOWN.,10,16,2012 20120909_PHI@CLE,4,1,23,PHI,CLE,,,4,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,10,16,2012 20120909_PHI@CLE,4,1,23,PHI,CLE,,,4,A.Henery kicks 68 yards from PHI 35 to CLV -3. J.Cribbs to CLV 30 for 33 yards (J.Avant). PHI-B.Boykin was injured during the play. His return is Questionable.,17,16,2012 20120909_PHI@CLE,4,1,12,CLE,PHI,1,10,70,(1:12) (Shotgun) B.Weeden pass deep right intended for M.Massaquoi INTERCEPTED by K.Coleman at CLV 47. K.Coleman to CLV 40 for 7 yards.,16,17,2012 20120909_PHI@CLE,4,1,5,PHI,CLE,1,10,40,(1:05) M.Vick kneels to CLV 41 for -1 yards.,17,16,2012 20120909_PHI@CLE,4,1,2,PHI,CLE,2,11,41,(1:02) M.Vick kneels to CLV 43 for -2 yards.,17,16,2012 20120909_PHI@CLE,4,0,29,PHI,CLE,3,13,43,(:29) M.Vick kneels to CLV 44 for -1 yards.,17,16,2012 20120909_PHI@CLE,4,0,29,PHI,CLE,,,43,                      ,17,16,2012 20120909_STL@DET,1,0,0,STL,DET,,,43,G.Zuerlein kicks 73 yards from SL 35 to DET -8. S.Logan Touchback.,0,0,2012 20120909_STL@DET,1,60,0,DET,STL,1,10,80,(15:00) N.Burleson right end to DET 26 for 6 yards (J.Jenkins; Q.Mikell).,0,0,2012 20120909_STL@DET,1,59,24,DET,STL,2,4,74,(14:24) (Shotgun) M.Stafford pass short right to C.Johnson to DET 30 for 4 yards (B.Fletcher).,0,0,2012 20120909_STL@DET,1,58,45,DET,STL,1,10,70,(13:45) (Shotgun) K.Smith right tackle to DET 36 for 6 yards (C.Finnegan).,0,0,2012 20120909_STL@DET,1,58,5,DET,STL,2,4,64,(13:05) (Shotgun) M.Stafford pass short right to W.Heller to DET 41 for 5 yards (J.Jenkins).,0,0,2012 20120909_STL@DET,1,57,28,DET,STL,1,10,59,(12:28) M.Stafford pass short left to N.Burleson to DET 46 for 5 yards (C.Finnegan).,0,0,2012 20120909_STL@DET,1,56,47,DET,STL,2,5,54,(11:47) (Shotgun) S.Logan right end to DET 47 for 1 yard (C.Finnegan; J.Laurinaitis).,0,0,2012 20120909_STL@DET,1,56,9,DET,STL,3,4,53,(11:09) (Shotgun) M.Stafford pass short left to T.Scheffler to SL 43 for 10 yards (J.Laurinaitis).,0,0,2012 20120909_STL@DET,1,55,40,DET,STL,1,10,43,(10:40) (No Huddle) PENALTY on SL-K.Langford Neutral Zone Infraction 5 yards enforced at SL 43 - No Play.,0,0,2012 20120909_STL@DET,1,55,18,DET,STL,1,5,38,(10:18) (Shotgun) M.Stafford pass short left to B.Pettigrew to SL 32 for 6 yards (J.Dunbar).,0,0,2012 20120909_STL@DET,1,54,47,DET,STL,1,10,32,(9:47) K.Smith left end to SL 26 for 6 yards (J.Laurinaitis).,0,0,2012 20120909_STL@DET,1,54,9,DET,STL,2,4,26,(9:09) M.Stafford pass short right to K.Smith pushed ob at SL 17 for 9 yards (C.Finnegan).,0,0,2012 20120909_STL@DET,1,53,38,DET,STL,1,10,17,(8:38) (Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew.,0,0,2012 20120909_STL@DET,1,53,33,DET,STL,2,10,17,(8:33) (Shotgun) M.Stafford pass short middle to W.Heller to SL 3 for 14 yards (Q.Mikell).,0,0,2012 20120909_STL@DET,1,52,54,DET,STL,1,3,3,(7:54) M.Stafford pass short right intended for T.Scheffler INTERCEPTED by J.Jenkins at SL 0. J.Jenkins to SL 34 for 34 yards (K.Smith).,0,0,2012 20120909_STL@DET,1,52,46,STL,DET,1,10,66,(7:46) S.Jackson right tackle to SL 34 for no gain (J.Durant; D.Levy).,0,0,2012 20120909_STL@DET,1,52,8,STL,DET,2,10,66,(7:08) S.Jackson left tackle to SL 36 for 2 yards (J.Durant). PENALTY on SL-R.Turner Offensive Holding 10 yards enforced at SL 34 - No Play.,0,0,2012 20120909_STL@DET,1,51,46,STL,DET,2,20,76,(6:46) S.Bradford pass short right to S.Jackson to SL 36 for 12 yards (E.Coleman; S.Tulloch).,0,0,2012 20120909_STL@DET,1,51,2,STL,DET,3,8,64,(6:02) (Shotgun) S.Bradford pass short middle to D.Amendola to DET 49 for 15 yards (D.Levy).,0,0,2012 20120909_STL@DET,1,50,23,STL,DET,1,10,49,(5:23) S.Bradford pass short right to L.Kendricks to DET 41 for 8 yards (J.Lacey).,0,0,2012 20120909_STL@DET,1,49,48,STL,DET,2,2,41,(4:48) S.Jackson left tackle to DET 40 for 1 yard (SamL.Hill).,0,0,2012 20120909_STL@DET,1,49,13,STL,DET,3,1,40,(4:13) S.Jackson left tackle to DET 33 for 7 yards (J.Durant).,0,0,2012 20120909_STL@DET,1,48,34,STL,DET,1,10,33,(3:34) S.Jackson right tackle to DET 32 for 1 yard (SamL.Hill).,0,0,2012 20120909_STL@DET,1,47,51,STL,DET,2,9,32,(2:51) (Shotgun) S.Bradford pass incomplete deep right to S.Smith. PENALTY on SL-B.Gibson Unnecessary Roughness 15 yards enforced at DET 32.,0,0,2012 20120909_STL@DET,1,47,45,STL,DET,3,24,47,(2:45) (Shotgun) S.Bradford pass short left to D.Amendola to DET 30 for 17 yards (J.Lacey J.Wendling) [C.Avril].,0,0,2012 20120909_STL@DET,1,47,2,STL,DET,4,7,30,(2:02) G.Zuerlein 48 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 20120909_STL@DET,1,47,2,STL,DET,,,30,G.Zuerlein kicks 74 yards from SL 35 to DET -9. S.Logan Touchback.,3,0,2012 20120909_STL@DET,1,46,57,DET,STL,1,10,80,(1:57) (Shotgun) M.Stafford pass incomplete short left to N.Burleson [C.Long].,0,3,2012 20120909_STL@DET,1,46,53,DET,STL,2,10,80,(1:53) (Shotgun) K.Smith left tackle to DET 25 for 5 yards (J.Laurinaitis).,0,3,2012 20120909_STL@DET,1,46,15,DET,STL,3,5,75,(1:15) (Shotgun) M.Stafford pass short right to N.Burleson to DET 30 for 5 yards (C.Dahl).,0,3,2012 20120909_STL@DET,1,45,31,DET,STL,1,10,70,(:31) T.Young left end pushed ob at DET 41 for 11 yards (Q.Mikell).,0,3,2012 20120909_STL@DET,2,45,0,DET,STL,1,10,59,(15:00) (Shotgun) M.Stafford pass short right to T.Scheffler to DET 49 for 8 yards (J.Jenkins; J.Laurinaitis).,0,3,2012 20120909_STL@DET,2,44,17,DET,STL,2,2,51,(14:17) K.Smith left tackle to DET 47 for -2 yards (J.Dunbar).,0,3,2012 20120909_STL@DET,2,43,36,DET,STL,3,4,53,(13:36) (Shotgun) M.Stafford pass short left to C.Johnson to SL 45 for 8 yards (B.Fletcher).,0,3,2012 20120909_STL@DET,2,43,0,DET,STL,1,10,45,(13:00) K.Smith left tackle pushed ob at SL 26 for 19 yards (R.Quinn).,0,3,2012 20120909_STL@DET,2,42,38,DET,STL,1,10,26,(12:38) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to SL 17 for 9 yards (J.Laurinaitis).,0,3,2012 20120909_STL@DET,2,42,8,DET,STL,2,1,17,(12:08) (No Huddle Shotgun) M.Stafford pass short left to T.Scheffler to SL 13 for 4 yards (C.Finnegan).,0,3,2012 20120909_STL@DET,2,41,36,DET,STL,1,10,13,(11:36) (No Huddle) K.Williams left tackle to SL 11 for 2 yards (Q.Mikell J.Laurinaitis).,0,3,2012 20120909_STL@DET,2,40,56,DET,STL,2,8,11,(10:56) (Shotgun) M.Stafford pass short middle to C.Johnson to SL 1 for 10 yards (C.Dahl).,0,3,2012 20120909_STL@DET,2,40,24,DET,STL,1,1,1,(10:24) (No Huddle) K.Smith left tackle to SL 1 for no gain (J.Laurinaitis).,0,3,2012 20120909_STL@DET,2,39,46,DET,STL,2,1,1,(9:46) J.Bell up the middle for 1 yard TOUCHDOWN.,0,3,2012 20120909_STL@DET,2,39,46,DET,STL,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,0,3,2012 20120909_STL@DET,2,39,46,DET,STL,,,1,J.Hanson kicks 73 yards from DET 35 to SL -8. I.Pead Touchback.,7,3,2012 20120909_STL@DET,2,39,26,STL,DET,1,10,80,(9:26) S.Bradford pass incomplete short right to D.Amendola.,3,7,2012 20120909_STL@DET,2,39,22,STL,DET,2,10,80,(9:22) S.Jackson up the middle to SL 18 for -2 yards (N.Suh).,3,7,2012 20120909_STL@DET,2,38,42,STL,DET,3,12,82,(8:42) (Shotgun) S.Bradford pass incomplete deep right to C.Givens (D.Florence).,3,7,2012 20120909_STL@DET,2,38,32,STL,DET,4,12,82,(8:32) J.Hekker to SL 6 for -12 yards. FUMBLES and recovers at SL 7. J.Hekker punts 50 yards to DET 32. S.Logan to SL 47 for 21 yards (C.Dahl). PENALTY on SL-C.Dahl Horse Collar Tackle 15 yards enforced at SL 47.,3,7,2012 20120909_STL@DET,2,38,19,DET,STL,1,10,32,(8:19) (Shotgun) K.Smith up the middle to SL 30 for 2 yards (R.Quinn).,7,3,2012 20120909_STL@DET,2,37,54,DET,STL,2,8,30,(7:54) (No Huddle Shotgun) M.Stafford pass short middle to T.Young to SL 16 for 14 yards (J.Jenkins).,7,3,2012 20120909_STL@DET,2,37,17,DET,STL,1,10,16,(7:17) (Shotgun) M.Stafford pass short left intended for B.Pettigrew INTERCEPTED by J.Dunbar at SL 14. J.Dunbar to DET 44 for 42 yards (K.Smith).,7,3,2012 20120909_STL@DET,2,37,5,STL,DET,1,10,44,(7:05) S.Jackson up the middle to DET 35 for 9 yards (E.Coleman J.Wendling).,3,7,2012 20120909_STL@DET,2,36,33,STL,DET,2,1,35,(6:33) S.Jackson left tackle to DET 32 for 3 yards (E.Coleman).,3,7,2012 20120909_STL@DET,2,35,54,STL,DET,1,10,32,(5:54) S.Bradford pass short right to S.Jackson to DET 22 for 10 yards (S.Tulloch) [C.Avril].,3,7,2012 20120909_STL@DET,2,35,14,STL,DET,1,10,22,(5:14) D.Richardson left end to DET 11 for 11 yards (K.Vanden Bosch).,3,7,2012 20120909_STL@DET,2,34,35,STL,DET,1,10,11,(4:35) S.Jackson left tackle to DET 10 for 1 yard (N.Fairley; S.Tulloch).,3,7,2012 20120909_STL@DET,2,33,56,STL,DET,2,9,10,(3:56) (Shotgun) S.Bradford pass short left to S.Jackson to DET 6 for 4 yards (E.Coleman).,3,7,2012 20120909_STL@DET,2,33,17,STL,DET,3,5,6,(3:17) (Shotgun) S.Bradford sacked at DET 11 for -5 yards (N.Fairley).,3,7,2012 20120909_STL@DET,2,32,39,STL,DET,4,10,11,(2:39) G.Zuerlein 29 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,7,2012 20120909_STL@DET,2,32,39,STL,DET,,,11,G.Zuerlein kicks 70 yards from SL 35 to DET -5. S.Logan to DET 13 for 18 yards (R.McLeod).,6,7,2012 20120909_STL@DET,2,32,30,DET,STL,1,10,87,(2:30) (Shotgun) M.Stafford pass short left to K.Williams to DET 17 for 4 yards (J.Dunbar).,7,6,2012 20120909_STL@DET,2,32,0,DET,STL,2,6,83,(2:00) (Shotgun) M.Stafford pass short left to K.Smith to DET 23 for 6 yards (J.Jenkins).,7,6,2012 20120909_STL@DET,2,31,36,DET,STL,1,10,77,(1:36) (No Huddle Shotgun) M.Stafford pass short right intended for C.Johnson INTERCEPTED by C.Finnegan at DET 31. C.Finnegan for 31 yards TOUCHDOWN. PENALTY on DET-T.Young Unnecessary Roughness 15 yards enforced between downs. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,7,6,2012 20120909_STL@DET,2,31,36,STL,DET,,,77,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,6,7,2012 20120909_STL@DET,2,31,36,STL,DET,,,77,G.Zuerlein kicks 27 yards from 50 to DET 23. W.Heller to DET 24 for 1 yard (Q.Pointer; M.Daniels).,13,7,2012 20120909_STL@DET,2,31,24,DET,STL,1,10,76,(1:24) (Shotgun) M.Stafford pass deep middle to C.Johnson to SL 25 for 51 yards (C.Dahl).,7,13,2012 20120909_STL@DET,2,30,43,DET,STL,1,10,25,(:43) (No Huddle Shotgun) K.Smith right tackle to SL 23 for 2 yards (J.Dunbar).,7,13,2012 20120909_STL@DET,2,30,39,DET,STL,2,8,23,(:39) (Shotgun) M.Stafford pass incomplete deep right to B.Pettigrew.,7,13,2012 20120909_STL@DET,2,30,33,DET,STL,3,8,23,(:33) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (B.Fletcher).,7,13,2012 20120909_STL@DET,2,30,25,DET,STL,4,8,23,(:25) J.Hanson 41 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,7,13,2012 20120909_STL@DET,2,30,25,DET,STL,,,23,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,10,13,2012 20120909_STL@DET,2,30,18,STL,DET,1,10,80,(:18) S.Bradford kneels to SL 19 for -1 yards.,13,10,2012 20120909_STL@DET,3,30,0,DET,STL,,,80,J.Hanson kicks 70 yards from DET 35 to SL -5. I.Pead to SL 20 for 25 yards (K.Williams).,10,13,2012 20120909_STL@DET,3,29,55,STL,DET,1,10,80,(14:55) S.Jackson right tackle to SL 26 for 6 yards (C.Williams; K.Vanden Bosch).,13,10,2012 20120909_STL@DET,3,29,11,STL,DET,2,4,74,(14:11) S.Jackson left tackle to SL 27 for 1 yard (S.Tulloch; C.Avril).,13,10,2012 20120909_STL@DET,3,28,31,STL,DET,3,3,73,(13:31) (Shotgun) PENALTY on SL-R.Saffold False Start 5 yards enforced at SL 27 - No Play.,13,10,2012 20120909_STL@DET,3,28,7,STL,DET,3,8,78,(13:07) (Shotgun) S.Bradford sacked at SL 10 for -12 yards (N.Suh).,13,10,2012 20120909_STL@DET,3,27,36,STL,DET,4,20,90,(12:36) J.Hekker punts 46 yards to DET 44 Center-J.McQuaide. S.Logan to SL 41 for 15 yards (J.Hull).,13,10,2012 20120909_STL@DET,3,27,23,DET,STL,1,10,41,(12:23) M.Stafford pass short left to N.Burleson pushed ob at SL 31 for 10 yards (J.Jenkins).,10,13,2012 20120909_STL@DET,3,26,56,DET,STL,1,10,31,(11:56) K.Smith left tackle to SL 30 for 1 yard (Q.Mikell).,10,13,2012 20120909_STL@DET,3,26,13,DET,STL,2,9,30,(11:13) (Shotgun) M.Stafford sacked at SL 39 for -9 yards (R.Quinn).,10,13,2012 20120909_STL@DET,3,25,36,DET,STL,3,18,39,(10:36) (Shotgun) PENALTY on SL-C.Long Neutral Zone Infraction 5 yards enforced at SL 39 - No Play.,10,13,2012 20120909_STL@DET,3,25,17,DET,STL,3,13,34,(10:17) (Shotgun) M.Stafford pass short middle to N.Burleson to SL 26 for 8 yards (C.Dahl).,10,13,2012 20120909_STL@DET,3,24,34,DET,STL,4,5,26,(9:34) J.Hanson 45 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,10,13,2012 20120909_STL@DET,3,24,34,DET,STL,,,26,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,13,13,2012 20120909_STL@DET,3,24,29,STL,DET,1,10,80,(9:29) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 29 for 9 yards (J.Durant).,13,13,2012 20120909_STL@DET,3,23,49,STL,DET,2,1,71,(8:49) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 35 for 6 yards (S.Tulloch). PENALTY on SL-R.Watkins Offensive Holding 10 yards enforced at SL 29 - No Play.,13,13,2012 20120909_STL@DET,3,23,24,STL,DET,2,11,81,(8:24) S.Bradford pass incomplete deep right to D.Amendola [C.Williams]. Game delayed due to injury to game official. #16-Paul Caldera out. Replaced by alternate official #124-Curtis Adams.,13,13,2012 20120909_STL@DET,3,23,18,STL,DET,3,11,81,(8:18) (Shotgun) S.Bradford pass short right to S.Jackson to SL 24 for 5 yards (S.Tulloch).,13,13,2012 20120909_STL@DET,3,22,43,STL,DET,4,6,76,(7:43) J.Hekker punts 45 yards to DET 31 Center-J.McQuaide. S.Logan pushed ob at DET 45 for 14 yards (R.McLeod).,13,13,2012 20120909_STL@DET,3,22,30,DET,STL,1,10,55,(7:30) (Shotgun) K.Smith right tackle to SL 47 for 8 yards (K.Langford).,13,13,2012 20120909_STL@DET,3,21,48,DET,STL,2,2,47,(6:48) (Shotgun) M.Stafford pass short right to S.Logan to SL 48 for -1 yards (C.Finnegan R.McIntosh).,13,13,2012 20120909_STL@DET,3,21,7,DET,STL,3,3,48,(6:07) (Shotgun) M.Stafford pass incomplete short right to N.Burleson.,13,13,2012 20120909_STL@DET,3,21,3,DET,STL,4,3,48,(6:03) B.Graham punts 40 yards to SL 8 Center-D.Muhlbach fair catch by D.Amendola. PENALTY on DET-D.Hogue Illegal Formation 5 yards enforced at SL 8.,13,13,2012 20120909_STL@DET,3,20,55,STL,DET,1,10,87,(5:55) S.Jackson left tackle to SL 16 for 3 yards (J.Durant).,13,13,2012 20120909_STL@DET,3,20,16,STL,DET,2,7,84,(5:16) S.Bradford pass short right to L.Kendricks to SL 24 for 8 yards (J.Durant).,13,13,2012 20120909_STL@DET,3,19,36,STL,DET,1,10,76,(4:36) S.Bradford pass incomplete deep left to S.Smith [L.Jackson].,13,13,2012 20120909_STL@DET,3,19,30,STL,DET,2,10,76,(4:30) (Shotgun) S.Bradford pass short left to B.Gibson to SL 31 for 7 yards (D.Bentley).,13,13,2012 20120909_STL@DET,3,18,47,STL,DET,3,3,69,(3:47) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola.,13,13,2012 20120909_STL@DET,3,18,43,STL,DET,4,3,69,(3:43) J.Hekker punts 43 yards to DET 26 Center-J.McQuaide. S.Logan to DET 35 for 9 yards (C.Givens).,13,13,2012 20120909_STL@DET,3,18,30,DET,STL,1,10,65,(3:30) M.Stafford pass incomplete deep left to T.Scheffler (C.Finnegan).,13,13,2012 20120909_STL@DET,3,18,24,DET,STL,2,10,65,(3:24) (Shotgun) M.Stafford pass incomplete deep right to T.Young.,13,13,2012 20120909_STL@DET,3,18,19,DET,STL,3,10,65,(3:19) (Shotgun) M.Stafford pass deep middle to N.Burleson to SL 44 for 21 yards (C.Finnegan).,13,13,2012 20120909_STL@DET,3,17,37,DET,STL,1,10,44,(2:37) K.Smith left tackle to SL 47 for -3 yards (J.Dunbar).,13,13,2012 20120909_STL@DET,3,16,58,DET,STL,2,13,47,(1:58) (Shotgun) M.Stafford pass short middle to M.Stafford to SL 44 for 3 yards (C.Finnegan). Ball was deflected at the line by SL #92-E. Sims.,13,13,2012 20120909_STL@DET,3,16,10,DET,STL,3,10,44,(1:10) (Shotgun) M.Stafford pass incomplete short left to K.Smith.,13,13,2012 20120909_STL@DET,3,16,5,DET,STL,4,10,44,(1:05) B.Graham punts 36 yards to SL 8 Center-D.Muhlbach fair catch by D.Amendola.,13,13,2012 20120909_STL@DET,3,15,57,STL,DET,1,10,92,(:57) S.Jackson left tackle to SL 14 for 6 yards (C.Williams; J.Durant).,13,13,2012 20120909_STL@DET,3,15,14,STL,DET,2,4,86,(:14) S.Jackson left end to SL 20 for 6 yards (J.Durant; E.Coleman).,13,13,2012 20120909_STL@DET,4,15,0,STL,DET,1,10,80,(15:00) S.Jackson up the middle to SL 21 for 1 yard (S.Tulloch; K.Vanden Bosch).,13,13,2012 20120909_STL@DET,4,14,22,STL,DET,2,9,79,(14:22) S.Bradford sacked at SL 16 for -5 yards (C.Williams). FUMBLES (C.Williams) recovered by SL-H.Dahl at SL 13. H.Dahl to SL 13 for no gain (J.Durant).,13,13,2012 20120909_STL@DET,4,13,44,STL,DET,3,17,87,(13:44) (Shotgun) D.Richardson right end to SL 22 for 9 yards (S.Tulloch).,13,13,2012 20120909_STL@DET,4,13,5,STL,DET,4,8,78,(13:05) J.Hekker punts 57 yards to DET 21 Center-J.McQuaide. S.Logan to DET 15 for -6 yards (Q.Pointer). PENALTY on DET-J.Green Offensive Holding 7 yards enforced at DET 15.,13,13,2012 20120909_STL@DET,4,12,54,DET,STL,1,10,92,(12:54) (Shotgun) M.Stafford pass incomplete short right to K.Smith.,13,13,2012 20120909_STL@DET,4,12,50,DET,STL,2,10,92,(12:50) M.Stafford pass incomplete deep middle to T.Young.,13,13,2012 20120909_STL@DET,4,12,45,DET,STL,3,10,92,(12:45) (Shotgun) M.Stafford pass incomplete deep right to B.Pettigrew.,13,13,2012 20120909_STL@DET,4,12,39,DET,STL,4,10,92,(12:39) B.Graham punts 45 yards to SL 47 Center-D.Muhlbach. D.Amendola to DET 47 for 6 yards (W.Heller).,13,13,2012 20120909_STL@DET,4,12,27,STL,DET,1,10,47,(12:27) D.Amendola left end to DET 45 for 2 yards (C.Williams).,13,13,2012 20120909_STL@DET,4,11,49,STL,DET,2,8,45,(11:49) S.Jackson up the middle to DET 40 for 5 yards (A.Spievey).,13,13,2012 20120909_STL@DET,4,11,8,STL,DET,3,3,40,(11:08) S.Bradford pass short middle to S.Smith to DET 24 for 16 yards (D.Florence).,13,13,2012 20120909_STL@DET,4,10,33,STL,DET,1,10,24,(10:33) S.Jackson left end to DET 23 for 1 yard (S.Tulloch; J.Wendling).,13,13,2012 20120909_STL@DET,4,9,51,STL,DET,2,9,23,(9:51) (Shotgun) S.Bradford pass deep left to B.Gibson for 23 yards TOUCHDOWN. SL-R.Saffold was injured during the play. He is Out.,13,13,2012 20120909_STL@DET,4,9,51,STL,DET,,,23,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,13,13,2012 20120909_STL@DET,4,9,51,STL,DET,,,23,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,20,13,2012 20120909_STL@DET,4,9,45,DET,STL,1,10,80,(9:45) M.Stafford pass short right to B.Pettigrew to DET 40 for 20 yards (J.Laurinaitis; B.Fletcher).,13,20,2012 20120909_STL@DET,4,9,5,DET,STL,1,10,60,(9:05) (Shotgun) M.Stafford pass short right to B.Pettigrew pushed ob at SL 42 for 18 yards (Q.Mikell; J.Dunbar).,13,20,2012 20120909_STL@DET,4,8,34,DET,STL,1,10,42,(8:34) (Shotgun) K.Smith left tackle to SL 29 for 13 yards (C.Dahl).,13,20,2012 20120909_STL@DET,4,7,57,DET,STL,1,10,29,(7:57) (Shotgun) M.Stafford pass deep middle to B.Pettigrew to SL 5 for 24 yards (Q.Mikell) [R.Quinn].,13,20,2012 20120909_STL@DET,4,7,24,DET,STL,1,5,5,(7:24) (No Huddle) K.Smith left tackle for 5 yards TOUCHDOWN.,13,20,2012 20120909_STL@DET,4,7,24,DET,STL,,,5,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,13,20,2012 20120909_STL@DET,4,7,24,DET,STL,,,5,J.Hanson kicks 70 yards from DET 35 to SL -5. I.Pead Touchback.,20,20,2012 20120909_STL@DET,4,7,19,STL,DET,1,10,80,(7:19) S.Bradford pass incomplete short right to B.Gibson.,20,20,2012 20120909_STL@DET,4,7,13,STL,DET,2,10,80,(7:13) (Shotgun) S.Bradford pass short middle to M.McNeill to SL 30 for 10 yards (J.Durant; D.Levy).,20,20,2012 20120909_STL@DET,4,6,43,STL,DET,1,10,70,(6:43) S.Jackson up the middle to SL 31 for 1 yard (C.Williams; S.Tulloch).,20,20,2012 20120909_STL@DET,4,6,5,STL,DET,2,9,69,(6:05) S.Bradford pass short right to B.Gibson pushed ob at SL 41 for 10 yards (J.Wendling).,20,20,2012 20120909_STL@DET,4,5,41,STL,DET,1,10,59,(5:41) S.Jackson left end to SL 45 for 4 yards (D.Levy).,20,20,2012 20120909_STL@DET,4,5,0,STL,DET,2,6,55,(5:00) S.Jackson left tackle to SL 46 for 1 yard (K.Vanden Bosch).,20,20,2012 20120909_STL@DET,4,4,18,STL,DET,3,5,54,(4:18) (Shotgun) S.Bradford pass short middle to D.Amendola to DET 40 for 14 yards (E.Coleman).,20,20,2012 20120909_STL@DET,4,3,42,STL,DET,1,10,40,(3:42) S.Jackson right tackle to DET 40 for no gain (D.Levy).,20,20,2012 20120909_STL@DET,4,2,59,STL,DET,2,10,40,(2:59) (Shotgun) S.Bradford pass short right to B.Gibson to DET 29 for 11 yards (D.Florence) [N.Fairley].,20,20,2012 20120909_STL@DET,4,2,51,STL,DET,1,10,29,(2:51) S.Jackson right tackle to DET 31 for -2 yards (J.Durant).,20,20,2012 20120909_STL@DET,4,2,45,STL,DET,2,12,31,(2:45) (Shotgun) S.Bradford scrambles right end to DET 28 for 3 yards (J.Durant).,20,20,2012 20120909_STL@DET,4,2,3,STL,DET,3,9,28,(2:03) (Shotgun) S.Bradford pass incomplete short left to D.Amendola.,20,20,2012 20120909_STL@DET,4,2,0,STL,DET,4,9,28,(2:00) G.Zuerlein 46 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,20,20,2012 20120909_STL@DET,4,2,0,STL,DET,,,28,G.Zuerlein kicks 72 yards from SL 35 to DET -7. S.Logan Touchback.,23,20,2012 20120909_STL@DET,4,1,55,DET,STL,1,10,80,(1:55) (Shotgun) M.Stafford pass deep middle to C.Johnson to DET 40 for 20 yards (C.Dahl).,20,23,2012 20120909_STL@DET,4,1,30,DET,STL,1,10,60,(1:30) (No Huddle Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (B.Fletcher).,20,23,2012 20120909_STL@DET,4,1,25,DET,STL,2,10,60,(1:25) (Shotgun) M.Stafford pass short left to N.Burleson to SL 40 for 20 yards (C.Dahl).,20,23,2012 20120909_STL@DET,4,1,0,DET,STL,1,10,40,(1:00) (No Huddle Shotgun) M.Stafford pass short middle to T.Scheffler to SL 35 for 5 yards (C.Finnegan).,20,23,2012 20120909_STL@DET,4,0,40,DET,STL,2,5,35,(:40) (No Huddle Shotgun) M.Stafford pass short middle to K.Smith to SL 26 for 9 yards (R.McIntosh).,20,23,2012 20120909_STL@DET,4,0,35,DET,STL,1,10,26,(:35) (Shotgun) M.Stafford pass short right to T.Scheffler pushed ob at SL 23 for 3 yards (C.Finnegan).,20,23,2012 20120909_STL@DET,4,0,30,DET,STL,2,7,23,(:30) (Shotgun) M.Stafford pass deep middle to C.Johnson to SL 5 for 18 yards (Q.Mikell).,20,23,2012 20120909_STL@DET,4,0,17,DET,STL,1,5,5,(:17) (No Huddle) M.Stafford spiked the ball to stop the clock.,20,23,2012 20120909_STL@DET,4,0,15,DET,STL,2,5,5,(:15) M.Stafford pass short right to K.Smith for 5 yards TOUCHDOWN.,20,23,2012 20120909_STL@DET,4,0,15,DET,STL,,,5,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,20,23,2012 20120909_STL@DET,4,0,15,DET,STL,,,5,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,27,23,2012 20120909_STL@DET,4,0,10,STL,DET,1,10,80,(:10) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 35 for 15 yards. Lateral to R.Turner to SL 39 for 4 yards (D.Levy; J.Durant).,23,27,2012 20120909_STL@DET,4,0,2,STL,DET,1,10,61,(:02) (Shotgun) S.Bradford scrambles up the middle to SL 40 for 1 yard (C.Avril).,23,27,2012 20120909_STL@DET,4,0,2,STL,DET,,,61,                      ,23,27,2012 20120909_MIA@HOU,1,0,0,HOU,MIA,,,61,S.Graham kicks 68 yards from HST 35 to MIA -3. M.Thigpen to MIA 28 for 31 yards (M.Alexander). PENALTY on MIA-J.Freeny Offensive Holding 10 yards enforced at MIA 28.,0,0,2012 20120909_MIA@HOU,1,59,55,MIA,HOU,1,10,82,(14:55) R.Bush right tackle to MIA 19 for 1 yard (S.Cody).,0,0,2012 20120909_MIA@HOU,1,59,26,MIA,HOU,2,9,81,(14:26) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 29 for 10 yards (K.Jackson; D.Manning).,0,0,2012 20120909_MIA@HOU,1,58,58,MIA,HOU,1,10,71,(13:58) R.Bush up the middle to MIA 36 for 7 yards (S.Cody B.James).,0,0,2012 20120909_MIA@HOU,1,58,30,MIA,HOU,2,3,64,(13:30) R.Bush left tackle to MIA 45 for 9 yards (J.Joseph).,0,0,2012 20120909_MIA@HOU,1,57,55,MIA,HOU,1,10,55,(12:55) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 49 for 4 yards (B.Cushing).,0,0,2012 20120909_MIA@HOU,1,57,23,MIA,HOU,2,6,51,(12:23) (Shotgun) R.Tannehill pass incomplete short right to D.Thomas.,0,0,2012 20120909_MIA@HOU,1,57,19,MIA,HOU,3,6,49,(12:19) (Shotgun) R.Tannehill FUMBLES (Aborted) at MIA 49 recovered by MIA-D.Thomas at HST 49. D.Thomas to HST 49 for no gain (B.Cushing).,0,0,2012 20120909_MIA@HOU,1,56,40,MIA,HOU,4,4,49,(11:40) B.Fields punts 39 yards to HST 10 Center-J.Denney fair catch by T.Holliday. (The punt hang time was 4.5 seconds.),0,0,2012 20120909_MIA@HOU,1,56,32,HOU,MIA,1,10,90,(11:32) M.Schaub pass incomplete short middle to A.Foster.,0,0,2012 20120909_MIA@HOU,1,56,27,HOU,MIA,2,10,90,(11:27) M.Schaub pass short right to A.Johnson pushed ob at HST 21 for 11 yards (C.Clemons).,0,0,2012 20120909_MIA@HOU,1,55,59,HOU,MIA,1,10,79,(10:59) M.Schaub pass short middle to O.Daniels to HST 44 for 23 yards (C.Clemons).,0,0,2012 20120909_MIA@HOU,1,55,15,HOU,MIA,1,10,56,(10:15) A.Foster left end pushed ob at 50 for 6 yards (K.Burnett).,0,0,2012 20120909_MIA@HOU,1,54,49,HOU,MIA,2,4,50,(9:49) M.Schaub pass incomplete short right to K.Martin.,0,0,2012 20120909_MIA@HOU,1,54,44,HOU,MIA,3,4,50,(9:44) M.Schaub pass short right to L.Jean to MIA 41 for 9 yards (R.Marshall).,0,0,2012 20120909_MIA@HOU,1,54,10,HOU,MIA,1,10,41,(9:10) A.Foster left end to MIA 36 for 5 yards (K.Burnett).,0,0,2012 20120909_MIA@HOU,1,53,30,HOU,MIA,2,5,36,(8:30) B.Tate right end pushed ob at MIA 30 for 6 yards (S.Smith).,0,0,2012 20120909_MIA@HOU,1,52,58,HOU,MIA,1,10,30,(7:58) M.Schaub sacked at MIA 34 for -4 yards (R.Starks).,0,0,2012 20120909_MIA@HOU,1,52,29,HOU,MIA,2,14,34,(7:29) M.Schaub pass incomplete deep left to L.Jean. Houston challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),0,0,2012 20120909_MIA@HOU,1,52,21,HOU,MIA,3,14,34,(7:21) (Shotgun) M.Schaub pass incomplete short right to A.Foster.,0,0,2012 20120909_MIA@HOU,1,52,15,HOU,MIA,4,14,34,(7:15) S.Graham 52 yard field goal is No Good Short Center-J.Weeks Holder-D.Jones.,0,0,2012 20120909_MIA@HOU,1,52,10,MIA,HOU,1,10,58,(7:10) R.Bush left guard to HST 47 for 11 yards (G.Quin).,0,0,2012 20120909_MIA@HOU,1,51,45,MIA,HOU,1,10,47,(6:45) R.Bush left guard to HST 42 for 5 yards (B.Cushing).,0,0,2012 20120909_MIA@HOU,1,51,16,MIA,HOU,2,5,42,(6:16) R.Bush left tackle to HST 34 for 8 yards (D.Manning G.Quin).,0,0,2012 20120909_MIA@HOU,1,50,36,MIA,HOU,1,10,34,(5:36) R.Tannehill pass short left to A.Fasano to HST 22 for 12 yards (T.Dobbins).,0,0,2012 20120909_MIA@HOU,1,49,59,MIA,HOU,1,10,22,(4:59) D.Thomas right tackle to HST 20 for 2 yards (J.Watt).,0,0,2012 20120909_MIA@HOU,1,49,29,MIA,HOU,2,8,20,(4:29) R.Tannehill pass short middle to D.Bess to HST 14 for 6 yards (G.Quin).,0,0,2012 20120909_MIA@HOU,1,49,29,MIA,HOU,3,2,14,(4:29) R.Bush up the middle to HST 19 for -5 yards (B.Cushing). FUMBLES (B.Cushing) recovered by MIA-J.Martin at HST 21. J.Martin to HST 21 for no gain (C.Barwin).,0,0,2012 20120909_MIA@HOU,1,48,17,MIA,HOU,4,9,21,(3:17) D.Carpenter 39 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 20120909_MIA@HOU,1,48,17,MIA,HOU,,,21,D.Carpenter kicks 71 yards from MIA 35 to HST -6. T.Holliday to HST 5 for 11 yards (J.Wilson). (The kick was muffed by # 16 Holliday but he recovered the ball himself. There was no fumble on the play.),3,0,2012 20120909_MIA@HOU,1,48,7,HOU,MIA,1,10,95,(3:07) A.Foster right guard to HST 10 for 5 yards (K.Misi).,0,3,2012 20120909_MIA@HOU,1,47,31,HOU,MIA,2,5,90,(2:31) A.Foster right end to HST 14 for 4 yards (K.Burnett R.Jones).,0,3,2012 20120909_MIA@HOU,1,46,49,HOU,MIA,3,1,86,(1:49) A.Foster left tackle to HST 14 for no gain (R.Starks K.Dansby).,0,3,2012 20120909_MIA@HOU,1,46,13,HOU,MIA,4,1,86,(1:13) D.Jones punts 48 yards to MIA 38 Center-J.Weeks fair catch by M.Thigpen. (The punt hang time was 4.5 seconds.),0,3,2012 20120909_MIA@HOU,1,46,1,MIA,HOU,1,10,62,(1:01) (Shotgun) R.Tannehill pass short left to A.Fasano to MIA 42 for 4 yards (B.James).,3,0,2012 20120909_MIA@HOU,1,45,30,MIA,HOU,2,6,58,(:30) D.Thomas up the middle to 50 for 8 yards (C.Barwin B.Cushing).,3,0,2012 20120909_MIA@HOU,2,45,0,MIA,HOU,1,10,50,(15:00) R.Tannehill pass incomplete deep middle to B.Hartline [J.Watt]. PENALTY on MIA-J.Long Offensive Holding 10 yards enforced at 50 - No Play.,3,0,2012 20120909_MIA@HOU,2,44,53,MIA,HOU,1,20,60,(14:53) (Shotgun) R.Tannehill pass incomplete short middle to D.Thomas.,3,0,2012 20120909_MIA@HOU,2,44,47,MIA,HOU,2,20,60,(14:47) (Shotgun) R.Tannehill pass short right to D.Bess to MIA 49 for 9 yards (B.McCain).,3,0,2012 20120909_MIA@HOU,2,44,7,MIA,HOU,3,11,51,(14:07) (Shotgun) R.Tannehill pass incomplete short left to A.Armstrong.,3,0,2012 20120909_MIA@HOU,2,44,2,MIA,HOU,4,11,51,(14:02) B.Fields punts 38 yards to HST 13 Center-J.Denney fair catch by T.Holliday. (The punt hang time was 4.5 seconds.),3,0,2012 20120909_MIA@HOU,2,43,53,HOU,MIA,1,10,87,(13:53) M.Schaub pass incomplete deep left to A.Johnson (R.Marshall).,0,3,2012 20120909_MIA@HOU,2,43,46,HOU,MIA,2,10,87,(13:46) M.Schaub pass short middle to B.Tate to HST 21 for 8 yards (K.Misi K.Burnett).,0,3,2012 20120909_MIA@HOU,2,43,4,HOU,MIA,3,2,79,(13:04) M.Schaub pass deep left to O.Daniels pushed ob at 50 for 29 yards (R.Jones).,0,3,2012 20120909_MIA@HOU,2,42,34,HOU,MIA,1,10,50,(12:34) A.Foster left end to MIA 43 for 7 yards (K.Misi).,0,3,2012 20120909_MIA@HOU,2,41,54,HOU,MIA,2,3,43,(11:54) A.Foster left tackle to MIA 42 for 1 yard (J.Odrick R.Starks).,0,3,2012 20120909_MIA@HOU,2,41,13,HOU,MIA,3,2,42,(11:13) M.Schaub pass incomplete deep right to O.Daniels.,0,3,2012 20120909_MIA@HOU,2,41,7,HOU,MIA,4,2,42,(11:07) D.Jones punts 36 yards to MIA 6 Center-J.Weeks downed by HST. (The punt hang time was 4.6 seconds.),0,3,2012 20120909_MIA@HOU,2,40,58,MIA,HOU,1,10,94,(10:58) R.Bush left guard to MIA 13 for 7 yards (J.Joseph).,3,0,2012 20120909_MIA@HOU,2,40,27,MIA,HOU,2,3,87,(10:27) R.Bush left guard to MIA 15 for 2 yards (D.Manning B.Reed).,3,0,2012 20120909_MIA@HOU,2,39,54,MIA,HOU,3,1,85,(9:54) R.Tannehill pass short right to J.Lane to MIA 39 for 24 yards (K.Jackson).,3,0,2012 20120909_MIA@HOU,2,39,19,MIA,HOU,1,10,61,(9:19) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline (K.Jackson).,3,0,2012 20120909_MIA@HOU,2,39,14,MIA,HOU,2,10,61,(9:14) R.Bush left end to MIA 37 for -2 yards (D.Manning J.Joseph).,3,0,2012 20120909_MIA@HOU,2,38,33,MIA,HOU,3,12,63,(8:33) (Shotgun) R.Tannehill pass short left to R.Bush pushed ob at 50 for 13 yards (J.Joseph).,3,0,2012 20120909_MIA@HOU,2,38,7,MIA,HOU,1,10,50,(8:07) R.Tannehill sacked at MIA 47 for -3 yards (J.Watt).,3,0,2012 20120909_MIA@HOU,2,37,35,MIA,HOU,2,13,53,(7:35) (Shotgun) R.Tannehill pass short middle intended for L.Naanee INTERCEPTED by J.Joseph at 50. J.Joseph pushed ob at MIA 14 for 36 yards (M.Pouncey). PENALTY on MIA-M.Pouncey Unnecessary Roughness 7 yards enforced at MIA 14.,3,0,2012 20120909_MIA@HOU,2,37,23,HOU,MIA,1,7,7,(7:23) PENALTY on HST-O.Daniels False Start 5 yards enforced at MIA 7 - No Play.,0,3,2012 20120909_MIA@HOU,2,37,23,HOU,MIA,1,12,12,(7:23) M.Schaub pass incomplete short left to J.Casey.,0,3,2012 20120909_MIA@HOU,2,37,19,HOU,MIA,2,12,12,(7:19) M.Schaub sacked at MIA 20 for -8 yards (R.Starks).,0,3,2012 20120909_MIA@HOU,2,36,51,HOU,MIA,3,20,20,(6:51) (Shotgun) A.Foster left end to MIA 17 for 3 yards (O.Vernon).,0,3,2012 20120909_MIA@HOU,2,36,16,HOU,MIA,4,17,17,(6:16) S.Graham 35 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,3,2012 20120909_MIA@HOU,2,36,16,HOU,MIA,,,17,S.Graham kicks 65 yards from HST 35 to MIA 0. M.Thigpen to MIA 17 for 17 yards (A.Ball).,3,3,2012 20120909_MIA@HOU,2,36,6,MIA,HOU,1,10,83,(6:06) R.Bush right guard to MIA 27 for 10 yards (B.Cushing B.McCain).,3,3,2012 20120909_MIA@HOU,2,35,31,MIA,HOU,1,10,73,(5:31) R.Bush left tackle to MIA 29 for 2 yards (J.Crick).,3,3,2012 20120909_MIA@HOU,2,35,31,MIA,HOU,2,8,71,(5:31) PENALTY on MIA-A.Fasano False Start 5 yards enforced at MIA 29 - No Play.,3,3,2012 20120909_MIA@HOU,2,34,44,MIA,HOU,2,13,76,(4:44) (Shotgun) R.Tannehill pass short left to D.Thomas to HST 44 for 32 yards (D.Manning).,3,3,2012 20120909_MIA@HOU,2,34,14,MIA,HOU,1,10,44,(4:14) R.Tannehill pass incomplete short right to B.Hartline (J.Watt).,3,3,2012 20120909_MIA@HOU,2,34,11,MIA,HOU,2,10,44,(4:11) (Shotgun) R.Tannehill pass incomplete short right to C.Clay.,3,3,2012 20120909_MIA@HOU,2,34,6,MIA,HOU,3,10,44,(4:06) (Shotgun) R.Tannehill pass short left intended for L.Naanee INTERCEPTED by B.Cushing (J.Watt) at HST 45. B.Cushing to HST 46 for 1 yard (R.Incognito).,3,3,2012 20120909_MIA@HOU,2,34,0,HOU,MIA,1,10,54,(4:00) M.Schaub pass incomplete deep right to A.Johnson.,3,3,2012 20120909_MIA@HOU,2,33,53,HOU,MIA,2,10,54,(3:53) M.Schaub pass incomplete short middle to O.Daniels (K.Burnett).,3,3,2012 20120909_MIA@HOU,2,33,47,HOU,MIA,3,10,54,(3:47) (Shotgun) M.Schaub pass deep middle to A.Johnson to MIA 30 for 24 yards (N.Carroll; C.Clemons).,3,3,2012 20120909_MIA@HOU,2,33,13,HOU,MIA,1,10,30,(3:13) A.Foster right guard to MIA 27 for 3 yards (K.Misi).,3,3,2012 20120909_MIA@HOU,2,32,30,HOU,MIA,2,7,27,(2:30) M.Schaub scrambles up the middle to MIA 25 for 2 yards (K.Misi).,3,3,2012 20120909_MIA@HOU,2,32,3,HOU,MIA,3,5,25,(2:03) M.Schaub pass short middle to O.Daniels to MIA 14 for 11 yards (K.Dansby R.Jones).,3,3,2012 20120909_MIA@HOU,2,31,58,HOU,MIA,1,10,14,(1:58) A.Foster right guard for 14 yards TOUCHDOWN.,3,3,2012 20120909_MIA@HOU,2,31,58,HOU,MIA,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,3,2012 20120909_MIA@HOU,2,31,58,HOU,MIA,,,14,S.Graham kicks 68 yards from HST 35 to MIA -3. M.Thigpen to MIA 29 for 32 yards (B.McCain T.Clutts).,10,3,2012 20120909_MIA@HOU,2,31,44,MIA,HOU,1,10,71,(1:44) (Shotgun) R.Tannehill pass short middle intended for B.Hartline INTERCEPTED by K.Jackson (J.Watt) at MIA 30. K.Jackson to MIA 27 for 3 yards (B.Hartline).,3,10,2012 20120909_MIA@HOU,2,31,36,HOU,MIA,1,10,27,(1:36) M.Schaub pass incomplete deep right to K.Walter. PENALTY on MIA-R.Marshall Defensive Pass Interference 26 yards enforced at MIA 27 - No Play.,10,3,2012 20120909_MIA@HOU,2,31,29,HOU,MIA,1,1,1,(1:29) A.Foster left tackle to MIA 2 for -1 yards (K.Dansby).,10,3,2012 20120909_MIA@HOU,2,30,49,HOU,MIA,2,2,2,(:49) A.Foster left tackle for 2 yards TOUCHDOWN.,10,3,2012 20120909_MIA@HOU,2,30,49,HOU,MIA,,,2,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,10,3,2012 20120909_MIA@HOU,2,30,49,HOU,MIA,,,2,S.Graham kicks 65 yards from HST 35 to MIA 0. M.Thigpen to MIA 30 for 30 yards (J.Nading; Q.Demps).,17,3,2012 20120909_MIA@HOU,2,30,35,MIA,HOU,1,10,70,(:35) D.Thomas up the middle to MIA 31 for 1 yard (G.Quin). FUMBLES (G.Quin) RECOVERED by HST-D.Manning at MIA 32. D.Manning to MIA 31 for 1 yard (J.Jerry). MIA-D.Thomas was injured during the play. He is Out.,3,17,2012 20120909_MIA@HOU,2,30,28,HOU,MIA,1,10,31,(:28) (Shotgun) M.Schaub pass short middle to B.Tate pushed ob at MIA 24 for 7 yards (K.Misi).,17,3,2012 20120909_MIA@HOU,2,30,20,HOU,MIA,2,3,24,(:20) (Shotgun) M.Schaub pass short middle to A.Johnson to MIA 14 for 10 yards (R.Marshall).,17,3,2012 20120909_MIA@HOU,2,30,12,HOU,MIA,1,10,14,(:12) (Shotgun) M.Schaub pass short right to A.Johnson for 14 yards TOUCHDOWN [C.Wake].,17,3,2012 20120909_MIA@HOU,2,30,12,HOU,MIA,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,17,3,2012 20120909_MIA@HOU,2,30,12,HOU,MIA,,,14,S.Graham kicks 44 yards from HST 35 to MIA 21. J.Lane to MIA 39 for 18 yards (B.McCain Q.Demps).,24,3,2012 20120909_MIA@HOU,2,30,1,MIA,HOU,1,10,61,(:01) R.Tannehill kneels to MIA 38 for -1 yards.,3,24,2012 20120909_MIA@HOU,3,30,0,MIA,HOU,,,61,D.Carpenter kicks 67 yards from MIA 35 to HST -2. T.Holliday to HST 15 for 17 yards (M.Moore).,3,24,2012 20120909_MIA@HOU,3,29,53,HOU,MIA,1,10,85,(14:53) A.Foster right tackle to HST 19 for 4 yards (K.Misi K.Dansby).,24,3,2012 20120909_MIA@HOU,3,29,13,HOU,MIA,2,6,81,(14:13) A.Foster right guard to HST 23 for 4 yards (K.Dansby; C.Wake).,24,3,2012 20120909_MIA@HOU,3,28,35,HOU,MIA,3,2,77,(13:35) M.Schaub pass incomplete short middle to O.Daniels [C.Wake].,24,3,2012 20120909_MIA@HOU,3,28,30,HOU,MIA,4,2,77,(13:30) D.Jones punts 49 yards to MIA 28 Center-J.Weeks. M.Thigpen for 72 yards TOUCHDOWN.,24,3,2012 20120909_MIA@HOU,3,28,30,MIA,HOU,,,77,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,24,2012 20120909_MIA@HOU,3,28,30,MIA,HOU,,,77,D.Carpenter kicks 70 yards from MIA 35 to HST -5. T.Holliday to HST 14 for 19 yards (N.Carroll).,10,24,2012 20120909_MIA@HOU,3,28,8,HOU,MIA,1,10,86,(13:08) M.Schaub pass short left to A.Johnson pushed ob at HST 24 for 10 yards (R.Marshall).,24,10,2012 20120909_MIA@HOU,3,27,40,HOU,MIA,1,10,76,(12:40) M.Schaub pass short left to A.Johnson to HST 39 for 15 yards (R.Marshall).,24,10,2012 20120909_MIA@HOU,3,27,2,HOU,MIA,1,10,61,(12:02) B.Tate left end to HST 39 for no gain (C.Clemons K.Misi).,24,10,2012 20120909_MIA@HOU,3,26,20,HOU,MIA,2,10,61,(11:20) M.Schaub pass short middle to K.Walter to HST 45 for 6 yards (R.Marshall).,24,10,2012 20120909_MIA@HOU,3,25,39,HOU,MIA,3,4,55,(10:39) M.Schaub pass short middle to J.Casey to MIA 38 for 17 yards (K.Misi).,24,10,2012 20120909_MIA@HOU,3,24,57,HOU,MIA,1,10,38,(9:57) B.Tate right guard to MIA 36 for 2 yards (J.Odrick).,24,10,2012 20120909_MIA@HOU,3,24,15,HOU,MIA,2,8,36,(9:15) M.Schaub pass short right to K.Walter to MIA 26 for 10 yards (S.Smith).,24,10,2012 20120909_MIA@HOU,3,23,38,HOU,MIA,1,10,26,(8:38) M.Schaub pass short left to A.Foster to MIA 30 for -4 yards (K.Misi).,24,10,2012 20120909_MIA@HOU,3,22,53,HOU,MIA,2,14,30,(7:53) A.Foster right guard to MIA 18 for 12 yards (R.Jones).,24,10,2012 20120909_MIA@HOU,3,22,13,HOU,MIA,3,2,18,(7:13) A.Foster left end to MIA 22 for -4 yards (R.Jones).,24,10,2012 20120909_MIA@HOU,3,21,35,HOU,MIA,4,6,22,(6:35) S.Graham 40 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,24,10,2012 20120909_MIA@HOU,3,21,35,HOU,MIA,,,22,S.Graham kicks 66 yards from HST 35 to MIA -1. M.Thigpen to MIA 26 for 27 yards (T.Dobbins).,27,10,2012 20120909_MIA@HOU,3,21,24,MIA,HOU,1,10,74,(6:24) R.Bush left guard to MIA 29 for 3 yards (C.Barwin B.James).,10,27,2012 20120909_MIA@HOU,3,20,52,MIA,HOU,2,7,71,(5:52) R.Tannehill sacked at MIA 21 for -8 yards (sack split by J.Watt and A.Smith).,10,27,2012 20120909_MIA@HOU,3,20,17,MIA,HOU,3,15,79,(5:17) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 21 for no gain (B.Reed).,10,27,2012 20120909_MIA@HOU,3,19,37,MIA,HOU,4,15,79,(4:37) B.Fields punts 56 yards to HST 23 Center-J.Denney. T.Holliday to HST 37 for 14 yards (J.Trusnik). PENALTY on HST-J.Nading Offensive Holding 10 yards enforced at HST 37.,10,27,2012 20120909_MIA@HOU,3,19,21,HOU,MIA,1,10,73,(4:21) A.Foster left guard to HST 27 for no gain (R.Starks).,27,10,2012 20120909_MIA@HOU,3,18,43,HOU,MIA,2,10,73,(3:43) M.Schaub pass short middle to O.Daniels to MIA 49 for 24 yards (R.Jones K.Burnett).,27,10,2012 20120909_MIA@HOU,3,17,58,HOU,MIA,1,10,49,(2:58) A.Foster right end to HST 49 for -2 yards (P.Soliai).,27,10,2012 20120909_MIA@HOU,3,17,12,HOU,MIA,2,12,51,(2:12) M.Schaub pass short middle to B.Tate to MIA 44 for 7 yards (K.Dansby).,27,10,2012 20120909_MIA@HOU,3,16,25,HOU,MIA,3,5,44,(1:25) (Shotgun) M.Schaub pass short right to A.Johnson to MIA 38 for 6 yards (R.Jones).,27,10,2012 20120909_MIA@HOU,3,15,44,HOU,MIA,1,10,38,(:44) A.Foster right tackle to MIA 32 for 6 yards (K.Randall).,27,10,2012 20120909_MIA@HOU,4,15,0,HOU,MIA,2,4,32,(15:00) A.Foster left guard to MIA 32 for no gain (R.Starks).,27,10,2012 20120909_MIA@HOU,4,14,18,HOU,MIA,3,4,32,(14:18) (Shotgun) M.Schaub pass deep right to A.Johnson pushed ob at MIA 3 for 29 yards (J.Wilson) [C.Wake].,27,10,2012 20120909_MIA@HOU,4,13,49,HOU,MIA,1,3,3,(13:49) A.Foster left guard to MIA 1 for 2 yards (K.Misi).,27,10,2012 20120909_MIA@HOU,4,13,9,HOU,MIA,2,1,1,(13:09) A.Foster right guard to MIA 1 for no gain (K.Dansby).,27,10,2012 20120909_MIA@HOU,4,12,31,HOU,MIA,3,1,1,(12:31) M.Schaub pass incomplete short left to O.Daniels.,27,10,2012 20120909_MIA@HOU,4,12,25,HOU,MIA,4,1,1,(12:25) S.Graham 19 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,27,10,2012 20120909_MIA@HOU,4,12,25,HOU,MIA,,,1,S.Graham kicks 73 yards from HST 35 to MIA -8. M.Thigpen Touchback.,30,10,2012 20120909_MIA@HOU,4,12,22,MIA,HOU,1,10,80,(12:22) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 31 for 11 yards (B.McCain).,10,30,2012 20120909_MIA@HOU,4,11,52,MIA,HOU,1,10,69,(11:52) (Shotgun) R.Bush left end to MIA 29 for -2 yards (C.Barwin). PENALTY on MIA-R.Incognito Offensive Holding 10 yards enforced at MIA 31 - No Play.,10,30,2012 20120909_MIA@HOU,4,11,36,MIA,HOU,1,20,79,(11:36) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 40 for 19 yards (Q.Demps).,10,30,2012 20120909_MIA@HOU,4,11,1,MIA,HOU,2,1,60,(11:01) R.Bush up the middle to HST 47 for 13 yards (B.Cushing Q.Demps).,10,30,2012 20120909_MIA@HOU,4,10,27,MIA,HOU,1,10,47,(10:27) (Shotgun) R.Tannehill pass short left to B.Hartline to HST 40 for 7 yards (K.Jackson). PENALTY on HST-K.Jackson Face Mask (15 Yards) 15 yards enforced at HST 40.,10,30,2012 20120909_MIA@HOU,4,10,0,MIA,HOU,1,10,25,(10:00) (Shotgun) R.Tannehill pass short left to B.Hartline to HST 16 for 9 yards (K.Jackson).,10,30,2012 20120909_MIA@HOU,4,9,29,MIA,HOU,2,1,16,(9:29) (Shotgun) R.Bush up the middle to HST 18 for -2 yards (D.Manning B.Cushing). PENALTY on HST-C.Barwin Defensive Offside 5 yards enforced at HST 16 - No Play.,10,30,2012 20120909_MIA@HOU,4,9,13,MIA,HOU,1,10,11,(9:13) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline.,10,30,2012 20120909_MIA@HOU,4,9,8,MIA,HOU,2,10,11,(9:08) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,10,30,2012 20120909_MIA@HOU,4,9,3,MIA,HOU,3,10,11,(9:03) (Shotgun) R.Tannehill pass short middle to R.Bush to HST 9 for 2 yards (G.Quin).,10,30,2012 20120909_MIA@HOU,4,8,24,MIA,HOU,4,8,9,(8:24) (Shotgun) R.Tannehill pass short left to A.Fasano to HST 6 for 3 yards (J.Joseph).,10,30,2012 20120909_MIA@HOU,4,8,16,HOU,MIA,1,10,94,(8:16) B.Tate left guard to HST 8 for 2 yards (C.Wake).,30,10,2012 20120909_MIA@HOU,4,7,36,HOU,MIA,2,8,92,(7:36) B.Tate left tackle to HST 4 for -4 yards (P.Soliai).,30,10,2012 20120909_MIA@HOU,4,6,51,HOU,MIA,3,12,96,(6:51) A.Foster up the middle to HST 11 for 7 yards (K.Dansby).,30,10,2012 20120909_MIA@HOU,4,6,41,HOU,MIA,4,5,89,(6:41) D.Jones punts 30 yards to HST 41 Center-J.Weeks out of bounds.,30,10,2012 20120909_MIA@HOU,4,6,32,MIA,HOU,1,10,41,(6:32) (Shotgun) R.Tannehill pass short right to D.Bess to HST 32 for 9 yards (B.McCain).,10,30,2012 20120909_MIA@HOU,4,6,4,MIA,HOU,2,1,32,(6:04) (Shotgun) R.Bush left guard to HST 34 for -2 yards (J.Watt). PENALTY on MIA-R.Incognito Offensive Holding 10 yards enforced at HST 32 - No Play.,10,30,2012 20120909_MIA@HOU,4,5,41,MIA,HOU,2,11,42,(5:41) (Shotgun) R.Tannehill pass deep right to B.Hartline to HST 8 for 34 yards (K.Jackson).,10,30,2012 20120909_MIA@HOU,4,5,1,MIA,HOU,1,8,8,(5:01) (Shotgun) R.Tannehill pass short middle to A.Armstrong to HST 5 for 3 yards (G.Quin).,10,30,2012 20120909_MIA@HOU,4,4,15,MIA,HOU,2,5,5,(4:15) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano.,10,30,2012 20120909_MIA@HOU,4,4,10,MIA,HOU,3,5,5,(4:10) (Shotgun) R.Tannehill pass incomplete short right to D.Bess. Miami challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),10,30,2012 20120909_MIA@HOU,4,4,5,MIA,HOU,4,5,5,(4:05) (Shotgun) R.Tannehill pass incomplete short middle to A.Fasano (T.Jamison).,10,30,2012 20120909_MIA@HOU,4,4,0,HOU,MIA,1,10,95,(4:00) A.Foster left guard to HST 4 for -1 yards (C.Wake).,30,10,2012 20120909_MIA@HOU,4,3,16,HOU,MIA,2,11,96,(3:16) A.Foster left tackle to HST 5 for 1 yard (K.Dansby).,30,10,2012 20120909_MIA@HOU,4,2,30,HOU,MIA,3,10,95,(2:30) A.Foster left guard to HST 6 for 1 yard (K.Randall).,30,10,2012 20120909_MIA@HOU,4,2,24,HOU,MIA,4,9,94,(2:24) D.Jones punts 55 yards to MIA 39 Center-J.Weeks. M.Thigpen to MIA 43 for 4 yards (J.Casey). (The punt hang time was 4.8 seconds.),30,10,2012 20120909_MIA@HOU,4,2,13,MIA,HOU,1,10,57,(2:13) (Shotgun) R.Tannehill pass incomplete short left to D.Bess.,10,30,2012 20120909_MIA@HOU,4,2,8,MIA,HOU,2,10,57,(2:08) (Shotgun) R.Tannehill pass short left to R.Bush pushed ob at HST 49 for 8 yards (B.James).,10,30,2012 20120909_MIA@HOU,4,2,0,MIA,HOU,3,2,49,(2:00) (Shotgun) R.Tannehill pass incomplete deep left to A.Armstrong.,10,30,2012 20120909_MIA@HOU,4,1,56,MIA,HOU,4,2,49,(1:56) (Shotgun) R.Tannehill sacked at MIA 39 for -12 yards (T.Jamison).,10,30,2012 20120909_MIA@HOU,4,1,44,HOU,MIA,1,10,39,(1:44) M.Schaub kneels to MIA 41 for -2 yards.,30,10,2012 20120909_MIA@HOU,4,1,0,HOU,MIA,2,12,41,(1:00) M.Schaub kneels to MIA 42 for -1 yards.,30,10,2012 20120909_MIA@HOU,4,0,31,HOU,MIA,3,13,42,(:31) M.Schaub kneels to MIA 43 for -1 yards.,30,10,2012 20120909_MIA@HOU,4,0,31,HOU,MIA,,,42,                      ,30,10,2012 20120909_ATL@KC,1,0,0,KC,ATL,,,42,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,0,0,2012 20120909_ATL@KC,1,60,0,ATL,KC,1,10,80,(15:00) M.Turner right guard to ATL 26 for 6 yards (J.Belcher).,0,0,2012 20120909_ATL@KC,1,59,22,ATL,KC,2,4,74,(14:22) M.Turner up the middle to ATL 28 for 2 yards (D.Johnson).,0,0,2012 20120909_ATL@KC,1,58,41,ATL,KC,3,2,72,(13:41) (Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 31 for 3 yards (T.Daniels).,0,0,2012 20120909_ATL@KC,1,58,1,ATL,KC,1,10,69,(13:01) M.Ryan pass short middle to J.Jones to KC 44 for 25 yards (D.Johnson).,0,0,2012 20120909_ATL@KC,1,57,26,ATL,KC,1,10,44,(12:26) M.Ryan pass incomplete short right to T.Gonzalez (E.Berry).,0,0,2012 20120909_ATL@KC,1,57,21,ATL,KC,2,10,44,(12:21) M.Turner up the middle to KC 42 for 2 yards (T.Jackson).,0,0,2012 20120909_ATL@KC,1,56,38,ATL,KC,3,8,42,(11:38) (Shotgun) M.Ryan pass short right to J.Jones to KC 31 for 11 yards (J.Reeves).,0,0,2012 20120909_ATL@KC,1,55,58,ATL,KC,1,10,31,(10:58) M.Ryan pass incomplete deep left to J.Jones.,0,0,2012 20120909_ATL@KC,1,55,53,ATL,KC,2,10,31,(10:53) M.Ryan pass short left to R.White to KC 16 for 15 yards (A.Studebaker).,0,0,2012 20120909_ATL@KC,1,55,19,ATL,KC,1,10,16,(10:19) M.Turner right guard to KC 14 for 2 yards (J.Powe).,0,0,2012 20120909_ATL@KC,1,54,44,ATL,KC,2,8,14,(9:44) M.Ryan pass short right to M.Palmer to KC 8 for 6 yards (E.Berry).,0,0,2012 20120909_ATL@KC,1,53,56,ATL,KC,3,2,8,(8:56) (Shotgun) M.Ryan pass short right to J.Jones for 8 yards TOUCHDOWN.,0,0,2012 20120909_ATL@KC,1,53,56,ATL,KC,,,8,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 20120909_ATL@KC,1,53,56,ATL,KC,,,8,M.Bosher kicks 60 yards from ATL 35 to KC 5. J.Arenas to KC 23 for 18 yards (C.Owens).,7,0,2012 20120909_ATL@KC,1,53,45,KC,ATL,1,10,77,(8:45) P.Hillis right tackle to KC 26 for 3 yards (T.DeCoud).,0,7,2012 20120909_ATL@KC,1,53,5,KC,ATL,2,7,74,(8:05) M.Cassel pass short right to S.Breaston pushed ob at KC 32 for 6 yards (S.Weatherspoon).,0,7,2012 20120909_ATL@KC,1,52,26,KC,ATL,3,1,68,(7:26) J.Charles up the middle to KC 34 for 2 yards (W.Moore).,0,7,2012 20120909_ATL@KC,1,51,48,KC,ATL,1,10,66,(6:48) M.Cassel pass short left to T.Moeaki to ATL 48 for 18 yards (B.Grimes).,0,7,2012 20120909_ATL@KC,1,51,41,KC,ATL,1,10,48,(6:41) M.Cassel pass incomplete short left to D.Bowe.,0,7,2012 20120909_ATL@KC,1,51,36,KC,ATL,2,10,48,(6:36) J.Charles left guard to ATL 47 for 1 yard (S.Nicholas).,0,7,2012 20120909_ATL@KC,1,50,55,KC,ATL,3,9,47,(5:55) (Shotgun) M.Cassel pass deep right to D.Bowe to ATL 24 for 23 yards (A.Samuel).,0,7,2012 20120909_ATL@KC,1,50,12,KC,ATL,1,10,24,(5:12) M.Cassel pass incomplete short left to S.Breaston.,0,7,2012 20120909_ATL@KC,1,50,6,KC,ATL,2,10,24,(5:06) J.Charles right tackle to ATL 22 for 2 yards (V.Walker).,0,7,2012 20120909_ATL@KC,1,49,24,KC,ATL,3,8,22,(4:24) (Shotgun) M.Cassel pass short right to P.Hillis pushed ob at ATL 21 for 1 yard (A.Samuel) [S.Weatherspoon].,0,7,2012 20120909_ATL@KC,1,49,6,KC,ATL,4,7,21,(4:06) R.Succop 39 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 20120909_ATL@KC,1,49,6,KC,ATL,,,21,R.Succop kicks 66 yards from KC 35 to ATL -1. Jz. Rodgers pushed ob at KC 24 for 77 yards (J.Arenas).,3,7,2012 20120909_ATL@KC,1,48,51,ATL,KC,1,10,24,(3:51) M.Turner up the middle to KC 20 for 4 yards (J.Belcher).,7,3,2012 20120909_ATL@KC,1,48,15,ATL,KC,2,6,20,(3:15) M.Turner left tackle to KC 18 for 2 yards (D.Johnson).,7,3,2012 20120909_ATL@KC,1,48,15,ATL,KC,3,4,18,(3:15) (Shotgun) PENALTY on ATL-M.Ryan False Start 5 yards enforced at KC 18 - No Play.,7,3,2012 20120909_ATL@KC,1,47,7,ATL,KC,3,9,23,(2:07) (Shotgun) M.Ryan pass short left to H.Douglas to KC 16 for 7 yards (S.Routt). FUMBLES (S.Routt) ball out of bounds at KC 16.,7,3,2012 20120909_ATL@KC,1,46,57,ATL,KC,4,2,16,(1:57) M.Bryant 34 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,3,2012 20120909_ATL@KC,1,46,57,ATL,KC,,,16,M.Bosher kicks 66 yards from ATL 35 to KC -1. J.Arenas to KC 24 for 25 yards (J.Snelling).,10,3,2012 20120909_ATL@KC,1,46,47,KC,ATL,1,10,76,(1:47) J.Charles left end to KC 23 for -1 yards (R.Edwards).,3,10,2012 20120909_ATL@KC,1,46,17,KC,ATL,2,11,77,(1:17) P.Hillis left end to KC 30 for 7 yards (B.Grimes).,3,10,2012 20120909_ATL@KC,1,45,37,KC,ATL,3,4,70,(:37) (No Huddle Shotgun) M.Cassel pass short middle to T.Moeaki to KC 41 for 11 yards (W.Moore).,3,10,2012 20120909_ATL@KC,2,45,0,KC,ATL,1,10,59,(15:00) J.Charles right guard to ATL 48 for 11 yards (B.Grimes).,3,10,2012 20120909_ATL@KC,2,44,21,KC,ATL,1,10,48,(14:21) M.Cassel sacked at KC 44 for -8 yards (S.Weatherspoon).,3,10,2012 20120909_ATL@KC,2,43,40,KC,ATL,2,18,56,(13:40) (Shotgun) M.Cassel pass short right to D.McCluster to ATL 47 for 9 yards (A.Samuel).,3,10,2012 20120909_ATL@KC,2,43,8,KC,ATL,3,9,47,(13:08) (No Huddle Shotgun) M.Cassel pass deep middle to D.Bowe to ATL 26 for 21 yards (B.Grimes).,3,10,2012 20120909_ATL@KC,2,42,29,KC,ATL,1,10,26,(12:29) S.Draughn up the middle to ATL 22 for 4 yards (D.Robinson; S.Nicholas).,3,10,2012 20120909_ATL@KC,2,41,45,KC,ATL,2,6,22,(11:45) (Shotgun) M.Cassel pass deep middle to K.Boss for 22 yards TOUCHDOWN.,3,10,2012 20120909_ATL@KC,2,41,45,KC,ATL,,,22,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,10,2012 20120909_ATL@KC,2,41,45,KC,ATL,,,22,R.Succop kicks 65 yards from KC 35 to ATL 0. Jz. Rodgers to ATL 27 for 27 yards (A.Studebaker).,10,10,2012 20120909_ATL@KC,2,41,33,ATL,KC,1,10,73,(11:33) (Shotgun) Jz. Rodgers right tackle to ATL 30 for 3 yards (D.Johnson).,10,10,2012 20120909_ATL@KC,2,40,56,ATL,KC,2,7,70,(10:56) (No Huddle Shotgun) M.Ryan pass short right to R.White to ATL 46 for 16 yards (A.Elam).,10,10,2012 20120909_ATL@KC,2,40,26,ATL,KC,1,10,54,(10:26) (No Huddle) M.Ryan pass short right to R.White ran ob at KC 39 for 15 yards. Kansas City challenged the pass completion ruling and the play was Upheld. (Timeout #1.),10,10,2012 20120909_ATL@KC,2,40,2,ATL,KC,1,10,39,(10:02) Jz. Rodgers up the middle to KC 33 for 6 yards (E.Jones).,10,10,2012 20120909_ATL@KC,2,39,32,ATL,KC,2,4,33,(9:32) (No Huddle Shotgun) M.Ryan pass short left to Jz. Rodgers pushed ob at KC 27 for 6 yards (S.Routt).,10,10,2012 20120909_ATL@KC,2,39,5,ATL,KC,1,10,27,(9:05) (No Huddle) M.Ryan pass short right to T.Gonzalez to KC 22 for 5 yards (R.Pitoitua).,10,10,2012 20120909_ATL@KC,2,38,30,ATL,KC,2,5,22,(8:30) (No Huddle) M.Ryan pass short right to R.White pushed ob at KC 14 for 8 yards (A.Elam).,10,10,2012 20120909_ATL@KC,2,37,55,ATL,KC,1,10,14,(7:55) (No Huddle) M.Ryan pass short left to J.Jones for 14 yards TOUCHDOWN.,10,10,2012 20120909_ATL@KC,2,37,55,ATL,KC,,,14,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,10,2012 20120909_ATL@KC,2,37,55,ATL,KC,,,14,M.Bosher kicks 74 yards from ATL 35 to KC -9. J.Arenas Touchback.,17,10,2012 20120909_ATL@KC,2,37,48,KC,ATL,1,10,80,(7:48) J.Charles right end to ATL 34 for 46 yards (T.DeCoud).,10,17,2012 20120909_ATL@KC,2,37,21,KC,ATL,1,10,34,(7:21) (No Huddle) P.Hillis up the middle to ATL 31 for 3 yards (S.Nicholas).,10,17,2012 20120909_ATL@KC,2,36,44,KC,ATL,2,7,31,(6:44) (No Huddle Shotgun) M.Cassel pass short right to P.Hillis to ATL 28 for 3 yards (S.Weatherspoon).,10,17,2012 20120909_ATL@KC,2,35,53,KC,ATL,3,4,28,(5:53) (No Huddle Shotgun) M.Cassel pass short left to D.McCluster pushed ob at ATL 19 for 9 yards (B.Grimes).,10,17,2012 20120909_ATL@KC,2,35,24,KC,ATL,1,10,19,(5:24) (No Huddle Shotgun) J.Charles left end pushed ob at ATL 10 for 9 yards (B.Grimes).,10,17,2012 20120909_ATL@KC,2,35,2,KC,ATL,2,1,10,(5:02) (No Huddle Shotgun) J.Charles left tackle to ATL 8 for 2 yards (S.Nicholas).,10,17,2012 20120909_ATL@KC,2,34,25,KC,ATL,1,8,8,(4:25) P.Hillis up the middle to ATL 5 for 3 yards (K.Biermann).,10,17,2012 20120909_ATL@KC,2,33,44,KC,ATL,2,5,5,(3:44) (Shotgun) M.Cassel up the middle for 5 yards TOUCHDOWN.,10,17,2012 20120909_ATL@KC,2,33,44,KC,ATL,,,5,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,10,17,2012 20120909_ATL@KC,2,33,44,KC,ATL,,,5,R.Succop kicks 73 yards from KC 35 to ATL -8. Jz. Rodgers Touchback.,17,17,2012 20120909_ATL@KC,2,33,38,ATL,KC,1,10,80,(3:38) M.Ryan pass incomplete short right to H.Douglas.,17,17,2012 20120909_ATL@KC,2,33,2,ATL,KC,2,10,80,(3:02) (No Huddle Shotgun) M.Ryan pass short left to H.Douglas to ATL 39 for 19 yards (T.Daniels).,17,17,2012 20120909_ATL@KC,2,32,33,ATL,KC,1,10,61,(2:33) (No Huddle) M.Ryan pass incomplete deep left to J.Jones.,17,17,2012 20120909_ATL@KC,2,32,27,ATL,KC,2,10,61,(2:27) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to KC 48 for 13 yards (D.Johnson).,17,17,2012 20120909_ATL@KC,2,32,5,ATL,KC,1,10,48,(2:05) (No Huddle) M.Ryan up the middle to KC 37 for 11 yards (D.Johnson).,17,17,2012 20120909_ATL@KC,2,31,55,ATL,KC,1,10,37,(1:55) M.Ryan scrambles right end pushed ob at KC 28 for 9 yards (J.Reeves).,17,17,2012 20120909_ATL@KC,2,31,48,ATL,KC,2,1,28,(1:48) (No Huddle) M.Ryan pass short right to T.Gonzalez to KC 3 for 25 yards (J.Reeves).,17,17,2012 20120909_ATL@KC,2,31,14,ATL,KC,1,3,3,(1:14) (No Huddle) M.Ryan sacked at KC 10 for -7 yards (J.Houston).,17,17,2012 20120909_ATL@KC,2,30,53,ATL,KC,2,10,10,(:53) (Shotgun) M.Ryan pass short right to R.White to KC 3 for 7 yards (J.Reeves).,17,17,2012 20120909_ATL@KC,2,30,17,ATL,KC,3,3,3,(:17) (Shotgun) M.Ryan pass incomplete short middle to R.White [D.Johnson].,17,17,2012 20120909_ATL@KC,2,30,13,ATL,KC,4,3,3,(:13) M.Bryant 21 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,17,17,2012 20120909_ATL@KC,2,30,13,ATL,KC,,,3,M.Bosher kicks 52 yards from ATL 35 to KC 13. T.Copper to KC 29 for 16 yards (K.Biermann).,20,17,2012 20120909_ATL@KC,2,30,3,KC,ATL,1,10,71,(:03) M.Cassel kneels to KC 28 for -1 yards.,17,20,2012 20120909_ATL@KC,3,30,0,ATL,KC,,,71,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,17,2012 20120909_ATL@KC,3,30,0,KC,ATL,1,10,80,(15:00) (No Huddle) J.Charles right tackle to KC 24 for 4 yards (S.Nicholas).,17,20,2012 20120909_ATL@KC,3,29,23,KC,ATL,2,6,76,(14:23) (No Huddle) J.Charles up the middle to KC 29 for 5 yards (K.Biermann).,17,20,2012 20120909_ATL@KC,3,28,52,KC,ATL,3,1,71,(13:52) (No Huddle) M.Cassel up the middle to KC 32 for 3 yards (T.DeCoud).,17,20,2012 20120909_ATL@KC,3,28,15,KC,ATL,1,10,68,(13:15) (No Huddle) P.Hillis right end to KC 33 for 1 yard (S.Weatherspoon).,17,20,2012 20120909_ATL@KC,3,27,35,KC,ATL,2,9,67,(12:35) (No Huddle) M.Cassel pass short middle to D.McCluster to ATL 46 for 21 yards (T.DeCoud; S.Nicholas).,17,20,2012 20120909_ATL@KC,3,26,55,KC,ATL,1,10,46,(11:55) (No Huddle) J.Charles up the middle to ATL 43 for 3 yards (S.Nicholas).,17,20,2012 20120909_ATL@KC,3,26,15,KC,ATL,2,7,43,(11:15) (No Huddle Shotgun) M.Cassel pass short middle to D.McCluster to ATL 28 for 15 yards (S.Weatherspoon).,17,20,2012 20120909_ATL@KC,3,25,40,KC,ATL,1,10,28,(10:40) (No Huddle) P.Hillis up the middle to ATL 26 for 2 yards (S.Nicholas).,17,20,2012 20120909_ATL@KC,3,25,3,KC,ATL,2,8,26,(10:03) (Shotgun) M.Cassel pass short left to P.Hillis to ATL 22 for 4 yards (S.Nicholas).,17,20,2012 20120909_ATL@KC,3,24,14,KC,ATL,3,4,22,(9:14) (No Huddle Shotgun) M.Cassel pass incomplete short middle to D.McCluster (S.Weatherspoon).,17,20,2012 20120909_ATL@KC,3,24,9,KC,ATL,4,4,22,(9:09) R.Succop 40 yard field goal is No Good Hit Right Upright Center-T.Gafford Holder-D.Colquitt.,17,20,2012 20120909_ATL@KC,3,24,7,ATL,KC,1,10,70,(9:07) M.Ryan pass incomplete short right to L.Polite [J.Houston].,20,17,2012 20120909_ATL@KC,3,24,3,ATL,KC,2,10,70,(9:03) M.Turner up the middle to ATL 29 for -1 yards (D.Poe).,20,17,2012 20120909_ATL@KC,3,23,26,ATL,KC,3,11,71,(8:26) (Shotgun) M.Ryan pass deep left to J.Jones to KC 40 for 31 yards (T.Daniels).,20,17,2012 20120909_ATL@KC,3,22,41,ATL,KC,1,10,40,(7:41) M.Turner up the middle to KC 38 for 2 yards (T.Jackson).,20,17,2012 20120909_ATL@KC,3,21,59,ATL,KC,2,8,38,(6:59) M.Ryan pass short left to J.Jones to KC 19 for 19 yards (A.Elam).,20,17,2012 20120909_ATL@KC,3,21,21,ATL,KC,1,10,19,(6:21) M.Turner up the middle to KC 8 for 11 yards (A.Elam; A.Studebaker).,20,17,2012 20120909_ATL@KC,3,20,44,ATL,KC,1,8,8,(5:44) M.Turner up the middle to KC 5 for 3 yards (J.Belcher).,20,17,2012 20120909_ATL@KC,3,20,5,ATL,KC,2,5,5,(5:05) M.Ryan pass incomplete short right to J.Jones.,20,17,2012 20120909_ATL@KC,3,20,0,ATL,KC,3,5,5,(5:00) (Shotgun) M.Ryan scrambles right end for 5 yards TOUCHDOWN.,20,17,2012 20120909_ATL@KC,3,20,0,ATL,KC,,,5,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,17,2012 20120909_ATL@KC,3,20,0,ATL,KC,,,5,M.Bosher kicks 71 yards from ATL 35 to KC -6. J.Arenas Touchback.,27,17,2012 20120909_ATL@KC,3,19,54,KC,ATL,1,10,80,(4:54) J.Charles up the middle to KC 15 for -5 yards (J.Abraham).,17,27,2012 20120909_ATL@KC,3,19,19,KC,ATL,2,15,85,(4:19) (No Huddle Shotgun) M.Cassel pass incomplete short middle to T.Moeaki (J.Babineaux).,17,27,2012 20120909_ATL@KC,3,19,14,KC,ATL,3,15,85,(4:14) (No Huddle Shotgun) M.Cassel sacked at KC 6 for -9 yards (J.Abraham). FUMBLES (J.Abraham) RECOVERED by ATL-S.Nicholas at KC 7. S.Nicholas to KC 7 for no gain (R.Hudson).,17,27,2012 20120909_ATL@KC,3,19,2,ATL,KC,1,7,7,(4:02) M.Ryan pass short middle to T.Gonzalez for 7 yards TOUCHDOWN.,27,17,2012 20120909_ATL@KC,3,19,2,ATL,KC,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,27,17,2012 20120909_ATL@KC,3,19,2,ATL,KC,,,7,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,34,17,2012 20120909_ATL@KC,3,18,56,KC,ATL,1,10,80,(3:56) M.Cassel sacked at KC 19 for -1 yards (J.Babineaux).,17,34,2012 20120909_ATL@KC,3,18,21,KC,ATL,2,11,81,(3:21) (No Huddle) P.Hillis left end to KC 16 for -3 yards (S.Weatherspoon).,17,34,2012 20120909_ATL@KC,3,17,35,KC,ATL,3,14,84,(2:35) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 31 for 15 yards (D.Robinson).,17,34,2012 20120909_ATL@KC,3,17,1,KC,ATL,1,10,69,(2:01) (No Huddle) S.Draughn up the middle to KC 32 for 1 yard (S.Weatherspoon).,17,34,2012 20120909_ATL@KC,3,16,29,KC,ATL,2,9,68,(1:29) (No Huddle Shotgun) M.Cassel pass short middle intended for T.Moeaki INTERCEPTED by W.Moore at KC 45. W.Moore to KC 43 for 2 yards (D.McCluster). The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,17,34,2012 20120909_ATL@KC,3,16,20,ATL,KC,1,10,43,(1:20) M.Ryan pass deep left to R.White to KC 17 for 26 yards (A.Elam).,34,17,2012 20120909_ATL@KC,3,15,42,ATL,KC,1,10,17,(:42) M.Turner left tackle to KC 18 for -1 yards (G.Dorsey).,34,17,2012 20120909_ATL@KC,4,15,0,ATL,KC,2,11,18,(15:00) (Shotgun) M.Ryan pass short left to H.Douglas to KC 12 for 6 yards (D.Johnson).,34,17,2012 20120909_ATL@KC,4,14,21,ATL,KC,3,5,12,(14:21) (Shotgun) M.Ryan pass incomplete short left to R.White.,34,17,2012 20120909_ATL@KC,4,14,16,ATL,KC,4,5,12,(14:16) M.Bryant 30 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,34,17,2012 20120909_ATL@KC,4,14,16,ATL,KC,,,12,M.Bosher kicks 66 yards from ATL 35 to KC -1. J.Arenas to KC 17 for 18 yards (R.James).,37,17,2012 20120909_ATL@KC,4,14,6,KC,ATL,1,10,83,(14:06) J.Charles left end to KC 13 for -4 yards (W.Moore).,17,37,2012 20120909_ATL@KC,4,13,31,KC,ATL,2,14,87,(13:31) (Shotgun) M.Cassel scrambles up the middle to KC 26 for 13 yards (W.Moore).,17,37,2012 20120909_ATL@KC,4,12,52,KC,ATL,3,1,74,(12:52) M.Cassel pass short left intended for T.Moeaki INTERCEPTED by S.Nicholas [R.Edwards] at KC 34. S.Nicholas to KC 31 for 3 yards (T.Moeaki).,17,37,2012 20120909_ATL@KC,4,12,44,ATL,KC,1,10,31,(12:44) Jz. Rodgers up the middle to KC 29 for 2 yards (J.Belcher).,37,17,2012 20120909_ATL@KC,4,12,7,ATL,KC,2,8,29,(12:07) M.Ryan pass short middle to Jz. Rodgers to KC 22 for 7 yards (J.Houston; D.Johnson).,37,17,2012 20120909_ATL@KC,4,11,24,ATL,KC,3,1,22,(11:24) Jz. Rodgers right end to KC 23 for -1 yards (J.Belcher).,37,17,2012 20120909_ATL@KC,4,10,44,ATL,KC,4,2,23,(10:44) M.Bryant 41 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,37,17,2012 20120909_ATL@KC,4,10,44,ATL,KC,,,23,M.Bosher kicks 73 yards from ATL 35 to KC -8. J.Arenas pushed ob at KC 10 for 18 yards (K.Biermann). Penalty on KC-S.Draughn Unnecessary Roughness offsetting. Penalty on ATL-C.Hope Unnecessary Roughness offsetting.,40,17,2012 20120909_ATL@KC,4,10,33,KC,ATL,1,10,90,(10:33) J.Charles up the middle to KC 8 for -2 yards (J.Abraham).,17,40,2012 20120909_ATL@KC,4,10,7,KC,ATL,2,12,92,(10:07) J.Charles right tackle to KC 14 for 6 yards (T.DeCoud).,17,40,2012 20120909_ATL@KC,4,9,20,KC,ATL,3,6,86,(9:20) (Shotgun) M.Cassel pass short left to D.Bowe to KC 23 for 9 yards (S.Nicholas).,17,40,2012 20120909_ATL@KC,4,8,48,KC,ATL,1,10,77,(8:48) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe.,17,40,2012 20120909_ATL@KC,4,8,41,KC,ATL,2,10,77,(8:41) (No Huddle Shotgun) S.Draughn left end to KC 37 for 14 yards (R.Edwards).,17,40,2012 20120909_ATL@KC,4,8,9,KC,ATL,1,10,63,(8:09) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe (A.Samuel).,17,40,2012 20120909_ATL@KC,4,7,59,KC,ATL,2,10,63,(7:59) (No Huddle) S.Draughn right end pushed ob at KC 46 for 9 yards (W.Moore). PENALTY on KC-S.Draughn Face Mask (15 Yards) 15 yards enforced at KC 40.,17,40,2012 20120909_ATL@KC,4,7,43,KC,ATL,2,22,75,(7:43) M.Cassel pass incomplete short left to D.McCluster (J.Abraham).,17,40,2012 20120909_ATL@KC,4,7,40,KC,ATL,3,22,75,(7:40) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 38 for 13 yards (T.DeCoud).,17,40,2012 20120909_ATL@KC,4,7,5,KC,ATL,4,9,62,(7:05) D.Colquitt punts 47 yards to ATL 15 Center-T.Gafford fair catch by D.Franks. PENALTY on ATL Offensive Holding 7 yards enforced at ATL 15.,17,40,2012 20120909_ATL@KC,4,6,58,ATL,KC,1,10,92,(6:58) Jz. Rodgers right tackle to ATL 14 for 6 yards (T.Jackson).,40,17,2012 20120909_ATL@KC,4,6,13,ATL,KC,2,4,86,(6:13) Jz. Rodgers up the middle to ATL 19 for 5 yards (G.Dorsey).,40,17,2012 20120909_ATL@KC,4,5,28,ATL,KC,1,10,81,(5:28) J.Snelling up the middle to ATL 21 for 2 yards (J.Powe).,40,17,2012 20120909_ATL@KC,4,4,45,ATL,KC,2,8,79,(4:45) J.Snelling right guard to ATL 24 for 3 yards (E.Berry).,40,17,2012 20120909_ATL@KC,4,4,0,ATL,KC,3,5,76,(4:00) Jz. Rodgers left end to ATL 25 for 1 yard (E.Jones; D.Poe).,40,17,2012 20120909_ATL@KC,4,3,16,ATL,KC,4,4,75,(3:16) M.Bosher punts 52 yards to KC 23 Center-J.Harris. J.Arenas pushed ob at KC 41 for 18 yards (J.Harris). PENALTY on KC Illegal Block Above the Waist 10 yards enforced at KC 37.,40,17,2012 20120909_ATL@KC,4,3,1,KC,ATL,1,10,73,(3:01) J.Charles up the middle to KC 35 for 8 yards (W.Moore).,17,40,2012 20120909_ATL@KC,4,2,35,KC,ATL,2,2,65,(2:35) (No Huddle) M.Cassel pass incomplete short left to S.Breaston.,17,40,2012 20120909_ATL@KC,4,2,31,KC,ATL,3,2,65,(2:31) (Shotgun) M.Cassel pass deep right to S.Breaston to ATL 41 for 24 yards (T.DeCoud).,17,40,2012 20120909_ATL@KC,4,2,0,KC,ATL,1,10,41,(2:00) (Shotgun) M.Cassel pass incomplete short right to D.McCluster (S.Nicholas).,17,40,2012 20120909_ATL@KC,4,1,55,KC,ATL,2,10,41,(1:55) (Shotgun) M.Cassel pass short right to S.Draughn pushed ob at ATL 32 for 9 yards (S.Nicholas).,17,40,2012 20120909_ATL@KC,4,1,47,KC,ATL,3,1,32,(1:47) S.Draughn up the middle to ATL 29 for 3 yards (C.Matthews).,17,40,2012 20120909_ATL@KC,4,1,15,KC,ATL,1,10,29,(1:15) (Shotgun) M.Cassel pass short right to K.Boss pushed ob at ATL 15 for 14 yards (W.Moore).,17,40,2012 20120909_ATL@KC,4,0,46,KC,ATL,1,10,15,(:46) (No Huddle Shotgun) M.Cassel pass short left to S.Draughn to ATL 12 for 3 yards (D.Robinson).,17,40,2012 20120909_ATL@KC,4,0,21,KC,ATL,2,7,12,(:21) (No Huddle Shotgun) M.Cassel pass incomplete short left to D.McCluster.,17,40,2012 20120909_ATL@KC,4,0,16,KC,ATL,3,7,12,(:16) (Shotgun) M.Cassel pass short left to T.Moeaki to ATL 4 for 8 yards (S.Nicholas).,17,40,2012 20120909_ATL@KC,4,0,9,KC,ATL,1,4,4,(:09) (Shotgun) S.Draughn up the middle for 4 yards TOUCHDOWN.,17,40,2012 20120909_ATL@KC,4,0,9,KC,ATL,,,4,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,17,40,2012 20120909_ATL@KC,4,0,9,KC,ATL,,,4,R.Succop kicks 70 yards from KC 35 to ATL -5. H.Douglas to ATL 3 for 8 yards (S.Draughn).,24,40,2012 20120909_ATL@KC,4,0,9,KC,ATL,,,4,                      ,24,40,2012 20120909_JAC@MIN,1,0,0,JAC,MIN,,,4,J.Scobee kicks 59 yards from JAX 35 to MIN 6. M.Asiata to MIN 24 for 18 yards (J.Stanford; J.Parmele).,0,0,2012 20120909_JAC@MIN,1,59,55,MIN,JAC,1,10,76,(14:55) C.Ponder pass short right to K.Rudolph to MIN 39 for 15 yards (K.Bosworth; R.Allen).,0,0,2012 20120909_JAC@MIN,1,59,15,MIN,JAC,1,10,61,(14:15) A.Peterson right guard to MIN 43 for 4 yards (A.Ross).,0,0,2012 20120909_JAC@MIN,1,58,42,MIN,JAC,2,6,57,(13:42) P.Harvin left end to MIN 47 for 4 yards (P.Posluszny).,0,0,2012 20120909_JAC@MIN,1,58,4,MIN,JAC,3,2,53,(13:04) (Shotgun) C.Ponder scrambles up the middle to MIN 48 for 1 yard (T.Knighton).,0,0,2012 20120909_JAC@MIN,1,57,24,MIN,JAC,4,1,52,(12:24) C.Kluwe punts 37 yards to JAX 15 Center-C.Loeffler. M.Thomas to JAX 22 for 7 yards (J.Sanford).,0,0,2012 20120909_JAC@MIN,1,57,14,JAC,MIN,1,10,78,(12:14) R.Jennings right tackle to JAX 27 for 5 yards (B.Robison).,0,0,2012 20120909_JAC@MIN,1,56,32,JAC,MIN,2,5,73,(11:32) B.Gabbert sacked at JAX 20 for -7 yards (J.Allen). PENALTY on MIN-J.Allen Defensive Offside 5 yards enforced at JAX 27 - No Play.,0,0,2012 20120909_JAC@MIN,1,56,20,JAC,MIN,1,10,68,(11:20) M.Jones-Drew left guard to JAX 35 for 3 yards (L.Guion).,0,0,2012 20120909_JAC@MIN,1,55,39,JAC,MIN,2,7,65,(10:39) B.Gabbert pass incomplete short left to G.Jones.,0,0,2012 20120909_JAC@MIN,1,55,35,JAC,MIN,3,7,65,(10:35) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 43 for 8 yards (C.Cook).,0,0,2012 20120909_JAC@MIN,1,54,56,JAC,MIN,1,10,57,(9:56) R.Jennings right end to JAX 39 for -4 yards (E.Henderson).,0,0,2012 20120909_JAC@MIN,1,54,14,JAC,MIN,2,14,61,(9:14) R.Jennings up the middle to JAX 39 for no gain (C.Greenway). PENALTY on MIN-K.Williams Defensive Offside 5 yards enforced at JAX 39 - No Play.,0,0,2012 20120909_JAC@MIN,1,53,46,JAC,MIN,2,9,56,(8:46) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (C.Cook) [C.Greenway].,0,0,2012 20120909_JAC@MIN,1,53,41,JAC,MIN,3,9,56,(8:41) (Shotgun) B.Gabbert pass short left to J.Blackmon to MIN 43 for 13 yards (J.Robinson).,0,0,2012 20120909_JAC@MIN,1,53,1,JAC,MIN,1,10,43,(8:01) R.Jennings right tackle to MIN 40 for 3 yards (K.Williams; C.Greenway).,0,0,2012 20120909_JAC@MIN,1,52,21,JAC,MIN,2,7,40,(7:21) M.Thomas right end to MIN 41 for -1 yards (B.Robison).,0,0,2012 20120909_JAC@MIN,1,51,36,JAC,MIN,3,8,41,(6:36) (Shotgun) B.Gabbert pass short middle to M.Lewis to MIN 23 for 18 yards (J.Robinson).,0,0,2012 20120909_JAC@MIN,1,50,52,JAC,MIN,1,10,23,(5:52) (Shotgun) B.Gabbert pass incomplete short left to L.Robinson (C.Cook).,0,0,2012 20120909_JAC@MIN,1,50,47,JAC,MIN,2,10,23,(5:47) PENALTY on JAX-J.Blackmon False Start 5 yards enforced at MIN 23 - No Play.,0,0,2012 20120909_JAC@MIN,1,50,47,JAC,MIN,2,15,28,(5:47) B.Gabbert pass short left to M.Lewis to MIN 15 for 13 yards (M.Raymond).,0,0,2012 20120909_JAC@MIN,1,50,0,JAC,MIN,3,2,15,(5:00) R.Jennings left end pushed ob at MIN 5 for 10 yards (H.Smith).,0,0,2012 20120909_JAC@MIN,1,49,28,JAC,MIN,1,5,5,(4:28) B.Gabbert pass incomplete short left to J.Blackmon.,0,0,2012 20120909_JAC@MIN,1,49,23,JAC,MIN,2,5,5,(4:23) R.Jennings right guard to MIN 1 for 4 yards (C.Greenway).,0,0,2012 20120909_JAC@MIN,1,48,39,JAC,MIN,3,1,1,(3:39) G.Whimper reported in as eligible. R.Jennings up the middle to MIN 1 for no gain (J.Brinkley).,0,0,2012 20120909_JAC@MIN,1,47,56,JAC,MIN,4,1,1,(2:56) J.Scobee 19 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 20120909_JAC@MIN,1,47,56,JAC,MIN,,,1,J.Scobee kicks 70 yards from JAX 35 to MIN -5. P.Harvin to MIN 23 for 28 yards (B.Marshall).,3,0,2012 20120909_JAC@MIN,1,47,46,MIN,JAC,1,10,77,(2:46) T.Gerhart left tackle to MIN 23 for no gain (A.Branch).,0,3,2012 20120909_JAC@MIN,1,47,7,MIN,JAC,2,10,77,(2:07) T.Gerhart up the middle to MIN 27 for 4 yards (P.Posluszny).,0,3,2012 20120909_JAC@MIN,1,46,30,MIN,JAC,3,6,73,(1:30) (Shotgun) C.Ponder pass incomplete short middle to P.Harvin (C.Prosinski).,0,3,2012 20120909_JAC@MIN,1,46,25,MIN,JAC,4,6,73,(1:25) C.Kluwe punts 52 yards to JAX 21 Center-C.Loeffler. M.Jones-Drew MUFFS catch ball out of bounds at JAX 21.,0,3,2012 20120909_JAC@MIN,1,46,16,JAC,MIN,1,10,79,(1:16) M.Jones-Drew left tackle to JAX 32 for 11 yards (A.Winfield).,3,0,2012 20120909_JAC@MIN,1,45,39,JAC,MIN,1,10,68,(:39) M.Jones-Drew left guard to JAX 35 for 3 yards (A.Winfield).,3,0,2012 20120909_JAC@MIN,2,45,0,JAC,MIN,2,7,65,(15:00) B.Gabbert pass incomplete short right to M.Owens.,3,0,2012 20120909_JAC@MIN,2,44,56,JAC,MIN,3,7,65,(14:56) (Shotgun) B.Gabbert pass incomplete short right to M.Owens [B.Robison].,3,0,2012 20120909_JAC@MIN,2,44,52,JAC,MIN,4,7,65,(14:52) B.Anger punts 56 yards to MIN 9 Center-J.Cain. M.Sherels to MIN 24 for 15 yards (M.Owens). PENALTY on JAX Illegal Substitution 5 yards enforced at MIN 24.,3,0,2012 20120909_JAC@MIN,2,44,38,MIN,JAC,1,10,71,(14:38) A.Peterson up the middle to MIN 38 for 9 yards (D.Landry).,0,3,2012 20120909_JAC@MIN,2,43,59,MIN,JAC,2,1,62,(13:59) A.Peterson up the middle to MIN 36 for -2 yards (T.Knighton).,0,3,2012 20120909_JAC@MIN,2,43,19,MIN,JAC,3,3,64,(13:19) A.Peterson left end to MIN 35 for -1 yards (Team).,0,3,2012 20120909_JAC@MIN,2,42,42,MIN,JAC,4,4,65,(12:42) C.Kluwe punts 53 yards to JAX 12 Center-C.Loeffler. M.Thomas to JAX 21 for 9 yards. FUMBLES recovered by JAX-J.Stanford at JAX 22. J.Stanford to JAX 22 for no gain (M.Asiata).,0,3,2012 20120909_JAC@MIN,2,42,30,JAC,MIN,1,10,78,(12:30) B.Gabbert pass short left to Z.Potter pushed ob at JAX 24 for 2 yards (J.Robinson). PENALTY on JAX-G.Whimper Offensive Holding 10 yards enforced at JAX 22 - No Play.,3,0,2012 20120909_JAC@MIN,2,42,6,JAC,MIN,1,20,88,(12:06) (Shotgun) B.Gabbert pass short right to R.Jennings to JAX 21 for 9 yards (C.Greenway).,3,0,2012 20120909_JAC@MIN,2,41,19,JAC,MIN,2,11,79,(11:19) B.Gabbert pass deep right to L.Robinson to JAX 47 for 26 yards (H.Smith; C.Cook).,3,0,2012 20120909_JAC@MIN,2,40,37,JAC,MIN,1,10,53,(10:37) B.Gabbert pass short right to M.Jones-Drew pushed ob at MIN 45 for 8 yards (E.Henderson).,3,0,2012 20120909_JAC@MIN,2,40,10,JAC,MIN,2,2,45,(10:10) R.Jennings right guard to MIN 41 for 4 yards (J.Brinkley).,3,0,2012 20120909_JAC@MIN,2,39,33,JAC,MIN,1,10,41,(9:33) B.Gabbert scrambles right end ran ob at MIN 39 for 2 yards. PENALTY on MIN-J.Brinkley Defensive Holding 5 yards enforced at MIN 39.,3,0,2012 20120909_JAC@MIN,2,39,6,JAC,MIN,1,10,34,(9:06) M.Jones-Drew left end to MIN 30 for 4 yards (C.Ballard).,3,0,2012 20120909_JAC@MIN,2,38,21,JAC,MIN,2,6,30,(8:21) M.Jones-Drew up the middle to MIN 28 for 2 yards (E.Henderson; H.Smith).,3,0,2012 20120909_JAC@MIN,2,37,35,JAC,MIN,3,4,28,(7:35) (Shotgun) B.Gabbert pass short left to C.Shorts to MIN 21 for 7 yards (J.Robinson).,3,0,2012 20120909_JAC@MIN,2,36,53,JAC,MIN,1,10,21,(6:53) R.Jennings left tackle to MIN 12 for 9 yards (M.Raymond).,3,0,2012 20120909_JAC@MIN,2,36,11,JAC,MIN,2,1,12,(6:11) M.Jones-Drew up the middle to MIN 1 for 11 yards (J.Brinkley; H.Smith).,3,0,2012 20120909_JAC@MIN,2,35,27,JAC,MIN,1,1,1,(5:27) G.Whimper reported in as eligible. B.Gabbert pass short right to M.Lewis for 1 yard TOUCHDOWN.,3,0,2012 20120909_JAC@MIN,2,35,27,JAC,MIN,,,1,J.Scobee extra point is Blocked (M.Kalil) Center-J.Cain Holder-B.Anger.,3,0,2012 20120909_JAC@MIN,2,35,27,JAC,MIN,,,1,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,9,0,2012 20120909_JAC@MIN,2,35,21,MIN,JAC,1,10,80,(5:21) C.Ponder pass incomplete short left to M.Jenkins.,0,9,2012 20120909_JAC@MIN,2,35,17,MIN,JAC,2,10,80,(5:17) C.Ponder pass short right to K.Rudolph to MIN 22 for 2 yards (A.Ross; R.Allen).,0,9,2012 20120909_JAC@MIN,2,34,34,MIN,JAC,3,8,78,(4:34) (Shotgun) C.Ponder pass short right to K.Rudolph to MIN 37 for 15 yards (D.Lowery).,0,9,2012 20120909_JAC@MIN,2,33,58,MIN,JAC,1,10,63,(3:58) C.Ponder pass incomplete short left to M.Jenkins (P.Posluszny).,0,9,2012 20120909_JAC@MIN,2,33,51,MIN,JAC,2,10,63,(3:51) T.Gerhart left end to MIN 44 for 7 yards (W.Middleton).,0,9,2012 20120909_JAC@MIN,2,33,11,MIN,JAC,3,3,56,(3:11) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph (R.Mathis).,0,9,2012 20120909_JAC@MIN,2,33,6,MIN,JAC,4,3,56,(3:06) C.Kluwe punts 41 yards to JAX 15 Center-C.Loeffler. M.Jones-Drew to JAX 19 for 4 yards (R.Ellison).,0,9,2012 20120909_JAC@MIN,2,32,54,JAC,MIN,1,10,81,(2:54) M.Jones-Drew up the middle to JAX 20 for 1 yard (C.Greenway). JAX-U.Nwaneri was injured during the play. His return is Questionable.,9,0,2012 20120909_JAC@MIN,2,32,46,JAC,MIN,2,9,80,(2:46) M.Jones-Drew right guard to JAX 21 for 1 yard (J.Brinkley).,9,0,2012 20120909_JAC@MIN,2,32,42,JAC,MIN,3,8,79,(2:42) (Shotgun) B.Gabbert pass incomplete short middle to M.Jones-Drew [B.Robison].,9,0,2012 20120909_JAC@MIN,2,32,40,JAC,MIN,4,8,79,(2:40) B.Anger punts 45 yards to MIN 34 Center-J.Cain. M.Sherels to MIN 41 for 7 yards (A.Blake).,9,0,2012 20120909_JAC@MIN,2,32,28,MIN,JAC,1,10,59,(2:28) (Shotgun) C.Ponder pass short left to P.Harvin to JAX 43 for 16 yards (A.Ross).,0,9,2012 20120909_JAC@MIN,2,32,1,MIN,JAC,1,10,43,(2:01) (Shotgun) C.Ponder pass short left to P.Harvin ran ob at JAX 38 for 5 yards.,0,9,2012 20120909_JAC@MIN,2,31,56,MIN,JAC,2,5,38,(1:56) (Shotgun) C.Ponder pass short right to P.Harvin pushed ob at JAX 27 for 11 yards (D.Landry).,0,9,2012 20120909_JAC@MIN,2,31,50,MIN,JAC,1,10,27,(1:50) A.Peterson right tackle to JAX 19 for 8 yards (D.Lowery).,0,9,2012 20120909_JAC@MIN,2,31,29,MIN,JAC,2,2,19,(1:29) (Shotgun) C.Ponder pass short right to M.Jenkins to JAX 5 for 14 yards (A.Ross).,0,9,2012 20120909_JAC@MIN,2,31,15,MIN,JAC,1,5,5,(1:15) A.Peterson right tackle to JAX 3 for 2 yards (R.Allen; D.Lowery).,0,9,2012 20120909_JAC@MIN,2,30,45,MIN,JAC,2,3,3,(:45) A.Peterson up the middle for 3 yards TOUCHDOWN.,0,9,2012 20120909_JAC@MIN,2,30,45,MIN,JAC,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,9,2012 20120909_JAC@MIN,2,30,45,MIN,JAC,,,3,B.Walsh kicks 69 yards from MIN 35 to JAX -4. J.Parmele to JAX 16 for 20 yards (C.Ballard).,7,9,2012 20120909_JAC@MIN,2,30,37,JAC,MIN,1,10,84,(:37) B.Gabbert kneels to JAX 15 for -1 yards.,9,7,2012 20120909_JAC@MIN,3,30,0,MIN,JAC,,,84,B.Walsh kicks 70 yards from MIN 35 to JAX -5. J.Parmele Touchback.,7,9,2012 20120909_JAC@MIN,3,30,0,JAC,MIN,1,10,80,(15:00) M.Jones-Drew right tackle to JAX 23 for 3 yards (L.Guion; E.Henderson).,9,7,2012 20120909_JAC@MIN,3,29,17,JAC,MIN,2,7,77,(14:17) PENALTY on JAX-G.Whimper False Start 5 yards enforced at JAX 23 - No Play.,9,7,2012 20120909_JAC@MIN,3,29,2,JAC,MIN,2,12,82,(14:02) (Shotgun) B.Gabbert pass short left to L.Robinson to JAX 25 for 7 yards (C.Greenway).,9,7,2012 20120909_JAC@MIN,3,28,18,JAC,MIN,3,5,75,(13:18) (Shotgun) B.Gabbert pass short right to M.Owens pushed ob at JAX 33 for 8 yards (A.Winfield) [E.Griffen].,9,7,2012 20120909_JAC@MIN,3,28,0,JAC,MIN,1,10,67,(13:00) (Shotgun) M.Jones-Drew left guard to JAX 37 for 4 yards (C.Greenway).,9,7,2012 20120909_JAC@MIN,3,27,20,JAC,MIN,2,6,63,(12:20) M.Jones-Drew left guard to JAX 44 for 7 yards (H.Smith).,9,7,2012 20120909_JAC@MIN,3,26,41,MIN,JAC,1,10,56,(11:41) B.Gabbert FUMBLES (Aborted) at JAX 44 RECOVERED by MIN-K.Williams at JAX 44. K.Williams to JAX 44 for no gain (Team).,7,9,2012 20120909_JAC@MIN,3,26,36,MIN,JAC,1,10,44,(11:36) A.Peterson right end pushed ob at JAX 25 for 19 yards (D.Landry).,7,9,2012 20120909_JAC@MIN,3,26,17,MIN,JAC,1,10,25,(11:17) C.Ponder pass short middle to P.Harvin to JAX 6 for 19 yards (D.Lowery).,7,9,2012 20120909_JAC@MIN,3,25,25,MIN,JAC,1,6,6,(10:25) A.Peterson up the middle to JAX 2 for 4 yards (T.Alualu).,7,9,2012 20120909_JAC@MIN,3,24,46,MIN,JAC,2,2,2,(9:46) A.Peterson up the middle for 2 yards TOUCHDOWN.,7,9,2012 20120909_JAC@MIN,3,24,46,MIN,JAC,,,2,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,9,2012 20120909_JAC@MIN,3,24,46,MIN,JAC,,,2,B.Walsh kicks 69 yards from MIN 35 to JAX -4. J.Parmele to JAX 18 for 22 yards (B.Burton).,14,9,2012 20120909_JAC@MIN,3,24,38,JAC,MIN,1,10,82,(9:38) M.Jones-Drew left end to JAX 18 for no gain (C.Greenway; E.Henderson).,9,14,2012 20120909_JAC@MIN,3,23,59,JAC,MIN,2,10,82,(8:59) B.Gabbert pass short right to G.Jones to JAX 27 for 9 yards (H.Smith; E.Henderson).,9,14,2012 20120909_JAC@MIN,3,23,28,JAC,MIN,3,1,73,(8:28) (Shotgun) M.Jones-Drew left end to JAX 37 for 10 yards (C.Greenway).,9,14,2012 20120909_JAC@MIN,3,22,46,JAC,MIN,1,10,63,(7:46) B.Gabbert pass short left to L.Robinson to JAX 43 for 6 yards (C.Greenway; J.Brinkley).,9,14,2012 20120909_JAC@MIN,3,22,7,JAC,MIN,2,4,57,(7:07) J.Parmele up the middle to JAX 43 for no gain (C.Greenway).,9,14,2012 20120909_JAC@MIN,3,21,22,JAC,MIN,3,4,57,(6:22) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon (B.Robison).,9,14,2012 20120909_JAC@MIN,3,21,18,JAC,MIN,4,4,57,(6:18) B.Anger punts 57 yards to end zone Center-J.Cain Touchback.,9,14,2012 20120909_JAC@MIN,3,21,12,MIN,JAC,1,10,80,(6:12) C.Ponder sacked at MIN 16 for -4 yards (T.Knighton). FUMBLES (T.Knighton) RECOVERED by JAX-C.Mosley at MIN 16. C.Mosley to MIN 16 for no gain (Team).,14,9,2012 20120909_JAC@MIN,3,21,5,JAC,MIN,1,10,16,(6:05) (Shotgun) B.Gabbert scrambles right tackle pushed ob at MIN 12 for 4 yards (E.Henderson).,9,14,2012 20120909_JAC@MIN,3,20,33,JAC,MIN,2,6,12,(5:33) M.Jones-Drew left guard to MIN 8 for 4 yards (J.Brinkley).,9,14,2012 20120909_JAC@MIN,3,19,48,JAC,MIN,3,2,8,(4:48) (Shotgun) B.Gabbert pass incomplete short middle to M.Jones-Drew [F.Evans].,9,14,2012 20120909_JAC@MIN,3,19,44,JAC,MIN,4,2,8,(4:44) J.Scobee 26 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,9,14,2012 20120909_JAC@MIN,3,19,44,JAC,MIN,,,8,J.Scobee kicks 72 yards from JAX 35 to MIN -7. P.Harvin to MIN 23 for 30 yards (K.Rutland).,12,14,2012 20120909_JAC@MIN,3,19,35,MIN,JAC,1,10,77,(4:35) C.Ponder pass short right to M.Jenkins to MIN 38 for 15 yards (R.Allen; C.Mosley).,14,12,2012 20120909_JAC@MIN,3,18,58,MIN,JAC,1,10,62,(3:58) T.Gerhart left end to MIN 44 for 6 yards (P.Posluszny).,14,12,2012 20120909_JAC@MIN,3,18,22,MIN,JAC,2,4,56,(3:22) P.Harvin up the middle to JAX 47 for 9 yards (D.Landry).,14,12,2012 20120909_JAC@MIN,3,17,45,MIN,JAC,1,10,47,(2:45) C.Ponder pass short left to P.Harvin pushed ob at JAX 34 for 13 yards (K.Rutland).,14,12,2012 20120909_JAC@MIN,3,17,22,MIN,JAC,1,10,34,(2:22) T.Gerhart left end to JAX 32 for 2 yards (D.Lowery; W.Middleton).,14,12,2012 20120909_JAC@MIN,3,16,43,MIN,JAC,2,8,32,(1:43) C.Ponder sacked at JAX 32 for 0 yards (T.Alualu).,14,12,2012 20120909_JAC@MIN,3,15,57,MIN,JAC,3,8,32,(:57) (Shotgun) C.Ponder pass deep left to K.Rudolph to JAX 3 for 29 yards (K.Rutland).,14,12,2012 20120909_JAC@MIN,3,15,28,MIN,JAC,1,3,3,(:28) P.Harvin up the middle to JAX 4 for -1 yards (K.Bosworth).,14,12,2012 20120909_JAC@MIN,4,15,0,MIN,JAC,2,4,4,(15:00) C.Ponder pass short right to M.Asiata to JAX 2 for 2 yards (P.Posluszny).,14,12,2012 20120909_JAC@MIN,4,14,17,MIN,JAC,3,2,2,(14:17) C.Ponder pass incomplete short right to J.Carlson (R.Allen).,14,12,2012 20120909_JAC@MIN,4,14,12,MIN,JAC,4,2,2,(14:12) B.Walsh 20 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,12,2012 20120909_JAC@MIN,4,14,12,MIN,JAC,,,2,B.Walsh kicks 71 yards from MIN 35 to JAX -6. J.Parmele Touchback.,17,12,2012 20120909_JAC@MIN,4,14,9,JAC,MIN,1,10,80,(14:09) B.Gabbert pass deep middle to L.Robinson to JAX 39 for 19 yards (H.Smith).,12,17,2012 20120909_JAC@MIN,4,13,32,JAC,MIN,1,10,61,(13:32) (Shotgun) B.Gabbert pass short left to J.Blackmon pushed ob at JAX 40 for 1 yard (J.Robinson).,12,17,2012 20120909_JAC@MIN,4,12,50,JAC,MIN,2,9,60,(12:50) B.Gabbert sacked at JAX 40 for 0 yards (E.Henderson). PENALTY on MIN-L.Guion Unnecessary Roughness 15 yards enforced at JAX 40.,12,17,2012 20120909_JAC@MIN,4,12,50,JAC,MIN,1,10,45,(12:50) M.Jones-Drew right end to MIN 44 for 1 yard (B.Robison).,12,17,2012 20120909_JAC@MIN,4,11,49,JAC,MIN,2,9,44,(11:49) (Shotgun) B.Gabbert pass incomplete deep middle to M.Thomas (M.Raymond).,12,17,2012 20120909_JAC@MIN,4,11,43,JAC,MIN,3,9,44,(11:43) (Shotgun) B.Gabbert pass short right to M.Lewis to MIN 32 for 12 yards (C.Greenway).,12,17,2012 20120909_JAC@MIN,4,11,3,JAC,MIN,1,10,32,(11:03) M.Jones-Drew up the middle to MIN 29 for 3 yards (F.Evans).,12,17,2012 20120909_JAC@MIN,4,10,24,JAC,MIN,2,7,29,(10:24) M.Jones-Drew right guard to MIN 29 for no gain (C.Greenway).,12,17,2012 20120909_JAC@MIN,4,9,45,JAC,MIN,3,7,29,(9:45) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (C.Greenway).,12,17,2012 20120909_JAC@MIN,4,9,40,JAC,MIN,4,7,29,(9:40) J.Scobee 47 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,12,17,2012 20120909_JAC@MIN,4,9,40,JAC,MIN,,,29,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,15,17,2012 20120909_JAC@MIN,4,9,35,MIN,JAC,1,10,80,(9:35) A.Peterson up the middle to MIN 25 for 5 yards (T.Alualu; J.Mincey).,17,15,2012 20120909_JAC@MIN,4,9,35,MIN,JAC,2,5,75,(9:35) C.Ponder pass deep right to M.Jenkins ran ob at MIN 41 for 16 yards.,17,15,2012 20120909_JAC@MIN,4,8,42,MIN,JAC,1,10,59,(8:42) (Shotgun) C.Ponder pass short left to P.Harvin to JAX 39 for 20 yards (R.Mathis).,17,15,2012 20120909_JAC@MIN,4,7,58,MIN,JAC,1,10,39,(7:58) A.Peterson left guard to JAX 38 for 1 yard (R.Allen; P.Posluszny).,17,15,2012 20120909_JAC@MIN,4,7,25,MIN,JAC,2,9,38,(7:25) C.Ponder pass short left to D.Aromashodu to JAX 20 for 18 yards (R.Allen).,17,15,2012 20120909_JAC@MIN,4,6,45,MIN,JAC,1,10,20,(6:45) P.Harvin up the middle to JAX 13 for 7 yards (J.Mincey).,17,15,2012 20120909_JAC@MIN,4,6,8,MIN,JAC,2,3,13,(6:08) (Shotgun) C.Ponder pass incomplete short left to P.Harvin.,17,15,2012 20120909_JAC@MIN,4,6,3,MIN,JAC,3,3,13,(6:03) (Shotgun) C.Ponder scrambles left end to JAX 11 for 2 yards (Team). PENALTY on MIN-C.Johnson Offensive Holding 10 yards enforced at JAX 13 - No Play.,17,15,2012 20120909_JAC@MIN,4,5,43,MIN,JAC,3,13,23,(5:43) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph.,17,15,2012 20120909_JAC@MIN,4,5,38,MIN,JAC,4,13,23,(5:38) B.Walsh 42 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,17,15,2012 20120909_JAC@MIN,4,5,38,MIN,JAC,,,23,B.Walsh kicks 73 yards from MIN 35 to JAX -8. J.Parmele Touchback.,20,15,2012 20120909_JAC@MIN,4,5,33,JAC,MIN,1,10,80,(5:33) B.Gabbert pass short left to L.Robinson to JAX 28 for 8 yards (C.Cook).,15,20,2012 20120909_JAC@MIN,4,5,6,JAC,MIN,2,2,72,(5:06) (Shotgun) M.Jones-Drew left tackle to JAX 29 for 1 yard (E.Henderson).,15,20,2012 20120909_JAC@MIN,4,4,21,JAC,MIN,3,1,71,(4:21) B.Gabbert up the middle to JAX 30 for 1 yard (Team).,15,20,2012 20120909_JAC@MIN,4,3,41,JAC,MIN,1,10,70,(3:41) B.Gabbert sacked at JAX 19 for -11 yards (C.Cook).,15,20,2012 20120909_JAC@MIN,4,3,6,JAC,MIN,2,21,81,(3:06) (Shotgun) B.Gabbert pass short right to M.Jones-Drew to JAX 22 for 3 yards (A.Winfield).,15,20,2012 20120909_JAC@MIN,4,2,30,JAC,MIN,3,18,78,(2:30) (Shotgun) B.Gabbert pass short right to M.Lewis to JAX 30 for 8 yards (C.Cook).,15,20,2012 20120909_JAC@MIN,4,2,0,JAC,MIN,4,10,70,(2:00) B.Anger punts 56 yards to MIN 14 Center-J.Cain fair catch by M.Sherels.,15,20,2012 20120909_JAC@MIN,4,1,51,MIN,JAC,1,10,86,(1:51) A.Peterson left guard to MIN 15 for 1 yard (T.Alualu).,20,15,2012 20120909_JAC@MIN,4,1,46,MIN,JAC,2,9,85,(1:46) A.Peterson right end to MIN 18 for 3 yards (A.Ross; P.Posluszny). Penalty on MIN-M.Jenkins Illegal Cut declined.,20,15,2012 20120909_JAC@MIN,4,1,35,MIN,JAC,3,6,82,(1:35) T.Gerhart left guard to MIN 17 for -1 yards (J.Mincey).,20,15,2012 20120909_JAC@MIN,4,1,31,MIN,JAC,4,7,83,(1:31) C.Kluwe punts 59 yards to JAX 24 Center-C.Loeffler downed by MIN-J.Sanford.,20,15,2012 20120909_JAC@MIN,4,1,18,JAC,MIN,1,10,76,(1:18) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 44 for 20 yards (M.Raymond).,15,20,2012 20120909_JAC@MIN,4,1,3,JAC,MIN,1,10,56,(1:03) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to MIN 49 for 7 yards (E.Henderson).,15,20,2012 20120909_JAC@MIN,4,0,43,JAC,MIN,2,3,49,(:43) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts.,15,20,2012 20120909_JAC@MIN,4,0,36,JAC,MIN,3,3,49,(:36) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon (C.Greenway).,15,20,2012 20120909_JAC@MIN,4,0,32,JAC,MIN,4,3,49,(:32) (Shotgun) B.Gabbert pass short left to J.Blackmon ran ob at MIN 39 for 10 yards.,15,20,2012 20120909_JAC@MIN,4,0,27,JAC,MIN,1,10,39,(:27) (Shotgun) B.Gabbert pass deep right to C.Shorts for 39 yards TOUCHDOWN.,15,20,2012 20120909_JAC@MIN,4,0,27,JAC,MIN,,,39,TWO-POINT CONVERSION ATTEMPT. B.Gabbert pass to J.Blackmon is complete. ATTEMPT SUCCEEDS.,15,20,2012 20120909_JAC@MIN,4,0,27,JAC,MIN,,,39,J.Scobee kicks 56 yards from JAX 35 to MIN 9. M.Asiata to MIN 31 for 22 yards (M.Owens).,23,20,2012 20120909_JAC@MIN,4,0,14,MIN,JAC,1,10,69,(:14) C.Ponder pass deep right to D.Aromashodu to JAX 43 for 26 yards (M.Owens).,20,23,2012 20120909_JAC@MIN,4,0,7,MIN,JAC,1,10,43,(:07) (Shotgun) C.Ponder pass short right to K.Rudolph pushed ob at JAX 37 for 6 yards (D.Landry).,20,23,2012 20120909_JAC@MIN,4,0,4,MIN,JAC,2,4,37,(:04) B.Walsh 55 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,20,23,2012 20120909_JAC@MIN,5,0,0,JAC,MIN,,,37,J.Scobee kicks 70 yards from JAX 35 to MIN -5. P.Harvin to MIN 25 for 30 yards (W.Middleton).,23,23,2012 20120909_JAC@MIN,5,-1,53,MIN,JAC,1,10,75,(14:53) A.Peterson right guard to MIN 35 for 10 yards (P.Posluszny; D.Landry).,23,23,2012 20120909_JAC@MIN,5,-1,13,MIN,JAC,1,10,65,(14:13) C.Ponder pass short middle to A.Peterson to MIN 38 for 3 yards (R.Allen; C.Mosley).,23,23,2012 20120909_JAC@MIN,5,-2,38,MIN,JAC,2,7,62,(13:38) A.Peterson up the middle to JAX 42 for 20 yards (W.Middleton; D.Landry).,23,23,2012 20120909_JAC@MIN,5,-3,55,MIN,JAC,1,10,42,(12:55) C.Ponder pass deep right to D.Aromashodu pushed ob at JAX 25 for 17 yards (D.Landry).,23,23,2012 20120909_JAC@MIN,5,-3,46,MIN,JAC,1,10,25,(12:46) P.Harvin left end to JAX 24 for 1 yard (A.Ross).,23,23,2012 20120909_JAC@MIN,5,-3,8,MIN,JAC,2,9,24,(12:08) A.Peterson left guard to JAX 28 for -4 yards (DA.Smith). JAX-DA.Smith was injured during the play. His return is Probable.,23,23,2012 20120909_JAC@MIN,5,-4,36,MIN,JAC,3,13,28,(11:36) (Shotgun) C.Ponder pass short left to T.Gerhart to JAX 20 for 8 yards (D.Lowery).,23,23,2012 20120909_JAC@MIN,5,-4,11,MIN,JAC,4,5,20,(11:11) B.Walsh 38 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,23,23,2012 20120909_JAC@MIN,5,-4,11,MIN,JAC,,,20,B.Walsh kicks 63 yards from MIN 35 to JAX 2. J.Parmele to JAX 23 for 21 yards (T.McKenzie).,26,23,2012 20120909_JAC@MIN,5,-4,0,JAC,MIN,1,10,77,(11:00) B.Gabbert pass incomplete short left to L.Robinson.,23,26,2012 20120909_JAC@MIN,5,-5,57,JAC,MIN,2,10,77,(10:57) M.Jones-Drew right tackle to JAX 31 for 8 yards (K.Williams; C.Greenway).,23,26,2012 20120909_JAC@MIN,5,-5,16,JAC,MIN,3,2,69,(10:16) (Shotgun) B.Gabbert pass incomplete short right to L.Robinson (H.Smith).,23,26,2012 20120909_JAC@MIN,5,-5,12,JAC,MIN,4,2,69,(10:12) (Shotgun) B.Gabbert pass incomplete deep right to L.Robinson.,23,26,2012 20120909_JAC@MIN,5,-5,12,JAC,MIN,,,69,                      ,23,26,2012 20120909_WAS@NO,1,-5,0,WAS,NO,,,69,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,0,0,2012 20120909_WAS@NO,1,60,0,NO,WAS,1,10,80,(15:00) D.Brees pass incomplete short left to M.Colston.,0,0,2012 20120909_WAS@NO,1,59,57,NO,WAS,2,10,80,(14:57) D.Brees pass incomplete short left to L.Moore [A.Carriker].,0,0,2012 20120909_WAS@NO,1,59,52,NO,WAS,3,10,80,(14:52) (Shotgun) D.Brees pass incomplete short middle (S.Bowen).,0,0,2012 20120909_WAS@NO,1,59,47,NO,WAS,4,10,80,(14:47) T.Morstead punts 59 yards to WAS 21 Center-J.Drescher. B.Banks pushed ob at WAS 32 for 11 yards (S.Shanle).,0,0,2012 20120909_WAS@NO,1,59,34,WAS,NO,1,10,68,(14:34) (Shotgun) R.Griffin pass short left to P.Garcon to WAS 32 for no gain (C.White). Pass -4 YAC 4,0,0,2012 20120909_WAS@NO,1,58,58,WAS,NO,2,10,68,(13:58) (Shotgun) R.Griffin right end to WAS 44 for 12 yards (S.Shanle).,0,0,2012 20120909_WAS@NO,1,58,25,WAS,NO,1,10,56,(13:25) (Shotgun) R.Griffin pass short left to P.Garcon to NO 44 for 12 yards (R.Harper). Pass -2 YAC 14,0,0,2012 20120909_WAS@NO,1,57,44,WAS,NO,1,10,44,(12:44) (Shotgun) R.Griffin pass short right to P.Garcon to NO 35 for 9 yards (C.Lofton; C.White).,0,0,2012 20120909_WAS@NO,1,57,0,WAS,NO,2,1,35,(12:00) (Shotgun) R.Griffin pass short left to A.Robinson to NO 30 for 5 yards (R.Harper). Pass -3 YAC 8,0,0,2012 20120909_WAS@NO,1,56,23,WAS,NO,1,10,30,(11:23) A.Morris right tackle to NO 27 for 3 yards (C.Jordan).,0,0,2012 20120909_WAS@NO,1,55,44,WAS,NO,2,7,27,(10:44) (Shotgun) A.Morris right guard to NO 25 for 2 yards (S.Shanle; B.Bunkley).,0,0,2012 20120909_WAS@NO,1,55,3,WAS,NO,3,5,25,(10:03) (Shotgun) R.Griffin pass short left to B.Banks to NO 19 for 6 yards (C.Lofton). Pass -5 YAC 11,0,0,2012 20120909_WAS@NO,1,54,17,WAS,NO,1,10,24,(9:17) (Shotgun) R.Griffin FUMBLES (Aborted) at NO 24 and recovers at NO 24. R.Griffin to NO 24 for no gain (S.Shanle).,0,0,2012 20120909_WAS@NO,1,53,30,WAS,NO,2,15,24,(8:30) (Shotgun) A.Morris right guard to NO 22 for 2 yards (W.Smith).,0,0,2012 20120909_WAS@NO,1,52,52,WAS,NO,3,13,22,(7:52) (Shotgun) R.Griffin pass short left to R.Helu to NO 19 for 3 yards (J.Casillas). Pass -4 YAC 7,0,0,2012 20120909_WAS@NO,1,52,11,WAS,NO,4,10,19,(7:11) B.Cundiff 37 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,0,0,2012 20120909_WAS@NO,1,52,11,WAS,NO,,,19,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,3,0,2012 20120909_WAS@NO,1,52,5,NO,WAS,1,10,80,(7:05) P.Thomas left tackle to NO 26 for 6 yards (D.Gomes; P.Riley).,0,3,2012 20120909_WAS@NO,1,51,31,NO,WAS,2,4,74,(6:31) (Shotgun) D.Brees pass short middle to J.Graham to NO 49 for 23 yards (D.Gomes; J.Wilson). Pass 13 YAC 10,0,3,2012 20120909_WAS@NO,1,50,56,NO,WAS,1,10,51,(5:56) M.Ingram left guard to 50 for 1 yard (P.Riley).,0,3,2012 20120909_WAS@NO,1,50,23,NO,WAS,2,9,50,(5:23) D.Brees pass short left to P.Thomas to WAS 38 for 12 yards (B.Orakpo). Pass -4 YAC 16,0,3,2012 20120909_WAS@NO,1,49,49,NO,WAS,1,10,38,(4:49) M.Ingram left end to WAS 37 for 1 yard (A.Carriker).,0,3,2012 20120909_WAS@NO,1,49,16,NO,WAS,2,9,37,(4:16) (Shotgun) D.Brees pass short right to D.Sproles to WAS 35 for 2 yards (R.Kerrigan). PENALTY on WAS-D.Gomes Personal Foul 15 yards enforced at WAS 35. Pass -5 YAC 5,0,3,2012 20120909_WAS@NO,1,48,55,NO,WAS,1,10,20,(3:55) D.Brees pass deep middle to J.Graham for 20 yards TOUCHDOWN.,0,3,2012 20120909_WAS@NO,1,48,55,NO,WAS,,,20,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,3,2012 20120909_WAS@NO,1,48,41,WAS,NO,1,10,88,(3:41) R.Griffin pass deep left to P.Garcon for 88 yards TOUCHDOWN [M.Jenkins]. Pass 16 YAC 72,3,7,2012 20120909_WAS@NO,1,48,41,WAS,NO,,,88,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,3,7,2012 20120909_WAS@NO,1,48,41,WAS,NO,,,88,B.Cundiff kicks 73 yards from WAS 35 to NO -8. D.Sproles to NO 18 for 26 yards (Mad.Williams).,10,7,2012 20120909_WAS@NO,1,48,21,NO,WAS,1,10,82,(3:21) D.Brees pass incomplete short left to L.Moore.,7,10,2012 20120909_WAS@NO,1,48,15,NO,WAS,2,10,82,(3:15) D.Brees pass incomplete short middle to J.Collins.,7,10,2012 20120909_WAS@NO,1,48,15,NO,WAS,3,10,82,(3:15) (Shotgun) PENALTY on NO-Z.Strief False Start 5 yards enforced at NO 18 - No Play.,7,10,2012 20120909_WAS@NO,1,48,11,NO,WAS,3,15,87,(3:11) (Shotgun) PENALTY on NO-L.Moore False Start 5 yards enforced at NO 13 - No Play.,7,10,2012 20120909_WAS@NO,1,48,11,NO,WAS,3,20,92,(3:11) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,7,10,2012 20120909_WAS@NO,1,48,4,NO,WAS,4,20,92,(3:04) T.Morstead punts 49 yards to WAS 43 Center-J.Drescher downed by NO-C.Roby.,7,10,2012 20120909_WAS@NO,1,47,53,WAS,NO,1,10,57,(2:53) A.Morris left guard to WAS 45 for 2 yards (S.Ellis; C.Jordan).,10,7,2012 20120909_WAS@NO,1,47,15,WAS,NO,2,8,55,(2:15) (Shotgun) A.Morris right tackle to WAS 47 for 2 yards (B.Bunkley).,10,7,2012 20120909_WAS@NO,1,46,30,WAS,NO,3,6,53,(1:30) (Shotgun) R.Griffin right end to NO 48 for 5 yards (J.Patrick).,10,7,2012 20120909_WAS@NO,1,46,4,WAS,NO,4,1,48,(1:04) D.Young right guard to NO 46 for 2 yards (C.Lofton).,10,7,2012 20120909_WAS@NO,1,45,32,WAS,NO,1,10,46,(:32) (Shotgun) A.Morris right guard to NO 45 for 1 yard (S.Ellis).,10,7,2012 20120909_WAS@NO,2,45,0,WAS,NO,2,9,45,(15:00) (Shotgun) R.Griffin pass deep right to F.Davis pushed ob at NO 19 for 26 yards (C.White). Pass 26 YAC 0,10,7,2012 20120909_WAS@NO,2,44,29,WAS,NO,1,10,19,(14:29) (Shotgun) R.Griffin right end to NO 12 for 7 yards (J.Patrick).,10,7,2012 20120909_WAS@NO,2,43,46,WAS,NO,2,3,12,(13:46) (Shotgun) A.Morris left guard to NO 10 for 2 yards (C.Lofton; S.Ellis).,10,7,2012 20120909_WAS@NO,2,43,3,WAS,NO,3,1,10,(13:03) (Shotgun) A.Morris right guard to NO 6 for 4 yards (D.Hawthorne; S.Ellis).,10,7,2012 20120909_WAS@NO,2,42,24,WAS,NO,1,6,6,(12:24) (Shotgun) R.Griffin pass incomplete short right to S.Moss (J.Patrick). NO-J.Patrick was injured during the play. His return is Questionable.,10,7,2012 20120909_WAS@NO,2,42,18,WAS,NO,2,6,6,(12:18) (Shotgun) R.Griffin pass short right to R.Helu to NO 5 for 1 yard (R.Harper). Pass -4 YAC 5,10,7,2012 20120909_WAS@NO,2,41,37,WAS,NO,3,5,5,(11:37) (Shotgun) R.Griffin pass short right to A.Robinson for 5 yards TOUCHDOWN. Pass 5 YAC 0,10,7,2012 20120909_WAS@NO,2,41,37,WAS,NO,,,5,(Kick formation) PENALTY on NO-P.Robinson Defensive Offside 5 yards enforced between downs.,10,7,2012 20120909_WAS@NO,2,41,37,WAS,NO,,,5,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,10,7,2012 20120909_WAS@NO,2,41,37,WAS,NO,,,5,B.Cundiff kicks 60 yards from WAS 40 to end zone Touchback.,17,7,2012 20120909_WAS@NO,2,41,33,NO,WAS,1,10,80,(11:33) M.Ingram left guard to NO 25 for 5 yards (J.Wilson).,7,17,2012 20120909_WAS@NO,2,41,2,NO,WAS,2,5,75,(11:02) M.Ingram right guard to NO 25 for no gain (S.Bowen).,7,17,2012 20120909_WAS@NO,2,40,25,NO,WAS,3,5,75,(10:25) (Shotgun) PENALTY on NO-Z.Strief False Start 5 yards enforced at NO 25 - No Play.,7,17,2012 20120909_WAS@NO,2,40,2,NO,WAS,3,10,80,(10:02) (Shotgun) D.Brees sacked at NO 13 for -7 yards (D.Hall).,7,17,2012 20120909_WAS@NO,2,39,25,NO,WAS,4,17,87,(9:25) T.Morstead punts 59 yards to WAS 28 Center-J.Drescher. B.Banks to WAS 48 for 20 yards (C.White).,7,17,2012 20120909_WAS@NO,2,39,13,WAS,NO,1,10,52,(9:13) (Shotgun) R.Griffin left end to WAS 49 for 1 yard (C.Lofton).,17,7,2012 20120909_WAS@NO,2,38,40,WAS,NO,2,9,51,(8:40) (Shotgun) A.Morris left end to NO 48 for 3 yards (S.Ellis).,17,7,2012 20120909_WAS@NO,2,37,59,WAS,NO,3,6,48,(7:59) (Shotgun) R.Griffin pass deep left to S.Moss pushed ob at NO 21 for 27 yards (M.Jenkins). PENALTY on WAS-R.Helu Illegal Block Above the Waist 10 yards enforced at NO 21. Pass 16 YAC 11,17,7,2012 20120909_WAS@NO,2,37,29,WAS,NO,1,10,31,(7:29) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan.,17,7,2012 20120909_WAS@NO,2,37,24,WAS,NO,2,10,31,(7:24) R.Griffin left end pushed ob at NO 23 for 8 yards (R.Harper).,17,7,2012 20120909_WAS@NO,2,36,53,WAS,NO,3,2,23,(6:53) (Shotgun) R.Griffin right guard to NO 23 for no gain (C.Lofton).,17,7,2012 20120909_WAS@NO,2,36,13,WAS,NO,4,2,23,(6:13) B.Cundiff 41 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,17,7,2012 20120909_WAS@NO,2,36,13,WAS,NO,,,23,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,20,7,2012 20120909_WAS@NO,2,36,8,NO,WAS,1,10,80,(6:08) (Shotgun) D.Brees pass short left to D.Sproles to NO 25 for 5 yards (P.Riley). Pass -2 YAC 7,7,20,2012 20120909_WAS@NO,2,35,40,NO,WAS,2,5,75,(5:40) (Shotgun) D.Brees pass short middle to J.Graham to NO 45 for 20 yards (Mad.Williams). Pass 15 YAC 5,7,20,2012 20120909_WAS@NO,2,35,10,NO,WAS,1,10,55,(5:10) (Shotgun) D.Brees pass short right to J.Graham to NO 49 for 4 yards (L.Fletcher). Pass 4 YAC 0,7,20,2012 20120909_WAS@NO,2,34,19,NO,WAS,2,6,51,(4:19) M.Ingram left guard to WAS 45 for 6 yards (P.Riley).,7,20,2012 20120909_WAS@NO,2,33,40,NO,WAS,1,10,45,(3:40) D.Brees pass incomplete short right to J.Collins.,7,20,2012 20120909_WAS@NO,2,33,34,NO,WAS,2,10,45,(3:34) D.Brees pass short right to J.Graham to WAS 39 for 6 yards (D.Gomes). Pass 6 YAC 0,7,20,2012 20120909_WAS@NO,2,32,47,NO,WAS,3,4,39,(2:47) (Shotgun) D.Brees pass short right to M.Colston to WAS 25 for 14 yards (C.Griffin). Pass 13 YAC 1,7,20,2012 20120909_WAS@NO,2,32,11,NO,WAS,1,10,25,(2:11) P.Thomas left guard to WAS 22 for 3 yards (B.Orakpo).,7,20,2012 20120909_WAS@NO,2,32,0,NO,WAS,2,7,22,(2:00) D.Brees pass incomplete deep left to D.Thomas.,7,20,2012 20120909_WAS@NO,2,31,54,NO,WAS,3,7,22,(1:54) (Shotgun) D.Brees pass short right to M.Colston to WAS 3 for 19 yards (C.Griffin). FUMBLES (C.Griffin) ball out of bounds in End Zone Touchback. Pass 14 YAC 5 The Replay Assistant challenged the fumble ruling and the play was Upheld.,7,20,2012 20120909_WAS@NO,2,31,46,WAS,NO,1,10,80,(1:46) R.Griffin right end to WAS 18 for -2 yards (J.Galette).,20,7,2012 20120909_WAS@NO,2,31,1,WAS,NO,2,12,82,(1:01) E.Royster right tackle to WAS 26 for 8 yards (P.Robinson).,20,7,2012 20120909_WAS@NO,2,30,52,WAS,NO,3,4,74,(:52) (Shotgun) E.Royster left guard to WAS 28 for 2 yards (C.Jordan; C.Lofton).,20,7,2012 20120909_WAS@NO,2,30,46,WAS,NO,4,2,72,(:46) S.Rocca punt is BLOCKED by M.Wilson Center-N.Sundberg RECOVERED by NO-C.Roby at WAS 4. C.Roby for 4 yards TOUCHDOWN.,20,7,2012 20120909_WAS@NO,2,30,46,NO,WAS,,,72,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,20,2012 20120909_WAS@NO,2,30,46,,NO,,,72,T.Morstead kicks 70 yards from NO 30 to end zone Touchback.,20,14,2012 20120909_WAS@NO,2,30,40,WAS,NO,1,10,80,(:40) R.Griffin kneels to WAS 19 for -1 yards.,20,14,2012 20120909_WAS@NO,3,30,0,NO,WAS,,,80,T.Morstead kicks 64 yards from NO 35 to WAS 1. B.Banks to WAS 23 for 22 yards (T.Cadet).,14,20,2012 20120909_WAS@NO,3,29,55,WAS,NO,1,10,77,(14:55) (Shotgun) R.Griffin pass short right to S.Moss to WAS 37 for 14 yards (C.White). Pass 12 YAC 2,20,14,2012 20120909_WAS@NO,3,29,17,WAS,NO,1,10,63,(14:17) (Shotgun) R.Griffin pass short left to J.Morgan to NO 42 for 21 yards (P.Robinson). Pass 14 YAC 7,20,14,2012 20120909_WAS@NO,3,28,44,WAS,NO,1,10,42,(13:44) A.Morris left end to NO 36 for 6 yards (W.Herring).,20,14,2012 20120909_WAS@NO,3,28,9,WAS,NO,2,4,36,(13:09) (Shotgun) R.Griffin right end to NO 36 for no gain (C.Lofton; M.Jenkins). PENALTY on WAS-F.Davis Offensive Holding 10 yards enforced at NO 36 - No Play.,20,14,2012 20120909_WAS@NO,3,27,42,WAS,NO,2,14,46,(12:42) (Shotgun) R.Griffin pass short right to F.Davis to NO 34 for 12 yards (D.Hawthorne; J.Murphy).,20,14,2012 20120909_WAS@NO,3,26,59,WAS,NO,3,2,34,(11:59) (Shotgun) R.Helu right tackle to NO 33 for 1 yard (C.Jordan).,20,14,2012 20120909_WAS@NO,3,26,35,WAS,NO,4,1,33,(11:35) R.Griffin pass incomplete deep right to A.Robinson. PENALTY on NO-R.Harper Defensive Pass Interference 32 yards enforced at NO 33 - No Play.,20,14,2012 20120909_WAS@NO,3,26,28,WAS,NO,1,1,1,(11:28) A.Morris left tackle for 1 yard TOUCHDOWN.,20,14,2012 20120909_WAS@NO,3,26,28,WAS,NO,,,1,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,20,14,2012 20120909_WAS@NO,3,26,28,WAS,NO,,,1,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,27,14,2012 20120909_WAS@NO,3,26,24,NO,WAS,1,10,80,(11:24) D.Brees pass incomplete short right to L.Moore (D.Gomes). PENALTY on NO-D.Thomas Offensive Holding 10 yards enforced at NO 20 - No Play.,14,27,2012 20120909_WAS@NO,3,26,17,NO,WAS,1,20,90,(11:17) (Shotgun) D.Brees pass incomplete deep right to M.Colston.,14,27,2012 20120909_WAS@NO,3,26,11,NO,WAS,2,20,90,(11:11) (Shotgun) D.Brees pass incomplete deep middle to M.Colston.,14,27,2012 20120909_WAS@NO,3,26,6,NO,WAS,3,20,90,(11:06) (Shotgun) D.Brees pass incomplete deep middle to D.Henderson.,14,27,2012 20120909_WAS@NO,3,26,0,NO,WAS,4,20,90,(11:00) T.Morstead punts 54 yards to WAS 36 Center-J.Drescher. B.Banks MUFFS catch and recovers at WAS 36. B.Banks to WAS 36 for no gain (C.Roby).,14,27,2012 20120909_WAS@NO,3,25,50,WAS,NO,1,10,64,(10:50) R.Griffin pass incomplete short left to F.Davis.,27,14,2012 20120909_WAS@NO,3,25,44,WAS,NO,2,10,64,(10:44) (Shotgun) A.Morris left end pushed ob at NO 46 for 18 yards (W.Herring).,27,14,2012 20120909_WAS@NO,3,25,20,WAS,NO,1,10,46,(10:20) R.Helu right tackle to NO 45 for 1 yard (C.Jordan).,27,14,2012 20120909_WAS@NO,3,24,42,WAS,NO,2,9,45,(9:42) A.Morris left tackle to NO 43 for 2 yards (S.Ellis; C.Lofton). PENALTY on WAS-K.Lichtensteiger Offensive Holding 10 yards enforced at NO 45 - No Play.,27,14,2012 20120909_WAS@NO,3,24,18,WAS,NO,2,19,55,(9:18) (Shotgun) R.Griffin pass short left to A.Robinson pushed ob at NO 26 for 29 yards (M.Jenkins) [C.White]. Pass 10 YAC 19,27,14,2012 20120909_WAS@NO,3,23,41,WAS,NO,1,10,26,(8:41) A.Morris right end to NO 23 for 3 yards (C.Jordan).,27,14,2012 20120909_WAS@NO,3,22,59,WAS,NO,2,7,23,(7:59) A.Morris left guard to NO 19 for 4 yards (C.Jordan; S.Ellis).,27,14,2012 20120909_WAS@NO,3,22,19,WAS,NO,3,3,19,(7:19) (Shotgun) R.Griffin pass incomplete short left to F.Davis.,27,14,2012 20120909_WAS@NO,3,22,15,WAS,NO,4,3,19,(7:15) B.Cundiff 37 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,27,14,2012 20120909_WAS@NO,3,22,15,WAS,NO,,,19,B.Cundiff kicks 74 yards from WAS 35 to NO -9. D.Sproles to NO 20 for 29 yards (D.Hall). PENALTY on NO-R.Bush Offensive Holding 10 yards enforced at NO 20.,30,14,2012 20120909_WAS@NO,3,22,0,NO,WAS,1,10,90,(7:00) D.Brees pass incomplete to M.Colston. PENALTY on WAS-Mad.Williams Defensive Pass Interference 15 yards enforced at NO 10 - No Play.,14,30,2012 20120909_WAS@NO,3,21,59,NO,WAS,1,10,75,(6:59) P.Thomas right tackle to NO 34 for 9 yards (Mad.Williams).,14,30,2012 20120909_WAS@NO,3,21,22,NO,WAS,2,1,66,(6:22) D.Brees pass incomplete short middle to M.Colston [R.Kerrigan].,14,30,2012 20120909_WAS@NO,3,21,16,NO,WAS,3,1,66,(6:16) M.Ingram right guard to NO 36 for 2 yards (D.Gomes; L.Fletcher).,14,30,2012 20120909_WAS@NO,3,20,45,NO,WAS,1,10,64,(5:45) D.Brees pass short right to D.Henderson to NO 47 for 11 yards (Mad.Williams). NO-D.Henderson was injured during the play. His return is Questionable. Pass 6 YAC 5,14,30,2012 20120909_WAS@NO,3,20,19,NO,WAS,1,10,53,(5:19) P.Thomas left guard to NO 47 for no gain (D.Gomes). PENALTY on NO-J.Collins Offensive Holding 10 yards enforced at NO 47 - No Play.,14,30,2012 20120909_WAS@NO,3,20,2,NO,WAS,1,20,63,(5:02) D.Brees pass incomplete short left to M.Ingram.,14,30,2012 20120909_WAS@NO,3,19,57,NO,WAS,2,20,63,(4:57) (Shotgun) D.Brees pass incomplete short left to D.Sproles (R.Kerrigan). PENALTY on WAS-J.Jenkins Illegal Use of Hands 5 yards enforced at NO 37 - No Play.,14,30,2012 20120909_WAS@NO,3,19,51,NO,WAS,1,10,58,(4:51) P.Thomas left tackle to NO 41 for -1 yards (D.Hall).,14,30,2012 20120909_WAS@NO,3,19,11,NO,WAS,2,11,59,(4:11) (Shotgun) D.Brees pass deep right to M.Colston to WAS 34 for 25 yards (J.Wilson). Pass 25 YAC 0,14,30,2012 20120909_WAS@NO,3,18,25,NO,WAS,1,10,34,(3:25) (Shotgun) D.Brees pass short right to D.Sproles to WAS 25 for 9 yards (L.Fletcher) [B.Cofield]. Pass 8 YAC 1,14,30,2012 20120909_WAS@NO,3,17,42,NO,WAS,2,1,25,(2:42) (Shotgun) D.Brees pass incomplete deep middle to L.Moore. PENALTY on WAS-D.Gomes Defensive Pass Interference 17 yards enforced at WAS 25 - No Play.,14,30,2012 20120909_WAS@NO,3,17,37,NO,WAS,1,8,8,(2:37) (Shotgun) D.Brees pass incomplete short left to J.Graham (S.Bowen).,14,30,2012 20120909_WAS@NO,3,17,33,NO,WAS,2,8,8,(2:33) D.Brees pass short right to D.Thomas to WAS 3 for 5 yards (D.Gomes). Pass -1 YAC 6,14,30,2012 20120909_WAS@NO,3,16,58,NO,WAS,3,3,3,(1:58) D.Brees pass incomplete short right to D.Sproles (L.Fletcher).,14,30,2012 20120909_WAS@NO,3,16,54,NO,WAS,4,3,3,(1:54) G.Hartley 21 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,14,30,2012 20120909_WAS@NO,3,16,54,NO,WAS,,,3,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,17,30,2012 20120909_WAS@NO,3,16,50,WAS,NO,1,10,80,(1:50) (Shotgun) R.Griffin pass incomplete short right to A.Robinson (P.Robinson).,30,17,2012 20120909_WAS@NO,3,16,43,WAS,NO,2,10,80,(1:43) (Shotgun) A.Morris right end pushed ob at WAS 25 for 5 yards (D.Hawthorne).,30,17,2012 20120909_WAS@NO,3,16,12,WAS,NO,3,5,75,(1:12) (Shotgun) R.Griffin pass incomplete short left to A.Robinson.,30,17,2012 20120909_WAS@NO,3,16,7,WAS,NO,4,5,75,(1:07) S.Rocca punts 46 yards to NO 29 Center-N.Sundberg fair catch by D.Sproles. PENALTY on NO Defensive 12 On-field 5 yards enforced at WAS 25 - No Play.,30,17,2012 20120909_WAS@NO,3,16,0,WAS,NO,1,10,70,(1:00) A.Morris left end to WAS 32 for 2 yards (T.Johnson; W.Smith).,30,17,2012 20120909_WAS@NO,3,15,18,WAS,NO,2,8,68,(:18) A.Morris right end to WAS 43 for 11 yards (W.Smith; R.Harper).,30,17,2012 20120909_WAS@NO,4,15,0,WAS,NO,1,10,57,(15:00) PENALTY on WAS-T.Williams False Start 5 yards enforced at WAS 43 - No Play.,30,17,2012 20120909_WAS@NO,4,15,0,WAS,NO,1,15,62,(15:00) A.Morris left guard to WAS 48 for 10 yards (R.Harper).,30,17,2012 20120909_WAS@NO,4,14,14,WAS,NO,2,5,52,(14:14) A.Morris right end to NO 45 for 7 yards (R.Harper). PENALTY on WAS-K.Lichtensteiger Offensive Holding 10 yards enforced at NO 45.,30,17,2012 20120909_WAS@NO,4,13,50,WAS,NO,2,8,55,(13:50) (Shotgun) R.Griffin pass short left to R.Helu pushed ob at NO 34 for 21 yards (R.Harper). Pass 5 YAC 16,30,17,2012 20120909_WAS@NO,4,13,2,WAS,NO,1,10,34,(13:02) A.Morris right tackle to NO 33 for 1 yard (C.Jordan; B.Bunkley).,30,17,2012 20120909_WAS@NO,4,12,21,WAS,NO,2,9,33,(12:21) A.Morris left end to NO 32 for 1 yard (C.Lofton; D.Hawthorne).,30,17,2012 20120909_WAS@NO,4,11,36,WAS,NO,3,8,32,(11:36) (Shotgun) R.Griffin pass short right to S.Moss to NO 31 for 1 yard (J.Galette). PENALTY on NO Defensive Offside 5 yards enforced at NO 32 - No Play.,30,17,2012 20120909_WAS@NO,4,11,12,WAS,NO,3,3,27,(11:12) (Shotgun) R.Griffin pass incomplete short right to S.Moss.,30,17,2012 20120909_WAS@NO,4,11,3,WAS,NO,4,3,27,(11:03) B.Cundiff 45 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,30,17,2012 20120909_WAS@NO,4,11,3,WAS,NO,,,27,B.Cundiff kicks 74 yards from WAS 35 to NO -9. D.Sproles to NO 39 for 48 yards (R.Crawford). WAS-J.Bernstine was injured during the play. He is Out.,33,17,2012 20120909_WAS@NO,4,10,52,NO,WAS,1,10,61,(10:52) (Shotgun) D.Brees pass incomplete short left to J.Morgan.,17,33,2012 20120909_WAS@NO,4,10,46,NO,WAS,2,10,61,(10:46) (Shotgun) D.Brees pass incomplete short middle to J.Morgan. PENALTY on NO-J.Evans Offensive Holding 10 yards enforced at NO 39 - No Play.,17,33,2012 20120909_WAS@NO,4,10,41,NO,WAS,2,20,71,(10:41) (Shotgun) D.Brees sacked at NO 23 for -6 yards (R.Kerrigan).,17,33,2012 20120909_WAS@NO,4,10,2,NO,WAS,3,26,77,(10:02) (Shotgun) D.Brees pass incomplete short left to M.Colston (J.Wilson). WAS-J.Wilson was injured during the play. His return is Questionable.,17,33,2012 20120909_WAS@NO,4,9,55,NO,WAS,4,26,77,(9:55) T.Morstead punts 57 yards to WAS 20 Center-J.Drescher. B.Banks to WAS 23 for 3 yards (W.Herring). FUMBLES (W.Herring) and recovers at WAS 23. B.Banks to WAS 23 for no gain (I.Abdul-Quddus).,17,33,2012 20120909_WAS@NO,4,9,37,WAS,NO,1,10,77,(9:37) A.Morris right end to WAS 25 for 2 yards (C.Jordan).,33,17,2012 20120909_WAS@NO,4,8,53,WAS,NO,2,8,75,(8:53) A.Morris left guard to WAS 24 for -1 yards (D.Hawthorne).,33,17,2012 20120909_WAS@NO,4,8,14,WAS,NO,3,9,76,(8:14) (Shotgun) R.Griffin pass short right to S.Moss to WAS 30 for 6 yards (J.Murphy). Pass 6 YAC 0,33,17,2012 20120909_WAS@NO,4,8,14,WAS,NO,4,3,70,(8:14) S.Rocca punts 51 yards to NO 19 Center-N.Sundberg downed by WAS-R.Crawford. PENALTY on WAS Ineligible Downfield Kick 5 yards enforced at WAS 30 - No Play. Penalty on WAS Illegal Touch Kick declined.,33,17,2012 20120909_WAS@NO,4,7,35,WAS,NO,4,8,75,(7:35) S.Rocca punts 38 yards to NO 37 Center-N.Sundberg. D.Sproles to NO 42 for 5 yards (R.Doughty).,33,17,2012 20120909_WAS@NO,4,7,23,NO,WAS,1,10,58,(7:23) (Shotgun) D.Brees pass short right to L.Moore ran ob at WAS 46 for 12 yards. Pass 12 YAC 0,17,33,2012 20120909_WAS@NO,4,7,7,NO,WAS,1,10,46,(7:07) (Shotgun) D.Brees pass short right to M.Colston to WAS 33 for 13 yards (D.Hall; J.Wilson). Pass 7 YAC 6,17,33,2012 20120909_WAS@NO,4,6,41,NO,WAS,1,10,33,(6:41) (Shotgun) D.Brees pass incomplete short middle to J.Graham (Mad.Williams).,17,33,2012 20120909_WAS@NO,4,6,37,NO,WAS,2,10,33,(6:37) (Shotgun) D.Brees pass incomplete deep right to J.Morgan (C.Griffin).,17,33,2012 20120909_WAS@NO,4,6,30,NO,WAS,3,10,33,(6:30) (Shotgun) D.Brees pass incomplete short left to L.Moore (B.Orakpo).,17,33,2012 20120909_WAS@NO,4,6,25,NO,WAS,4,10,33,(6:25) (Shotgun) D.Brees pass deep left to L.Moore for 33 yards TOUCHDOWN. Pass 33 YAC 0,17,33,2012 20120909_WAS@NO,4,6,25,NO,WAS,,,33,TWO-POINT CONVERSION ATTEMPT. D.Sproles rushes left guard. ATTEMPT SUCCEEDS.,17,33,2012 20120909_WAS@NO,4,6,25,NO,WAS,,,33,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,25,33,2012 20120909_WAS@NO,4,6,19,WAS,NO,1,10,80,(6:19) R.Griffin pass short middle to A.Robinson to WAS 33 for 13 yards (M.Jenkins). Pass 13 YAC 0,33,25,2012 20120909_WAS@NO,4,5,42,WAS,NO,1,10,67,(5:42) A.Morris left tackle to WAS 36 for 3 yards (B.Bunkley).,33,25,2012 20120909_WAS@NO,4,4,58,WAS,NO,2,7,64,(4:58) R.Griffin sacked at WAS 27 for -9 yards (P.Robinson).,33,25,2012 20120909_WAS@NO,4,4,20,WAS,NO,3,16,73,(4:20) (Shotgun) R.Griffin scrambles left end to WAS 39 for 12 yards (J.Galette).,33,25,2012 20120909_WAS@NO,4,3,49,WAS,NO,4,4,61,(3:49) S.Rocca punts 43 yards to NO 18 Center-N.Sundberg. D.Sproles to NO 27 for 9 yards (R.Doughty).,33,25,2012 20120909_WAS@NO,4,3,39,NO,WAS,1,10,73,(3:39) (Shotgun) D.Brees pass deep middle intended for L.Moore INTERCEPTED by D.Gomes at WAS 48. D.Gomes pushed ob at NO 3 for 49 yards (J.Morgan).,25,33,2012 20120909_WAS@NO,4,3,23,WAS,NO,1,3,3,(3:23) A.Morris left tackle for 3 yards TOUCHDOWN.,33,25,2012 20120909_WAS@NO,4,3,23,WAS,NO,,,3,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,33,25,2012 20120909_WAS@NO,4,3,23,WAS,NO,,,3,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,40,25,2012 20120909_WAS@NO,4,3,18,NO,WAS,1,10,80,(3:18) (Shotgun) D.Brees pass short right to J.Graham pushed ob at NO 32 for 12 yards (P.Riley). Pass 11 YAC 1,25,40,2012 20120909_WAS@NO,4,3,11,NO,WAS,1,10,68,(3:11) (Shotgun) D.Brees pass incomplete short left to M.Colston (J.Wilson).,25,40,2012 20120909_WAS@NO,4,3,9,NO,WAS,2,10,68,(3:09) (Shotgun) D.Brees pass short right to L.Moore ran ob at NO 49 for 17 yards (C.Griffin). Pass 13 YAC 4,25,40,2012 20120909_WAS@NO,4,3,4,NO,WAS,1,10,51,(3:04) (Shotgun) D.Brees pass incomplete short left to J.Graham.,25,40,2012 20120909_WAS@NO,4,3,0,NO,WAS,2,10,51,(3:00) (Shotgun) D.Brees pass incomplete short middle to J.Graham. PENALTY on WAS-Mad.Williams Personal Foul 15 yards enforced at NO 49 - No Play.,25,40,2012 20120909_WAS@NO,4,2,55,NO,WAS,1,10,36,(2:55) (Shotgun) D.Brees pass deep right to L.Moore ran ob at WAS 19 for 17 yards. Pass 17 YAC 0,25,40,2012 20120909_WAS@NO,4,2,47,NO,WAS,1,10,19,(2:47) (Shotgun) D.Brees pass short left to D.Sproles pushed ob at WAS 2 for 17 yards (J.Wilson). WAS-D.Gomes was injured during the play. His return is Probable. Pass 1 YAC 16,25,40,2012 20120909_WAS@NO,4,2,40,NO,WAS,1,2,2,(2:40) D.Brees pass incomplete short left to M.Colston (B.Orakpo).,25,40,2012 20120909_WAS@NO,4,2,38,NO,WAS,2,2,2,(2:38) (Shotgun) D.Brees pass incomplete short left to D.Sproles (B.Orakpo).,25,40,2012 20120909_WAS@NO,4,2,34,NO,WAS,3,2,2,(2:34) (Shotgun) D.Brees pass incomplete short right to J.Graham.,25,40,2012 20120909_WAS@NO,4,2,29,NO,WAS,4,2,2,(2:29) (Shotgun) D.Brees pass short left to D.Sproles for 2 yards TOUCHDOWN. Pass 0 YAC 2,25,40,2012 20120909_WAS@NO,4,2,29,NO,WAS,,,2,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,25,40,2012 20120909_WAS@NO,4,2,29,NO,WAS,,,2,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,32,40,2012 20120909_WAS@NO,4,2,25,WAS,NO,1,10,80,(2:25) A.Morris left end to WAS 17 for -3 yards (W.Smith; R.Harper).,40,32,2012 20120909_WAS@NO,4,2,22,WAS,NO,2,13,83,(2:22) R.Griffin pass short middle to L.Paulsen to WAS 39 for 22 yards (M.Jenkins; W.Herring). Pass 11 YAC 11,40,32,2012 20120909_WAS@NO,4,2,13,WAS,NO,1,10,61,(2:13) A.Morris right end to WAS 39 for no gain (C.Lofton; C.Jordan).,40,32,2012 20120909_WAS@NO,4,2,0,WAS,NO,2,10,61,(2:00) D.Young right guard to WAS 40 for 1 yard (W.Herring; C.Jordan).,40,32,2012 20120909_WAS@NO,4,1,17,WAS,NO,3,9,60,(1:17) A.Morris right guard to WAS 42 for 2 yards (S.Ellis; M.Jenkins).,40,32,2012 20120909_WAS@NO,4,0,28,WAS,NO,4,7,58,(:28) S.Rocca punts 58 yards to end zone Center-N.Sundberg Touchback.,40,32,2012 20120909_WAS@NO,4,0,22,NO,WAS,1,10,80,(:22) (Shotgun) D.Brees pass short right to L.Moore pushed ob at NO 35 for 15 yards (Mad.Williams). Pass 15 YAC 0,32,40,2012 20120909_WAS@NO,4,0,16,NO,WAS,1,10,65,(:16) (Shotgun) D.Brees pass deep middle to L.Moore to WAS 39 for 26 yards. Pass 24 YAC 2,32,40,2012 20120909_WAS@NO,4,0,2,NO,WAS,1,10,39,(:02) D.Brees spiked the ball to stop the clock.,32,40,2012 20120909_WAS@NO,4,0,1,NO,WAS,2,10,39,(:01) (Shotgun) D.Brees pass short right INTERCEPTED by R.Doughty (C.Griffin) at WAS 39. R.Doughty to WAS 3 for -36 yards (J.Morgan).,32,40,2012 20120909_WAS@NO,4,0,1,NO,WAS,,,39,                      ,32,40,2012 20120909_BUF@NYJ,1,0,0,BUF,NYJ,,,39,J.Potter kicks 70 yards from BUF 35 to NYJ -5. J.McKnight to NYJ 19 for 24 yards (C.White).,0,0,2012 20120909_BUF@NYJ,1,59,57,NYJ,BUF,1,10,81,(14:57) M.Sanchez pass incomplete short left to S.Hill.,0,0,2012 20120909_BUF@NYJ,1,59,53,NYJ,BUF,2,10,81,(14:53) S.Greene right guard to NYJ 23 for 4 yards (M.Dareus).,0,0,2012 20120909_BUF@NYJ,1,59,17,NYJ,BUF,3,6,77,(14:17) (Shotgun) M.Sanchez pass short left to S.Hill to NYJ 30 for 7 yards (S.Gilmore).,0,0,2012 20120909_BUF@NYJ,1,58,31,NYJ,BUF,1,10,70,(13:31) (Shotgun) Direct snap to T.Tebow. J.McKnight right end to NYJ 33 for 3 yards (M.Williams).,0,0,2012 20120909_BUF@NYJ,1,57,50,NYJ,BUF,2,7,67,(12:50) M.Sanchez pass short right to J.Cumberland to NYJ 44 for 11 yards (N.Barnett).,0,0,2012 20120909_BUF@NYJ,1,57,29,NYJ,BUF,1,10,56,(12:29) S.Greene right tackle to NYJ 47 for 3 yards (N.Barnett; A.Moats).,0,0,2012 20120909_BUF@NYJ,1,56,53,NYJ,BUF,2,7,53,(11:53) M.Sanchez pass short left intended for J.Cumberland INTERCEPTED by B.Scott at BUF 46. B.Scott ran ob at BUF 46 for no gain. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,0,0,2012 20120909_BUF@NYJ,1,56,46,BUF,NYJ,1,10,54,(11:46) PENALTY on BUF-S.Chandler False Start 5 yards enforced at BUF 46 - No Play.,0,0,2012 20120909_BUF@NYJ,1,56,46,BUF,NYJ,1,15,59,(11:46) F.Jackson right tackle to BUF 43 for 2 yards (C.Pace).,0,0,2012 20120909_BUF@NYJ,1,56,7,BUF,NYJ,2,13,57,(11:07) R.Fitzpatrick pass short right to S.Chandler pushed ob at NYJ 44 for 13 yards (L.Landry).,0,0,2012 20120909_BUF@NYJ,1,55,37,BUF,NYJ,1,10,44,(10:37) F.Jackson right guard to NYJ 47 for -3 yards (C.Pace).,0,0,2012 20120909_BUF@NYJ,1,54,56,BUF,NYJ,2,13,47,(9:56) R.Fitzpatrick pass short left intended for St.Johnson INTERCEPTED by D.Revis at NYJ 38. D.Revis ran ob at NYJ 39 for 1 yard.,0,0,2012 20120909_BUF@NYJ,1,54,51,NYJ,BUF,1,10,61,(9:51) S.Greene left tackle to NYJ 41 for 2 yards (A.Moats).,0,0,2012 20120909_BUF@NYJ,1,54,17,NYJ,BUF,2,8,59,(9:17) S.Greene up the middle to NYJ 42 for 1 yard (B.Scott).,0,0,2012 20120909_BUF@NYJ,1,53,41,NYJ,BUF,3,7,58,(8:41) (Shotgun) M.Sanchez pass deep right to J.Kerley to BUF 37 for 21 yards (L.McKelvin).,0,0,2012 20120909_BUF@NYJ,1,53,17,NYJ,BUF,1,10,37,(8:17) (Shotgun) Direct snap to T.Tebow. B.Powell left end to BUF 33 for 4 yards (G.Wilson).,0,0,2012 20120909_BUF@NYJ,1,52,39,NYJ,BUF,2,6,33,(7:39) M.Sanchez pass incomplete short right to S.Holmes.,0,0,2012 20120909_BUF@NYJ,1,52,34,NYJ,BUF,3,6,33,(7:34) (Shotgun) M.Sanchez pass incomplete short right to S.Hill. PENALTY on BUF-A.Williams Defensive Pass Interference 5 yards enforced at BUF 33 - No Play.,0,0,2012 20120909_BUF@NYJ,1,52,20,NYJ,BUF,1,10,28,(7:20) S.Greene up the middle to BUF 16 for 12 yards (J.Byrd).,0,0,2012 20120909_BUF@NYJ,1,51,45,NYJ,BUF,1,10,16,(6:45) (Shotgun) Direct snap to T.Tebow. T.Tebow left tackle to BUF 12 for 4 yards (C.Kelsay).,0,0,2012 20120909_BUF@NYJ,1,51,7,NYJ,BUF,2,6,12,(6:07) M.Sanchez pass short right to J.Kerley for 12 yards TOUCHDOWN.,0,0,2012 20120909_BUF@NYJ,1,51,7,NYJ,BUF,,,12,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,0,2012 20120909_BUF@NYJ,1,51,7,NYJ,BUF,,,12,N.Folk kicks 64 yards from NYJ 35 to BUF 1. L.McKelvin Touchback.,7,0,2012 20120909_BUF@NYJ,1,51,2,BUF,NYJ,1,10,80,(6:02) (Shotgun) C.Spiller left tackle to BUF 23 for 3 yards (L.Landry).,0,7,2012 20120909_BUF@NYJ,1,50,20,BUF,NYJ,2,7,77,(5:20) (Shotgun) R.Fitzpatrick pass short right to D.Jones to BUF 29 for 6 yards (D.Harris).,0,7,2012 20120909_BUF@NYJ,1,49,39,BUF,NYJ,3,1,71,(4:39) R.Fitzpatrick pass short right to L.Smith to BUF 34 for 5 yards (L.Landry).,0,7,2012 20120909_BUF@NYJ,1,48,58,BUF,NYJ,1,10,66,(3:58) (Shotgun) R.Fitzpatrick scrambles up the middle to BUF 43 for 9 yards (Y.Bell).,0,7,2012 20120909_BUF@NYJ,1,48,16,BUF,NYJ,2,1,57,(3:16) F.Jackson left tackle to BUF 47 for 4 yards (D.Harris; B.Thomas).,0,7,2012 20120909_BUF@NYJ,1,47,37,BUF,NYJ,1,10,53,(2:37) R.Fitzpatrick pass incomplete short left to S.Chandler.,0,7,2012 20120909_BUF@NYJ,1,47,30,BUF,NYJ,2,10,53,(2:30) (Shotgun) R.Fitzpatrick pass short right intended for D.Nelson INTERCEPTED by K.Wilson at NYJ 43. K.Wilson to NYJ 48 for 5 yards (S.Chandler).,0,7,2012 20120909_BUF@NYJ,1,47,24,NYJ,BUF,1,10,52,(2:24) B.Powell left end to NYJ 48 for no gain (N.Barnett).,7,0,2012 20120909_BUF@NYJ,1,46,48,NYJ,BUF,2,10,52,(1:48) (Shotgun) M.Sanchez pass short middle to D.Keller to BUF 45 for 7 yards (S.Gilmore; G.Wilson).,7,0,2012 20120909_BUF@NYJ,1,46,14,NYJ,BUF,3,3,45,(1:14) (Shotgun) M.Sanchez pass short left to S.Holmes to BUF 36 for 9 yards (L.McKelvin).,7,0,2012 20120909_BUF@NYJ,1,45,38,NYJ,BUF,1,10,36,(:38) (Shotgun) Direct snap to T.Tebow. T.Tebow right tackle to BUF 33 for 3 yards (Sp.Johnson; J.Byrd).,7,0,2012 20120909_BUF@NYJ,2,45,0,NYJ,BUF,2,7,33,(15:00) M.Sanchez pass deep left to S.Hill for 33 yards TOUCHDOWN.,7,0,2012 20120909_BUF@NYJ,2,45,0,NYJ,BUF,,,33,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,7,0,2012 20120909_BUF@NYJ,2,45,0,NYJ,BUF,,,33,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,14,0,2012 20120909_BUF@NYJ,2,44,53,BUF,NYJ,1,10,80,(14:53) (Shotgun) F.Jackson left end to BUF 22 for 2 yards (M.Wilkerson; D.Harris).,0,14,2012 20120909_BUF@NYJ,2,44,12,BUF,NYJ,2,8,78,(14:12) (Shotgun) PENALTY on BUF-A.Levitre False Start 5 yards enforced at BUF 22 - No Play.,0,14,2012 20120909_BUF@NYJ,2,43,55,BUF,NYJ,2,13,83,(13:55) R.Fitzpatrick pass incomplete deep right to D.Jones.,0,14,2012 20120909_BUF@NYJ,2,43,49,BUF,NYJ,3,13,83,(13:49) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to BUF 29 for 12 yards (D.Revis) [C.Pace].,0,14,2012 20120909_BUF@NYJ,2,43,49,BUF,NYJ,4,1,71,(13:49) (Punt formation) PENALTY on BUF-B.Moorman Delay of Game 5 yards enforced at BUF 29 - No Play.,0,14,2012 20120909_BUF@NYJ,2,42,56,BUF,NYJ,4,6,76,(12:56) B.Moorman punts 44 yards to NYJ 32 Center-G.Sanborn. J.Kerley for 68 yards TOUCHDOWN.,0,14,2012 20120909_BUF@NYJ,2,42,56,NYJ,BUF,,,76,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,14,0,2012 20120909_BUF@NYJ,2,42,56,NYJ,BUF,,,76,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,21,0,2012 20120909_BUF@NYJ,2,42,40,BUF,NYJ,1,10,80,(12:40) F.Jackson left guard to BUF 23 for 3 yards (D.Harris).,0,21,2012 20120909_BUF@NYJ,2,42,1,BUF,NYJ,2,7,77,(12:01) R.Fitzpatrick pass short right to St.Johnson to BUF 30 for 7 yards (D.Revis).,0,21,2012 20120909_BUF@NYJ,2,41,17,BUF,NYJ,1,10,70,(11:17) (Shotgun) F.Jackson right tackle to BUF 37 for 7 yards (C.Pace; L.Landry). BUF-F.Jackson was injured during the play.,0,21,2012 20120909_BUF@NYJ,2,40,48,BUF,NYJ,2,3,63,(10:48) C.Spiller up the middle to BUF 37 for no gain (Q.Coples).,0,21,2012 20120909_BUF@NYJ,2,40,7,BUF,NYJ,3,3,63,(10:07) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 44 for 7 yards (D.Revis) [L.Landry].,0,21,2012 20120909_BUF@NYJ,2,39,23,BUF,NYJ,1,10,56,(9:23) R.Fitzpatrick pass incomplete deep right to D.Jones.,0,21,2012 20120909_BUF@NYJ,2,39,17,BUF,NYJ,2,10,56,(9:17) (Shotgun) C.Spiller left tackle for 56 yards TOUCHDOWN.,0,21,2012 20120909_BUF@NYJ,2,39,17,BUF,NYJ,,,56,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,21,2012 20120909_BUF@NYJ,2,39,17,BUF,NYJ,,,56,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,7,21,2012 20120909_BUF@NYJ,2,39,6,NYJ,BUF,1,10,80,(9:06) S.Greene up the middle to NYJ 22 for 2 yards (Ky.Williams).,21,7,2012 20120909_BUF@NYJ,2,38,32,NYJ,BUF,2,8,78,(8:32) (Shotgun) M.Sanchez pass short left to S.Holmes to NYJ 39 for 17 yards (K.Sheppard).,21,7,2012 20120909_BUF@NYJ,2,38,6,NYJ,BUF,1,10,61,(8:06) S.Greene right tackle to NYJ 43 for 4 yards (K.Sheppard; A.Moats).,21,7,2012 20120909_BUF@NYJ,2,38,6,NYJ,BUF,2,6,57,(8:06) (Shotgun) S.Greene right tackle to NYJ 47 for 4 yards (A.Moats).,21,7,2012 20120909_BUF@NYJ,2,36,42,NYJ,BUF,3,2,53,(6:42) (Shotgun) M.Sanchez pass short left to S.Hill to BUF 48 for 5 yards (T.McGee).,21,7,2012 20120909_BUF@NYJ,2,36,1,NYJ,BUF,1,10,48,(6:01) (Shotgun) M.Sanchez pass incomplete deep middle to S.Holmes.,21,7,2012 20120909_BUF@NYJ,2,35,56,NYJ,BUF,2,10,48,(5:56) S.Greene right guard to BUF 43 for 5 yards (B.Scott). FUMBLES (B.Scott) and recovers at BUF 43.,21,7,2012 20120909_BUF@NYJ,2,35,8,NYJ,BUF,3,5,43,(5:08) (Shotgun) M.Sanchez pass short right to S.Holmes ran ob at BUF 26 for 17 yards.,21,7,2012 20120909_BUF@NYJ,2,34,49,NYJ,BUF,1,10,26,(4:49) S.Greene up the middle to BUF 25 for 1 yard (Sp.Johnson; N.Barnett).,21,7,2012 20120909_BUF@NYJ,2,34,15,NYJ,BUF,2,9,25,(4:15) M.Sanchez pass incomplete short right to S.Greene.,21,7,2012 20120909_BUF@NYJ,2,34,10,NYJ,BUF,3,9,25,(4:10) (Shotgun) M.Sanchez pass short right to J.Cumberland to BUF 16 for 9 yards (K.Sheppard).,21,7,2012 20120909_BUF@NYJ,2,34,10,NYJ,BUF,1,10,16,(4:10) S.Greene up the middle to BUF 12 for 4 yards (N.Barnett).,21,7,2012 20120909_BUF@NYJ,2,32,47,NYJ,BUF,2,6,12,(2:47) (Shotgun) T.Tebow left tackle to BUF 12 for no gain (Ky.Williams; N.Barnett).,21,7,2012 20120909_BUF@NYJ,2,32,6,NYJ,BUF,3,6,12,(2:06) (Shotgun) M.Sanchez pass short right to J.Kerley ran ob at BUF 7 for 5 yards. New York Jets challenged the first down ruling and the play was Upheld. (Timeout #2.),21,7,2012 20120909_BUF@NYJ,2,32,0,NYJ,BUF,4,1,7,(2:00) N.Folk 25 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,21,7,2012 20120909_BUF@NYJ,2,32,0,NYJ,BUF,,,7,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,24,7,2012 20120909_BUF@NYJ,2,31,57,BUF,NYJ,1,10,80,(1:57) (Shotgun) R.Fitzpatrick pass deep left to C.Spiller to 50 for 30 yards (L.Landry). FUMBLES (L.Landry) RECOVERED by NYJ-Y.Bell at NYJ 30. Y.Bell to NYJ 38 for 8 yards. Lateral to L.Landry to NYJ 47 for 9 yards (A.Levitre). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,7,24,2012 20120909_BUF@NYJ,2,31,36,NYJ,BUF,1,10,53,(1:36) M.Sanchez pass short middle to B.Powell to BUF 37 for 16 yards (G.Wilson).,24,7,2012 20120909_BUF@NYJ,2,31,11,NYJ,BUF,1,10,37,(1:11) (No Huddle Shotgun) M.Sanchez pass short right to C.Schilens to BUF 29 for 8 yards (A.Williams).,24,7,2012 20120909_BUF@NYJ,2,30,54,NYJ,BUF,2,2,29,(:54) (No Huddle Shotgun) B.Powell up the middle to BUF 23 for 6 yards (Ky.Williams).,24,7,2012 20120909_BUF@NYJ,2,30,36,NYJ,BUF,1,10,23,(:36) M.Sanchez pass short right to J.Kerley to BUF 16 for 7 yards (L.McKelvin).,24,7,2012 20120909_BUF@NYJ,2,30,21,NYJ,BUF,2,3,16,(:21) M.Sanchez spiked the ball to stop the clock.,24,7,2012 20120909_BUF@NYJ,2,30,21,NYJ,BUF,3,3,16,(:21) PENALTY on NYJ-M.Sanchez Delay of Game 5 yards enforced at BUF 16 - No Play.,24,7,2012 20120909_BUF@NYJ,2,30,19,NYJ,BUF,3,8,21,(:19) M.Sanchez pass incomplete deep left to S.Holmes. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,24,7,2012 20120909_BUF@NYJ,2,30,19,NYJ,BUF,4,8,21,(:19) N.Folk 39 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,24,7,2012 20120909_BUF@NYJ,2,30,19,NYJ,BUF,,,21,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,27,7,2012 20120909_BUF@NYJ,2,30,12,BUF,NYJ,1,10,80,(:12) R.Fitzpatrick kneels to BUF 19 for -1 yards.,7,27,2012 20120909_BUF@NYJ,3,30,0,NYJ,BUF,,,80,N.Folk kicks 68 yards from NYJ 35 to BUF -3. L.McKelvin to BUF 20 for 23 yards (N.Bellore; G.McIntyre).,27,7,2012 20120909_BUF@NYJ,3,29,52,BUF,NYJ,1,10,80,(14:52) (Shotgun) C.Spiller up the middle to BUF 28 for 8 yards (B.Scott).,7,27,2012 20120909_BUF@NYJ,3,29,24,BUF,NYJ,2,2,72,(14:24) (Shotgun) C.Spiller right end to BUF 36 for 8 yards (L.Landry).,7,27,2012 20120909_BUF@NYJ,3,29,24,BUF,NYJ,1,10,64,(14:24) (Shotgun) R.Fitzpatrick pass short left intended for D.Nelson INTERCEPTED by A.Cromartie at BUF 40. A.Cromartie for 40 yards TOUCHDOWN.,7,27,2012 20120909_BUF@NYJ,3,29,24,NYJ,BUF,,,64,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,27,7,2012 20120909_BUF@NYJ,3,29,24,NYJ,BUF,,,64,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,34,7,2012 20120909_BUF@NYJ,3,28,41,BUF,NYJ,1,10,80,(13:41) (Shotgun) T.Choice left end to BUF 20 for no gain. PENALTY on BUF-C.Glenn Offensive Holding 10 yards enforced at BUF 20 - No Play.,7,34,2012 20120909_BUF@NYJ,3,28,20,BUF,NYJ,1,20,90,(13:20) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson [C.Pace].,7,34,2012 20120909_BUF@NYJ,3,28,16,BUF,NYJ,2,20,90,(13:16) (Shotgun) C.Spiller left tackle to BUF 16 for 6 yards (D.Harris; Y.Bell).,7,34,2012 20120909_BUF@NYJ,3,27,33,BUF,NYJ,3,14,84,(12:33) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to BUF 11 for -5 yards (E.Lankster).,7,34,2012 20120909_BUF@NYJ,3,27,33,BUF,NYJ,4,19,89,(12:33) B.Moorman punts 37 yards to BUF 48 Center-G.Sanborn out of bounds.,7,34,2012 20120909_BUF@NYJ,3,26,48,NYJ,BUF,1,10,48,(11:48) M.Sanchez pass deep left to S.Hill to BUF 21 for 27 yards (G.Wilson; J.Byrd). Flea flicker- Sanchez hands to Greene who tosses back to Sanchez to pass.,34,7,2012 20120909_BUF@NYJ,3,26,5,NYJ,BUF,1,10,21,(11:05) S.Greene right tackle to BUF 18 for 3 yards (K.Sheppard).,34,7,2012 20120909_BUF@NYJ,3,25,23,NYJ,BUF,2,7,18,(10:23) S.Greene up the middle to BUF 17 for 1 yard (N.Barnett).,34,7,2012 20120909_BUF@NYJ,3,24,45,NYJ,BUF,3,6,17,(9:45) M.Sanchez pass short right to S.Hill for 17 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,34,7,2012 20120909_BUF@NYJ,3,24,45,NYJ,BUF,,,17,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,34,7,2012 20120909_BUF@NYJ,3,24,45,NYJ,BUF,,,17,N.Folk kicks 64 yards from NYJ 35 to BUF 1. L.McKelvin to BUF 23 for 22 yards (J.Bush).,41,7,2012 20120909_BUF@NYJ,3,24,32,BUF,NYJ,1,10,77,(9:32) C.Spiller up the middle to BUF 28 for 5 yards (B.Scott).,7,41,2012 20120909_BUF@NYJ,3,24,0,BUF,NYJ,2,5,72,(9:00) C.Spiller left end pushed ob at BUF 33 for 5 yards (A.Cromartie).,7,41,2012 20120909_BUF@NYJ,3,23,26,BUF,NYJ,1,10,67,(8:26) R.Fitzpatrick pass incomplete short left to St.Johnson (D.Revis).,7,41,2012 20120909_BUF@NYJ,3,23,20,BUF,NYJ,2,10,67,(8:20) R.Fitzpatrick pass short right to D.Jones to BUF 39 for 6 yards (D.Revis; A.Cromartie).,7,41,2012 20120909_BUF@NYJ,3,22,33,BUF,NYJ,3,4,61,(7:33) (Shotgun) R.Fitzpatrick pass short left to D.Nelson to BUF 49 for 10 yards (L.Landry). Pass intended for #84Chandler tipped by #52 Harris and caught by Nelson.,7,41,2012 20120909_BUF@NYJ,3,21,52,BUF,NYJ,1,10,51,(6:52) (Shotgun) C.Spiller up the middle to NYJ 2 for 49 yards (A.Cromartie).,7,41,2012 20120909_BUF@NYJ,3,21,3,BUF,NYJ,1,2,2,(6:03) T.Choice right tackle to NYJ 1 for 1 yard (C.Pace; B.Scott).,7,41,2012 20120909_BUF@NYJ,3,21,3,BUF,NYJ,2,1,1,(6:03) T.Choice up the middle to NYJ 1 for no gain (C.Pace).,7,41,2012 20120909_BUF@NYJ,3,19,52,BUF,NYJ,3,1,1,(4:52) T.Choice up the middle for 1 yard TOUCHDOWN NULLIFIED by Penalty. PENALTY on BUF False Start 4 yards enforced at NYJ 1 - No Play.,7,41,2012 20120909_BUF@NYJ,3,19,30,BUF,NYJ,3,5,5,(4:30) (Shotgun) R.Fitzpatrick pass short left to S.Chandler for 5 yards TOUCHDOWN [L.Landry].,7,41,2012 20120909_BUF@NYJ,3,19,30,BUF,NYJ,,,5,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,41,2012 20120909_BUF@NYJ,3,19,30,BUF,NYJ,,,5,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,14,41,2012 20120909_BUF@NYJ,3,19,26,NYJ,BUF,1,10,80,(4:26) S.Greene left end to NYJ 19 for -1 yards (C.Kelsay).,41,14,2012 20120909_BUF@NYJ,3,18,48,NYJ,BUF,2,11,81,(3:48) M.Sanchez pass short middle to J.Cumberland to NYJ 32 for 13 yards (D.Searcy).,41,14,2012 20120909_BUF@NYJ,3,18,11,NYJ,BUF,1,10,68,(3:11) S.Greene left end to NYJ 38 for 6 yards (J.Byrd).,41,14,2012 20120909_BUF@NYJ,3,17,32,NYJ,BUF,2,4,62,(2:32) S.Greene up the middle to NYJ 41 for 3 yards (N.Barnett).,41,14,2012 20120909_BUF@NYJ,3,16,50,NYJ,BUF,3,1,59,(1:50) S.Greene up the middle to NYJ 44 for 3 yards (Sp.Johnson).,41,14,2012 20120909_BUF@NYJ,3,16,11,NYJ,BUF,1,10,56,(1:11) (Shotgun) T.Tebow left tackle to NYJ 47 for 3 yards (K.Sheppard).,41,14,2012 20120909_BUF@NYJ,3,15,34,NYJ,BUF,2,7,53,(:34) S.Greene right guard to BUF 49 for 4 yards (K.Sheppard; A.Moats).,41,14,2012 20120909_BUF@NYJ,4,15,0,NYJ,BUF,3,3,49,(15:00) M.Sanchez scrambles up the middle to BUF 46 for 3 yards (C.Kelsay). FUMBLES (C.Kelsay) recovered by NYJ-C.Schilens at BUF 41. PENALTY on NYJ-N.Mangold Offensive Holding 10 yards enforced at BUF 49 - No Play.,41,14,2012 20120909_BUF@NYJ,4,14,26,NYJ,BUF,3,13,59,(14:26) (Shotgun) M.Sanchez pass incomplete short right to S.Holmes.,41,14,2012 20120909_BUF@NYJ,4,14,20,NYJ,BUF,4,13,59,(14:20) R.Malone punts 55 yards to BUF 4 Center-T.Purdum downed by NYJ-I.Trufant.,41,14,2012 20120909_BUF@NYJ,4,14,11,BUF,NYJ,1,10,96,(14:11) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Nelson.,14,41,2012 20120909_BUF@NYJ,4,14,7,BUF,NYJ,2,10,96,(14:07) C.Spiller right end to BUF 8 for 4 yards (B.Scott; A.Cromartie).,14,41,2012 20120909_BUF@NYJ,4,13,43,BUF,NYJ,3,6,92,(13:43) (Shotgun) R.Fitzpatrick pass deep middle to D.Nelson to BUF 29 for 21 yards (D.Harris).,14,41,2012 20120909_BUF@NYJ,4,12,54,BUF,NYJ,1,10,71,(12:54) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson (D.Revis).,14,41,2012 20120909_BUF@NYJ,4,12,24,BUF,NYJ,2,10,71,(12:24) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson [M.Wilkerson]. BUF-D.Nelson was injured during the play.,14,41,2012 20120909_BUF@NYJ,4,12,5,BUF,NYJ,3,10,71,(12:05) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 40 for 11 yards (E.Lankster).,14,41,2012 20120909_BUF@NYJ,4,11,22,BUF,NYJ,1,10,60,(11:22) (Shotgun) C.Spiller up the middle to BUF 42 for 2 yards (K.Ellis).,14,41,2012 20120909_BUF@NYJ,4,10,46,BUF,NYJ,2,8,58,(10:46) R.Fitzpatrick pass short right to S.Chandler to 50 for 8 yards (Y.Bell).,14,41,2012 20120909_BUF@NYJ,4,10,21,BUF,NYJ,1,10,50,(10:21) (Shotgun) C.Spiller left guard to NYJ 44 for 6 yards (M.Dixon; M.Devito).,14,41,2012 20120909_BUF@NYJ,4,9,45,BUF,NYJ,2,4,44,(9:45) (Shotgun) C.Spiller right guard to NYJ 30 for 14 yards (D.Revis). NYJ-D.Revis was injured during the play.,14,41,2012 20120909_BUF@NYJ,4,9,4,BUF,NYJ,1,10,30,(9:04) R.Fitzpatrick pass short left to D.Jones to NYJ 18 for 12 yards (Y.Bell). PENALTY on NYJ-Q.Coples Roughing the Passer 9 yards enforced at NYJ 18.,14,41,2012 20120909_BUF@NYJ,4,8,39,BUF,NYJ,1,9,9,(8:39) C.Spiller left end to NYJ 6 for 3 yards (M.Devito).,14,41,2012 20120909_BUF@NYJ,4,8,2,BUF,NYJ,2,6,6,(8:02) R.Fitzpatrick pass short left to D.Jones for 6 yards TOUCHDOWN.,14,41,2012 20120909_BUF@NYJ,4,8,2,BUF,NYJ,,,6,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,14,41,2012 20120909_BUF@NYJ,4,8,2,BUF,NYJ,,,6,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,21,41,2012 20120909_BUF@NYJ,4,7,57,NYJ,BUF,1,10,80,(7:57) S.Greene left end to NYJ 20 for no gain (N.Barnett; D.Searcy).,41,21,2012 20120909_BUF@NYJ,4,7,51,NYJ,BUF,2,10,80,(7:51) PENALTY on NYJ-B.Moore False Start 5 yards enforced at NYJ 20 - No Play.,41,21,2012 20120909_BUF@NYJ,4,7,51,NYJ,BUF,2,15,85,(7:51) S.Greene left tackle to NYJ 18 for 3 yards (K.Sheppard; S.Gilmore).,41,21,2012 20120909_BUF@NYJ,4,7,46,NYJ,BUF,3,12,82,(7:46) S.Greene up the middle to NYJ 20 for 2 yards.,41,21,2012 20120909_BUF@NYJ,4,7,4,NYJ,BUF,4,10,80,(7:04) R.Malone punts 48 yards to BUF 32 Center-T.Purdum. L.McKelvin to NYJ 41 for 27 yards (T.Purdum).,41,21,2012 20120909_BUF@NYJ,4,6,52,BUF,NYJ,1,10,41,(6:52) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to NYJ 29 for 12 yards (E.Lankster).,21,41,2012 20120909_BUF@NYJ,4,6,22,BUF,NYJ,1,10,29,(6:22) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep middle to S.Chandler (Y.Bell).,21,41,2012 20120909_BUF@NYJ,4,6,15,BUF,NYJ,2,10,29,(6:15) (Shotgun) R.Fitzpatrick pass incomplete short right to C.Spiller (I.Trufant).,21,41,2012 20120909_BUF@NYJ,4,6,10,BUF,NYJ,3,10,29,(6:10) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson.,21,41,2012 20120909_BUF@NYJ,4,6,6,BUF,NYJ,4,10,29,(6:06) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson for 29 yards TOUCHDOWN.,21,41,2012 20120909_BUF@NYJ,4,6,6,BUF,NYJ,,,29,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,21,41,2012 20120909_BUF@NYJ,4,6,6,BUF,NYJ,,,29,J.Potter kicks onside 14 yards from BUF 35 to BUF 49. T.Tebow (didn't try to advance) to BUF 49 for no gain.,28,41,2012 20120909_BUF@NYJ,4,5,54,NYJ,BUF,1,10,49,(5:54) S.Greene up the middle to BUF 46 for 3 yards.,41,28,2012 20120909_BUF@NYJ,4,5,54,NYJ,BUF,2,7,46,(5:54) M.Sanchez pass short middle to S.Holmes to BUF 21 for 25 yards (J.Byrd).,41,28,2012 20120909_BUF@NYJ,4,5,19,NYJ,BUF,1,10,21,(5:19) S.Greene up the middle to BUF 19 for 2 yards (A.Moats).,41,28,2012 20120909_BUF@NYJ,4,5,19,NYJ,BUF,2,8,19,(5:19) S.Greene left guard to BUF 16 for 3 yards (K.Sheppard).,41,28,2012 20120909_BUF@NYJ,4,5,19,NYJ,BUF,3,5,16,(5:19) S.Greene right tackle to BUF 2 for 14 yards (G.Wilson).,41,28,2012 20120909_BUF@NYJ,4,5,19,NYJ,BUF,1,2,2,(5:19) (Shotgun) PENALTY on NYJ-T.Tebow Delay of Game 5 yards enforced at BUF 2 - No Play.,41,28,2012 20120909_BUF@NYJ,4,2,6,NYJ,BUF,1,7,7,(2:06) (Shotgun) T.Tebow left end to BUF 6 for 1 yard (S.Gilmore).,41,28,2012 20120909_BUF@NYJ,4,2,0,NYJ,BUF,2,6,6,(2:00) S.Greene right tackle to BUF 1 for 5 yards (A.Williams). FUMBLES (A.Williams) and recovers at BUF 1.,41,28,2012 20120909_BUF@NYJ,4,1,54,NYJ,BUF,3,1,1,(1:54) S.Greene up the middle for 1 yard TOUCHDOWN.,41,28,2012 20120909_BUF@NYJ,4,1,54,NYJ,BUF,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,41,28,2012 20120909_BUF@NYJ,4,1,54,NYJ,BUF,,,1,N.Folk kicks 73 yards from NYJ 35 to BUF -8. L.McKelvin to BUF 18 for 26 yards (I.Trufant).,48,28,2012 20120909_BUF@NYJ,4,1,11,BUF,NYJ,1,10,82,(1:11) (Shotgun) T.Choice up the middle to BUF 25 for 7 yards (D.Harris).,28,48,2012 20120909_BUF@NYJ,4,0,25,BUF,NYJ,2,3,75,(:25) (Shotgun) T.Choice left end to BUF 20 for -5 yards (B.Scott).,28,48,2012 20120909_BUF@NYJ,4,0,25,BUF,NYJ,,,75,                      ,28,48,2012 20120909_NE@TEN,1,0,0,NE,TEN,,,75,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,0,0,2012 20120909_NE@TEN,1,60,0,TEN,NE,1,10,80,(15:00) J.Locker right end pushed ob at TEN 22 for 2 yards (D.Hightower).,0,0,2012 20120909_NE@TEN,1,59,33,TEN,NE,2,8,78,(14:33) C.Johnson left guard to TEN 23 for 1 yard (P.Chung; J.Mayo).,0,0,2012 20120909_NE@TEN,1,58,51,TEN,NE,3,7,77,(13:51) (Shotgun) J.Locker pass short middle to K.Wright to TEN 40 for 17 yards (S.Gregory).,0,0,2012 20120909_NE@TEN,1,58,12,TEN,NE,1,10,60,(13:12) C.Johnson left guard to TEN 45 for 5 yards (J.Mayo).,0,0,2012 20120909_NE@TEN,1,57,35,TEN,NE,2,5,55,(12:35) J.Locker pass incomplete short left to D.Williams. PENALTY on NE-R.Dowling Defensive Pass Interference 9 yards enforced at TEN 45 - No Play.,0,0,2012 20120909_NE@TEN,1,57,33,TEN,NE,1,10,46,(12:33) (Shotgun) J.Locker pass short right to D.Reynaud to NE 42 for 4 yards (D.Hightower).,0,0,2012 20120909_NE@TEN,1,56,54,TEN,NE,2,6,42,(11:54) C.Johnson up the middle to NE 38 for 4 yards (P.Chung).,0,0,2012 20120909_NE@TEN,1,56,18,TEN,NE,3,2,38,(11:18) C.Johnson up the middle to NE 37 for 1 yard (J.Mayo).,0,0,2012 20120909_NE@TEN,1,55,37,TEN,NE,4,1,37,(10:37) (Shotgun) J.Locker pass deep left to N.Washington to NE 13 for 24 yards (K.Arrington).,0,0,2012 20120909_NE@TEN,1,55,11,TEN,NE,1,10,13,(10:11) J.Locker pass short right to D.Williams pushed ob at NE 12 for 1 yard (D.McCourty).,0,0,2012 20120909_NE@TEN,1,54,33,TEN,NE,2,9,12,(9:33) C.Johnson right tackle to NE 10 for 2 yards (K.Love).,0,0,2012 20120909_NE@TEN,1,53,53,TEN,NE,3,7,10,(8:53) (Shotgun) J.Locker pass incomplete short right to D.Williams (D.McCourty).,0,0,2012 20120909_NE@TEN,1,53,47,TEN,NE,4,7,10,(8:47) (Field Goal formation) R.Bironas 28 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 20120909_NE@TEN,1,53,47,TEN,NE,,,10,R.Bironas kicks 67 yards from TEN 35 to NE -2. D.McCourty pushed ob at NE 26 for 28 yards (T.Campbell).,3,0,2012 20120909_NE@TEN,1,53,37,NE,TEN,1,10,74,(8:37) T.Brady pass short right to A.Hernandez to NE 34 for 8 yards (C.McCarthy).,0,3,2012 20120909_NE@TEN,1,53,2,NE,TEN,2,2,66,(8:02) S.Ridley left guard to NE 35 for 1 yard (K.Wimbley).,0,3,2012 20120909_NE@TEN,1,52,43,NE,TEN,3,1,65,(7:43) (No Huddle) S.Ridley left tackle to TEN 48 for 17 yards (R.Mouton).,0,3,2012 20120909_NE@TEN,1,52,20,NE,TEN,1,10,48,(7:20) (No Huddle) T.Brady pass incomplete deep left to B.Lloyd.,0,3,2012 20120909_NE@TEN,1,52,13,NE,TEN,2,10,48,(7:13) S.Ridley up the middle to TEN 46 for 2 yards (D.Morgan).,0,3,2012 20120909_NE@TEN,1,51,33,NE,TEN,3,8,46,(6:33) (Shotgun) T.Brady pass incomplete deep middle to W.Welker.,0,3,2012 20120909_NE@TEN,1,51,29,NE,TEN,4,8,46,(6:29) (Punt formation) Z.Mesko punts 28 yards to TEN 18 Center-D.Aiken downed by NE-T.Scott.,0,3,2012 20120909_NE@TEN,1,51,20,TEN,NE,1,10,82,(6:20) C.Johnson up the middle to TEN 15 for -3 yards (C.Jones).,3,0,2012 20120909_NE@TEN,1,50,42,TEN,NE,2,13,85,(5:42) C.Johnson left tackle to TEN 17 for 2 yards (J.Mayo).,3,0,2012 20120909_NE@TEN,1,49,58,TEN,NE,3,11,83,(4:58) (Shotgun) J.Locker pass short left to J.Harper to TEN 25 for 8 yards (J.Mayo; R.Dowling).,3,0,2012 20120909_NE@TEN,1,49,18,TEN,NE,4,3,75,(4:18) (Punt formation) B.Kern punts 56 yards to NE 19 Center-B.Brinkley. J.Edelman to NE 33 for 14 yards (T.Campbell).,3,0,2012 20120909_NE@TEN,1,49,5,NE,TEN,1,10,67,(4:05) S.Ridley right tackle to NE 33 for no gain (C.McCarthy).,0,3,2012 20120909_NE@TEN,1,48,30,NE,TEN,2,10,67,(3:30) T.Brady pass short left to R.Gronkowski pushed ob at TEN 39 for 28 yards (R.Johnson).,0,3,2012 20120909_NE@TEN,1,48,8,NE,TEN,1,10,39,(3:08) S.Ridley left end pushed ob at TEN 22 for 17 yards (R.Johnson).,0,3,2012 20120909_NE@TEN,1,47,45,NE,TEN,1,10,22,(2:45) S.Ridley left guard to TEN 23 for -1 yards (A.Ayers).,0,3,2012 20120909_NE@TEN,1,47,5,NE,TEN,2,11,23,(2:05) T.Brady pass deep middle to A.Hernandez for 23 yards TOUCHDOWN.,0,3,2012 20120909_NE@TEN,1,47,5,NE,TEN,,,23,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,3,2012 20120909_NE@TEN,1,47,5,NE,TEN,,,23,S.Gostkowski kicks 69 yards from NE 35 to TEN -4. D.Reynaud to TEN 18 for 22 yards (T.White).,7,3,2012 20120909_NE@TEN,1,46,51,TEN,NE,1,10,82,(1:51) J.Locker pass incomplete deep middle to N.Washington.,3,7,2012 20120909_NE@TEN,1,46,47,TEN,NE,2,10,82,(1:47) J.Locker pass short middle to C.Johnson to TEN 22 for 4 yards (B.Spikes).,3,7,2012 20120909_NE@TEN,1,46,4,TEN,NE,3,6,78,(1:04) (Shotgun) J.Locker pass deep middle to J.Cook to TEN 41 for 19 yards (S.Gregory; P.Chung).,3,7,2012 20120909_NE@TEN,1,45,18,TEN,NE,1,10,59,(:18) (Shotgun) J.Locker pass short left to J.Cook to TEN 45 for 4 yards (P.Chung).,3,7,2012 20120909_NE@TEN,2,45,0,TEN,NE,2,6,55,(15:00) J.Locker pass short right to D.Reynaud pushed ob at NE 48 for 7 yards (J.Mayo; D.McCourty).,3,7,2012 20120909_NE@TEN,2,44,26,TEN,NE,1,10,48,(14:26) J.Locker pass deep left intended for N.Washington INTERCEPTED by T.Wilson (K.Arrington) at NE -3. Touchback.,3,7,2012 20120909_NE@TEN,2,44,14,NE,TEN,1,10,80,(14:14) T.Brady pass deep left to B.Lloyd ran ob at NE 47 for 27 yards. Tennessee challenged the pass completion ruling and the play was Upheld. (Timeout #1.),7,3,2012 20120909_NE@TEN,2,44,3,NE,TEN,1,10,53,(14:03) T.Brady pass short left to S.Ridley to TEN 46 for 7 yards (C.McCarthy).,7,3,2012 20120909_NE@TEN,2,43,29,NE,TEN,2,3,46,(13:29) S.Ridley right end to TEN 47 for -1 yards (A.Verner).,7,3,2012 20120909_NE@TEN,2,42,49,NE,TEN,3,4,47,(12:49) (Shotgun) T.Brady sacked at NE 45 for -8 yards (K.Wimbley).,7,3,2012 20120909_NE@TEN,2,42,17,NE,TEN,4,12,55,(12:17) (Punt formation) Z.Mesko punts 45 yards to TEN 10 Center-D.Aiken downed by NE-D.Aiken.,7,3,2012 20120909_NE@TEN,2,42,6,TEN,NE,1,10,90,(12:06) J.Locker pass incomplete short right to N.Washington.,3,7,2012 20120909_NE@TEN,2,42,1,TEN,NE,2,10,90,(12:01) C.Johnson up the middle to TEN 7 for -3 yards (D.Hightower).,3,7,2012 20120909_NE@TEN,2,41,16,TEN,NE,3,13,93,(11:16) (Shotgun) J.Locker sacked at TEN 1 for -6 yards (C.Jones). FUMBLES (C.Jones) RECOVERED by NE-D.Hightower at TEN 6. D.Hightower for 6 yards TOUCHDOWN.,3,7,2012 20120909_NE@TEN,2,41,16,NE,TEN,,,93,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,3,2012 20120909_NE@TEN,2,41,16,NE,TEN,,,93,S.Gostkowski kicks 67 yards from NE 35 to TEN -2. D.Reynaud pushed ob at TEN 38 for 40 yards (S.Gostkowski). PENALTY on TEN-A.Afalava Offensive Holding 10 yards enforced at TEN 28.,14,3,2012 20120909_NE@TEN,2,40,59,TEN,NE,1,10,82,(10:59) (Shotgun) C.Johnson left tackle to TEN 18 for no gain (J.Mayo; C.Jones).,3,14,2012 20120909_NE@TEN,2,40,17,TEN,NE,2,10,82,(10:17) (Shotgun) J.Locker pass short left to L.Hawkins to TEN 20 for 2 yards (J.Mayo).,3,14,2012 20120909_NE@TEN,2,39,38,TEN,NE,3,8,80,(9:38) (Shotgun) J.Locker scrambles left end pushed ob at TEN 29 for 9 yards (K.Arrington).,3,14,2012 20120909_NE@TEN,2,39,6,TEN,NE,1,10,71,(9:06) (Shotgun) D.Reynaud left tackle to TEN 29 for no gain (C.Jones; J.Cunningham).,3,14,2012 20120909_NE@TEN,2,38,20,TEN,NE,2,10,71,(8:20) (Shotgun) J.Locker pass incomplete short right to N.Washington.,3,14,2012 20120909_NE@TEN,2,38,15,TEN,NE,3,10,71,(8:15) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 38 for 9 yards (T.Wilson; D.McCourty) [T.Scott].,3,14,2012 20120909_NE@TEN,2,37,27,TEN,NE,4,1,62,(7:27) (Punt formation) B.Kern punts 44 yards to NE 18 Center-B.Brinkley. J.Edelman MUFFS catch recovered by NE-R.Dowling at NE 19. R.Dowling to NE 19 for no gain (C.Sensabaugh). PENALTY on TEN-T.Campbell Interference with Opportunity to Catch 15 yards enforced at NE 18.,3,14,2012 20120909_NE@TEN,2,37,17,NE,TEN,1,10,67,(7:17) S.Ridley left end to NE 48 for 15 yards (D.Morgan).,14,3,2012 20120909_NE@TEN,2,36,50,NE,TEN,1,10,52,(6:50) (No Huddle) T.Brady pass short left to B.Lloyd ran ob at TEN 43 for 9 yards.,14,3,2012 20120909_NE@TEN,2,36,34,NE,TEN,2,1,43,(6:34) (No Huddle) T.Brady up the middle to TEN 41 for 2 yards (Mi.Martin).,14,3,2012 20120909_NE@TEN,2,36,15,NE,TEN,1,10,41,(6:15) (No Huddle) T.Brady pass incomplete deep left to W.Welker.,14,3,2012 20120909_NE@TEN,2,36,9,NE,TEN,2,10,41,(6:09) D.Woodhead right tackle to TEN 35 for 6 yards (M.Griffin). TEN-C.McCarthy was injured during the play. His return is Questionable.,14,3,2012 20120909_NE@TEN,2,35,39,NE,TEN,3,4,35,(5:39) (Shotgun) Direct snap to A.Hernandez. A.Hernandez left tackle to TEN 30 for 5 yards (A.Verner).,14,3,2012 20120909_NE@TEN,2,35,8,NE,TEN,1,10,30,(5:08) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to TEN 23 for 7 yards (R.Mouton).,14,3,2012 20120909_NE@TEN,2,34,35,NE,TEN,2,3,23,(4:35) (No Huddle Shotgun) T.Brady pass short left to J.Edelman to TEN 16 for 7 yards (A.Verner).,14,3,2012 20120909_NE@TEN,2,34,4,NE,TEN,1,10,16,(4:04) (No Huddle Shotgun) T.Brady pass short right to W.Welker to TEN 11 for 5 yards (R.Mouton).,14,3,2012 20120909_NE@TEN,2,33,29,NE,TEN,2,5,11,(3:29) D.Woodhead up the middle to TEN 10 for 1 yard (J.Casey).,14,3,2012 20120909_NE@TEN,2,32,48,NE,TEN,3,4,10,(2:48) S.Ridley left guard to TEN 2 for 8 yards (A.Ayers).,14,3,2012 20120909_NE@TEN,2,32,6,NE,TEN,1,2,2,(2:06) T.Brady pass short right to R.Gronkowski for 2 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,14,3,2012 20120909_NE@TEN,2,32,6,NE,TEN,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,3,2012 20120909_NE@TEN,2,32,6,NE,TEN,,,2,S.Gostkowski kicks 73 yards from NE 35 to TEN -8. D.Reynaud to TEN 18 for 26 yards (N.Ebner).,21,3,2012 20120909_NE@TEN,2,31,56,TEN,NE,1,10,82,(1:56) (Shotgun) J.Locker pass short middle to J.Cook to TEN 24 for 6 yards (T.Wilson).,3,21,2012 20120909_NE@TEN,2,31,31,TEN,NE,2,4,76,(1:31) (No Huddle Shotgun) J.Locker pass short middle to D.Reynaud pushed ob at TEN 30 for 6 yards (R.Dowling).,3,21,2012 20120909_NE@TEN,2,31,23,TEN,NE,1,10,70,(1:23) (Shotgun) J.Locker sacked at TEN 23 for -7 yards (J.Cunningham).,3,21,2012 20120909_NE@TEN,2,30,58,TEN,NE,2,17,77,(:58) (No Huddle Shotgun) J.Locker pass short left to D.Williams to TEN 35 for 12 yards (J.Mayo).,3,21,2012 20120909_NE@TEN,2,30,52,TEN,NE,3,5,65,(:52) (Shotgun) J.Locker pass short right to D.Williams to TEN 38 for 3 yards (T.Wilson).,3,21,2012 20120909_NE@TEN,2,30,44,TEN,NE,4,2,62,(:44) (Punt formation) B.Kern punts 54 yards to NE 8 Center-B.Brinkley. J.Edelman pushed ob at NE 12 for 4 yards (J.Babineaux).,3,21,2012 20120909_NE@TEN,2,30,34,NE,TEN,1,10,88,(:34) T.Brady kneels to NE 11 for -1 yards.,21,3,2012 20120909_NE@TEN,3,30,0,TEN,NE,,,88,R.Bironas kicks 74 yards from TEN 35 to NE -9. D.McCourty Touchback.,3,21,2012 20120909_NE@TEN,3,30,0,NE,TEN,1,10,80,(15:00) T.Brady pass short left to A.Hernandez to NE 24 for 4 yards (R.Mouton; A.Ayers).,21,3,2012 20120909_NE@TEN,3,29,24,NE,TEN,2,6,76,(14:24) S.Ridley right end to NE 30 for 6 yards (A.Ayers).,21,3,2012 20120909_NE@TEN,3,28,52,NE,TEN,1,10,70,(13:52) S.Ridley left tackle to NE 38 for 8 yards (A.Verner).,21,3,2012 20120909_NE@TEN,3,28,15,NE,TEN,2,2,62,(13:15) T.Brady pass short left to A.Hernandez to 50 for 12 yards (A.Ayers).,21,3,2012 20120909_NE@TEN,3,27,44,NE,TEN,1,10,50,(12:44) S.Ridley right end to NE 49 for -1 yards (D.Morgan).,21,3,2012 20120909_NE@TEN,3,27,1,NE,TEN,2,11,51,(12:01) T.Brady pass incomplete short middle to S.Ridley.,21,3,2012 20120909_NE@TEN,3,26,58,NE,TEN,3,11,51,(11:58) (Shotgun) T.Brady pass incomplete short left to J.Edelman.,21,3,2012 20120909_NE@TEN,3,26,54,NE,TEN,4,11,51,(11:54) (Punt formation) Z.Mesko punts 51 yards to end zone Center-D.Aiken Touchback.,21,3,2012 20120909_NE@TEN,3,26,47,TEN,NE,1,10,80,(11:47) (Shotgun) J.Locker pass deep right to J.Cook to NE 45 for 35 yards (D.McCourty).,3,21,2012 20120909_NE@TEN,3,26,9,TEN,NE,1,10,45,(11:09) (Shotgun) J.Locker pass incomplete short right to K.Wright (D.McCourty).,3,21,2012 20120909_NE@TEN,3,26,3,TEN,NE,2,10,45,(11:03) (Shotgun) J.Locker pass short middle to C.Johnson to NE 29 for 16 yards (T.Wilson).,3,21,2012 20120909_NE@TEN,3,25,25,TEN,NE,1,10,29,(10:25) (Shotgun) J.Locker pass deep right to N.Washington for 29 yards TOUCHDOWN.,3,21,2012 20120909_NE@TEN,3,25,25,TEN,NE,,,29,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,21,2012 20120909_NE@TEN,3,25,25,TEN,NE,,,29,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,10,21,2012 20120909_NE@TEN,3,25,17,NE,TEN,1,10,80,(10:17) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,21,10,2012 20120909_NE@TEN,3,25,14,NE,TEN,2,10,80,(10:14) S.Ridley left end to NE 24 for 4 yards (K.Wimbley; A.Ayers).,21,10,2012 20120909_NE@TEN,3,24,30,NE,TEN,3,6,76,(9:30) (Shotgun) T.Brady pass short left to R.Gronkowski to NE 31 for 7 yards (J.Babineaux).,21,10,2012 20120909_NE@TEN,3,23,58,NE,TEN,1,10,69,(8:58) S.Ridley right end to NE 27 for -4 yards (J.McCourty).,21,10,2012 20120909_NE@TEN,3,23,18,NE,TEN,2,14,73,(8:18) T.Brady pass short right to A.Hernandez to NE 32 for 5 yards (D.Morgan).,21,10,2012 20120909_NE@TEN,3,22,44,NE,TEN,3,9,68,(7:44) (Shotgun) T.Brady pass short middle to R.Gronkowski to NE 41 for 9 yards (R.Mouton; W.Witherspoon).,21,10,2012 20120909_NE@TEN,3,22,14,NE,TEN,1,10,59,(7:14) T.Brady pass short left to B.Lloyd ran ob at TEN 48 for 11 yards.,21,10,2012 20120909_NE@TEN,3,21,45,NE,TEN,1,10,48,(6:45) T.Brady pass short left to W.Welker to TEN 47 for 1 yard (A.Verner).,21,10,2012 20120909_NE@TEN,3,21,15,NE,TEN,2,9,47,(6:15) (Shotgun) T.Brady pass short middle to A.Hernandez to TEN 40 for 7 yards (A.Ayers).,21,10,2012 20120909_NE@TEN,3,20,47,NE,TEN,3,2,40,(5:47) (Shotgun) T.Brady pass incomplete short left to B.Lloyd [K.Dawson].,21,10,2012 20120909_NE@TEN,3,20,44,NE,TEN,4,2,40,(5:44) (Punt formation) Z.Mesko punts 30 yards to TEN 10 Center-D.Aiken fair catch by D.Reynaud.,21,10,2012 20120909_NE@TEN,3,20,36,TEN,NE,1,10,90,(5:36) (Shotgun) J.Locker pass short left to C.Johnson pushed ob at TEN 10 for no gain (D.Hightower).,10,21,2012 20120909_NE@TEN,3,19,57,TEN,NE,2,10,90,(4:57) (Shotgun) J.Locker pass short right intended for D.Reynaud INTERCEPTED by D.McCourty at TEN 18. D.McCourty to TEN 18 for no gain (N.Washington). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) J.Locker pass incomplete short right to D.Reynaud.,10,21,2012 20120909_NE@TEN,3,19,53,TEN,NE,3,10,90,(4:53) (Shotgun) J.Locker up the middle to TEN 31 for 21 yards (K.Arrington). PENALTY on TEN-S.Hutchinson Offensive Holding 5 yards enforced at TEN 10 - No Play.,10,21,2012 20120909_NE@TEN,3,19,30,TEN,NE,3,15,95,(4:30) (Shotgun) J.Locker pass short left to K.Wright to TEN 2 for -3 yards (R.Dowling).,10,21,2012 20120909_NE@TEN,3,18,41,TEN,NE,4,18,98,(3:41) (Punt formation) B.Kern punts 55 yards to NE 43 Center-B.Brinkley. J.Edelman to TEN 48 for 9 yards (J.Babineaux).,10,21,2012 20120909_NE@TEN,3,18,29,NE,TEN,1,10,48,(3:29) T.Brady pass short right to R.Gronkowski to TEN 41 for 7 yards (M.Griffin) [J.Casey].,21,10,2012 20120909_NE@TEN,3,17,57,NE,TEN,2,3,41,(2:57) S.Ridley left tackle to TEN 26 for 15 yards (A.Verner; A.Ayers).,21,10,2012 20120909_NE@TEN,3,17,25,NE,TEN,1,10,26,(2:25) T.Brady pass short left to B.Lloyd ran ob at TEN 20 for 6 yards.,21,10,2012 20120909_NE@TEN,3,17,12,NE,TEN,2,4,20,(2:12) S.Ridley right end to TEN 15 for 5 yards (Mi.Martin; R.Johnson).,21,10,2012 20120909_NE@TEN,3,16,45,NE,TEN,1,10,15,(1:45) (No Huddle) S.Ridley right guard to TEN 1 for 14 yards (R.Johnson).,21,10,2012 20120909_NE@TEN,3,16,8,NE,TEN,1,1,1,(1:08) S.Ridley left tackle for 1 yard TOUCHDOWN.,21,10,2012 20120909_NE@TEN,3,16,8,NE,TEN,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,10,2012 20120909_NE@TEN,3,16,8,NE,TEN,,,1,S.Gostkowski kicks 64 yards from NE 35 to TEN 1. D.Reynaud to TEN 21 for 20 yards (N.Ebner).,28,10,2012 20120909_NE@TEN,3,15,59,TEN,NE,1,10,79,(:59) (Shotgun) C.Johnson right tackle to TEN 21 for no gain (D.McCourty).,10,28,2012 20120909_NE@TEN,3,15,30,TEN,NE,2,10,79,(:30) (No Huddle Shotgun) J.Locker pass incomplete short middle to N.Washington [V.Wilfork].,10,28,2012 20120909_NE@TEN,3,15,25,TEN,NE,3,10,79,(:25) (Shotgun) J.Locker pass short right to D.Williams to TEN 31 for 10 yards (D.McCourty).,10,28,2012 20120909_NE@TEN,3,15,3,TEN,NE,1,10,69,(:03) (No Huddle Shotgun) J.Locker pass short right to K.Wright to TEN 43 for 12 yards (J.Mayo).,10,28,2012 20120909_NE@TEN,4,14,59,TEN,NE,1,10,57,(14:59) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 47 for 4 yards (J.Mayo).,10,28,2012 20120909_NE@TEN,4,14,34,TEN,NE,2,6,53,(14:34) (No Huddle Shotgun) J.Locker sacked at TEN 42 for -5 yards (C.Jones). PENALTY on NE-C.Jones Defensive Offside 5 yards enforced at TEN 47 - No Play.,10,28,2012 20120909_NE@TEN,4,14,12,TEN,NE,2,1,48,(14:12) J.Locker pass deep middle to N.Washington to NE 25 for 23 yards (J.Mayo). FUMBLES (J.Mayo) RECOVERED by NE-P.Chung at NE 25. P.Chung to TEN 26 for 49 yards (J.Locker). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. J.Locker pass incomplete deep middle to N.Washington (J.Mayo T.Wilson). TEN-J.Locker was injured during the play. His return is Questionable. TEN-N.Washington was injured during the play. His return is Questionable.,10,28,2012 20120909_NE@TEN,4,14,7,TEN,NE,3,1,48,(14:07) M.Hasselbeck pass short right to C.Johnson to NE 34 for 14 yards (B.Deaderick).,10,28,2012 20120909_NE@TEN,4,13,23,TEN,NE,1,10,34,(13:23) (Shotgun) M.Hasselbeck pass short right to D.Williams to NE 27 for 7 yards (D.McCourty).,10,28,2012 20120909_NE@TEN,4,12,59,TEN,NE,2,3,27,(12:59) (No Huddle Shotgun) M.Hasselbeck pass short right to L.Hawkins to NE 21 for 6 yards (C.Jones). Penalty on NE-B.Spikes Defensive Holding declined.,10,28,2012 20120909_NE@TEN,4,12,31,TEN,NE,1,10,21,(12:31) D.Reynaud up the middle to NE 19 for 2 yards (J.Mayo).,10,28,2012 20120909_NE@TEN,4,11,59,TEN,NE,2,8,19,(11:59) (No Huddle Shotgun) M.Hasselbeck pass short middle to K.Wright to NE 13 for 6 yards (J.Mayo). PENALTY on NE-J.Mayo Defensive Pass Interference 6 yards enforced at NE 19 - No Play.,10,28,2012 20120909_NE@TEN,4,11,37,TEN,NE,1,10,13,(11:37) M.Hasselbeck pass short right to C.Stevens to NE 8 for 5 yards (K.Love; D.Hightower).,10,28,2012 20120909_NE@TEN,4,10,52,TEN,NE,2,5,8,(10:52) M.Hasselbeck pass short left to K.Wright to NE 1 for 7 yards (J.Mayo).,10,28,2012 20120909_NE@TEN,4,10,13,TEN,NE,1,1,1,(10:13) C.Johnson right tackle to NE 6 for -5 yards (V.Wilfork).,10,28,2012 20120909_NE@TEN,4,9,29,TEN,NE,2,6,6,(9:29) (Shotgun) M.Hasselbeck pass incomplete short left to L.Hawkins.,10,28,2012 20120909_NE@TEN,4,9,25,TEN,NE,3,6,6,(9:25) (Shotgun) M.Hasselbeck pass incomplete short left to J.Cook.,10,28,2012 20120909_NE@TEN,4,9,20,TEN,NE,4,6,6,(9:20) (Field Goal formation) R.Bironas 24 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,10,28,2012 20120909_NE@TEN,4,9,20,TEN,NE,,,6,R.Bironas kicks 67 yards from TEN 35 to NE -2. M.Slater to NE 17 for 19 yards (P.Bailey).,13,28,2012 20120909_NE@TEN,4,9,11,NE,TEN,1,10,83,(9:11) T.Brady pass short left to S.Ridley to NE 37 for 20 yards (A.Verner) [K.Wimbley].,28,13,2012 20120909_NE@TEN,4,8,54,NE,TEN,1,10,63,(8:54) (No Huddle) D.Woodhead right tackle to NE 40 for 3 yards (R.Mouton; W.Witherspoon).,28,13,2012 20120909_NE@TEN,4,8,25,NE,TEN,2,7,60,(8:25) (No Huddle Shotgun) T.Brady pass short right to B.Lloyd to TEN 44 for 16 yards (J.McCourty).,28,13,2012 20120909_NE@TEN,4,7,47,NE,TEN,1,10,44,(7:47) (No Huddle) D.Woodhead right guard to TEN 42 for 2 yards (D.Morgan).,28,13,2012 20120909_NE@TEN,4,7,18,NE,TEN,2,8,42,(7:18) (No Huddle) T.Brady pass short left to W.Welker to TEN 34 for 8 yards (A.Ayers; A.Verner).,28,13,2012 20120909_NE@TEN,4,6,45,NE,TEN,1,10,34,(6:45) (No Huddle) D.Woodhead left end to TEN 28 for 6 yards (M.Griffin; K.Wimbley).,28,13,2012 20120909_NE@TEN,4,6,8,NE,TEN,2,4,28,(6:08) (No Huddle) D.Woodhead left end pushed ob at TEN 26 for 2 yards (A.Verner; M.Griffin).,28,13,2012 20120909_NE@TEN,4,5,42,NE,TEN,3,2,26,(5:42) (No Huddle) S.Ridley left tackle to TEN 10 for 16 yards (R.Johnson; Z.Brown).,28,13,2012 20120909_NE@TEN,4,5,15,NE,TEN,1,10,10,(5:15) (No Huddle) S.Ridley left end to TEN 9 for 1 yard (A.Ayers).,28,13,2012 20120909_NE@TEN,4,4,33,NE,TEN,2,9,9,(4:33) S.Ridley up the middle to TEN 7 for 2 yards (J.Babineaux).,28,13,2012 20120909_NE@TEN,4,4,26,NE,TEN,3,7,7,(4:26) (Shotgun) T.Brady pass incomplete short right to A.Hernandez.,28,13,2012 20120909_NE@TEN,4,4,19,NE,TEN,4,7,7,(4:19) (Field Goal formation) S.Gostkowski 25 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,28,13,2012 20120909_NE@TEN,4,4,19,NE,TEN,,,7,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,31,13,2012 20120909_NE@TEN,4,4,15,TEN,NE,1,10,80,(4:15) (Shotgun) M.Hasselbeck pass short left to K.Wright to TEN 24 for 4 yards (R.Dowling).,13,31,2012 20120909_NE@TEN,4,3,53,TEN,NE,2,6,76,(3:53) (No Huddle Shotgun) M.Hasselbeck pass incomplete short left to J.Cook.,13,31,2012 20120909_NE@TEN,4,3,49,TEN,NE,3,6,76,(3:49) (Shotgun) M.Hasselbeck pass incomplete short middle to L.Hawkins.,13,31,2012 20120909_NE@TEN,4,3,46,TEN,NE,4,6,76,(3:46) (Shotgun) M.Hasselbeck pass incomplete short left to C.Johnson.,13,31,2012 20120909_NE@TEN,4,3,43,NE,TEN,1,10,24,(3:43) B.Bolden up the middle to TEN 15 for 9 yards (W.Witherspoon).,31,13,2012 20120909_NE@TEN,4,3,0,NE,TEN,2,1,15,(3:00) B.Bolden right tackle to TEN 13 for 2 yards (A.Ayers; D.Morgan).,31,13,2012 20120909_NE@TEN,4,2,16,NE,TEN,1,10,13,(2:16) B.Bolden up the middle to TEN 11 for 2 yards (Mi.Martin; Z.Brown).,31,13,2012 20120909_NE@TEN,4,2,0,NE,TEN,2,8,11,(2:00) B.Bolden left tackle to TEN 11 for no gain (D.Morgan).,31,13,2012 20120909_NE@TEN,4,1,14,NE,TEN,3,8,11,(1:14) B.Bolden left end to TEN 13 for -2 yards (Z.Brown).,31,13,2012 20120909_NE@TEN,4,0,35,NE,TEN,4,10,13,(:35) (Field Goal formation) S.Gostkowski 31 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,31,13,2012 20120909_NE@TEN,4,0,35,NE,TEN,,,13,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,34,13,2012 20120909_NE@TEN,4,0,31,TEN,NE,1,10,80,(:31) J.Harper left guard to TEN 23 for 3 yards (J.Cunningham).,13,34,2012 20120909_NE@TEN,4,0,31,TEN,NE,,,80,                      ,13,34,2012 20120909_SEA@ARI,1,0,0,ARI,SEA,,,80,J.Feely kicks 70 yards from ARZ 35 to SEA -5. L.Washington to SEA 23 for 28 yards (M.Adams).,0,0,2012 20120909_SEA@ARI,1,59,53,SEA,ARI,1,10,77,(14:53) M.Lynch left tackle to SEA 25 for 2 yards (D.Dockett).,0,0,2012 20120909_SEA@ARI,1,59,12,SEA,ARI,2,8,75,(14:12) R.Wilson pass short right to S.Rice to SEA 34 for 9 yards (A.Wilson).,0,0,2012 20120909_SEA@ARI,1,58,31,SEA,ARI,1,10,66,(13:31) M.Lynch up the middle to SEA 35 for 1 yard (D.Williams).,0,0,2012 20120909_SEA@ARI,1,57,53,SEA,ARI,2,9,65,(12:53) R.Wilson pass incomplete deep left to S.Rice. PENALTY on ARZ-P.Peterson Defensive Pass Interference 28 yards enforced at SEA 35 - No Play.,0,0,2012 20120909_SEA@ARI,1,57,45,SEA,ARI,1,10,37,(12:45) R.Turbin up the middle to ARZ 36 for 1 yard (D.Washington).,0,0,2012 20120909_SEA@ARI,1,57,6,SEA,ARI,2,9,36,(12:06) M.Lynch right tackle to ARZ 32 for 4 yards (W.Gay).,0,0,2012 20120909_SEA@ARI,1,56,25,SEA,ARI,3,5,32,(11:25) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,0,0,2012 20120909_SEA@ARI,1,56,20,SEA,ARI,4,5,32,(11:20) S.Hauschka 50 yard field goal is BLOCKED (C.Campbell) Center-C.Gresham Holder-J.Ryan.,0,0,2012 20120909_SEA@ARI,1,56,15,ARI,SEA,1,10,60,(11:15) R.Williams up the middle to ARZ 42 for 2 yards (K.Wright; B.Mebane).,0,0,2012 20120909_SEA@ARI,1,55,38,ARI,SEA,2,8,58,(10:38) (Shotgun) R.Williams up the middle to ARZ 42 for no gain (K.Wright). FUMBLES (K.Wright) RECOVERED by SEA-B.Mebane at ARZ 42. B.Mebane to ARZ 42 for no gain (J.Skelton). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,0,2012 20120909_SEA@ARI,1,55,24,SEA,ARI,1,10,42,(10:24) R.Wilson pass short left to S.Rice to ARZ 31 for 11 yards (R.Walker).,0,0,2012 20120909_SEA@ARI,1,54,47,SEA,ARI,1,10,31,(9:47) R.Wilson scrambles right end ran ob at ARZ 27 for 4 yards (D.Dockett).,0,0,2012 20120909_SEA@ARI,1,54,17,SEA,ARI,2,6,27,(9:17) M.Lynch left tackle to ARZ 17 for 10 yards (P.Lenon).,0,0,2012 20120909_SEA@ARI,1,53,35,SEA,ARI,1,10,17,(8:35) R.Wilson pass incomplete short right to S.Rice.,0,0,2012 20120909_SEA@ARI,1,53,30,SEA,ARI,2,10,17,(8:30) R.Turbin up the middle to ARZ 13 for 4 yards (N.Eason).,0,0,2012 20120909_SEA@ARI,1,52,54,SEA,ARI,3,6,13,(7:54) (Shotgun) R.Wilson left end pushed ob at ARZ 9 for 4 yards (K.Rhodes).,0,0,2012 20120909_SEA@ARI,1,52,31,SEA,ARI,4,2,9,(7:31) S.Hauschka 27 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 20120909_SEA@ARI,1,52,31,SEA,ARI,,,9,S.Hauschka kicks 65 yards from SEA 35 to ARZ 0. L.Stephens-Howling to ARZ 22 for 22 yards (M.Smith).,3,0,2012 20120909_SEA@ARI,1,52,19,ARI,SEA,1,10,78,(7:19) J.Skelton pass incomplete deep left to L.Fitzgerald.,0,3,2012 20120909_SEA@ARI,1,52,11,ARI,SEA,2,10,78,(7:11) R.Williams left tackle to ARZ 24 for 2 yards (B.Mebane B.Wagner).,0,3,2012 20120909_SEA@ARI,1,51,23,ARI,SEA,3,8,76,(6:23) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald. PENALTY on SEA-R.Sherman Defensive Pass Interference 12 yards enforced at ARZ 24 - No Play.,0,3,2012 20120909_SEA@ARI,1,51,18,ARI,SEA,1,10,64,(6:18) J.Skelton pass short left to L.Fitzgerald to ARZ 39 for 3 yards.,0,3,2012 20120909_SEA@ARI,1,50,42,ARI,SEA,2,7,61,(5:42) A.Roberts left tackle to SEA 46 for 15 yards (B.Wagner).,0,3,2012 20120909_SEA@ARI,1,50,1,ARI,SEA,1,10,46,(5:01) (Shotgun) R.Williams left tackle to SEA 42 for 4 yards (J.Jones; L.Hill).,0,3,2012 20120909_SEA@ARI,1,49,20,ARI,SEA,2,6,42,(4:20) J.Skelton pass short left to A.Roberts to SEA 35 for 7 yards (B.Browner).,0,3,2012 20120909_SEA@ARI,1,48,36,ARI,SEA,1,10,35,(3:36) (Shotgun) J.Skelton pass short middle to A.Roberts to SEA 16 for 19 yards (K.Chancellor B.Browner).,0,3,2012 20120909_SEA@ARI,1,47,53,ARI,SEA,1,10,16,(2:53) R.Williams right tackle to SEA 14 for 2 yards (K.Chancellor K.Wright).,0,3,2012 20120909_SEA@ARI,1,47,13,ARI,SEA,2,8,14,(2:13) (Shotgun) J.Skelton pass short left to R.Williams to SEA 2 for 12 yards (M.Trufant B.Browner).,0,3,2012 20120909_SEA@ARI,1,46,32,ARI,SEA,1,2,2,(1:32) R.Williams up the middle to SEA 3 for -1 yards (C.McDonald).,0,3,2012 20120909_SEA@ARI,1,45,49,ARI,SEA,2,3,3,(:49) J.Skelton pass incomplete short middle to L.Fitzgerald (B.Mebane).,0,3,2012 20120909_SEA@ARI,1,45,45,ARI,SEA,3,3,3,(:45) (Shotgun) J.Skelton pass incomplete short left to R.Williams.,0,3,2012 20120909_SEA@ARI,1,45,38,ARI,SEA,4,3,3,(:38) J.Feely 21 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,3,2012 20120909_SEA@ARI,1,45,38,ARI,SEA,,,3,J.Feely kicks 70 yards from ARZ 35 to SEA -5. L.Washington to SEA 17 for 22 yards (R.Johnson).,3,3,2012 20120909_SEA@ARI,1,45,27,SEA,ARI,1,10,83,(:27) PENALTY on ARZ-A.Wilson Neutral Zone Infraction 5 yards enforced at SEA 17 - No Play.,3,3,2012 20120909_SEA@ARI,1,45,27,SEA,ARI,1,5,78,(:27) R.Wilson sacked at SEA 17 for -5 yards (P.Lenon). Penalty on ARZ-S.Acho Personal Foul declined. Penalty on SEA-C.McDonald Personal Foul declined.,3,3,2012 20120909_SEA@ARI,2,45,0,SEA,ARI,2,10,83,(15:00) M.Lynch left tackle to SEA 23 for 6 yards (W.Gay V.Holliday).,3,3,2012 20120909_SEA@ARI,2,44,28,SEA,ARI,3,4,77,(14:28) (Shotgun) R.Wilson pass short right to B.Edwards to SEA 25 for 2 yards (J.Fleming). PENALTY on ARZ-R.Walker Roughing the Passer 15 yards enforced at SEA 25.,3,3,2012 20120909_SEA@ARI,2,43,59,SEA,ARI,1,10,60,(13:59) R.Wilson pass incomplete deep left to B.Obomanu.,3,3,2012 20120909_SEA@ARI,2,43,52,SEA,ARI,2,10,60,(13:52) R.Wilson scrambles left end to SEA 40 for no gain. PENALTY on SEA-M.Lynch Offensive Holding 10 yards enforced at SEA 40 - No Play.,3,3,2012 20120909_SEA@ARI,2,43,22,SEA,ARI,2,20,70,(13:22) R.Wilson scrambles right end to SEA 31 for 1 yard (R.Walker).,3,3,2012 20120909_SEA@ARI,2,42,32,SEA,ARI,3,19,69,(12:32) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at SEA 31 - No Play.,3,3,2012 20120909_SEA@ARI,2,42,13,SEA,ARI,3,24,74,(12:13) (Shotgun) L.Washington left tackle to SEA 29 for 3 yards (D.Dockett).,3,3,2012 20120909_SEA@ARI,2,41,32,SEA,ARI,4,21,71,(11:32) J.Ryan punts 46 yards to ARZ 25 Center-C.Gresham. P.Peterson to ARZ 42 for 17 yards (C.Gresham).,3,3,2012 20120909_SEA@ARI,2,41,20,ARI,SEA,1,10,58,(11:20) C.Wells left tackle to ARZ 43 for 1 yard (A.Branch).,3,3,2012 20120909_SEA@ARI,2,40,42,ARI,SEA,2,9,57,(10:42) (Shotgun) J.Skelton pass deep right to E.Doucet to SEA 39 for 18 yards (E.Thomas).,3,3,2012 20120909_SEA@ARI,2,40,0,ARI,SEA,1,10,39,(10:00) C.Wells right tackle to SEA 37 for 2 yards (K.Wright).,3,3,2012 20120909_SEA@ARI,2,39,22,ARI,SEA,2,8,37,(9:22) J.Skelton pass short left to J.King to SEA 32 for 5 yards (E.Thomas).,3,3,2012 20120909_SEA@ARI,2,38,38,ARI,SEA,3,3,32,(8:38) (Shotgun) J.Skelton pass short right to E.Doucet to SEA 18 for 14 yards (R.Sherman).,3,3,2012 20120909_SEA@ARI,2,37,53,ARI,SEA,1,10,18,(7:53) C.Wells left tackle to SEA 17 for 1 yard (C.McDonald).,3,3,2012 20120909_SEA@ARI,2,37,9,ARI,SEA,2,9,17,(7:09) J.Skelton pass incomplete short right to T.Heap [L.Hill].,3,3,2012 20120909_SEA@ARI,2,37,4,ARI,SEA,3,9,17,(7:04) (Shotgun) J.Skelton pass short middle to T.Heap to SEA 4 for 13 yards (K.Chancellor). PENALTY on SEA-K.Chancellor Face Mask (15 Yards) 2 yards enforced at SEA 4.,3,3,2012 20120909_SEA@ARI,2,36,39,ARI,SEA,1,2,2,(6:39) C.Wells up the middle to SEA 1 for 1 yard (K.Wright; B.Mebane).,3,3,2012 20120909_SEA@ARI,2,36,3,ARI,SEA,2,1,1,(6:03) J.Skelton pass incomplete short right to J.King (R.Bryant).,3,3,2012 20120909_SEA@ARI,2,35,58,ARI,SEA,3,1,1,(5:58) L.Stephens-Howling up the middle for 1 yard TOUCHDOWN.,3,3,2012 20120909_SEA@ARI,2,35,58,ARI,SEA,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,3,3,2012 20120909_SEA@ARI,2,35,58,ARI,SEA,,,1,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,10,3,2012 20120909_SEA@ARI,2,35,58,SEA,ARI,1,10,80,(5:58) M.Lynch up the middle to SEA 23 for 3 yards (D.Washington).,3,10,2012 20120909_SEA@ARI,2,35,23,SEA,ARI,2,7,77,(5:23) M.Lynch left tackle to SEA 25 for 2 yards (C.Campbell).,3,10,2012 20120909_SEA@ARI,2,34,38,SEA,ARI,3,5,75,(4:38) (Shotgun) R.Wilson pass short left to S.Rice to SEA 31 for 6 yards (M.Adams).,3,10,2012 20120909_SEA@ARI,2,34,3,SEA,ARI,1,10,69,(4:03) R.Wilson pass short right to D.Baldwin to SEA 35 for 4 yards (P.Peterson).,3,10,2012 20120909_SEA@ARI,2,33,28,SEA,ARI,2,6,65,(3:28) M.Lynch left tackle to SEA 43 for 8 yards (R.Walker O.Schofield).,3,10,2012 20120909_SEA@ARI,2,32,51,SEA,ARI,1,10,57,(2:51) M.Lynch left tackle to SEA 45 for 2 yards (D.Washington).,3,10,2012 20120909_SEA@ARI,2,32,12,SEA,ARI,2,8,55,(2:12) M.Lynch left tackle to SEA 47 for 2 yards (R.Walker).,3,10,2012 20120909_SEA@ARI,2,32,0,SEA,ARI,3,6,53,(2:00) (Shotgun) R.Wilson pass incomplete short left to A.McCoy.,3,10,2012 20120909_SEA@ARI,2,31,58,SEA,ARI,4,6,53,(1:58) J.Ryan punts 40 yards to ARZ 13 Center-C.Gresham fair catch by P.Peterson. PENALTY on SEA-J.Lane Offensive Holding 10 yards enforced at SEA 47 - No Play.,3,10,2012 20120909_SEA@ARI,2,31,47,SEA,ARI,4,16,63,(1:47) J.Ryan punts 47 yards to ARZ 16 Center-C.Gresham. P.Peterson pushed ob at ARZ 23 for 7 yards (C.Maragos).,3,10,2012 20120909_SEA@ARI,2,31,35,ARI,SEA,1,10,77,(1:35) (Shotgun) J.Skelton pass deep right to L.Fitzgerald to ARZ 46 for 23 yards (R.Sherman).,10,3,2012 20120909_SEA@ARI,2,31,15,ARI,SEA,1,10,54,(1:15) (Shotgun) J.Skelton pass short left to E.Doucet ran ob at SEA 49 for 5 yards (B.Browner).,10,3,2012 20120909_SEA@ARI,2,31,8,ARI,SEA,2,5,49,(1:08) PENALTY on ARZ-M.Floyd False Start 5 yards enforced at SEA 49 - No Play.,10,3,2012 20120909_SEA@ARI,2,31,8,ARI,SEA,2,10,54,(1:08) J.Skelton pass short middle to A.Roberts to SEA 49 for 5 yards (K.Wright).,10,3,2012 20120909_SEA@ARI,2,31,2,ARI,SEA,3,5,49,(1:02) PENALTY on ARZ-J.Skelton Delay of Game 5 yards enforced at SEA 49 - No Play.,10,3,2012 20120909_SEA@ARI,2,31,2,ARI,SEA,3,10,54,(1:02) (Shotgun) J.Skelton pass incomplete short right to M.Floyd [C.Clemons].,10,3,2012 20120909_SEA@ARI,2,30,55,ARI,SEA,4,10,54,(:55) D.Zastudil punts 39 yards to SEA 15 Center-M.Leach. B.Browner to SEA 14 for -1 yards (M.Adams).,10,3,2012 20120909_SEA@ARI,2,30,45,SEA,ARI,1,10,86,(:45) L.Washington up the middle to SEA 16 for 2 yards (D.Dockett).,3,10,2012 20120909_SEA@ARI,2,30,24,SEA,ARI,2,8,84,(:24) (Shotgun) R.Wilson pass deep middle to Z.Miller to SEA 43 for 27 yards (K.Rhodes).,3,10,2012 20120909_SEA@ARI,2,30,17,SEA,ARI,1,10,57,(:17) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin. PENALTY on ARZ-R.Walker Defensive Offside 5 yards enforced at SEA 43 - No Play.,3,10,2012 20120909_SEA@ARI,2,30,10,SEA,ARI,1,5,52,(:10) (Shotgun) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 48 - No Play.,3,10,2012 20120909_SEA@ARI,2,30,10,SEA,ARI,1,10,57,(:10) (Shotgun) R.Wilson pass deep middle intended for D.Baldwin INTERCEPTED by A.Wilson at ARZ 12. A.Wilson to ARZ 10 for -2 yards. Lateral to P.Peterson to ARZ 28 for 18 yards (B.Giacomini).,3,10,2012 20120909_SEA@ARI,3,30,0,SEA,ARI,,,57,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,3,10,2012 20120909_SEA@ARI,3,30,0,ARI,SEA,1,10,80,(15:00) C.Wells up the middle to ARZ 29 for 9 yards (R.Bryant; A.Branch).,10,3,2012 20120909_SEA@ARI,3,29,15,ARI,SEA,2,1,71,(14:15) J.Skelton pass incomplete short left to A.Roberts (B.Mebane).,10,3,2012 20120909_SEA@ARI,3,29,11,ARI,SEA,3,1,71,(14:11) C.Wells up the middle to ARZ 29 for no gain (A.Branch; K.Wright).,10,3,2012 20120909_SEA@ARI,3,28,27,ARI,SEA,4,1,71,(13:27) D.Zastudil punts 47 yards to SEA 24 Center-M.Leach. B.Browner to SEA 19 for -5 yards (Q.Groves; R.Walker). PENALTY on SEA-B.Browner Defensive Holding 5 yards enforced at SEA 19.,10,3,2012 20120909_SEA@ARI,3,28,14,SEA,ARI,1,10,86,(13:14) M.Lynch up the middle to SEA 23 for 9 yards (W.Gay). FUMBLES (W.Gay) recovered by SEA-R.Wilson at SEA 22. R.Wilson to SEA 22 for no gain (P.Lenon).,3,10,2012 20120909_SEA@ARI,3,27,34,SEA,ARI,2,2,78,(12:34) M.Lynch left tackle to SEA 23 for 1 yard (D.Williams).,3,10,2012 20120909_SEA@ARI,3,26,54,SEA,ARI,3,1,77,(11:54) R.Wilson scrambles right end to SEA 25 for 2 yards (D.Washington).,3,10,2012 20120909_SEA@ARI,3,26,8,ARI,SEA,1,10,83,(11:08) R.Wilson pass incomplete short left to M.Lynch (S.Acho). Arizona challenged the incomplete pass ruling and the play was REVERSED. R.Wilson FUMBLES (Aborted) at SEA 17 RECOVERED by ARZ-P.Lenon at SEA 17. P.Lenon to SEA 17 for no gain (P.McQuistan).,10,3,2012 20120909_SEA@ARI,3,26,3,ARI,SEA,1,10,17,(11:03) R.Williams up the middle to SEA 18 for -1 yards (B.Wagner; R.Bryant).,10,3,2012 20120909_SEA@ARI,3,25,21,ARI,SEA,2,11,18,(10:21) J.Skelton pass incomplete short right to L.Fitzgerald (K.Chancellor).,10,3,2012 20120909_SEA@ARI,3,25,15,ARI,SEA,3,11,18,(10:15) (Shotgun) J.Skelton pass deep right intended for L.Fitzgerald INTERCEPTED by K.Chancellor at SEA 0. Touchback. PENALTY on SEA-M.Trufant Defensive Offside 5 yards enforced at SEA 18 - No Play.,10,3,2012 20120909_SEA@ARI,3,25,8,ARI,SEA,3,6,13,(10:08) (Shotgun) J.Skelton pass incomplete short right to A.Roberts.,10,3,2012 20120909_SEA@ARI,3,25,3,ARI,SEA,4,6,13,(10:03) J.Feely 31 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,10,3,2012 20120909_SEA@ARI,3,25,3,ARI,SEA,,,13,J.Feely kicks 72 yards from ARZ 35 to SEA -7. L.Washington pushed ob at ARZ 24 for 83 yards (R.Housler).,13,3,2012 20120909_SEA@ARI,3,24,47,SEA,ARI,1,10,24,(9:47) R.Wilson pass short left to B.Edwards to ARZ 18 for 6 yards (W.Gay).,3,13,2012 20120909_SEA@ARI,3,24,17,SEA,ARI,2,4,18,(9:17) M.Lynch right tackle to ARZ 11 for 7 yards (A.Wilson).,3,13,2012 20120909_SEA@ARI,3,23,46,SEA,ARI,1,10,11,(8:46) R.Wilson pass short right to D.Baldwin to ARZ 10 for 1 yard (P.Peterson).,3,13,2012 20120909_SEA@ARI,3,23,1,SEA,ARI,2,9,10,(8:01) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (C.Campbell).,3,13,2012 20120909_SEA@ARI,3,22,57,SEA,ARI,3,9,10,(7:57) R.Wilson pass short middle to S.Rice for 10 yards TOUCHDOWN.,3,13,2012 20120909_SEA@ARI,3,22,57,SEA,ARI,,,10,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,13,2012 20120909_SEA@ARI,3,22,57,SEA,ARI,,,10,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,10,13,2012 20120909_SEA@ARI,3,22,51,ARI,SEA,1,10,80,(7:51) J.Skelton pass short right intended for L.Fitzgerald INTERCEPTED by R.Sherman [C.Clemons] at ARZ 34. R.Sherman ran ob at ARZ 34 for no gain. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,13,10,2012 20120909_SEA@ARI,3,22,42,SEA,ARI,1,10,34,(7:42) M.Lynch up the middle to ARZ 30 for 4 yards (P.Lenon Q.Groves).,10,13,2012 20120909_SEA@ARI,3,22,5,SEA,ARI,2,6,30,(7:05) R.Wilson scrambles right end ran ob at ARZ 29 for 1 yard (D.Washington).,10,13,2012 20120909_SEA@ARI,3,21,26,SEA,ARI,3,5,29,(6:26) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at ARZ 29 - No Play.,10,13,2012 20120909_SEA@ARI,3,21,1,SEA,ARI,3,10,34,(6:01) (Shotgun) R.Wilson scrambles up the middle to ARZ 29 for 5 yards (D.Dockett; Q.Groves).,10,13,2012 20120909_SEA@ARI,3,20,19,SEA,ARI,4,5,29,(5:19) S.Hauschka 47 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,13,2012 20120909_SEA@ARI,3,20,19,SEA,ARI,,,29,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,13,13,2012 20120909_SEA@ARI,3,20,13,ARI,SEA,1,10,80,(5:13) C.Wells up the middle to ARZ 20 for no gain (R.Bryant).,13,13,2012 20120909_SEA@ARI,3,19,31,ARI,SEA,2,10,80,(4:31) (Shotgun) J.Skelton pass short left to J.King to ARZ 23 for 3 yards (E.Thomas).,13,13,2012 20120909_SEA@ARI,3,18,52,ARI,SEA,3,7,77,(3:52) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald [K.Wright]. Penalty on ARZ-L.Sendlein Offensive Holding declined.,13,13,2012 20120909_SEA@ARI,3,18,45,ARI,SEA,4,7,77,(3:45) D.Zastudil punts 50 yards to SEA 27 Center-M.Leach. L.Washington to SEA 31 for 4 yards (R.Johnson).,13,13,2012 20120909_SEA@ARI,3,18,32,SEA,ARI,1,10,69,(3:32) M.Lynch left tackle to SEA 34 for 3 yards (O.Schofield).,13,13,2012 20120909_SEA@ARI,3,17,48,SEA,ARI,2,7,66,(2:48) M.Lynch up the middle to SEA 38 for 4 yards (P.Lenon).,13,13,2012 20120909_SEA@ARI,3,17,6,SEA,ARI,3,3,62,(2:06) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (W.Gay).,13,13,2012 20120909_SEA@ARI,3,17,1,SEA,ARI,4,3,62,(2:01) J.Ryan punts 48 yards to ARZ 14 Center-C.Gresham. P.Peterson ran ob at ARZ 20 for 6 yards (B.Obomanu).,13,13,2012 20120909_SEA@ARI,3,16,52,ARI,SEA,1,10,80,(1:52) R.Williams left tackle to ARZ 21 for 1 yard (B.Mebane).,13,13,2012 20120909_SEA@ARI,3,16,10,ARI,SEA,2,9,79,(1:10) (Shotgun) J.Skelton scrambles left end to ARZ 23 for 2 yards (L.Hill).,13,13,2012 20120909_SEA@ARI,3,15,29,ARI,SEA,3,7,77,(:29) (Shotgun) J.Skelton pass incomplete short right to A.Roberts.,13,13,2012 20120909_SEA@ARI,3,15,23,ARI,SEA,4,7,77,(:23) D.Zastudil punts 49 yards to SEA 28 Center-M.Leach fair catch by L.Washington.,13,13,2012 20120909_SEA@ARI,3,15,15,SEA,ARI,1,10,72,(:15) R.Wilson pass short right to Z.Miller to SEA 32 for 4 yards (M.Adams; O.Schofield).,13,13,2012 20120909_SEA@ARI,4,15,0,SEA,ARI,2,6,68,(15:00) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 32 - No Play.,13,13,2012 20120909_SEA@ARI,4,14,59,SEA,ARI,2,11,73,(14:59) R.Wilson pass short right to B.Edwards to SEA 43 for 16 yards (W.Gay).,13,13,2012 20120909_SEA@ARI,4,14,20,SEA,ARI,1,10,57,(14:20) M.Lynch left tackle to SEA 43 for no gain (S.Acho).,13,13,2012 20120909_SEA@ARI,4,13,45,SEA,ARI,2,10,57,(13:45) R.Wilson pass incomplete short right to S.Rice.,13,13,2012 20120909_SEA@ARI,4,13,40,SEA,ARI,3,10,57,(13:40) R.Wilson pass short right to R.Turbin to SEA 45 for 2 yards (D.Washington) [O.Schofield].,13,13,2012 20120909_SEA@ARI,4,12,44,SEA,ARI,4,8,55,(12:44) J.Ryan punts 44 yards to ARZ 11 Center-C.Gresham. P.Peterson ran ob at ARZ 18 for 7 yards (B.Wagner).,13,13,2012 20120909_SEA@ARI,4,12,33,ARI,SEA,1,10,82,(12:33) J.Skelton pass incomplete short right to L.Fitzgerald (R.Sherman).,13,13,2012 20120909_SEA@ARI,4,12,24,ARI,SEA,2,10,82,(12:24) R.Williams left tackle to ARZ 21 for 3 yards (B.Wagner). PENALTY on ARZ-D.Batiste Offensive Holding 8 yards enforced at ARZ 18 - No Play.,13,13,2012 20120909_SEA@ARI,4,11,56,ARI,SEA,2,18,90,(11:56) (Shotgun) J.Skelton pass short right to R.Williams to ARZ 15 for 5 yards (K.Chancellor).,13,13,2012 20120909_SEA@ARI,4,11,22,ARI,SEA,3,13,85,(11:22) (Shotgun) J.Skelton pass incomplete short right to A.Sherman (J.Jones).,13,13,2012 20120909_SEA@ARI,4,11,15,ARI,SEA,4,13,85,(11:15) D.Zastudil punts 53 yards to SEA 32 Center-M.Leach. L.Washington to ARZ 16 for 52 yards (M.Leach).,13,13,2012 20120909_SEA@ARI,4,10,58,SEA,ARI,1,10,16,(10:58) M.Lynch up the middle to ARZ 15 for 1 yard (D.Washington).,13,13,2012 20120909_SEA@ARI,4,10,17,SEA,ARI,2,9,15,(10:17) R.Wilson pass incomplete short right to S.Rice [Q.Groves]. PENALTY on SEA-R.Wilson Intentional Grounding 12 yards enforced at ARZ 15.,13,13,2012 20120909_SEA@ARI,4,10,11,SEA,ARI,3,21,27,(10:11) (Shotgun) R.Wilson pass incomplete short right to D.Baldwin (C.Campbell). PENALTY on SEA-R.Okung False Start 5 yards enforced at ARZ 27 - No Play.,13,13,2012 20120909_SEA@ARI,4,10,11,SEA,ARI,3,26,32,(10:11) M.Lynch up the middle to ARZ 21 for 11 yards (P.Lenon).,13,13,2012 20120909_SEA@ARI,4,9,25,SEA,ARI,4,15,21,(9:25) S.Hauschka 39 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,13,13,2012 20120909_SEA@ARI,4,9,25,SEA,ARI,,,21,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,16,13,2012 20120909_SEA@ARI,4,8,37,ARI,SEA,1,10,80,(8:37) J.Skelton sacked at ARZ 14 for -6 yards (C.Clemons). FUMBLES (C.Clemons) and recovers at ARZ 15.,13,16,2012 20120909_SEA@ARI,4,8,33,ARI,SEA,2,15,85,(8:33) J.Skelton pass short right to A.Roberts to ARZ 32 for 17 yards (R.Sherman) [B.Irvin]. ARZ-J.Skelton was injured during the play.,13,16,2012 20120909_SEA@ARI,4,8,18,ARI,SEA,1,10,68,(8:18) K.Kolb pass incomplete deep right to L.Fitzgerald.,13,16,2012 20120909_SEA@ARI,4,8,13,ARI,SEA,2,10,68,(8:13) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 46 for 14 yards (K.Wright).,13,16,2012 20120909_SEA@ARI,4,7,40,ARI,SEA,1,10,54,(7:40) K.Kolb pass incomplete short right to A.Roberts (J.Jones).,13,16,2012 20120909_SEA@ARI,4,7,36,ARI,SEA,2,10,54,(7:36) K.Kolb pass short right to L.Fitzgerald to SEA 31 for 23 yards (K.Wright).,13,16,2012 20120909_SEA@ARI,4,6,56,ARI,SEA,1,10,31,(6:56) K.Kolb pass incomplete deep right to A.Roberts. PENALTY on ARZ-D.Colledge Offensive Holding 10 yards enforced at SEA 31 - No Play.,13,16,2012 20120909_SEA@ARI,4,6,50,ARI,SEA,1,20,41,(6:50) (Shotgun) K.Kolb pass incomplete short right to A.Roberts (R.Sherman). PENALTY on SEA-R.Sherman Defensive Pass Interference 9 yards enforced at SEA 41 - No Play.,13,16,2012 20120909_SEA@ARI,4,6,18,ARI,SEA,1,10,32,(6:18) K.Kolb pass short left to T.Heap to SEA 21 for 11 yards (C.Clemons M.Trufant).,13,16,2012 20120909_SEA@ARI,4,5,48,ARI,SEA,1,10,21,(5:48) L.Stephens-Howling up the middle to SEA 18 for 3 yards (L.Hill).,13,16,2012 20120909_SEA@ARI,4,5,5,ARI,SEA,2,7,18,(5:05) K.Kolb pass short left to T.Heap to SEA 10 for 8 yards (K.Chancellor).,13,16,2012 20120909_SEA@ARI,4,4,59,ARI,SEA,1,10,10,(4:59) (Shotgun) K.Kolb pass short right to L.Stephens-Howling ran ob at SEA 6 for 4 yards (R.Sherman).,13,16,2012 20120909_SEA@ARI,4,6,16,ARI,SEA,2,6,6,(6:16) K.Kolb pass short left to A.Roberts for 6 yards TOUCHDOWN.,13,16,2012 20120909_SEA@ARI,4,6,16,ARI,SEA,,,6,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,13,16,2012 20120909_SEA@ARI,4,6,16,ARI,SEA,,,6,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,20,16,2012 20120909_SEA@ARI,4,4,58,SEA,ARI,1,10,80,(4:58) R.Wilson pass short left to B.Edwards pushed ob at SEA 31 for 11 yards (W.Gay).,16,20,2012 20120909_SEA@ARI,4,4,26,SEA,ARI,1,10,69,(4:26) M.Lynch right tackle to SEA 35 for 4 yards (P.Lenon).,16,20,2012 20120909_SEA@ARI,4,3,49,SEA,ARI,2,6,65,(3:49) R.Wilson sacked at SEA 27 for -8 yards (P.Lenon).,16,20,2012 20120909_SEA@ARI,4,3,12,SEA,ARI,3,14,73,(3:12) (Shotgun) R.Wilson pass short right to C.Martin to SEA 42 for 15 yards (M.Adams).,16,20,2012 20120909_SEA@ARI,4,2,37,SEA,ARI,1,10,58,(2:37) R.Wilson pass short right to Z.Miller to ARZ 49 for 9 yards (K.Rhodes).,16,20,2012 20120909_SEA@ARI,4,2,10,SEA,ARI,2,1,49,(2:10) R.Wilson pass short middle to M.Lynch to ARZ 42 for 7 yards (D.Washington P.Lenon).,16,20,2012 20120909_SEA@ARI,4,2,0,SEA,ARI,1,10,42,(2:00) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin [D.Dockett].,16,20,2012 20120909_SEA@ARI,4,1,57,SEA,ARI,2,10,42,(1:57) R.Wilson pass short left to B.Edwards pushed ob at ARZ 34 for 8 yards (W.Gay).,16,20,2012 20120909_SEA@ARI,4,1,51,SEA,ARI,3,2,34,(1:51) (Shotgun) R.Wilson scrambles right end to ARZ 31 for 3 yards (O.Schofield).,16,20,2012 20120909_SEA@ARI,4,1,39,SEA,ARI,1,10,31,(1:39) (Shotgun) R.Wilson pass incomplete deep left to D.Baldwin [C.Campbell].,16,20,2012 20120909_SEA@ARI,4,1,31,SEA,ARI,2,10,31,(1:31) (Shotgun) R.Wilson pass short right to M.Lynch to ARZ 26 for 5 yards (D.Washington).,16,20,2012 20120909_SEA@ARI,4,1,5,SEA,ARI,3,5,26,(1:05) (Shotgun) R.Wilson sacked at ARZ 27 for -1 yards (D.Washington).,16,20,2012 20120909_SEA@ARI,4,0,59,SEA,ARI,4,6,27,(:59) (Shotgun) R.Wilson pass incomplete deep right to S.Rice. PENALTY on ARZ-P.Peterson Defensive Pass Interference 14 yards enforced at ARZ 27 - No Play.,16,20,2012 20120909_SEA@ARI,4,0,52,SEA,ARI,1,10,13,(:52) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (M.Adams).,16,20,2012 20120909_SEA@ARI,4,0,47,SEA,ARI,2,10,13,(:47) (Shotgun) R.Wilson pass incomplete short middle to D.Baldwin (M.Adams).,16,20,2012 20120909_SEA@ARI,4,0,42,SEA,ARI,3,10,13,(:42) (Shotgun) R.Wilson pass incomplete short right to B.Edwards. PENALTY on ARZ-W.Gay Defensive Pass Interference 7 yards enforced at ARZ 13 - No Play.,16,20,2012 20120909_SEA@ARI,4,0,38,SEA,ARI,1,6,6,(:38) M.Lynch up the middle to ARZ 4 for 2 yards (O.Schofield).,16,20,2012 20120909_SEA@ARI,4,0,30,SEA,ARI,2,4,4,(:30) R.Wilson pass incomplete short right to S.Rice (P.Peterson).,16,20,2012 20120909_SEA@ARI,4,0,25,SEA,ARI,3,4,4,(:25) R.Wilson pass incomplete short right to C.Martin (M.Adams).,16,20,2012 20120909_SEA@ARI,4,0,21,SEA,ARI,4,4,4,(:21) R.Wilson pass incomplete short right to B.Edwards.,16,20,2012 20120909_SEA@ARI,4,0,18,ARI,SEA,1,10,96,(:18) K.Kolb kneels to ARZ 3 for -1 yards.,20,16,2012 20120909_SEA@ARI,4,0,18,ARI,SEA,,,96,                      ,20,16,2012 20120909_SF@GB,1,0,0,GB,SF,,,96,M.Crosby kicks 74 yards from GB 35 to SF -9. K.Hunter Touchback.,0,0,2012 20120909_SF@GB,1,60,0,SF,GB,1,10,80,(15:00) F.Gore left guard to SF 25 for 5 yards (A.Hawk C.Wilson).,0,0,2012 20120909_SF@GB,1,59,21,SF,GB,2,5,75,(14:21) K.Hunter right end to SF 29 for 4 yards (C.Wilson).,0,0,2012 20120909_SF@GB,1,58,36,SF,GB,3,1,71,(13:36) (Shotgun) A.Smith sacked at SF 24 for -5 yards (C.Matthews).,0,0,2012 20120909_SF@GB,1,58,14,SF,GB,4,6,76,(13:14) A.Lee punts 61 yards to GB 15 Center-B.Jennings. R.Cobb MUFFS catch touched at GB 15 and recovers at GB 15. R.Cobb to GB 19 for 4 yards (T.Brown). PENALTY on SF-C.Spillman Illegal Block Above the Waist 10 yards enforced at GB 19.,0,0,2012 20120909_SF@GB,1,58,3,GB,SF,1,10,71,(13:03) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 39 for 10 yards (P.Willis).,0,0,2012 20120909_SF@GB,1,57,30,GB,SF,1,10,61,(12:30) (Shotgun) C.Benson right guard to GB 40 for 1 yard (N.Bowman Ald.Smith).,0,0,2012 20120909_SF@GB,1,56,56,GB,SF,2,9,60,(11:56) (No Huddle) A.Rodgers sacked at GB 30 for -10 yards (Ald.Smith). PENALTY on SF-Ald.Smith Unsportsmanlike Conduct 15 yards enforced at GB 30.,0,0,2012 20120909_SF@GB,1,56,56,GB,SF,1,10,55,(11:56) (Shotgun) C.Benson right guard to GB 46 for 1 yard (N.Bowman).,0,0,2012 20120909_SF@GB,1,56,8,GB,SF,2,9,54,(11:08) (No Huddle Shotgun) A.Rodgers left end ran ob at SF 46 for 8 yards (C.Culliver).,0,0,2012 20120909_SF@GB,1,56,1,GB,SF,3,1,46,(11:01) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to SF 42 for 4 yards (N.Bowman). San Francisco challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,0,2012 20120909_SF@GB,1,55,41,GB,SF,1,10,42,(10:41) (Shotgun) C.Benson right tackle to SF 38 for 4 yards (N.Bowman; P.Willis).,0,0,2012 20120909_SF@GB,1,55,0,GB,SF,2,6,38,(10:00) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings.,0,0,2012 20120909_SF@GB,1,54,56,GB,SF,3,6,38,(9:56) (No Huddle Shotgun) PENALTY on GB-M.Newhouse False Start 5 yards enforced at SF 38 - No Play.,0,0,2012 20120909_SF@GB,1,54,56,GB,SF,3,11,43,(9:56) (Shotgun) A.Rodgers sacked at 50 for -7 yards (C.Rogers).,0,0,2012 20120909_SF@GB,1,54,56,GB,SF,4,18,50,(9:56) PENALTY on GB-S.Shields False Start 5 yards enforced at 50 - No Play.,0,0,2012 20120909_SF@GB,1,54,19,GB,SF,4,23,55,(9:19) T.Masthay punts 55 yards to end zone Center-B.Goode Touchback.,0,0,2012 20120909_SF@GB,1,54,11,SF,GB,1,10,80,(9:11) A.Smith pass short right to M.Crabtree to SF 31 for 11 yards (A.Hawk).,0,0,2012 20120909_SF@GB,1,53,30,SF,GB,1,10,69,(8:30) A.Smith right tackle to SF 36 for 5 yards (C.Wilson).,0,0,2012 20120909_SF@GB,1,52,47,SF,GB,2,5,64,(7:47) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 44 for 8 yards (A.Hawk).,0,0,2012 20120909_SF@GB,1,52,11,SF,GB,1,10,56,(7:11) K.Hunter right end to GB 48 for 8 yards (A.Hawk).,0,0,2012 20120909_SF@GB,1,51,32,SF,GB,2,2,48,(6:32) L.Davis reported in as eligible. A.Smith pass deep left to R.Moss to GB 28 for 20 yards (J.Bush).,0,0,2012 20120909_SF@GB,1,50,49,SF,GB,1,10,28,(5:49) A.Smith pass short middle to M.Manningham to GB 24 for 4 yards (C.Woodson). FUMBLES (C.Woodson) ball out of bounds at GB 26.,0,0,2012 20120909_SF@GB,1,50,31,SF,GB,2,8,26,(5:31) K.Hunter left end pushed ob at GB 22 for 4 yards (M.Burnett).,0,0,2012 20120909_SF@GB,1,50,1,SF,GB,3,4,22,(5:01) (Shotgun) A.Smith pass incomplete short left to D.Walker.,0,0,2012 20120909_SF@GB,1,49,58,SF,GB,4,4,22,(4:58) D.Akers 40 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 20120909_SF@GB,1,49,58,SF,GB,,,22,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,3,0,2012 20120909_SF@GB,1,49,53,GB,SF,1,10,80,(4:53) (Shotgun) C.Benson up the middle to GB 23 for 3 yards (R.McDonald; N.Bowman).,0,3,2012 20120909_SF@GB,1,49,24,GB,SF,2,7,77,(4:24) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to GB 27 for 4 yards (C.Culliver).,0,3,2012 20120909_SF@GB,1,48,54,GB,SF,3,3,73,(3:54) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to GB 38 for 11 yards (P.Cox).,0,3,2012 20120909_SF@GB,1,48,23,GB,SF,1,10,62,(3:23) (No Huddle) A.Rodgers pass short left to G.Jennings pushed ob at GB 44 for 6 yards (T.Brown).,0,3,2012 20120909_SF@GB,1,48,4,GB,SF,2,4,56,(3:04) (No Huddle) A.Rodgers right end ran ob at GB 48 for 4 yards (Ald.Smith).,0,3,2012 20120909_SF@GB,1,47,40,GB,SF,1,10,52,(2:40) (No Huddle Shotgun) C.Benson right end to 50 for 2 yards (R.McDonald).,0,3,2012 20120909_SF@GB,1,47,6,GB,SF,2,8,50,(2:06) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones (T.Brown).,0,3,2012 20120909_SF@GB,1,46,59,GB,SF,3,8,50,(1:59) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings to SF 45 for 5 yards (T.Brown).,0,3,2012 20120909_SF@GB,1,46,27,GB,SF,4,3,45,(1:27) T.Masthay punts 37 yards to SF 8 Center-B.Goode fair catch by K.Williams.,0,3,2012 20120909_SF@GB,1,46,20,SF,GB,1,10,92,(1:20) F.Gore right guard to SF 13 for 5 yards (B.Raji; N.Perry).,3,0,2012 20120909_SF@GB,1,45,35,SF,GB,2,5,87,(:35) F.Gore left end to SF 15 for 2 yards (T.Williams).,3,0,2012 20120909_SF@GB,2,45,0,SF,GB,3,3,85,(15:00) (Shotgun) A.Smith pass incomplete short middle to K.Williams. PENALTY on GB-J.Bush Defensive Pass Interference 7 yards enforced at SF 15 - No Play.,3,0,2012 20120909_SF@GB,2,44,56,SF,GB,1,10,78,(14:56) L.Davis and D.Kilgore reported in as eligible. F.Gore right end to SF 25 for 3 yards (D.Smith).,3,0,2012 20120909_SF@GB,2,44,12,SF,GB,2,7,75,(14:12) (Shotgun) A.Smith pass incomplete deep right to D.Walker [C.Matthews]. PENALTY on GB-C.Matthews Roughing the Passer 15 yards enforced at SF 25 - No Play.,3,0,2012 20120909_SF@GB,2,44,7,SF,GB,1,10,60,(14:07) F.Gore right end to 50 for 10 yards (C.Wilson; A.Hawk).,3,0,2012 20120909_SF@GB,2,43,25,SF,GB,1,10,50,(13:25) A.Smith pass short right to V.Davis pushed ob at GB 40 for 10 yards (C.Woodson).,3,0,2012 20120909_SF@GB,2,42,57,SF,GB,1,10,40,(12:57) W.Tukuafu reported in as eligible. A.Smith pass short left to M.Crabtree pushed ob at GB 31 for 9 yards (T.Williams).,3,0,2012 20120909_SF@GB,2,42,29,SF,GB,2,1,31,(12:29) (Shotgun) A.Smith pass short middle to M.Crabtree to GB 15 for 16 yards (N.Perry).,3,0,2012 20120909_SF@GB,2,41,54,SF,GB,1,10,15,(11:54) L.Davis and W.Tukuafu reported in as eligible. K.Hunter right end to GB 14 for 1 yard (N.Perry).,3,0,2012 20120909_SF@GB,2,41,14,SF,GB,2,9,14,(11:14) (Shotgun) A.Smith pass short middle to R.Moss for 14 yards TOUCHDOWN.,3,0,2012 20120909_SF@GB,2,41,14,SF,GB,,,14,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,3,0,2012 20120909_SF@GB,2,41,14,SF,GB,,,14,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,10,0,2012 20120909_SF@GB,2,41,10,GB,SF,1,10,80,(11:10) (Shotgun) A.Rodgers pass deep left to J.Nelson to GB 48 for 28 yards (T.Brown).,0,10,2012 20120909_SF@GB,2,40,34,GB,SF,1,10,52,(10:34) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb to SF 46 for 6 yards (T.Brown N.Bowman).,0,10,2012 20120909_SF@GB,2,40,1,GB,SF,2,4,46,(10:01) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb to SF 43 for 3 yards (N.Bowman).,0,10,2012 20120909_SF@GB,2,39,30,GB,SF,3,1,43,(9:30) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to SF 38 for 5 yards (D.Goldson).,0,10,2012 20120909_SF@GB,2,39,2,GB,SF,1,10,38,(9:02) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones. PENALTY on SF-Ald.Smith Defensive Offside 5 yards enforced at SF 38 - No Play.,0,10,2012 20120909_SF@GB,2,38,56,GB,SF,1,5,33,(8:56) (No Huddle Shotgun) A.Rodgers pass short middle to Ja.Jones to SF 33 for no gain (D.Goldson C.Culliver). PENALTY on GB-T.Lang Illegal Use of Hands 10 yards enforced at SF 33 - No Play.,0,10,2012 20120909_SF@GB,2,38,29,GB,SF,1,15,43,(8:29) (No Huddle Shotgun) A.Rodgers pass incomplete short right to J.Finley.,0,10,2012 20120909_SF@GB,2,38,24,GB,SF,2,15,43,(8:24) (No Huddle Shotgun) A.Rodgers pass short middle to J.Nelson to SF 30 for 13 yards (T.Brown).,0,10,2012 20120909_SF@GB,2,37,40,GB,SF,3,2,30,(7:40) (No Huddle Shotgun) A.Rodgers pass deep right to Ja.Jones to SF 2 for 28 yards (C.Culliver). PENALTY on GB-Ja.Jones Offensive Pass Interference 10 yards enforced at SF 30 - No Play.,0,10,2012 20120909_SF@GB,2,37,11,GB,SF,3,12,40,(7:11) (Shotgun) A.Rodgers pass short right to J.Finley to SF 24 for 16 yards (C.Rogers).,0,10,2012 20120909_SF@GB,2,36,33,GB,SF,1,10,24,(6:33) (No Huddle) C.Benson right end to SF 23 for 1 yard (P.Willis).,0,10,2012 20120909_SF@GB,2,35,53,GB,SF,2,9,23,(5:53) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb to SF 11 for 12 yards (P.Cox).,0,10,2012 20120909_SF@GB,2,35,5,GB,SF,1,10,11,(5:05) (No Huddle Shotgun) PENALTY on GB-A.Rodgers Delay of Game 5 yards enforced at SF 11 - No Play.,0,10,2012 20120909_SF@GB,2,34,47,GB,SF,1,15,16,(4:47) (No Huddle Shotgun) A.Rodgers pass incomplete deep middle to J.Finley. PENALTY on SF-D.Goldson Defensive Pass Interference 15 yards enforced at SF 16 - No Play.,0,10,2012 20120909_SF@GB,2,34,43,GB,SF,1,1,1,(4:43) (Shotgun) A.Rodgers pass short right to J.Finley for 1 yard TOUCHDOWN.,0,10,2012 20120909_SF@GB,2,34,43,GB,SF,,,1,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,10,2012 20120909_SF@GB,2,34,43,GB,SF,,,1,M.Crosby kicks 74 yards from GB 35 to SF -9. K.Hunter Touchback.,7,10,2012 20120909_SF@GB,2,34,40,SF,GB,1,10,80,(4:40) A.Smith pass short right to M.Manningham pushed ob at SF 31 for 11 yards (T.Williams).,10,7,2012 20120909_SF@GB,2,34,40,SF,GB,1,10,69,(4:40) W.Tukuafu reported in as eligible. A.Smith pass short middle to R.Moss to SF 42 for 11 yards (M.Burnett).,10,7,2012 20120909_SF@GB,2,33,27,SF,GB,1,10,58,(3:27) F.Gore left tackle to SF 47 for 5 yards (N.Perry).,10,7,2012 20120909_SF@GB,2,32,52,SF,GB,2,5,53,(2:52) A.Smith pass incomplete short middle to V.Davis.,10,7,2012 20120909_SF@GB,2,32,47,SF,GB,3,5,53,(2:47) (Shotgun) A.Smith pass incomplete short right to V.Davis. PENALTY on GB-C.Woodson Defensive Holding 5 yards enforced at SF 47 - No Play.,10,7,2012 20120909_SF@GB,2,32,43,SF,GB,1,10,48,(2:43) F.Gore left tackle to GB 45 for 3 yards (D.Smith A.Hawk).,10,7,2012 20120909_SF@GB,2,32,0,SF,GB,2,7,45,(2:00) (Shotgun) A.Smith pass short left to M.Manningham to GB 34 for 11 yards (J.Bush).,10,7,2012 20120909_SF@GB,2,31,55,SF,GB,1,10,34,(1:55) (Shotgun) A.Smith pass incomplete short left to D.Walker.,10,7,2012 20120909_SF@GB,2,31,50,SF,GB,2,10,34,(1:50) A.Smith pass short middle to M.Crabtree to GB 25 for 9 yards (A.Hawk M.Burnett).,10,7,2012 20120909_SF@GB,2,31,5,SF,GB,3,1,25,(1:05) W.Tukuafu and L.Davis reported in as eligible. F.Gore right tackle to GB 25 for no gain (C.Woodson; A.Hawk).,10,7,2012 20120909_SF@GB,2,30,59,SF,GB,4,1,25,(:59) W.Tukuafu D.Kilgore and A.Davis reported in as eligible. D.Akers 43 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,10,7,2012 20120909_SF@GB,2,30,59,SF,GB,,,25,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,13,7,2012 20120909_SF@GB,2,30,55,GB,SF,1,10,80,(:55) (Shotgun) PENALTY on GB-B.Bulaga False Start 5 yards enforced at GB 20 - No Play.,7,13,2012 20120909_SF@GB,2,30,55,GB,SF,1,15,85,(:55) (Shotgun) A.Rodgers pass incomplete short right.,7,13,2012 20120909_SF@GB,2,30,48,GB,SF,2,15,85,(:48) (Shotgun) A.Rodgers pass short middle to J.Finley to GB 22 for 7 yards (N.Bowman).,7,13,2012 20120909_SF@GB,2,30,39,GB,SF,3,8,78,(:39) (Shotgun) A.Rodgers pass incomplete short left.,7,13,2012 20120909_SF@GB,2,30,32,GB,SF,4,8,78,(:32) T.Masthay punts 60 yards to SF 18 Center-B.Goode. K.Williams to SF 38 for 20 yards (R.Francois).,7,13,2012 20120909_SF@GB,2,30,18,SF,GB,1,10,62,(:18) (Shotgun) C.Kaepernick left tackle to GB 45 for 17 yards (S.Shields).,13,7,2012 20120909_SF@GB,2,30,11,SF,GB,1,10,45,(:11) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,13,7,2012 20120909_SF@GB,2,30,6,SF,GB,2,10,45,(:06) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,13,7,2012 20120909_SF@GB,2,30,2,SF,GB,3,10,45,(:02) D.Akers 63 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,13,7,2012 20120909_SF@GB,3,30,0,SF,GB,,,45,D.Akers kicks 68 yards from SF 35 to GB -3. R.Cobb to GB 21 for 24 yards (L.Grant).,16,7,2012 20120909_SF@GB,3,29,54,GB,SF,1,10,79,(14:54) C.Benson left tackle to GB 23 for 2 yards (J.Smith).,7,16,2012 20120909_SF@GB,3,29,11,GB,SF,2,8,77,(14:11) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at GB 30 for 7 yards (C.Culliver).,7,16,2012 20120909_SF@GB,3,28,41,GB,SF,3,1,70,(13:41) A.Rodgers pass incomplete deep middle to J.Nelson.,7,16,2012 20120909_SF@GB,3,28,33,GB,SF,4,1,70,(13:33) T.Masthay punts 54 yards to SF 16 Center-B.Goode fair catch by K.Williams.,7,16,2012 20120909_SF@GB,3,28,25,SF,GB,1,10,84,(13:25) A.Smith sacked at SF 13 for -3 yards (C.Woodson).,16,7,2012 20120909_SF@GB,3,27,49,SF,GB,2,13,87,(12:49) (Shotgun) A.Smith pass short right to M.Manningham pushed ob at SF 18 for 5 yards (A.Hawk).,16,7,2012 20120909_SF@GB,3,27,17,SF,GB,3,8,82,(12:17) (Shotgun) A.Smith pass short right to M.Crabtree pushed ob at SF 38 for 20 yards (D.Smith).,16,7,2012 20120909_SF@GB,3,26,28,SF,GB,1,10,62,(11:28) F.Gore right end to GB 41 for 21 yards (A.Hawk).,16,7,2012 20120909_SF@GB,3,25,48,SF,GB,1,10,41,(10:48) F.Gore right tackle to GB 38 for 3 yards (A.Hawk M.Burnett).,16,7,2012 20120909_SF@GB,3,25,6,SF,GB,2,7,38,(10:06) A.Smith pass short middle to V.Davis to GB 9 for 29 yards (J.Bush).,16,7,2012 20120909_SF@GB,3,24,17,SF,GB,1,9,9,(9:17) L.Davis reported in as eligible. K.Hunter left end for 9 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. L.Davis and L.Davis reported in as eligible. K.Hunter left end ran ob at GB 1 for 8 yards (M.Burnett).,16,7,2012 20120909_SF@GB,3,24,13,SF,GB,2,1,1,(9:13) W.Tukuafu reported in as eligible. PENALTY on SF-W.Tukuafu False Start 5 yards enforced at GB 1 - No Play.,16,7,2012 20120909_SF@GB,3,24,3,SF,GB,2,6,6,(9:03) (Shotgun) A.Smith pass short right to R.Moss to GB 4 for 2 yards (T.Williams; M.Burnett).,16,7,2012 20120909_SF@GB,3,23,21,SF,GB,3,4,4,(8:21) (Shotgun) A.Smith pass short left to V.Davis for 4 yards TOUCHDOWN.,16,7,2012 20120909_SF@GB,3,23,21,SF,GB,,,4,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,16,7,2012 20120909_SF@GB,3,23,21,SF,GB,,,4,D.Akers kicks 70 yards from SF 35 to GB -5. R.Cobb to GB 23 for 28 yards (D.Walker).,23,7,2012 20120909_SF@GB,3,23,10,GB,SF,1,10,77,(8:10) (Shotgun) A.Rodgers pass short left to J.Finley pushed ob at GB 33 for 10 yards (P.Willis; D.Whitner).,7,23,2012 20120909_SF@GB,3,22,44,GB,SF,1,10,67,(7:44) C.Benson right end to GB 34 for 1 yard (C.Rogers).,7,23,2012 20120909_SF@GB,3,22,3,GB,SF,2,9,66,(7:03) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 43 for 9 yards (P.Willis).,7,23,2012 20120909_SF@GB,3,21,21,GB,SF,1,10,57,(6:21) C.Benson left guard to GB 46 for 3 yards (R.McDonald D.Goldson).,7,23,2012 20120909_SF@GB,3,20,39,GB,SF,2,7,54,(5:39) A.Rodgers right guard to SF 49 for 5 yards (P.Willis).,7,23,2012 20120909_SF@GB,3,19,50,GB,SF,3,2,49,(4:50) (Shotgun) A.Rodgers pass incomplete short right to J.Finley.,7,23,2012 20120909_SF@GB,3,19,46,GB,SF,4,2,49,(4:46) T.Masthay punts 45 yards to SF 4 Center-B.Goode out of bounds.,7,23,2012 20120909_SF@GB,3,19,36,SF,GB,1,10,96,(4:36) L.Davis reported in as eligible. F.Gore left end pushed ob at SF 11 for 7 yards (A.Hawk).,23,7,2012 20120909_SF@GB,3,19,10,SF,GB,2,3,89,(4:10) K.Hunter left tackle to SF 15 for 4 yards (D.Smith N.Perry).,23,7,2012 20120909_SF@GB,3,18,28,SF,GB,1,10,85,(3:28) A.Smith sacked at SF 10 for -5 yards (sack split by C.Woodson and C.Matthews).,23,7,2012 20120909_SF@GB,3,17,51,SF,GB,2,15,90,(2:51) F.Gore left end pushed ob at SF 26 for 16 yards (J.McMillian).,23,7,2012 20120909_SF@GB,3,17,28,SF,GB,1,10,74,(2:28) L.Davis and D.Kilgore reported in as eligible. K.Hunter right end to SF 31 for 5 yards (D.Smith).,23,7,2012 20120909_SF@GB,3,16,43,SF,GB,2,5,69,(1:43) A.Smith pass incomplete deep right to V.Davis.,23,7,2012 20120909_SF@GB,3,16,37,SF,GB,3,5,69,(1:37) (Shotgun) A.Smith pass short left to M.Crabtree pushed ob at SF 34 for 3 yards (J.Bush) [C.Matthews].,23,7,2012 20120909_SF@GB,3,15,53,SF,GB,4,2,66,(:53) A.Lee punts 47 yards to GB 19 Center-B.Jennings fair catch by R.Cobb.,23,7,2012 20120909_SF@GB,3,15,46,GB,SF,1,10,81,(:46) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley [A.Brooks].,7,23,2012 20120909_SF@GB,3,15,41,GB,SF,2,10,81,(:41) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 35 for 16 yards (D.Whitner).,7,23,2012 20120909_SF@GB,3,15,4,GB,SF,1,10,65,(:04) (No Huddle Shotgun) A.Rodgers pass short right to Ja.Jones to GB 48 for 13 yards (R.McDonald).,7,23,2012 20120909_SF@GB,4,15,0,GB,SF,1,10,52,(15:00) (Shotgun) A.Rodgers pass short left to G.Jennings pushed ob at SF 48 for 4 yards (T.Brown).,7,23,2012 20120909_SF@GB,4,14,24,GB,SF,2,6,48,(14:24) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Finley (N.Bowman).,7,23,2012 20120909_SF@GB,4,14,20,GB,SF,3,6,48,(14:20) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to G.Jennings.,7,23,2012 20120909_SF@GB,4,14,13,GB,SF,4,6,48,(14:13) T.Masthay punts 38 yards to SF 10 Center-B.Goode fair catch by K.Williams.,7,23,2012 20120909_SF@GB,4,14,6,SF,GB,1,10,90,(14:06) W.Tukuafu reported in as eligible. F.Gore left tackle to SF 13 for 3 yards (D.Smith M.Burnett).,23,7,2012 20120909_SF@GB,4,13,22,SF,GB,2,7,87,(13:22) A.Smith sacked at SF 13 for 0 yards (M.Burnett). PENALTY on SF-J.Staley Offensive Holding 7 yards enforced at SF 13 - No Play.,23,7,2012 20120909_SF@GB,4,13,1,SF,GB,2,14,94,(13:01) K.Hunter right end to SF 8 for 2 yards (N.Perry).,23,7,2012 20120909_SF@GB,4,12,17,SF,GB,3,12,92,(12:17) (Shotgun) F.Gore up the middle to SF 14 for 6 yards (N.Perry).,23,7,2012 20120909_SF@GB,4,11,35,SF,GB,4,6,86,(11:35) A.Lee punts 61 yards to GB 25 Center-B.Jennings. R.Cobb for 75 yards TOUCHDOWN.,23,7,2012 20120909_SF@GB,4,11,35,GB,SF,,,86,TWO-POINT CONVERSION ATTEMPT. A.Rodgers pass to J.Nelson is complete. ATTEMPT SUCCEEDS.,7,23,2012 20120909_SF@GB,4,11,35,GB,SF,,,86,M.Crosby kicks 72 yards from GB 35 to SF -7. K.Hunter Touchback.,15,23,2012 20120909_SF@GB,4,11,16,SF,GB,1,10,80,(11:16) (Shotgun) A.Smith up the middle to SF 25 for 5 yards (N.Perry).,23,15,2012 20120909_SF@GB,4,10,35,SF,GB,2,5,75,(10:35) K.Williams right tackle to SF 28 for 3 yards (D.Smith).,23,15,2012 20120909_SF@GB,4,9,53,SF,GB,3,2,72,(9:53) (Shotgun) A.Smith pass short left to F.Gore to SF 29 for 1 yard (S.Shields). San Francisco challenged the runner was down by contact ruling and the play was Upheld. (Timeout #2.),23,15,2012 20120909_SF@GB,4,9,6,SF,GB,4,1,71,(9:06) A.Lee punts 46 yards to GB 25 Center-B.Jennings fair catch by R.Cobb.,23,15,2012 20120909_SF@GB,4,8,59,GB,SF,1,10,75,(8:59) A.Rodgers pass short middle intended for G.Jennings INTERCEPTED by N.Bowman at GB 34. N.Bowman to GB 23 for 11 yards (C.Benson).,15,23,2012 20120909_SF@GB,4,8,50,SF,GB,1,10,23,(8:50) L.Davis and D.Kilgore reported in as eligible. F.Gore right end for 23 yards TOUCHDOWN.,23,15,2012 20120909_SF@GB,4,8,50,SF,GB,,,23,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,23,15,2012 20120909_SF@GB,4,8,50,SF,GB,,,23,D.Akers kicks 62 yards from SF 35 to GB 3. R.Cobb to GB 24 for 21 yards (C.Culliver).,30,15,2012 20120909_SF@GB,4,8,36,GB,SF,1,10,76,(8:36) (Shotgun) A.Rodgers pass incomplete short middle to G.Jennings. PENALTY on SF-C.Rogers Defensive Pass Interference 4 yards enforced at GB 24 - No Play.,15,30,2012 20120909_SF@GB,4,8,32,GB,SF,1,10,72,(8:32) (Shotgun) A.Rodgers pass short left to R.Cobb pushed ob at GB 35 for 7 yards (C.Rogers).,15,30,2012 20120909_SF@GB,4,8,11,GB,SF,2,3,65,(8:11) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb ran ob at GB 47 for 12 yards. PENALTY on GB-B.Bulaga Offensive Holding 10 yards enforced at GB 35 - No Play.,15,30,2012 20120909_SF@GB,4,7,44,GB,SF,2,13,75,(7:44) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 32 for 7 yards (D.Whitner).,15,30,2012 20120909_SF@GB,4,7,15,GB,SF,3,6,68,(7:15) (No Huddle Shotgun) A.Rodgers pass deep right to Ja.Jones pushed ob at SF 19 for 49 yards (N.Bowman).,15,30,2012 20120909_SF@GB,4,6,50,GB,SF,1,10,19,(6:50) (Shotgun) A.Rodgers pass short left to Ja.Jones to SF 10 for 9 yards (D.Whitner).,15,30,2012 20120909_SF@GB,4,6,9,GB,SF,2,1,10,(6:09) (No Huddle Shotgun) A.Rodgers pass short left to Ja.Jones for 10 yards TOUCHDOWN.,15,30,2012 20120909_SF@GB,4,6,9,GB,SF,,,10,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,15,30,2012 20120909_SF@GB,4,6,9,GB,SF,,,10,M.Crosby kicks 70 yards from GB 35 to SF -5. K.Hunter to SF 26 for 31 yards (C.Hayward J.Bush).,22,30,2012 20120909_SF@GB,4,5,58,SF,GB,1,10,74,(5:58) K.Hunter right guard to SF 31 for 5 yards (R.Pickett A.Hawk).,30,22,2012 20120909_SF@GB,4,5,18,SF,GB,2,5,69,(5:18) L.Davis and D.Kilgore reported in as eligible. A.Smith pass short right to B.Miller to SF 46 for 15 yards (A.Hawk).,30,22,2012 20120909_SF@GB,4,4,46,SF,GB,1,10,54,(4:46) F.Gore right tackle to SF 46 for no gain (D.Smith).,30,22,2012 20120909_SF@GB,4,4,1,SF,GB,2,10,54,(4:01) (Shotgun) A.Smith sacked at SF 39 for -7 yards (C.Matthews).,30,22,2012 20120909_SF@GB,4,3,56,SF,GB,3,17,61,(3:56) (Shotgun) A.Smith right tackle to SF 44 for 5 yards (D.Smith).,30,22,2012 20120909_SF@GB,4,3,45,SF,GB,4,12,56,(3:45) A.Lee punts 41 yards to GB 15 Center-B.Jennings. R.Cobb to GB 16 for 1 yard (T.Brock).,30,22,2012 20120909_SF@GB,4,3,37,GB,SF,1,10,84,(3:37) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings (D.Whitner).,22,30,2012 20120909_SF@GB,4,3,34,GB,SF,2,10,84,(3:34) (Shotgun) A.Rodgers left guard to GB 17 for 1 yard (A.Brooks).,22,30,2012 20120909_SF@GB,4,3,0,GB,SF,3,9,83,(3:00) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to GB 27 for 10 yards (N.Bowman).,22,30,2012 20120909_SF@GB,4,2,35,GB,SF,1,10,73,(2:35) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to GB 32 for 5 yards (N.Bowman).,22,30,2012 20120909_SF@GB,4,2,10,GB,SF,2,5,68,(2:10) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings to GB 41 for 9 yards (C.Culliver).,22,30,2012 20120909_SF@GB,4,2,0,GB,SF,1,10,59,(2:00) (Shotgun) PENALTY on SF-A.Brooks Neutral Zone Infraction 5 yards enforced at GB 41 - No Play.,22,30,2012 20120909_SF@GB,4,2,0,GB,SF,1,5,54,(2:00) (Shotgun) A.Rodgers right end ran ob at SF 45 for 9 yards (D.Goldson).,22,30,2012 20120909_SF@GB,4,1,53,GB,SF,1,10,45,(1:53) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones [A.Brooks].,22,30,2012 20120909_SF@GB,4,1,50,GB,SF,2,10,45,(1:50) (No Huddle Shotgun) A.Rodgers sacked at GB 48 for -7 yards (A.Brooks).,22,30,2012 20120909_SF@GB,4,1,22,GB,SF,3,17,52,(1:22) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to SF 45 for 7 yards (D.Goldson).,22,30,2012 20120909_SF@GB,4,0,54,GB,SF,4,10,45,(:54) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to J.Nelson (C.Culliver).,22,30,2012 20120909_SF@GB,4,0,49,SF,GB,1,10,55,(:49) A.Smith kneels to SF 44 for -1 yards.,30,22,2012 20120909_SF@GB,4,0,26,SF,GB,2,11,56,(:26) A.Smith kneels to SF 43 for -1 yards.,30,22,2012 20120909_SF@GB,4,0,26,SF,GB,,,56,                      ,30,22,2012 20120909_CAR@TB,1,0,0,TB,CAR,,,56,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 20120909_CAR@TB,1,60,0,CAR,TB,1,10,80,(15:00) D.Williams right end to CAR 16 for -4 yards (M.Foster).,0,0,2012 20120909_CAR@TB,1,59,27,CAR,TB,2,14,84,(14:27) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 36 for 20 yards (R.Barber).,0,0,2012 20120909_CAR@TB,1,58,49,CAR,TB,1,10,64,(13:49) (Shotgun) D.Williams left guard to CAR 33 for -3 yards (G.McCoy).,0,0,2012 20120909_CAR@TB,1,58,5,CAR,TB,2,13,67,(13:05) (Shotgun) C.Newton pass incomplete short middle to G.Olsen (M.Barron).,0,0,2012 20120909_CAR@TB,1,57,57,CAR,TB,3,13,67,(12:57) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,0,2012 20120909_CAR@TB,1,57,51,CAR,TB,4,13,67,(12:51) (Punt formation) B.Nortman punts 47 yards to TB 20 Center-J.Jansen. P.Parker to TB 20 for no gain (T.Davis).,0,0,2012 20120909_CAR@TB,1,57,40,TB,CAR,1,10,80,(12:40) J.Freeman pass short left to M.Williams pushed ob at TB 26 for 6 yards (J.Norman).,0,0,2012 20120909_CAR@TB,1,57,25,TB,CAR,2,4,74,(12:25) D.Martin right tackle to TB 30 for 4 yards (C.Godfrey).,0,0,2012 20120909_CAR@TB,1,56,39,TB,CAR,1,10,70,(11:39) D.Martin right tackle to TB 34 for 4 yards (C.Godfrey).,0,0,2012 20120909_CAR@TB,1,55,57,TB,CAR,2,6,66,(10:57) J.Freeman pass short right to E.Lorig to TB 39 for 5 yards (L.Kuechly).,0,0,2012 20120909_CAR@TB,1,55,27,TB,CAR,3,1,61,(10:27) J.Freeman up the middle to TB 41 for 2 yards (G.Hardy).,0,0,2012 20120909_CAR@TB,1,54,45,TB,CAR,1,10,59,(9:45) J.Freeman pass short right to E.Lorig to CAR 44 for 15 yards (H.Nakamura).,0,0,2012 20120909_CAR@TB,1,54,13,TB,CAR,1,10,44,(9:13) D.Martin left tackle to CAR 43 for 1 yard (J.Beason).,0,0,2012 20120909_CAR@TB,1,53,36,TB,CAR,2,9,43,(8:36) J.Freeman pass short left to D.Martin to CAR 32 for 11 yards (L.Kuechly).,0,0,2012 20120909_CAR@TB,1,52,42,TB,CAR,1,10,32,(7:42) D.Martin up the middle to CAR 26 for 6 yards (C.Godfrey).,0,0,2012 20120909_CAR@TB,1,51,58,TB,CAR,2,4,26,(6:58) (Shotgun) J.Freeman pass short left to D.Martin pushed ob at CAR 24 for 2 yards (J.Anderson).,0,0,2012 20120909_CAR@TB,1,51,27,TB,CAR,3,2,24,(6:27) (Shotgun) J.Freeman pass short left to V.Jackson to CAR 17 for 7 yards (J.Norman).,0,0,2012 20120909_CAR@TB,1,51,0,TB,CAR,1,10,17,(6:00) D.Martin left end pushed ob at CAR 6 for 11 yards (J.Beason H.Nakamura).,0,0,2012 20120909_CAR@TB,1,50,28,TB,CAR,1,6,6,(5:28) J.Freeman pass short middle to M.Williams for 6 yards TOUCHDOWN.,0,0,2012 20120909_CAR@TB,1,50,28,TB,CAR,,,6,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 20120909_CAR@TB,1,50,28,TB,CAR,,,6,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,7,0,2012 20120909_CAR@TB,1,50,20,CAR,TB,1,10,80,(5:20) (Shotgun) M.Tolbert right guard to CAR 22 for 2 yards (L.David; Q.Black).,0,7,2012 20120909_CAR@TB,1,49,46,CAR,TB,2,8,78,(4:46) (Shotgun) C.Newton pass short left to G.Olsen to CAR 26 for 4 yards (L.David).,0,7,2012 20120909_CAR@TB,1,49,2,CAR,TB,3,4,74,(4:02) (Shotgun) C.Newton pass incomplete short left to K.Pilares (R.Barber).,0,7,2012 20120909_CAR@TB,1,48,56,CAR,TB,4,4,74,(3:56) (Punt formation) B.Nortman punts 39 yards to TB 35 Center-J.Jansen fair catch by S.Stroughter. PENALTY on CAR-C.Munnerlyn Fair Catch Interference 15 yards enforced at TB 35.,0,7,2012 20120909_CAR@TB,1,48,47,TB,CAR,1,10,50,(3:47) J.Freeman pass deep right to D.Clark to CAR 17 for 33 yards (J.Beason).,7,0,2012 20120909_CAR@TB,1,48,0,TB,CAR,1,10,17,(3:00) D.Martin left end to CAR 18 for -1 yards (J.Beason; C.Munnerlyn).,7,0,2012 20120909_CAR@TB,1,47,14,TB,CAR,2,11,18,(2:14) D.Martin left guard to CAR 18 for no gain (J.Anderson).,7,0,2012 20120909_CAR@TB,1,46,30,TB,CAR,3,11,18,(1:30) (Shotgun) J.Freeman pass incomplete short middle to V.Jackson (F.Alexander).,7,0,2012 20120909_CAR@TB,1,46,25,TB,CAR,4,11,18,(1:25) (Field Goal formation) C.Barth 36 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,0,2012 20120909_CAR@TB,1,46,25,TB,CAR,,,18,M.Koenen kicks 74 yards from TB 35 to CAR -9. K.Pilares Touchback.,10,0,2012 20120909_CAR@TB,1,46,20,CAR,TB,1,10,80,(1:20) (Shotgun) C.Newton pass short right to L.Murphy to CAR 30 for 10 yards (A.Talib).,0,10,2012 20120909_CAR@TB,1,45,41,CAR,TB,1,10,70,(:41) C.Newton pass short middle to D.Williams to CAR 35 for 5 yards (Q.Black).,0,10,2012 20120909_CAR@TB,2,45,0,CAR,TB,2,5,65,(15:00) (Shotgun) K.Pilares left end to CAR 40 for 5 yards (M.Barron).,0,10,2012 20120909_CAR@TB,2,44,19,CAR,TB,1,10,60,(14:19) C.Newton pass short right to M.Tolbert to CAR 34 for -6 yards (R.Barber).,0,10,2012 20120909_CAR@TB,2,43,34,CAR,TB,2,16,66,(13:34) (Shotgun) C.Newton pass short right to S.Smith to TB 35 for 31 yards (E.Wright).,0,10,2012 20120909_CAR@TB,2,43,16,CAR,TB,1,10,35,(13:16) (Shotgun) C.Newton pass short left to L.Murphy to TB 33 for 2 yards (B.McDonald A.Talib).,0,10,2012 20120909_CAR@TB,2,42,37,CAR,TB,2,8,33,(12:37) C.Newton left tackle to TB 38 for -5 yards (Q.Black).,0,10,2012 20120909_CAR@TB,2,41,52,CAR,TB,3,13,38,(11:52) (Shotgun) C.Newton pass incomplete deep right to S.Smith (E.Wright).,0,10,2012 20120909_CAR@TB,2,41,44,CAR,TB,4,13,38,(11:44) (Punt formation) B.Nortman punts 30 yards to TB 8 Center-J.Jansen fair catch by S.Stroughter.,0,10,2012 20120909_CAR@TB,2,41,38,TB,CAR,1,10,92,(11:38) J.Freeman pass incomplete short left to V.Jackson (F.Alexander).,10,0,2012 20120909_CAR@TB,2,41,31,TB,CAR,2,10,92,(11:31) L.Blount up the middle to TB 12 for 4 yards (G.Hardy).,10,0,2012 20120909_CAR@TB,2,40,48,TB,CAR,3,6,88,(10:48) (Shotgun) J.Freeman pass short left to M.Williams to TB 20 for 8 yards (C.Gamble). PENALTY on CAR-C.Gamble Defensive Pass Interference 8 yards enforced at TB 12 - No Play.,10,0,2012 20120909_CAR@TB,2,40,23,TB,CAR,1,10,80,(10:23) L.Blount left guard to TB 23 for 3 yards (L.Kuechly; D.Edwards).,10,0,2012 20120909_CAR@TB,2,39,41,TB,CAR,2,7,77,(9:41) J.Freeman pass incomplete deep left to V.Jackson. PENALTY on CAR-J.Norman Defensive Pass Interference 22 yards enforced at TB 23 - No Play.,10,0,2012 20120909_CAR@TB,2,39,33,TB,CAR,1,10,55,(9:33) J.Freeman pass short right to L.Blount to TB 47 for 2 yards (J.Anderson).,10,0,2012 20120909_CAR@TB,2,38,49,TB,CAR,2,8,53,(8:49) L.Blount left tackle to TB 48 for 1 yard (D.Edwards).,10,0,2012 20120909_CAR@TB,2,38,11,TB,CAR,3,7,52,(8:11) (Shotgun) J.Freeman pass deep middle to V.Jackson to CAR 31 for 21 yards (H.Nakamura).,10,0,2012 20120909_CAR@TB,2,37,23,TB,CAR,1,10,31,(7:23) J.Freeman scrambles left end to CAR 19 for 12 yards (F.Kearse; L.Kuechly).,10,0,2012 20120909_CAR@TB,2,36,33,TB,CAR,1,10,19,(6:33) D.Martin left tackle to CAR 19 for no gain (C.Godfrey G.Hardy).,10,0,2012 20120909_CAR@TB,2,36,0,TB,CAR,2,10,19,(6:00) J.Freeman pass short left to V.Jackson to CAR 4 for 15 yards (J.Norman; H.Nakamura).,10,0,2012 20120909_CAR@TB,2,35,9,TB,CAR,1,4,4,(5:09) D.Martin right guard to CAR 1 for 3 yards (J.Beason).,10,0,2012 20120909_CAR@TB,2,34,26,TB,CAR,2,1,1,(4:26) D.Martin left guard to CAR 1 for no gain (J.Beason T.Davis).,10,0,2012 20120909_CAR@TB,2,33,43,TB,CAR,3,1,1,(3:43) J.Freeman pass short right to E.Lorig to CAR 2 for -1 yards (T.Davis).,10,0,2012 20120909_CAR@TB,2,32,59,TB,CAR,4,2,2,(2:59) (Field Goal formation) C.Barth 20 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,0,2012 20120909_CAR@TB,2,32,59,TB,CAR,,,2,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,13,0,2012 20120909_CAR@TB,2,32,55,CAR,TB,1,10,80,(2:55) (Shotgun) C.Newton pass short left to S.Smith to CAR 31 for 11 yards (E.Wright).,0,13,2012 20120909_CAR@TB,2,32,34,CAR,TB,1,10,69,(2:34) (Shotgun) C.Newton pass deep left to S.Smith ran ob at CAR 47 for 16 yards. Tampa Bay challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,13,2012 20120909_CAR@TB,2,32,14,CAR,TB,1,10,53,(2:14) (Shotgun) C.Newton pass short left to M.Tolbert to CAR 41 for -6 yards (M.Foster A.Clayborn) [G.McCoy].,0,13,2012 20120909_CAR@TB,2,32,0,CAR,TB,2,16,59,(2:00) (Shotgun) PENALTY on CAR-A.Silatolu False Start 5 yards enforced at CAR 41 - No Play.,0,13,2012 20120909_CAR@TB,2,32,0,CAR,TB,2,21,64,(2:00) (Shotgun) C.Newton scrambles right end to CAR 40 for 4 yards (M.Foster).,0,13,2012 20120909_CAR@TB,2,31,16,CAR,TB,3,17,60,(1:16) (Shotgun) C.Newton pass deep middle to B.LaFell to TB 41 for 19 yards (R.Barber; L.David).,0,13,2012 20120909_CAR@TB,2,30,50,CAR,TB,1,10,41,(:50) C.Newton pass short right to G.Olsen pushed ob at TB 35 for 6 yards (M.Barron).,0,13,2012 20120909_CAR@TB,2,30,46,CAR,TB,2,4,35,(:46) (Shotgun) C.Newton sacked ob at TB 37 for -2 yards (R.Barber).,0,13,2012 20120909_CAR@TB,2,30,36,CAR,TB,3,6,37,(:36) (Shotgun) PENALTY on CAR-G.Hangartner False Start 5 yards enforced at TB 37 - No Play.,0,13,2012 20120909_CAR@TB,2,30,36,CAR,TB,3,11,42,(:36) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,13,2012 20120909_CAR@TB,2,30,29,CAR,TB,4,11,42,(:29) (Punt formation) B.Nortman punts 36 yards to TB 6 Center-J.Jansen downed by CAR-C.Jones.,0,13,2012 20120909_CAR@TB,2,30,15,TB,CAR,1,10,94,(:15) J.Freeman kneels to TB 5 for -1 yards.,13,0,2012 20120909_CAR@TB,3,30,0,CAR,TB,,,94,J.Medlock kicks 70 yards from CAR 35 to TB -5. M.Smith to TB 10 for 15 yards (S.Martin).,0,13,2012 20120909_CAR@TB,3,29,56,TB,CAR,1,10,90,(14:56) (Shotgun) D.Martin left guard to TB 15 for 5 yards (R.Edwards).,13,0,2012 20120909_CAR@TB,3,29,16,TB,CAR,2,5,85,(14:16) J.Freeman scrambles left tackle to TB 22 for 7 yards (C.Johnson).,13,0,2012 20120909_CAR@TB,3,28,29,TB,CAR,1,10,78,(13:29) D.Martin left tackle to TB 24 for 2 yards (D.Edwards).,13,0,2012 20120909_CAR@TB,3,27,45,TB,CAR,2,8,76,(12:45) PENALTY on TB-T.Larsen False Start 5 yards enforced at TB 24 - No Play.,13,0,2012 20120909_CAR@TB,3,27,19,TB,CAR,2,13,81,(12:19) J.Freeman pass incomplete short left to V.Jackson (C.Johnson).,13,0,2012 20120909_CAR@TB,3,27,12,TB,CAR,3,13,81,(12:12) (Shotgun) D.Ware up the middle to TB 25 for 6 yards (C.Godfrey).,13,0,2012 20120909_CAR@TB,3,26,35,TB,CAR,4,7,75,(11:35) (Punt formation) M.Koenen punts 52 yards to CAR 23 Center-A.Economos. J.Adams to CAR 30 for 7 yards (E.Lorig).,13,0,2012 20120909_CAR@TB,3,26,21,CAR,TB,1,10,70,(11:21) D.Williams up the middle to CAR 30 for no gain (L.David).,0,13,2012 20120909_CAR@TB,3,25,46,CAR,TB,2,10,70,(10:46) (Shotgun) C.Newton pass short left to S.Smith to CAR 35 for 5 yards (R.Miller).,0,13,2012 20120909_CAR@TB,3,25,2,CAR,TB,3,5,65,(10:02) (Shotgun) C.Newton pass short right to G.Olsen ran ob at CAR 46 for 11 yards.,0,13,2012 20120909_CAR@TB,3,24,37,CAR,TB,1,10,54,(9:37) (Shotgun) C.Newton pass short middle to S.Smith pushed ob at TB 22 for 32 yards (M.Barron).,0,13,2012 20120909_CAR@TB,3,24,3,CAR,TB,1,10,22,(9:03) (Shotgun) C.Newton pass deep middle to B.LaFell for 22 yards TOUCHDOWN.,0,13,2012 20120909_CAR@TB,3,24,3,CAR,TB,,,22,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,13,2012 20120909_CAR@TB,3,24,3,CAR,TB,,,22,J.Medlock kicks 64 yards from CAR 35 to TB 1. M.Smith to TB 18 for 17 yards (J.Phillips K.Onatolu).,7,13,2012 20120909_CAR@TB,3,23,49,TB,CAR,1,10,82,(8:49) D.Martin left tackle to TB 23 for 5 yards (G.Hardy).,13,7,2012 20120909_CAR@TB,3,23,12,TB,CAR,2,5,77,(8:12) J.Freeman pass deep middle to V.Jackson to CAR 46 for 31 yards (J.Norman). PENALTY on TB-T.Larsen Offensive Holding 10 yards enforced at TB 23 - No Play.,13,7,2012 20120909_CAR@TB,3,22,41,TB,CAR,2,15,87,(7:41) (Shotgun) J.Freeman pass short right to D.Martin to TB 21 for 8 yards (F.Alexander).,13,7,2012 20120909_CAR@TB,3,21,54,TB,CAR,3,7,79,(6:54) (Shotgun) J.Freeman sacked at TB 14 for -7 yards (D.Edwards).,13,7,2012 20120909_CAR@TB,3,21,18,TB,CAR,4,14,86,(6:18) (Punt formation) M.Koenen punts 48 yards to CAR 38 Center-A.Economos. J.Adams to TB 41 for 21 yards (C.Grimm).,13,7,2012 20120909_CAR@TB,3,21,3,CAR,TB,1,10,41,(6:03) C.Newton pass short right intended for B.LaFell INTERCEPTED by R.Barber (E.Wright) at TB 26. R.Barber to TB 26 for no gain (J.Gross). 21 tipped the ball in the air and 20 caught it,7,13,2012 20120909_CAR@TB,3,20,49,TB,CAR,1,10,50,(5:49) D.Martin right guard to CAR 45 for 5 yards (D.Edwards).,13,7,2012 20120909_CAR@TB,3,20,11,TB,CAR,2,5,45,(5:11) D.Martin left guard to CAR 38 for 7 yards (J.Beason).,13,7,2012 20120909_CAR@TB,3,19,29,TB,CAR,1,10,38,(4:29) D.Martin left guard to CAR 40 for -2 yards (G.Hardy).,13,7,2012 20120909_CAR@TB,3,18,48,TB,CAR,2,12,40,(3:48) D.Martin left tackle to CAR 40 for no gain (G.Hardy).,13,7,2012 20120909_CAR@TB,3,18,4,TB,CAR,3,12,40,(3:04) (Shotgun) J.Freeman sacked at CAR 43 for -3 yards (G.Hardy).,13,7,2012 20120909_CAR@TB,3,17,35,TB,CAR,4,15,43,(2:35) (Punt formation) M.Koenen punts 43 yards to end zone Center-A.Economos Touchback.,13,7,2012 20120909_CAR@TB,3,17,23,CAR,TB,1,10,80,(2:23) D.Williams right end to CAR 21 for 1 yard (R.Miller).,7,13,2012 20120909_CAR@TB,3,16,37,CAR,TB,2,9,79,(1:37) (Shotgun) C.Newton pass short right to G.Olsen to CAR 33 for 12 yards (Q.Black).,7,13,2012 20120909_CAR@TB,3,16,25,CAR,TB,1,10,67,(1:25) D.Williams up the middle to CAR 40 for 7 yards (L.David).,7,13,2012 20120909_CAR@TB,3,16,5,CAR,TB,2,3,60,(1:05) C.Newton scrambles right end pushed ob at CAR 41 for 1 yard (Q.Black).,7,13,2012 20120909_CAR@TB,3,15,34,CAR,TB,3,2,59,(:34) (Shotgun) C.Newton up the middle to TB 45 for 14 yards (A.Talib). PENALTY on CAR-A.Silatolu Offensive Holding 10 yards enforced at CAR 41 - No Play.,7,13,2012 20120909_CAR@TB,3,15,7,CAR,TB,3,12,69,(:07) (Shotgun) C.Newton pass deep left intended for S.Smith INTERCEPTED by A.Black at TB 40. A.Black to TB 40 for no gain (S.Smith).,7,13,2012 20120909_CAR@TB,4,15,0,TB,CAR,1,10,60,(15:00) J.Freeman pass incomplete short right to V.Jackson (C.Gamble).,13,7,2012 20120909_CAR@TB,4,14,56,TB,CAR,2,10,60,(14:56) D.Martin right tackle to TB 43 for 3 yards (J.Anderson).,13,7,2012 20120909_CAR@TB,4,14,12,TB,CAR,3,7,57,(14:12) (Shotgun) J.Freeman pass short left to D.Martin to TB 45 for 2 yards (A.Applewhite; G.Hardy).,13,7,2012 20120909_CAR@TB,4,13,34,TB,CAR,4,5,55,(13:34) (Punt formation) M.Koenen punts 43 yards to CAR 12 Center-A.Economos. J.Adams MUFFS catch touched at CAR 12 and recovers at CAR 12. J.Adams to CAR 12 for no gain (E.Lorig).,13,7,2012 20120909_CAR@TB,4,13,21,CAR,TB,1,10,88,(13:21) (Shotgun) C.Newton pass deep left to B.LaFell ran ob at CAR 36 for 24 yards. PENALTY on TB-M.Bennett Roughing the Passer 15 yards enforced at CAR 36.,7,13,2012 20120909_CAR@TB,4,12,54,CAR,TB,1,10,49,(12:54) (Shotgun) D.Williams left tackle to CAR 49 for -2 yards (M.Foster).,7,13,2012 20120909_CAR@TB,4,12,13,CAR,TB,2,12,51,(12:13) (Shotgun) C.Newton pass short right to G.Olsen to TB 48 for 3 yards (D.Watson).,7,13,2012 20120909_CAR@TB,4,11,28,CAR,TB,3,9,48,(11:28) (Shotgun) C.Newton pass incomplete deep right to L.Murphy (M.Barron).,7,13,2012 20120909_CAR@TB,4,11,19,CAR,TB,4,9,48,(11:19) (Punt formation) B.Nortman punt is BLOCKED by A.Talib Center-J.Jansen RECOVERED by TB-A.Clayborn at CAR 42. A.Clayborn to CAR 42 for no gain (J.Anderson).,7,13,2012 20120909_CAR@TB,4,11,10,TB,CAR,1,10,42,(11:10) PENALTY on TB-L.Stocker False Start 5 yards enforced at CAR 42 - No Play.,13,7,2012 20120909_CAR@TB,4,11,10,TB,CAR,1,15,47,(11:10) D.Martin right end to CAR 35 for 12 yards (J.Beason).,13,7,2012 20120909_CAR@TB,4,10,23,TB,CAR,2,3,35,(10:23) (Shotgun) J.Freeman pass incomplete short right to V.Jackson.,13,7,2012 20120909_CAR@TB,4,10,18,TB,CAR,3,3,35,(10:18) (Shotgun) D.Ware right end to CAR 27 for 8 yards (J.Norman).,13,7,2012 20120909_CAR@TB,4,9,31,TB,CAR,1,10,27,(9:31) D.Martin right guard to CAR 24 for 3 yards (D.Edwards).,13,7,2012 20120909_CAR@TB,4,8,52,TB,CAR,2,7,24,(8:52) J.Freeman pass short left to E.Lorig to CAR 22 for 2 yards (J.Anderson).,13,7,2012 20120909_CAR@TB,4,8,8,TB,CAR,3,5,22,(8:08) (Shotgun) J.Freeman pass incomplete short middle to P.Parker (C.Munnerlyn).,13,7,2012 20120909_CAR@TB,4,8,3,TB,CAR,4,5,22,(8:03) (Field Goal formation) C.Barth 40 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,13,7,2012 20120909_CAR@TB,4,8,3,TB,CAR,,,22,M.Koenen kicks 74 yards from TB 35 to CAR -9. J.Adams to CAR 22 for 31 yards (K.Tandy).,16,7,2012 20120909_CAR@TB,4,7,52,CAR,TB,1,10,78,(7:52) (Shotgun) C.Newton sacked at CAR 14 for -8 yards (G.McCoy).,7,16,2012 20120909_CAR@TB,4,7,9,CAR,TB,2,18,86,(7:09) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,7,16,2012 20120909_CAR@TB,4,7,3,CAR,TB,3,18,86,(7:03) (Shotgun) C.Newton sacked at CAR 12 for -2 yards (M.Bennett). FUMBLES (M.Bennett) and recovers at CAR 12. C.Newton to CAR 12 for no gain (M.Bennett).,7,16,2012 20120909_CAR@TB,4,6,21,CAR,TB,4,20,88,(6:21) (Punt formation) B.Nortman punts 47 yards to TB 41 Center-J.Jansen fair catch by S.Stroughter.,7,16,2012 20120909_CAR@TB,4,6,14,TB,CAR,1,10,59,(6:14) D.Martin left guard to TB 45 for 4 yards (C.Johnson).,16,7,2012 20120909_CAR@TB,4,5,32,TB,CAR,2,6,55,(5:32) J.Freeman pass incomplete short right to M.Williams.,16,7,2012 20120909_CAR@TB,4,5,25,TB,CAR,3,6,55,(5:25) (Shotgun) J.Freeman pass incomplete short right to V.Jackson (C.Munnerlyn).,16,7,2012 20120909_CAR@TB,4,5,17,TB,CAR,4,6,55,(5:17) (Punt formation) M.Koenen punts 44 yards to CAR 11 Center-A.Economos out of bounds.,16,7,2012 20120909_CAR@TB,4,5,6,CAR,TB,1,10,89,(5:06) (Shotgun) C.Newton pass short right to M.Tolbert ran ob at CAR 31 for 20 yards.,7,16,2012 20120909_CAR@TB,4,4,58,CAR,TB,1,10,69,(4:58) (Shotgun) C.Newton pass deep right to L.Murphy pushed ob at TB 18 for 51 yards (A.Talib).,7,16,2012 20120909_CAR@TB,4,4,48,CAR,TB,1,10,18,(4:48) (Shotgun) C.Newton pass short right to S.Smith pushed ob at TB 11 for 7 yards (E.Wright).,7,16,2012 20120909_CAR@TB,4,4,40,CAR,TB,2,3,11,(4:40) (Shotgun) C.Newton pass short right to S.Smith to TB 7 for 4 yards (E.Wright).,7,16,2012 20120909_CAR@TB,4,4,2,CAR,TB,1,7,7,(4:02) (Shotgun) C.Newton right tackle to TB 3 for 4 yards (M.Foster).,7,16,2012 20120909_CAR@TB,4,3,34,CAR,TB,2,3,3,(3:34) (Shotgun) C.Newton pass incomplete short left to L.Murphy (A.Talib).,7,16,2012 20120909_CAR@TB,4,3,28,CAR,TB,3,3,3,(3:28) (Shotgun) C.Newton up the middle to TB 3 for no gain (L.David R.Barber).,7,16,2012 20120909_CAR@TB,4,2,50,CAR,TB,4,3,3,(2:50) (Field Goal formation) J.Medlock 21 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,7,16,2012 20120909_CAR@TB,4,2,50,CAR,TB,,,3,J.Medlock kicks 70 yards from CAR 35 to TB -5. M.Smith to TB 18 for 23 yards (K.Onatolu).,10,16,2012 20120909_CAR@TB,4,2,41,TB,CAR,1,10,82,(2:41) D.Martin left tackle to TB 22 for 4 yards (J.Beason).,16,10,2012 20120909_CAR@TB,4,2,33,TB,CAR,2,6,78,(2:33) D.Martin up the middle to TB 26 for 4 yards (F.Kearse).,16,10,2012 20120909_CAR@TB,4,2,28,TB,CAR,3,2,74,(2:28) J.Freeman pass short middle to V.Jackson to TB 30 for 4 yards (J.Beason).,16,10,2012 20120909_CAR@TB,4,2,22,TB,CAR,1,10,70,(2:22) D.Martin up the middle to TB 45 for 15 yards (C.Godfrey).,16,10,2012 20120909_CAR@TB,4,2,0,TB,CAR,1,10,55,(2:00) J.Freeman kneels to TB 43 for -2 yards.,16,10,2012 20120909_CAR@TB,4,1,14,TB,CAR,2,12,57,(1:14) J.Freeman kneels to TB 40 for -3 yards.,16,10,2012 20120909_CAR@TB,4,0,35,TB,CAR,3,15,60,(:35) J.Freeman kneels to TB 38 for -2 yards.,16,10,2012 20120909_CAR@TB,4,0,35,TB,CAR,,,60,                      ,16,10,2012 20120909_PIT@DEN,1,0,0,PIT,DEN,,,60,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,0,0,2012 20120909_PIT@DEN,1,60,0,DEN,PIT,1,10,80,(15:00) W.McGahee left tackle to DEN 25 for 5 yards (I.Taylor).,0,0,2012 20120909_PIT@DEN,1,59,23,DEN,PIT,2,5,75,(14:23) (Shotgun) P.Manning pass short right to E.Decker to DEN 38 for 13 yards (K.Lewis).,0,0,2012 20120909_PIT@DEN,1,58,46,DEN,PIT,1,10,62,(13:46) W.McGahee up the middle to DEN 41 for 3 yards (C.Hampton; L.Foote).,0,0,2012 20120909_PIT@DEN,1,58,9,DEN,PIT,2,7,59,(13:09) (Shotgun) P.Manning pass incomplete short right to J.Dreessen (L.Foote K.Lewis).,0,0,2012 20120909_PIT@DEN,1,58,3,DEN,PIT,3,7,59,(13:03) (Shotgun) P.Manning pass short left to B.Stokley to 50 for 9 yards (C.Allen).,0,0,2012 20120909_PIT@DEN,1,57,20,DEN,PIT,1,10,50,(12:20) K.Moreno up the middle to 50 for no gain (T.Polamalu).,0,0,2012 20120909_PIT@DEN,1,56,35,DEN,PIT,2,10,50,(11:35) (Shotgun) P.Manning pass incomplete short left to D.Thomas (I.Taylor). Penalty on DEN Illegal Formation declined.,0,0,2012 20120909_PIT@DEN,1,56,30,DEN,PIT,3,10,50,(11:30) (Shotgun) P.Manning sacked at DEN 45 for -5 yards (L.Foote).,0,0,2012 20120909_PIT@DEN,1,56,0,DEN,PIT,4,15,55,(11:00) B.Colquitt punts 44 yards to PIT 11 Center-A.Brewer. A.Brown to PIT 11 for no gain (J.Tamme).,0,0,2012 20120909_PIT@DEN,1,55,49,PIT,DEN,1,10,89,(10:49) I.Redman up the middle to PIT 14 for 3 yards (T.Warren).,0,0,2012 20120909_PIT@DEN,1,55,5,PIT,DEN,2,7,86,(10:05) I.Redman left tackle to PIT 17 for 3 yards (T.Porter). PENALTY on PIT-H.Miller Offensive Holding 8 yards enforced at PIT 14 - No Play.,0,0,2012 20120909_PIT@DEN,1,54,38,PIT,DEN,2,15,94,(9:38) I.Redman right tackle to PIT 6 for no gain (D.Wolfe).,0,0,2012 20120909_PIT@DEN,1,54,38,PIT,DEN,3,15,94,(9:38) (Shotgun) B.Roethlisberger pass short left to M.Wallace to PIT 20 for 14 yards (T.Porter).,0,0,2012 20120909_PIT@DEN,1,53,29,PIT,DEN,4,1,80,(8:29) D.Butler punts 52 yards to DEN 28 Center-G.Warren. J.Leonhard to DEN 40 for 12 yards (J.Worilds).,0,0,2012 20120909_PIT@DEN,1,53,16,DEN,PIT,1,10,60,(8:16) W.McGahee right end to DEN 44 for 4 yards (L.Foote).,0,0,2012 20120909_PIT@DEN,1,52,39,DEN,PIT,2,6,56,(7:39) P.Manning pass short right to D.Thomas to DEN 49 for 5 yards (T.Polamalu).,0,0,2012 20120909_PIT@DEN,1,52,21,DEN,PIT,3,1,51,(7:21) W.McGahee right tackle to DEN 48 for -1 yards. FUMBLES RECOVERED by PIT-L.Woodley at DEN 48. L.Woodley to DEN 48 for no gain (M.Ramirez).,0,0,2012 20120909_PIT@DEN,1,52,16,PIT,DEN,1,10,47,(7:16) Direction Change. I.Redman right guard to DEN 44 for 3 yards (W.Woodyard).,0,0,2012 20120909_PIT@DEN,1,51,36,PIT,DEN,2,7,44,(6:36) C.Rainey right end to DEN 46 for -2 yards (W.Woodyard).,0,0,2012 20120909_PIT@DEN,1,50,49,PIT,DEN,3,9,46,(5:49) (Shotgun) B.Roethlisberger pass short left to E.Sanders to DEN 33 for 13 yards (T.Porter).,0,0,2012 20120909_PIT@DEN,1,50,6,PIT,DEN,1,10,33,(5:06) I.Redman left end to DEN 39 for -6 yards (T.Porter).,0,0,2012 20120909_PIT@DEN,1,49,19,PIT,DEN,2,16,39,(4:19) I.Redman left guard to DEN 36 for 3 yards (W.Woodyard).,0,0,2012 20120909_PIT@DEN,1,48,35,PIT,DEN,3,13,36,(3:35) (Shotgun) B.Roethlisberger sacked at DEN 45 for -9 yards (D.Wolfe).,0,0,2012 20120909_PIT@DEN,1,48,6,PIT,DEN,4,22,45,(3:06) D.Butler punts 44 yards to DEN 1 Center-G.Warren downed by PIT-D.Van Dyke.,0,0,2012 20120909_PIT@DEN,1,47,58,DEN,PIT,1,10,99,(2:58) W.McGahee left guard to DEN 3 for 2 yards (B.Keisel).,0,0,2012 20120909_PIT@DEN,1,47,17,DEN,PIT,2,8,97,(2:17) W.McGahee right guard to DEN 5 for 2 yards (E.Hood).,0,0,2012 20120909_PIT@DEN,1,46,32,DEN,PIT,3,6,95,(1:32) (Shotgun) P.Manning pass short right to B.Stokley to DEN 22 for 17 yards (T.Polamalu).,0,0,2012 20120909_PIT@DEN,1,45,54,DEN,PIT,1,10,78,(:54) (Shotgun) P.Manning sacked at DEN 14 for -8 yards (J.Worilds). Penalty on DEN Illegal Formation declined.,0,0,2012 20120909_PIT@DEN,1,45,30,DEN,PIT,2,18,86,(:30) K.Moreno left tackle to DEN 15 for 1 yard (L.Woodley; C.Heyward).,0,0,2012 20120909_PIT@DEN,1,45,30,DEN,PIT,3,17,85,(:30) (Shotgun) P.Manning pass incomplete deep right to D.Thomas (R.Mundy).,0,0,2012 20120909_PIT@DEN,1,45,5,DEN,PIT,4,17,85,(:05) B.Colquitt punts 46 yards to PIT 39 Center-A.Brewer. A.Brown pushed ob at DEN 38 for 23 yards (Q.Carter).,0,0,2012 20120909_PIT@DEN,2,45,0,PIT,DEN,1,10,38,(15:00) A.Brown left end to DEN 34 for 4 yards (W.Woodyard).,0,0,2012 20120909_PIT@DEN,2,44,20,PIT,DEN,2,6,34,(14:20) J.Dwyer left tackle to DEN 23 for 11 yards (T.Porter). PENALTY on PIT-M.Wallace Offensive Holding 10 yards enforced at DEN 23.,0,0,2012 20120909_PIT@DEN,2,44,20,PIT,DEN,2,5,33,(14:20) B.Roethlisberger pass short left to W.Johnson to DEN 21 for 12 yards (T.Porter).,0,0,2012 20120909_PIT@DEN,2,43,22,PIT,DEN,1,10,21,(13:22) B.Roethlisberger pass short right to H.Miller to DEN 19 for 2 yards (M.Adams). PENALTY on DEN-V.Miller Defensive Offside 5 yards enforced at DEN 21 - No Play.,0,0,2012 20120909_PIT@DEN,2,43,0,PIT,DEN,1,5,16,(13:00) J.Dwyer left guard to DEN 14 for 2 yards (E.Dumervil; J.Bannan).,0,0,2012 20120909_PIT@DEN,2,42,16,PIT,DEN,2,3,14,(12:16) J.Dwyer left end to DEN 13 for 1 yard (K.Brooking).,0,0,2012 20120909_PIT@DEN,2,41,37,PIT,DEN,3,2,13,(11:37) B.Roethlisberger pass short right to A.Brown to DEN 8 for 5 yards (C.Harris).,0,0,2012 20120909_PIT@DEN,2,40,51,PIT,DEN,1,8,8,(10:51) B.Roethlisberger pass short middle to H.Miller to DEN 2 for 6 yards (R.Moore). PENALTY on DEN-K.Vickerson Encroachment 5 yards enforced at DEN 8 - No Play.,0,0,2012 20120909_PIT@DEN,2,40,25,PIT,DEN,1,3,3,(10:25) B.Roethlisberger pass incomplete short right to A.Brown (C.Bailey).,0,0,2012 20120909_PIT@DEN,2,40,22,PIT,DEN,2,3,3,(10:22) B.Roethlisberger pass incomplete short left to H.Miller.,0,0,2012 20120909_PIT@DEN,2,40,18,PIT,DEN,3,3,3,(10:18) (Shotgun) B.Roethlisberger pass incomplete short left to H.Miller (T.Porter).,0,0,2012 20120909_PIT@DEN,2,40,13,PIT,DEN,4,3,3,(10:13) S.Suisham 21 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 20120909_PIT@DEN,2,40,13,PIT,DEN,,,3,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,3,0,2012 20120909_PIT@DEN,2,40,10,DEN,PIT,1,10,80,(10:10) (Shotgun) P.Manning pass short middle to J.Dreessen to DEN 26 for 6 yards (L.Timmons).,0,3,2012 20120909_PIT@DEN,2,39,43,DEN,PIT,2,4,74,(9:43) W.McGahee left guard to DEN 29 for 3 yards (C.Hampton).,0,3,2012 20120909_PIT@DEN,2,39,17,DEN,PIT,3,1,71,(9:17) (Shotgun) P.Manning pass short left to D.Thomas to DEN 35 for 6 yards (L.Foote).,0,3,2012 20120909_PIT@DEN,2,38,53,DEN,PIT,1,10,65,(8:53) (Shotgun) P.Manning pass deep left to D.Thomas to PIT 45 for 20 yards (I.Taylor).,0,3,2012 20120909_PIT@DEN,2,38,25,DEN,PIT,1,10,45,(8:25) (Shotgun) P.Manning pass short middle to J.Tamme to PIT 41 for 4 yards (L.Foote).,0,3,2012 20120909_PIT@DEN,2,37,55,DEN,PIT,2,6,41,(7:55) P.Manning scrambles right end ran ob at PIT 34 for 7 yards.,0,3,2012 20120909_PIT@DEN,2,37,30,DEN,PIT,1,10,34,(7:30) P.Manning pass incomplete short middle to W.McGahee [L.Foote].,0,3,2012 20120909_PIT@DEN,2,37,25,DEN,PIT,2,10,34,(7:25) (Shotgun) P.Manning pass short right to E.Decker to PIT 25 for 9 yards (K.Lewis).,0,3,2012 20120909_PIT@DEN,2,36,57,DEN,PIT,3,1,25,(6:57) (Shotgun) W.McGahee up the middle to PIT 20 for 5 yards (L.Woodley).,0,3,2012 20120909_PIT@DEN,2,36,24,DEN,PIT,1,10,20,(6:24) (Shotgun) P.Manning pass short right to J.Tamme to PIT 11 for 9 yards (L.Foote).,0,3,2012 20120909_PIT@DEN,2,35,48,DEN,PIT,2,1,11,(5:48) (Shotgun) W.McGahee up the middle to PIT 7 for 4 yards (L.Foote).,0,3,2012 20120909_PIT@DEN,2,35,22,DEN,PIT,1,7,7,(5:22) (Shotgun) K.Moreno left guard for 7 yards TOUCHDOWN.,0,3,2012 20120909_PIT@DEN,2,35,22,DEN,PIT,,,7,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,3,2012 20120909_PIT@DEN,2,35,22,DEN,PIT,,,7,M.Prater kicks 71 yards from DEN 35 to PIT -6. E.Sanders to PIT 21 for 27 yards (O.Bolden).,7,3,2012 20120909_PIT@DEN,2,35,11,PIT,DEN,1,10,79,(5:11) (Shotgun) I.Redman up the middle to PIT 23 for 2 yards (W.Woodyard).,3,7,2012 20120909_PIT@DEN,2,34,37,PIT,DEN,2,8,77,(4:37) (Shotgun) B.Roethlisberger pass short right to I.Redman to PIT 28 for 5 yards (R.Moore).,3,7,2012 20120909_PIT@DEN,2,33,48,PIT,DEN,3,3,72,(3:48) I.Redman left end to PIT 34 for 6 yards (W.Woodyard).,3,7,2012 20120909_PIT@DEN,2,33,6,PIT,DEN,1,10,66,(3:06) (Shotgun) B.Roethlisberger pass incomplete short right (M.Adams). PIT-M.Gilbert was injured during the play.,3,7,2012 20120909_PIT@DEN,2,32,56,PIT,DEN,2,10,66,(2:56) (Shotgun) B.Batch up the middle to PIT 33 for -1 yards (V.Miller). Penalty on PIT Illegal Formation declined.,3,7,2012 20120909_PIT@DEN,2,32,31,PIT,DEN,3,11,67,(2:31) (Shotgun) B.Roethlisberger pass deep right to A.Brown pushed ob at DEN 44 for 23 yards (C.Bailey).,3,7,2012 20120909_PIT@DEN,2,32,8,PIT,DEN,1,10,44,(2:08) (Shotgun) B.Roethlisberger pass incomplete short right to A.Brown. PENALTY on PIT-M.Adams Illegal Formation 5 yards enforced at DEN 44 - No Play.,3,7,2012 20120909_PIT@DEN,2,32,2,PIT,DEN,1,15,49,(2:02) (Shotgun) I.Redman left end to DEN 45 for 4 yards (R.Ayers; M.Unrein).,3,7,2012 20120909_PIT@DEN,2,31,56,PIT,DEN,2,11,45,(1:56) B.Roethlisberger pass deep left to A.Brown pushed ob at DEN 18 for 27 yards (C.Harris).,3,7,2012 20120909_PIT@DEN,2,31,44,PIT,DEN,1,10,18,(1:44) (Shotgun) J.Dwyer left tackle to DEN 16 for 2 yards (W.Woodyard).,3,7,2012 20120909_PIT@DEN,2,31,10,PIT,DEN,2,8,16,(1:10) (Shotgun) PENALTY on PIT-M.Starks False Start 5 yards enforced at DEN 16 - No Play.,3,7,2012 20120909_PIT@DEN,2,31,8,PIT,DEN,2,13,21,(1:08) (Shotgun) B.Roethlisberger pass incomplete short left to J.Dwyer.,3,7,2012 20120909_PIT@DEN,2,31,4,PIT,DEN,3,13,21,(1:04) (Shotgun) B.Roethlisberger pass deep left to E.Sanders to DEN 4 for 17 yards (T.Porter).,3,7,2012 20120909_PIT@DEN,2,30,36,PIT,DEN,1,4,4,(:36) B.Roethlisberger spiked the ball to stop the clock.,3,7,2012 20120909_PIT@DEN,2,30,36,PIT,DEN,2,4,4,(:36) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace.,3,7,2012 20120909_PIT@DEN,2,30,32,PIT,DEN,3,4,4,(:32) B.Roethlisberger pass short middle to H.Miller for 4 yards TOUCHDOWN.,3,7,2012 20120909_PIT@DEN,2,30,32,PIT,DEN,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,3,7,2012 20120909_PIT@DEN,2,30,32,PIT,DEN,,,4,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,10,7,2012 20120909_PIT@DEN,2,30,28,DEN,PIT,1,10,80,(:28) P.Manning kneels to DEN 19 for -1 yards.,7,10,2012 20120909_PIT@DEN,3,30,0,DEN,PIT,,,80,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,10,2012 20120909_PIT@DEN,3,30,0,PIT,DEN,1,10,80,(15:00) B.Roethlisberger pass incomplete short right to J.Dwyer.,10,7,2012 20120909_PIT@DEN,3,29,56,PIT,DEN,2,10,80,(14:56) (Shotgun) J.Dwyer right guard to PIT 23 for 3 yards (D.Wolfe).,10,7,2012 20120909_PIT@DEN,3,29,13,PIT,DEN,3,7,77,(14:13) (Shotgun) PENALTY on PIT-W.Colon False Start 5 yards enforced at PIT 23 - No Play.,10,7,2012 20120909_PIT@DEN,3,28,57,PIT,DEN,3,12,82,(13:57) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 33 for 15 yards (J.Mays).,10,7,2012 20120909_PIT@DEN,3,28,19,PIT,DEN,1,10,67,(13:19) (Shotgun) J.Dwyer left tackle to PIT 38 for 5 yards (R.Ayers).,10,7,2012 20120909_PIT@DEN,3,27,42,PIT,DEN,2,5,62,(12:42) (Shotgun) B.Roethlisberger pass short right to H.Miller to DEN 47 for 15 yards (W.Woodyard).,10,7,2012 20120909_PIT@DEN,3,27,8,PIT,DEN,1,10,47,(12:08) B.Roethlisberger pass short left to J.Dwyer to DEN 47 for no gain (W.Woodyard).,10,7,2012 20120909_PIT@DEN,3,26,29,PIT,DEN,2,10,47,(11:29) (Shotgun) PENALTY on DEN-K.Vickerson Neutral Zone Infraction 5 yards enforced at DEN 47 - No Play.,10,7,2012 20120909_PIT@DEN,3,26,9,PIT,DEN,2,5,42,(11:09) (Shotgun) B.Roethlisberger pass short left to I.Redman to DEN 40 for 2 yards (R.Moore).,10,7,2012 20120909_PIT@DEN,3,25,29,PIT,DEN,3,3,40,(10:29) (Shotgun) B.Roethlisberger up the middle to DEN 38 for 2 yards (E.Dumervil).,10,7,2012 20120909_PIT@DEN,3,24,58,PIT,DEN,4,1,38,(9:58) B.Roethlisberger up the middle to DEN 36 for 2 yards (E.Dumervil; R.Moore).,10,7,2012 20120909_PIT@DEN,3,24,33,PIT,DEN,1,10,36,(9:33) (Shotgun) PENALTY on PIT-W.Colon False Start 5 yards enforced at DEN 36 - No Play.,10,7,2012 20120909_PIT@DEN,3,24,9,PIT,DEN,1,15,41,(9:09) (Shotgun) I.Redman right guard to DEN 38 for 3 yards (J.Bannan).,10,7,2012 20120909_PIT@DEN,3,23,31,PIT,DEN,2,12,38,(8:31) (Shotgun) B.Roethlisberger sacked at DEN 47 for -9 yards (C.Harris). PENALTY on PIT-A.Brown False Start 5 yards enforced at DEN 38 - No Play.,10,7,2012 20120909_PIT@DEN,3,23,8,PIT,DEN,2,17,43,(8:08) (Shotgun) B.Roethlisberger pass short left to M.Wallace to DEN 30 for 13 yards (T.Porter).,10,7,2012 20120909_PIT@DEN,3,22,34,PIT,DEN,3,4,30,(7:34) (Shotgun) B.Roethlisberger pass short left to M.Wallace to DEN 23 for 7 yards (W.Woodyard).,10,7,2012 20120909_PIT@DEN,3,21,59,PIT,DEN,1,10,23,(6:59) (Shotgun) B.Roethlisberger pass incomplete deep middle to A.Brown (M.Adams) [E.Dumervil].,10,7,2012 20120909_PIT@DEN,3,21,52,PIT,DEN,2,10,23,(6:52) (Shotgun) J.Dwyer up the middle to DEN 16 for 7 yards (M.Adams).,10,7,2012 20120909_PIT@DEN,3,21,14,PIT,DEN,3,3,16,(6:14) (Shotgun) B.Roethlisberger pass incomplete deep middle to A.Brown [E.Dumervil].,10,7,2012 20120909_PIT@DEN,3,21,9,PIT,DEN,4,3,16,(6:09) S.Suisham 35 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,10,7,2012 20120909_PIT@DEN,3,21,9,PIT,DEN,,,16,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,13,7,2012 20120909_PIT@DEN,3,21,5,DEN,PIT,1,10,80,(6:05) (Shotgun) P.Manning pass short right to E.Decker to DEN 29 for 9 yards (K.Lewis).,7,13,2012 20120909_PIT@DEN,3,20,41,DEN,PIT,2,1,71,(5:41) (Shotgun) P.Manning pass short left to D.Thomas for 71 yards TOUCHDOWN.,7,13,2012 20120909_PIT@DEN,3,20,41,DEN,PIT,,,71,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,13,2012 20120909_PIT@DEN,3,20,41,DEN,PIT,,,71,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,13,2012 20120909_PIT@DEN,3,20,29,PIT,DEN,1,10,80,(5:29) B.Roethlisberger pass incomplete deep middle to A.Brown (M.Adams).,13,14,2012 20120909_PIT@DEN,3,20,24,PIT,DEN,2,10,80,(5:24) (Shotgun) B.Roethlisberger pass incomplete short left to E.Sanders (T.Porter).,13,14,2012 20120909_PIT@DEN,3,20,17,PIT,DEN,3,10,80,(5:17) (Shotgun) B.Roethlisberger pass incomplete deep left to E.Sanders (R.Moore). PENALTY on DEN-R.Moore Unnecessary Roughness 15 yards enforced at PIT 20.,13,14,2012 20120909_PIT@DEN,3,20,11,PIT,DEN,1,10,65,(5:11) (Shotgun) B.Roethlisberger pass short left to C.Rainey to PIT 34 for -1 yards (K.Vickerson).,13,14,2012 20120909_PIT@DEN,3,19,31,PIT,DEN,2,11,66,(4:31) B.Roethlisberger sacked at PIT 27 for -7 yards (sack split by J.Mays and C.Harris).,13,14,2012 20120909_PIT@DEN,3,18,53,PIT,DEN,3,18,73,(3:53) (Shotgun) B.Roethlisberger pass short middle to H.Miller to 50 for 23 yards (M.Adams).,13,14,2012 20120909_PIT@DEN,3,18,18,PIT,DEN,1,10,50,(3:18) J.Dwyer left end to DEN 47 for 3 yards (E.Dumervil). PENALTY on DEN-E.Dumervil Face Mask (15 Yards) 14 yards enforced at DEN 47.,13,14,2012 20120909_PIT@DEN,3,17,48,PIT,DEN,1,10,33,(2:48) (Shotgun) B.Roethlisberger pass short left to J.Dwyer to DEN 22 for 11 yards (R.Moore).,13,14,2012 20120909_PIT@DEN,3,17,7,PIT,DEN,1,10,22,(2:07) B.Roethlisberger pass incomplete short middle to J.Cotchery.,13,14,2012 20120909_PIT@DEN,3,17,3,PIT,DEN,2,10,22,(2:03) (Shotgun) I.Redman up the middle to DEN 19 for 3 yards (W.Woodyard).,13,14,2012 20120909_PIT@DEN,3,16,18,PIT,DEN,3,7,19,(1:18) (Shotgun) B.Roethlisberger pass short right to H.Miller to DEN 11 for 8 yards (M.Adams).,13,14,2012 20120909_PIT@DEN,3,15,33,PIT,DEN,1,10,11,(:33) (Shotgun) J.Dwyer right end for 11 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Dwyer right end to DEN 2 for 9 yards (M.Adams).,13,14,2012 20120909_PIT@DEN,4,15,0,PIT,DEN,2,1,2,(15:00) I.Redman left guard to DEN 3 for -1 yards (V.Miller).,13,14,2012 20120909_PIT@DEN,4,14,15,PIT,DEN,3,2,3,(14:15) (Shotgun) B.Roethlisberger pass short left to M.Wallace for 3 yards TOUCHDOWN.,13,14,2012 20120909_PIT@DEN,4,14,15,PIT,DEN,,,3,TWO-POINT CONVERSION ATTEMPT. B.Roethlisberger pass to L.Pope is incomplete. ATTEMPT FAILS.,13,14,2012 20120909_PIT@DEN,4,14,15,PIT,DEN,,,3,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,19,14,2012 20120909_PIT@DEN,4,14,11,DEN,PIT,1,10,80,(14:11) (Shotgun) W.McGahee up the middle to DEN 29 for 9 yards (C.Carter).,14,19,2012 20120909_PIT@DEN,4,13,46,DEN,PIT,2,1,71,(13:46) (Shotgun) W.McGahee up the middle to DEN 41 for 12 yards (R.Mundy).,14,19,2012 20120909_PIT@DEN,4,13,14,DEN,PIT,1,10,59,(13:14) (Shotgun) P.Manning pass short left to D.Thomas to DEN 49 for 8 yards (T.Polamalu).,14,19,2012 20120909_PIT@DEN,4,12,42,DEN,PIT,2,2,51,(12:42) (Shotgun) K.Moreno left tackle to PIT 49 for 2 yards (E.Hood).,14,19,2012 20120909_PIT@DEN,4,12,18,DEN,PIT,1,10,49,(12:18) (Shotgun) P.Manning pass short right to E.Decker to PIT 43 for 6 yards (W.Allen; L.Woodley).,14,19,2012 20120909_PIT@DEN,4,11,53,DEN,PIT,2,4,43,(11:53) (Shotgun) P.Manning pass short left to M.Willis to PIT 29 for 14 yards (K.Lewis).,14,19,2012 20120909_PIT@DEN,4,11,24,DEN,PIT,1,10,29,(11:24) (Shotgun) P.Manning pass incomplete short middle to E.Decker (K.Lewis).,14,19,2012 20120909_PIT@DEN,4,11,18,DEN,PIT,2,10,29,(11:18) (Shotgun) P.Manning pass short right to J.Tamme to PIT 18 for 11 yards (L.Timmons).,14,19,2012 20120909_PIT@DEN,4,10,45,DEN,PIT,1,10,18,(10:45) (Shotgun) P.Manning pass short right to E.Decker to PIT 1 for 17 yards (R.Mundy). Pittsburgh challenged the first down ruling and the play was Upheld. (Timeout #1.),14,19,2012 20120909_PIT@DEN,4,9,28,DEN,PIT,1,1,1,(9:28) (Shotgun) P.Manning pass short left to J.Tamme for 1 yard TOUCHDOWN.,14,19,2012 20120909_PIT@DEN,4,9,28,DEN,PIT,,,1,TWO-POINT CONVERSION ATTEMPT. P.Manning pass to W.McGahee is complete. ATTEMPT SUCCEEDS.,14,19,2012 20120909_PIT@DEN,4,9,28,DEN,PIT,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,22,19,2012 20120909_PIT@DEN,4,9,23,PIT,DEN,1,10,80,(9:23) C.Rainey left end to PIT 27 for 7 yards (T.Porter).,19,22,2012 20120909_PIT@DEN,4,8,42,PIT,DEN,2,3,73,(8:42) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace (T.Porter) [V.Miller].,19,22,2012 20120909_PIT@DEN,4,8,35,PIT,DEN,3,3,73,(8:35) B.Roethlisberger pass incomplete short middle to H.Miller (T.Porter).,19,22,2012 20120909_PIT@DEN,4,8,29,PIT,DEN,4,3,73,(8:29) D.Butler punts 46 yards to DEN 27 Center-G.Warren. J.Leonhard to DEN 37 for 10 yards (Cu.Brown).,19,22,2012 20120909_PIT@DEN,4,8,18,DEN,PIT,1,10,63,(8:18) W.McGahee right end to DEN 42 for 5 yards (L.Timmons).,22,19,2012 20120909_PIT@DEN,4,7,52,DEN,PIT,2,5,58,(7:52) (Shotgun) W.McGahee left guard to DEN 45 for 3 yards (L.Timmons).,22,19,2012 20120909_PIT@DEN,4,7,31,DEN,PIT,3,2,55,(7:31) (Shotgun) K.Moreno right guard to DEN 48 for 3 yards (L.Timmons).,22,19,2012 20120909_PIT@DEN,4,7,1,DEN,PIT,1,10,52,(7:01) (Shotgun) L.Ball up the middle to PIT 41 for 11 yards (T.Polamalu).,22,19,2012 20120909_PIT@DEN,4,6,27,DEN,PIT,1,10,41,(6:27) (Shotgun) L.Ball up the middle to PIT 38 for 3 yards (C.Heyward).,22,19,2012 20120909_PIT@DEN,4,5,50,DEN,PIT,2,7,38,(5:50) (Shotgun) P.Manning pass short right to J.Tamme pushed ob at PIT 20 for 18 yards (C.Allen).,22,19,2012 20120909_PIT@DEN,4,5,25,DEN,PIT,1,10,20,(5:25) W.McGahee left tackle to PIT 20 for no gain (C.Heyward).,22,19,2012 20120909_PIT@DEN,4,4,44,DEN,PIT,2,10,20,(4:44) W.McGahee right end to PIT 12 for 8 yards (J.Worilds).,22,19,2012 20120909_PIT@DEN,4,3,55,DEN,PIT,3,2,12,(3:55) PENALTY on DEN Delay of Game 5 yards enforced at PIT 12 - No Play.,22,19,2012 20120909_PIT@DEN,4,3,55,DEN,PIT,3,7,17,(3:55) (Shotgun) P.Manning pass incomplete short right to E.Decker. PENALTY on PIT-K.Lewis Defensive Pass Interference 9 yards enforced at PIT 17 - No Play.,22,19,2012 20120909_PIT@DEN,4,3,51,DEN,PIT,1,8,8,(3:51) W.McGahee right tackle to PIT 8 for no gain (L.Foote).,22,19,2012 20120909_PIT@DEN,4,3,12,DEN,PIT,2,8,8,(3:12) (Shotgun) P.Manning pass incomplete short middle to B.Stokley.,22,19,2012 20120909_PIT@DEN,4,3,7,DEN,PIT,3,8,8,(3:07) (Shotgun) P.Manning pass incomplete short right to E.Decker (K.Lewis).,22,19,2012 20120909_PIT@DEN,4,3,3,DEN,PIT,4,8,8,(3:03) M.Prater 26 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,22,19,2012 20120909_PIT@DEN,4,3,3,DEN,PIT,,,8,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,25,19,2012 20120909_PIT@DEN,4,3,0,PIT,DEN,1,10,87,(3:00) (Shotgun) B.Roethlisberger FUMBLES (Aborted) at PIT 13 and recovers at PIT 13. B.Roethlisberger pass short middle to A.Brown to PIT 39 for 19 yards (C.Harris).,19,25,2012 20120909_PIT@DEN,4,2,16,PIT,DEN,1,10,61,(2:16) (Shotgun) B.Roethlisberger pass incomplete deep left to E.Sanders.,19,25,2012 20120909_PIT@DEN,4,2,10,PIT,DEN,2,10,61,(2:10) (Shotgun) B.Roethlisberger pass intended for E.Sanders INTERCEPTED by T.Porter at PIT 43. T.Porter for 43 yards TOUCHDOWN.,19,25,2012 20120909_PIT@DEN,4,2,10,DEN,PIT,,,61,TWO-POINT CONVERSION ATTEMPT. W.McGahee rushes left tackle. ATTEMPT FAILS.,25,19,2012 20120909_PIT@DEN,4,2,10,DEN,PIT,,,61,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,19,2012 20120909_PIT@DEN,4,1,58,PIT,DEN,1,10,80,(1:58) (Shotgun) B.Roethlisberger sacked at PIT 15 for -5 yards (V.Miller).,19,31,2012 20120909_PIT@DEN,4,1,27,PIT,DEN,2,15,85,(1:27) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 25 for 10 yards (J.Leonhard).,19,31,2012 20120909_PIT@DEN,4,1,1,PIT,DEN,3,5,75,(1:01) (Shotgun) B.Roethlisberger sacked at PIT 15 for -10 yards (V.Miller).,19,31,2012 20120909_PIT@DEN,4,0,54,PIT,DEN,4,15,85,(:54) (Shotgun) B.Roethlisberger sacked at PIT 10 for -5 yards (W.Woodyard).,19,31,2012 20120909_PIT@DEN,4,0,42,DEN,PIT,1,9,9,(:42) Direction Change. P.Manning kneels to PIT 11 for -2 yards.,31,19,2012 20120909_PIT@DEN,4,0,42,DEN,PIT,2,11,11,(:42) P.Manning kneels to PIT 12 for -1 yards.,31,19,2012 20120909_PIT@DEN,4,0,42,DEN,PIT,,,11,                      ,31,19,2012 20120910_CIN@BAL,1,0,0,CIN,BAL,,,11,M.Nugent kicks 71 yards from CIN 35 to BLT -6. D.Thompson to BLT 21 for 27 yards (B.Leonard).,0,0,2012 20120910_CIN@BAL,1,59,55,BAL,CIN,1,10,79,(14:55) J.Flacco pass deep middle to T.Smith to CIN 27 for 52 yards (L.Hall).,0,0,2012 20120910_CIN@BAL,1,59,7,BAL,CIN,1,10,27,(14:07) (No Huddle Shotgun) R.Rice left guard to CIN 21 for 6 yards (T.Mays).,0,0,2012 20120910_CIN@BAL,1,58,31,BAL,CIN,2,4,21,(13:31) (No Huddle Shotgun) J.Flacco pass incomplete short left to D.Pitta.,0,0,2012 20120910_CIN@BAL,1,58,27,BAL,CIN,3,4,21,(13:27) (No Huddle Shotgun) J.Flacco sacked at CIN 28 for -7 yards (G.Atkins).,0,0,2012 20120910_CIN@BAL,1,57,59,BAL,CIN,4,11,28,(12:59) (Field Goal formation) J.Tucker 46 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 20120910_CIN@BAL,1,57,59,BAL,CIN,,,28,J.Tucker kicks 69 yards from BLT 35 to CIN -4. B.Tate to CIN 21 for 25 yards (C.Brown).,3,0,2012 20120910_CIN@BAL,1,57,47,CIN,BAL,1,10,79,(12:47) A.Dalton pass incomplete short left to A.Green.,0,3,2012 20120910_CIN@BAL,1,57,43,CIN,BAL,2,10,79,(12:43) B.Green-Ellis right tackle to CIN 24 for 3 yards (R.Lewis J.McClain).,0,3,2012 20120910_CIN@BAL,1,57,4,CIN,BAL,3,7,76,(12:04) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham (B.Pollard).,0,3,2012 20120910_CIN@BAL,1,56,59,CIN,BAL,4,7,76,(11:59) (Punt formation) K.Huber punts 39 yards to BLT 37 Center-C.Harris downed by CIN-V.Burfict.,0,3,2012 20120910_CIN@BAL,1,56,48,BAL,CIN,1,10,63,(11:48) T.Smith left end pushed ob at CIN 50 for 13 yards (T.Mays). T. Smith runs a reverse after fake to Rice.,3,0,2012 20120910_CIN@BAL,1,56,14,BAL,CIN,1,10,50,(11:14) (No Huddle) J.Flacco pass short left to V.Leach pushed ob at CIN 40 for 10 yards (M.Lawson).,3,0,2012 20120910_CIN@BAL,1,55,40,BAL,CIN,1,10,50,(10:40) J.Flacco FUMBLES (Aborted) at CIN 50 recovered by BLT-A.Boldin at CIN 50. A.Boldin to CIN 50 for no gain (Mich.Johnson).,3,0,2012 20120910_CIN@BAL,1,55,25,BAL,CIN,2,20,50,(10:25) J.Flacco pass short right to J.Jones to CIN 45 for 5 yards (T.Newman).,3,0,2012 20120910_CIN@BAL,1,54,46,BAL,CIN,3,15,45,(9:46) (Shotgun) J.Flacco pass short right to J.Jones to CIN 29 for 16 yards (T.Newman).,3,0,2012 20120910_CIN@BAL,1,54,14,BAL,CIN,1,10,29,(9:14) (No Huddle) A.Boldin left end to CIN 26 for 3 yards (L.Hall).,3,0,2012 20120910_CIN@BAL,1,53,43,BAL,CIN,2,7,26,(8:43) R.Rice left guard to CIN 25 for 1 yard (R.Maualuga).,3,0,2012 20120910_CIN@BAL,1,53,7,BAL,CIN,3,6,25,(8:07) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to CIN 20 for 5 yards (T.Howard).,3,0,2012 20120910_CIN@BAL,1,52,22,BAL,CIN,4,1,20,(7:22) J.Flacco pass short right to R.Rice to CIN 19 for 1 yard (N.Clements).,3,0,2012 20120910_CIN@BAL,1,51,45,BAL,CIN,1,10,19,(6:45) (No Huddle Shotgun) J.Flacco pass incomplete short middle to D.Pitta (T.Howard).,3,0,2012 20120910_CIN@BAL,1,51,39,BAL,CIN,2,10,19,(6:39) (Shotgun) J.Flacco pass short left to D.Pitta to CIN 7 for 12 yards (M.Lawson).,3,0,2012 20120910_CIN@BAL,1,51,8,BAL,CIN,1,7,7,(6:08) (No Huddle) R.Rice right tackle for 7 yards TOUCHDOWN.,3,0,2012 20120910_CIN@BAL,1,51,8,BAL,CIN,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,0,2012 20120910_CIN@BAL,1,51,8,BAL,CIN,,,7,J.Tucker kicks 72 yards from BLT 35 to CIN -7. B.Tate to CIN 8 for 15 yards.,10,0,2012 20120910_CIN@BAL,1,51,3,CIN,BAL,1,10,92,(6:03) B.Green-Ellis up the middle to CIN 10 for 2 yards (M.Kemoeatu).,0,10,2012 20120910_CIN@BAL,1,50,53,CIN,BAL,2,8,90,(5:53) (Shotgun) PENALTY on BLT Illegal Substitution 5 yards enforced at CIN 10 - No Play.,0,10,2012 20120910_CIN@BAL,1,50,53,CIN,BAL,2,3,85,(5:53) A.Dalton pass short left to A.Hawkins to CIN 23 for 8 yards (L.Webb).,0,10,2012 20120910_CIN@BAL,1,49,16,CIN,BAL,1,10,77,(4:16) A.Dalton pass deep middle to A.Green to CIN 42 for 19 yards (L.Webb).,0,10,2012 20120910_CIN@BAL,1,48,39,CIN,BAL,1,10,58,(3:39) B.Green-Ellis left tackle to CIN 45 for 3 yards (R.Lewis B.Pollard).,0,10,2012 20120910_CIN@BAL,1,48,6,CIN,BAL,2,7,55,(3:06) A.Dalton pass incomplete deep middle to A.Green.,0,10,2012 20120910_CIN@BAL,1,48,6,CIN,BAL,3,7,55,(3:06) (Shotgun) PENALTY on BLT-P.McPhee Defensive Offside 5 yards enforced at CIN 45 - No Play.,0,10,2012 20120910_CIN@BAL,1,47,51,CIN,BAL,3,2,50,(2:51) B.Green-Ellis right guard to BLT 37 for 13 yards (R.Lewis).,0,10,2012 20120910_CIN@BAL,1,47,9,CIN,BAL,1,10,37,(2:09) (Shotgun) A.Dalton pass incomplete deep middle to A.Green (C.Williams).,0,10,2012 20120910_CIN@BAL,1,47,1,CIN,BAL,2,10,37,(2:01) A.Dalton pass short left to A.Binns to BLT 28 for 9 yards (C.Williams).,0,10,2012 20120910_CIN@BAL,1,46,22,CIN,BAL,3,1,28,(1:22) A.Dalton up the middle to BLT 23 for 5 yards (E.Reed).,0,10,2012 20120910_CIN@BAL,1,45,47,CIN,BAL,1,10,23,(:47) B.Green-Ellis right tackle to BLT 20 for 3 yards (R.Lewis).,0,10,2012 20120910_CIN@BAL,1,45,9,CIN,BAL,2,7,20,(:09) A.Dalton pass short right to A.Binns to BLT 16 for 4 yards (L.Webb).,0,10,2012 20120910_CIN@BAL,2,45,0,CIN,BAL,3,3,16,(15:00) A.Dalton pass incomplete short middle to J.Gresham.,0,10,2012 20120910_CIN@BAL,2,44,56,CIN,BAL,4,3,16,(14:56) (Field Goal formation) M.Nugent 34 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,0,10,2012 20120910_CIN@BAL,2,44,56,CIN,BAL,,,16,M.Nugent kicks 70 yards from CIN 35 to BLT -5. D.Thompson to BLT 18 for 23 yards (D.Skuta).,3,10,2012 20120910_CIN@BAL,2,44,46,BAL,CIN,1,10,82,(14:46) (Shotgun) R.Rice left guard to BLT 34 for 16 yards (T.Mays).,10,3,2012 20120910_CIN@BAL,2,44,12,BAL,CIN,1,10,66,(14:12) (No Huddle) R.Rice left guard to BLT 35 for 1 yard (D.Peko).,10,3,2012 20120910_CIN@BAL,2,43,40,BAL,CIN,2,9,65,(13:40) (Shotgun) J.Flacco pass short right to J.Jones to CIN 40 for 25 yards (R.Nelson).,10,3,2012 20120910_CIN@BAL,2,43,6,BAL,CIN,1,10,40,(13:06) (No Huddle Shotgun) R.Rice right guard to CIN 34 for 6 yards (T.Howard).,10,3,2012 20120910_CIN@BAL,2,42,34,BAL,CIN,2,4,34,(12:34) (No Huddle) J.Flacco pass deep middle to A.Boldin for 34 yards TOUCHDOWN.,10,3,2012 20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,10,3,2012 20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,18,3,2012 20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker kicks 73 yards from BLT 35 to CIN -8. B.Tate Touchback.,17,3,2012 20120910_CIN@BAL,2,42,25,CIN,BAL,1,10,80,(12:25) A.Dalton pass to A.Green to CIN 25 for 5 yards (E.Reed).,3,17,2012 20120910_CIN@BAL,2,42,2,CIN,BAL,2,5,75,(12:02) B.Green-Ellis left tackle to CIN 29 for 4 yards (H.Ngata).,3,17,2012 20120910_CIN@BAL,2,41,25,CIN,BAL,3,1,71,(11:25) B.Green-Ellis left end to CIN 41 for 12 yards (A.Jones).,3,17,2012 20120910_CIN@BAL,2,40,43,CIN,BAL,1,10,59,(10:43) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 47 for 6 yards (D.Ellerbe P.Kruger).,3,17,2012 20120910_CIN@BAL,2,40,10,CIN,BAL,2,4,53,(10:10) B.Green-Ellis left guard to CIN 49 for 2 yards (R.Lewis).,3,17,2012 20120910_CIN@BAL,2,39,26,CIN,BAL,3,2,51,(9:26) A.Dalton sacked at CIN 46 for -3 yards (H.Ngata).,3,17,2012 20120910_CIN@BAL,2,38,58,CIN,BAL,4,5,54,(8:58) (Punt formation) K.Huber punts 39 yards to BLT 15 Center-C.Harris. L.Webb to BLT 24 for 9 yards (C.Harris).,3,17,2012 20120910_CIN@BAL,2,38,45,BAL,CIN,1,10,76,(8:45) B.Pierce right guard to BLT 27 for 3 yards (D.Still).,17,3,2012 20120910_CIN@BAL,2,38,21,BAL,CIN,2,7,73,(8:21) J.Flacco pass incomplete short middle to E.Dickson. PENALTY on CIN-T.Mays Personal Foul 15 yards enforced at BLT 27 - No Play.,17,3,2012 20120910_CIN@BAL,2,38,16,BAL,CIN,1,10,58,(8:16) J.Flacco pass short right to A.Boldin to CIN 44 for 14 yards (N.Clements R.Nelson).,17,3,2012 20120910_CIN@BAL,2,37,41,BAL,CIN,1,10,44,(7:41) J.Flacco pass short left to V.Leach to CIN 31 for 13 yards (M.Lawson T.Mays). PENALTY on BLT-T.Smith Illegal Block Above the Waist 10 yards enforced at CIN 41.,17,3,2012 20120910_CIN@BAL,2,36,45,BAL,CIN,1,17,51,(6:45) J.Flacco pass short middle to R.Rice to CIN 45 for 6 yards (R.Maualuga).,17,3,2012 20120910_CIN@BAL,2,36,35,BAL,CIN,2,11,45,(6:35) (No Huddle Shotgun) J.Flacco pass incomplete short right to A.Boldin (R.Maualuga).,17,3,2012 20120910_CIN@BAL,2,36,31,BAL,CIN,3,11,45,(6:31) J.Flacco sacked at BLT 49 for -6 yards (T.Howard).,17,3,2012 20120910_CIN@BAL,2,36,2,BAL,CIN,4,17,51,(6:02) (Punt formation) S.Koch punts 37 yards to CIN 14 Center-M.Cox. B.Tate to CIN 19 for 5 yards (C.Graham).,17,3,2012 20120910_CIN@BAL,2,35,52,CIN,BAL,1,10,81,(5:52) A.Dalton pass incomplete deep left to A.Green (B.Pollard).,3,17,2012 20120910_CIN@BAL,2,35,46,CIN,BAL,2,10,81,(5:46) (Shotgun) A.Dalton pass short left to A.Hawkins pushed ob at CIN 46 for 27 yards (L.Webb).,3,17,2012 20120910_CIN@BAL,2,35,21,CIN,BAL,1,10,54,(5:21) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to CIN 50 for 4 yards (R.Lewis).,3,17,2012 20120910_CIN@BAL,2,34,41,CIN,BAL,2,6,50,(4:41) (Shotgun) B.Green-Ellis right guard to BLT 43 for 7 yards (D.Ellerbe R.Lewis).,3,17,2012 20120910_CIN@BAL,2,34,1,CIN,BAL,1,10,43,(4:01) (Shotgun) A.Dalton pass short left to B.Tate pushed ob at BLT 40 for 3 yards (C.Williams).,3,17,2012 20120910_CIN@BAL,2,33,28,CIN,BAL,2,7,40,(3:28) A.Dalton pass short middle to A.Hawkins to BLT 34 for 6 yards (R.Lewis).,3,17,2012 20120910_CIN@BAL,2,33,5,CIN,BAL,3,1,34,(3:05) (No Huddle) A.Dalton up the middle to BLT 34 for no gain (C.Upshaw H.Ngata). QB sneak by Andy Dalton comes up short.,3,17,2012 20120910_CIN@BAL,2,32,36,CIN,BAL,4,1,34,(2:36) B.Green-Ellis right guard to BLT 30 for 4 yards (A.Jones).,3,17,2012 20120910_CIN@BAL,2,32,0,CIN,BAL,1,10,30,(2:00) (Shotgun) A.Dalton pass short middle to A.Green to BLT 15 for 15 yards (A.McClellan).,3,17,2012 20120910_CIN@BAL,2,31,28,CIN,BAL,1,10,15,(1:28) B.Green-Ellis right tackle to BLT 12 for 3 yards (R.Lewis).,3,17,2012 20120910_CIN@BAL,2,30,50,CIN,BAL,2,7,12,(:50) (Shotgun) A.Dalton pass short right to J.Gresham to BLT 6 for 6 yards (B.Pollard).,3,17,2012 20120910_CIN@BAL,2,30,35,CIN,BAL,3,1,6,(:35) A.Dalton pass incomplete short right to J.Gresham (E.Reed).,3,17,2012 20120910_CIN@BAL,2,30,27,CIN,BAL,4,1,6,(:27) B.Green-Ellis left guard for 6 yards TOUCHDOWN.,3,17,2012 20120910_CIN@BAL,2,30,27,CIN,BAL,,,6,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,3,17,2012 20120910_CIN@BAL,2,30,27,CIN,BAL,,,6,M.Nugent kicks 68 yards from CIN 35 to BLT -3. D.Thompson to BLT 25 for 28 yards (C.Peerman). PENALTY on BLT-S.Considine Offensive Holding 10 yards enforced at BLT 21.,10,17,2012 20120910_CIN@BAL,2,30,18,BAL,CIN,1,10,89,(:18) J.Flacco kneels to BLT 10 for -1 yards.,17,10,2012 20120910_CIN@BAL,3,30,0,BAL,CIN,,,89,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,17,10,2012 20120910_CIN@BAL,3,30,0,CIN,BAL,1,10,80,(15:00) A.Dalton pass short left to A.Green to CIN 34 for 14 yards (C.Williams R.Lewis).,10,17,2012 20120910_CIN@BAL,3,29,21,CIN,BAL,1,10,66,(14:21) B.Green-Ellis left guard to CIN 43 for 9 yards (J.McClain R.Lewis).,10,17,2012 20120910_CIN@BAL,3,28,50,CIN,BAL,2,1,57,(13:50) B.Green-Ellis left tackle to CIN 45 for 2 yards (D.Ellerbe B.Pollard).,10,17,2012 20120910_CIN@BAL,3,28,16,CIN,BAL,1,10,55,(13:16) (Shotgun) A.Dalton pass deep right to A.Green to BLT 38 for 17 yards (B.Pollard).,10,17,2012 20120910_CIN@BAL,3,27,34,CIN,BAL,1,10,38,(12:34) B.Green-Ellis left tackle to BLT 36 for 2 yards (L.Webb).,10,17,2012 20120910_CIN@BAL,3,26,59,CIN,BAL,2,8,36,(11:59) (Shotgun) A.Dalton pass short right to A.Hawkins pushed ob at BLT 25 for 11 yards (R.Lewis).,10,17,2012 20120910_CIN@BAL,3,26,35,CIN,BAL,1,10,25,(11:35) B.Leonard up the middle to BLT 22 for 3 yards (D.Ellerbe).,10,17,2012 20120910_CIN@BAL,3,25,57,CIN,BAL,2,7,22,(10:57) A.Dalton pass short left to A.Hawkins pushed ob at BLT 8 for 14 yards (C.Williams).,10,17,2012 20120910_CIN@BAL,3,25,30,CIN,BAL,1,8,8,(10:30) B.Green-Ellis left guard to BLT 7 for 1 yard (B.Pollard).,10,17,2012 20120910_CIN@BAL,3,24,51,CIN,BAL,2,7,7,(9:51) (Shotgun) A.Dalton pass incomplete short middle to A.Green.,10,17,2012 20120910_CIN@BAL,3,24,47,CIN,BAL,3,7,7,(9:47) (Shotgun) A.Dalton up the middle to BLT 1 for 6 yards (L.Webb).,10,17,2012 20120910_CIN@BAL,3,24,47,CIN,BAL,4,1,1,(9:47) (Field Goal formation) M.Nugent 19 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,17,2012 20120910_CIN@BAL,3,24,47,CIN,BAL,,,1,M.Nugent kicks 68 yards from CIN 35 to BLT -3. D.Thompson to BLT 11 for 14 yards (C.Peerman).,13,17,2012 20120910_CIN@BAL,3,23,54,BAL,CIN,1,10,89,(8:54) PENALTY on BLT-T.Smith False Start 5 yards enforced at BLT 11 - No Play.,17,13,2012 20120910_CIN@BAL,3,23,54,BAL,CIN,1,15,94,(8:54) J.Flacco pass deep middle to D.Pitta to BLT 29 for 23 yards (R.Maualuga).,17,13,2012 20120910_CIN@BAL,3,23,24,BAL,CIN,1,10,71,(8:24) (No Huddle) J.Flacco pass short left to D.Pitta to BLT 32 for 3 yards (R.Nelson).,17,13,2012 20120910_CIN@BAL,3,22,59,BAL,CIN,2,7,68,(7:59) (No Huddle) J.Flacco pass incomplete short left to A.Boldin (L.Hall). PENALTY on CIN-L.Hall Defensive Pass Interference 6 yards enforced at BLT 32 - No Play.,17,13,2012 20120910_CIN@BAL,3,22,54,BAL,CIN,1,10,62,(7:54) J.Flacco pass incomplete short middle to D.Pitta (R.Nelson).,17,13,2012 20120910_CIN@BAL,3,22,49,BAL,CIN,2,10,62,(7:49) (No Huddle Shotgun) J.Flacco pass short left to R.Rice pushed ob at CIN 44 for 18 yards.,17,13,2012 20120910_CIN@BAL,3,22,21,BAL,CIN,1,10,44,(7:21) (No Huddle) R.Rice left guard to CIN 31 for 13 yards (L.Hall J.Miles).,17,13,2012 20120910_CIN@BAL,3,21,49,BAL,CIN,1,10,31,(6:49) (No Huddle) J.Flacco pass deep left to E.Dickson to CIN 12 for 19 yards (J.Miles).,17,13,2012 20120910_CIN@BAL,3,21,11,BAL,CIN,1,10,12,(6:11) (No Huddle) B.Pierce left guard to CIN 10 for 2 yards (M.Lawson D.Peko).,17,13,2012 20120910_CIN@BAL,3,20,33,BAL,CIN,2,8,10,(5:33) (No Huddle) J.Flacco pass incomplete short left to R.Rice (L.Hall) [D.Peko].,17,13,2012 20120910_CIN@BAL,3,20,25,BAL,CIN,3,8,10,(5:25) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta for 10 yards TOUCHDOWN.,17,13,2012 20120910_CIN@BAL,3,20,25,BAL,CIN,,,10,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,17,13,2012 20120910_CIN@BAL,3,20,25,BAL,CIN,,,10,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,24,13,2012 20120910_CIN@BAL,3,20,18,CIN,BAL,1,10,80,(5:18) A.Dalton pass incomplete short right to A.Hawkins.,13,24,2012 20120910_CIN@BAL,3,20,13,CIN,BAL,2,10,80,(5:13) (Shotgun) A.Dalton pass incomplete short left to A.Binns (C.Williams).,13,24,2012 20120910_CIN@BAL,3,20,9,CIN,BAL,3,10,80,(5:09) (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 40 for 20 yards (B.Pollard). Baltimore challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 26 for 6 yards (R.Lewis).,13,24,2012 20120910_CIN@BAL,3,19,33,CIN,BAL,4,4,74,(4:33) (Punt formation) K.Huber punts 57 yards to BLT 17 Center-C.Harris. J.Jones to BLT 26 for 9 yards (C.Harris).,13,24,2012 20120910_CIN@BAL,3,19,22,BAL,CIN,1,10,74,(4:22) J.Flacco pass deep middle to D.Pitta to CIN 49 for 25 yards (R.Nelson).,24,13,2012 20120910_CIN@BAL,3,18,45,BAL,CIN,1,10,49,(3:45) J.Flacco pass short left to A.Boldin to CIN 39 for 10 yards (L.Hall).,24,13,2012 20120910_CIN@BAL,3,18,3,BAL,CIN,1,10,39,(3:03) J.Flacco pass short right to E.Dickson to CIN 36 for 3 yards (J.Miles).,24,13,2012 20120910_CIN@BAL,3,17,26,BAL,CIN,2,7,36,(2:26) (No Huddle) R.Rice left guard to CIN 26 for 10 yards (R.Nelson T.Newman).,24,13,2012 20120910_CIN@BAL,3,16,49,BAL,CIN,1,10,26,(1:49) J.Flacco pass short left to T.Smith pushed ob at CIN 21 for 5 yards (R.Nelson).,24,13,2012 20120910_CIN@BAL,3,16,29,BAL,CIN,2,5,21,(1:29) (No Huddle) J.Flacco pass incomplete deep middle to T.Smith.,24,13,2012 20120910_CIN@BAL,3,16,23,BAL,CIN,3,5,21,(1:23) (Shotgun) J.Flacco pass incomplete deep middle to E.Dickson (N.Clements).,24,13,2012 20120910_CIN@BAL,3,16,18,BAL,CIN,4,5,21,(1:18) (Field Goal formation) J.Tucker 40 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,24,13,2012 20120910_CIN@BAL,3,16,18,BAL,CIN,,,21,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,27,13,2012 20120910_CIN@BAL,3,16,13,CIN,BAL,1,10,80,(1:13) B.Green-Ellis left tackle to CIN 21 for 1 yard (A.Jones).,13,27,2012 20120910_CIN@BAL,3,15,29,CIN,BAL,2,9,79,(:29) A.Dalton pass incomplete deep left to A.Green.,13,27,2012 20120910_CIN@BAL,3,15,22,CIN,BAL,3,9,79,(:22) (Shotgun) A.Dalton pass short left intended for B.Tate INTERCEPTED by E.Reed at CIN 34. E.Reed for 34 yards TOUCHDOWN. Ed Reed is now NFL's all-time leader with 1497 interception return yards.,13,27,2012 20120910_CIN@BAL,3,15,22,BAL,CIN,,,79,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,27,13,2012 20120910_CIN@BAL,3,15,22,BAL,CIN,,,79,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback. BLT-C.Graham was injured during the play.,34,13,2012 20120910_CIN@BAL,3,15,13,CIN,BAL,1,10,80,(:13) A.Dalton pass short left to A.Binns to CIN 28 for 8 yards (C.Williams D.Ellerbe).,13,34,2012 20120910_CIN@BAL,4,15,0,CIN,BAL,2,2,72,(15:00) (Shotgun) A.Dalton pass incomplete short middle to B.Green-Ellis (H.Ngata) [L.Webb].,13,34,2012 20120910_CIN@BAL,4,14,57,CIN,BAL,3,2,72,(14:57) (Shotgun) A.Dalton sacked at CIN 28 for 0 yards (R.Lewis). FUMBLES (R.Lewis) RECOVERED by BLT-L.Webb at CIN 28. L.Webb to CIN 28 for no gain (A.Smith).,13,34,2012 20120910_CIN@BAL,4,14,48,BAL,CIN,1,10,28,(14:48) R.Rice left end to CIN 21 for 7 yards (M.Lawson R.Maualuga).,34,13,2012 20120910_CIN@BAL,4,14,18,BAL,CIN,2,3,21,(14:18) J.Flacco pass incomplete deep right to T.Smith. PENALTY on CIN-N.Clements Defensive Pass Interference 20 yards enforced at CIN 21 - No Play.,34,13,2012 20120910_CIN@BAL,4,14,9,BAL,CIN,1,1,1,(14:09) R.Rice left guard for 1 yard TOUCHDOWN.,34,13,2012 20120910_CIN@BAL,4,14,9,BAL,CIN,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,34,13,2012 20120910_CIN@BAL,4,14,9,BAL,CIN,,,1,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,41,13,2012 20120910_CIN@BAL,4,14,4,CIN,BAL,1,10,80,(14:04) (Shotgun) A.Dalton pass short left to J.Gresham pushed ob at CIN 33 for 13 yards (B.Pollard).,13,41,2012 20120910_CIN@BAL,4,13,42,CIN,BAL,1,10,67,(13:42) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 44 for 11 yards (D.Ellerbe).,13,41,2012 20120910_CIN@BAL,4,13,10,CIN,BAL,1,10,56,(13:10) (Shotgun) A.Dalton pass incomplete short right to J.Gresham [L.Webb]. PENALTY on BLT-L.Webb Personal Foul 15 yards enforced at CIN 44 - No Play.,13,41,2012 20120910_CIN@BAL,4,13,4,CIN,BAL,1,10,41,(13:04) (Shotgun) B.Green-Ellis right guard to BLT 27 for 14 yards (L.Webb J.Ihedigbo).,13,41,2012 20120910_CIN@BAL,4,12,28,CIN,BAL,1,10,27,(12:28) (Shotgun) A.Dalton sacked at BLT 40 for -13 yards (H.Ngata).,13,41,2012 20120910_CIN@BAL,4,11,54,CIN,BAL,2,23,40,(11:54) (Shotgun) A.Dalton pass incomplete short right to J.Gresham.,13,41,2012 20120910_CIN@BAL,4,11,47,CIN,BAL,3,23,40,(11:47) (Shotgun) A.Dalton pass short middle to A.Hawkins to BLT 32 for 8 yards (D.Ellerbe).,13,41,2012 20120910_CIN@BAL,4,11,6,CIN,BAL,4,15,32,(11:06) (Shotgun) A.Dalton sacked at BLT 44 for -12 yards (sack split by P.McPhee and C.Upshaw).,13,41,2012 20120910_CIN@BAL,4,10,57,BAL,CIN,1,10,56,(10:57) B.Pierce right end to BLT 47 for 3 yards (D.Peko).,41,13,2012 20120910_CIN@BAL,4,10,23,BAL,CIN,2,7,53,(10:23) J.Flacco pass incomplete deep left to D.Pitta.,41,13,2012 20120910_CIN@BAL,4,10,16,BAL,CIN,3,7,53,(10:16) (Shotgun) J.Flacco sacked at BLT 39 for -8 yards (G.Atkins).,41,13,2012 20120910_CIN@BAL,4,9,59,BAL,CIN,4,15,61,(9:59) (Punt formation) S.Koch punts 50 yards to CIN 11 Center-M.Cox. B.Tate to CIN 25 for 14 yards (A.Allen).,41,13,2012 20120910_CIN@BAL,4,9,47,CIN,BAL,1,10,75,(9:47) A.Dalton pass short left to A.Binns to CIN 32 for 7 yards (C.Williams).,13,41,2012 20120910_CIN@BAL,4,9,16,CIN,BAL,2,3,68,(9:16) (Shotgun) B.Leonard right guard to CIN 33 for 1 yard (A.Jones).,13,41,2012 20120910_CIN@BAL,4,8,35,CIN,BAL,3,2,67,(8:35) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (L.Webb J.McClain).,13,41,2012 20120910_CIN@BAL,4,8,30,CIN,BAL,4,2,67,(8:30) (Punt formation) K.Huber punts 48 yards to BLT 19 Center-C.Harris fair catch by L.Webb.,13,41,2012 20120910_CIN@BAL,4,8,23,BAL,CIN,1,10,81,(8:23) B.Pierce right end to BLT 30 for 11 yards (N.Clements).,41,13,2012 20120910_CIN@BAL,4,7,40,BAL,CIN,1,10,70,(7:40) A.Allen up the middle to BLT 36 for 6 yards (D.Still).,41,13,2012 20120910_CIN@BAL,4,6,55,BAL,CIN,2,4,64,(6:55) A.Allen right guard to BLT 43 for 7 yards (M.Lawson R.Maualuga).,41,13,2012 20120910_CIN@BAL,4,6,13,BAL,CIN,1,10,57,(6:13) A.Allen left tackle to BLT 43 for no gain (D.Skuta D.Peko).,41,13,2012 20120910_CIN@BAL,4,5,35,BAL,CIN,2,10,57,(5:35) T.Taylor pass short left to V.Leach to BLT 48 for 5 yards (R.Nelson).,41,13,2012 20120910_CIN@BAL,4,4,51,BAL,CIN,3,5,52,(4:51) (Shotgun) T.Taylor pass short left to D.Thompson pushed ob at CIN 27 for 25 yards (R.Nelson).,41,13,2012 20120910_CIN@BAL,4,4,25,BAL,CIN,1,10,27,(4:25) A.Allen right tackle to CIN 27 for no gain (B.Thompson).,41,13,2012 20120910_CIN@BAL,4,4,3,BAL,CIN,2,10,27,(4:03) T.Taylor scrambles left end to CIN 20 for 7 yards (Mich.Johnson).,41,13,2012 20120910_CIN@BAL,4,3,14,BAL,CIN,3,3,20,(3:14) (Shotgun) T.Taylor pass incomplete deep left to D.Thompson (L.Hall).,41,13,2012 20120910_CIN@BAL,4,3,6,BAL,CIN,4,3,20,(3:06) (Field Goal formation) J.Tucker 39 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,41,13,2012 20120910_CIN@BAL,4,3,6,BAL,CIN,,,20,J.Tucker kicks 67 yards from BLT 35 to CIN -2. B.Tate to CIN 22 for 24 yards (C.Brown).,44,13,2012 20120910_CIN@BAL,4,2,55,CIN,BAL,1,10,78,(2:55) B.Leonard right tackle to CIN 23 for 1 yard (A.McClellan C.Upshaw).,13,44,2012 20120910_CIN@BAL,4,2,21,CIN,BAL,2,9,77,(2:21) C.Peerman up the middle to CIN 31 for 8 yards (C.Upshaw; C.Graham).,13,44,2012 20120910_CIN@BAL,4,2,0,CIN,BAL,3,1,69,(2:00) C.Peerman right guard to CIN 44 for 13 yards (C.Graham).,13,44,2012 20120910_CIN@BAL,4,1,24,CIN,BAL,1,10,56,(1:24) C.Peerman right guard to CIN 45 for 1 yard (T.Cody).,13,44,2012 20120910_CIN@BAL,4,0,41,CIN,BAL,2,9,60,(:41) B.Gradkowski FUMBLES (Aborted) at CIN 45 and recovers at CIN 40. B.Gradkowski to CIN 40 for no gain (J.Ihedigbo).,13,44,2012 20120910_CIN@BAL,4,0,41,CIN,BAL,,,60,                      ,13,44,2012 20120910_SD@OAK,1,0,0,SD,OAK,,,60,N.Kaeding kicks 57 yards from SD 35 to OAK 8. T.Jones to OAK 14 for 6 yards (S.Wright J.Battle).,0,0,2012 20120910_SD@OAK,1,59,56,OAK,SD,1,10,86,(14:56) C.Palmer pass short left to D.McFadden to OAK 23 for 9 yards (T.Spikes).,0,0,2012 20120910_SD@OAK,1,59,19,OAK,SD,2,1,77,(14:19) D.McFadden up the middle to OAK 26 for 3 yards (A.Bigby).,0,0,2012 20120910_SD@OAK,1,58,43,OAK,SD,1,10,74,(13:43) C.Palmer pass incomplete short right to D.Heyward-Bey (A.Cason).,0,0,2012 20120910_SD@OAK,1,58,36,OAK,SD,2,10,74,(13:36) D.McFadden up the middle to OAK 26 for no gain (C.Liuget).,0,0,2012 20120910_SD@OAK,1,58,0,OAK,SD,3,10,74,(13:00) (Shotgun) C.Palmer pass short left to D.Hagan to OAK 39 for 13 yards (A.Cason).,0,0,2012 20120910_SD@OAK,1,57,34,OAK,SD,1,10,61,(12:34) C.Palmer pass short right to D.Heyward-Bey to OAK 48 for 9 yards (Q.Jammer T.Spikes).,0,0,2012 20120910_SD@OAK,1,56,47,OAK,SD,2,1,52,(11:47) D.McFadden left end to SD 44 for 8 yards (E.Weddle).,0,0,2012 20120910_SD@OAK,1,56,17,OAK,SD,1,10,44,(11:17) (Shotgun) C.Palmer pass short right to D.McFadden to SD 45 for -1 yards (A.Bigby).,0,0,2012 20120910_SD@OAK,1,55,41,OAK,SD,2,11,45,(10:41) M.Goodson right tackle to SD 43 for 2 yards (C.Liuget).,0,0,2012 20120910_SD@OAK,1,55,3,OAK,SD,3,9,43,(10:03) (Shotgun) C.Palmer pass incomplete short left to D.Hagan. PENALTY on SD-M.Ingram Defensive Offside 5 yards enforced at SD 43 - No Play.,0,0,2012 20120910_SD@OAK,1,54,58,OAK,SD,3,4,38,(9:58) (Shotgun) C.Palmer pass short middle to R.Streater to SD 30 for 8 yards (M.Ingram). FUMBLES (M.Ingram) RECOVERED by SD-A.Barnes at SD 29. A.Barnes to SD 29 for no gain (M.Brisiel).,0,0,2012 20120910_SD@OAK,1,54,49,SD,OAK,1,10,71,(9:49) R.Brown right end to SD 29 for no gain (R.Seymour).,0,0,2012 20120910_SD@OAK,1,54,9,SD,OAK,2,10,71,(9:09) (Shotgun) P.Rivers pass short left to R.Brown to SD 33 for 4 yards (M.Huff P.Wheeler).,0,0,2012 20120910_SD@OAK,1,53,24,SD,OAK,3,6,67,(8:24) (Shotgun) P.Rivers sacked at SD 28 for -5 yards (sack split by M.Shaughnessy and P.Wheeler).,0,0,2012 20120910_SD@OAK,1,53,0,SD,OAK,4,11,72,(8:00) M.Scifres punts 53 yards to OAK 19 Center-M.Windt. P.Adams to OAK 34 for 15 yards (D.Stuckey).,0,0,2012 20120910_SD@OAK,1,52,51,OAK,SD,1,10,66,(7:51) D.McFadden left end to OAK 41 for 7 yards (J.Johnson).,0,0,2012 20120910_SD@OAK,1,52,14,OAK,SD,2,3,59,(7:14) C.Palmer pass short right to D.McFadden to 50 for 9 yards (D.Butler).,0,0,2012 20120910_SD@OAK,1,51,52,OAK,SD,1,10,50,(6:52) C.Palmer pass short right to D.Heyward-Bey to SD 37 for 13 yards (Q.Jammer).,0,0,2012 20120910_SD@OAK,1,51,22,OAK,SD,1,10,37,(6:22) D.McFadden right tackle to SD 37 for no gain (D.Butler J.Johnson).,0,0,2012 20120910_SD@OAK,1,50,44,OAK,SD,2,10,37,(5:44) (Shotgun) C.Palmer pass incomplete short right to D.McFadden (Q.Jammer).,0,0,2012 20120910_SD@OAK,1,50,40,OAK,SD,3,10,37,(5:40) (Shotgun) C.Palmer pass short middle to R.Streater to SD 33 for 4 yards (Q.Jammer).,0,0,2012 20120910_SD@OAK,1,50,2,OAK,SD,4,6,33,(5:02) S.Janikowski 51 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 20120910_SD@OAK,1,50,2,OAK,SD,,,33,S.Janikowski kicks 69 yards from OAK 35 to SD -4. R.Goodman to SD 21 for 25 yards (T.Jones D.Ausberry).,3,0,2012 20120910_SD@OAK,1,49,51,SD,OAK,1,10,79,(4:51) E.Royal right end to SD 32 for 11 yards (M.Huff).,0,3,2012 20120910_SD@OAK,1,49,20,SD,OAK,1,10,68,(4:20) (Shotgun) P.Rivers pass incomplete short right to C.Brinkley.,0,3,2012 20120910_SD@OAK,1,49,13,SD,OAK,2,10,68,(4:13) C.Brinkley right tackle to SD 34 for 2 yards (R.McClain).,0,3,2012 20120910_SD@OAK,1,48,29,SD,OAK,3,8,66,(3:29) (Shotgun) P.Rivers pass deep right to R.Meachem to OAK 20 for 46 yards (R.Bartell).,0,3,2012 20120910_SD@OAK,1,47,43,SD,OAK,1,10,20,(2:43) P.Rivers pass short right to C.Brinkley to OAK 8 for 12 yards (P.Wheeler).,0,3,2012 20120910_SD@OAK,1,46,56,SD,OAK,1,8,8,(1:56) P.Rivers pass short middle to L.McClain to OAK 5 for 3 yards (P.Wheeler; T.Kelly).,0,3,2012 20120910_SD@OAK,1,46,13,SD,OAK,2,5,5,(1:13) (Shotgun) P.Rivers pass incomplete short left to M.Floyd.,0,3,2012 20120910_SD@OAK,1,46,7,SD,OAK,3,5,5,(1:07) (Shotgun) P.Rivers pass incomplete short middle to A.Gates.,0,3,2012 20120910_SD@OAK,1,46,4,SD,OAK,4,5,5,(1:04) N.Kaeding 23 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,0,3,2012 20120910_SD@OAK,1,46,0,OAK,SD,1,10,90,(1:00) D.McFadden right tackle to OAK 14 for 4 yards (A.Franklin).,3,3,2012 20120910_SD@OAK,1,45,22,OAK,SD,2,6,86,(:22) D.McFadden right guard to OAK 19 for 5 yards (D.Butler).,3,3,2012 20120910_SD@OAK,2,45,0,OAK,SD,3,1,81,(15:00) D.McFadden right tackle to OAK 20 for 1 yard (V.Martin).,3,3,2012 20120910_SD@OAK,2,44,19,OAK,SD,1,10,80,(14:19) C.Palmer pass short middle to R.Streater to OAK 33 for 13 yards (D.Butler).,3,3,2012 20120910_SD@OAK,2,43,39,OAK,SD,1,10,90,(13:39) M.Reece FUMBLES (Aborted) at OAK 26 recovered by OAK-T.Jones at OAK 10. T.Jones to OAK 8 for -2 yards (A.Bigby).,3,3,2012 20120910_SD@OAK,2,42,49,OAK,SD,2,35,92,(12:49) M.Goodson left tackle to OAK 19 for 11 yards (E.Weddle).,3,3,2012 20120910_SD@OAK,2,42,8,OAK,SD,3,24,81,(12:08) (Shotgun) C.Palmer pass short right to D.McFadden to OAK 22 for 3 yards (Q.Jammer).,3,3,2012 20120910_SD@OAK,2,41,34,OAK,SD,4,21,78,(11:34) S.Lechler punts 62 yards to SD 16 Center-J.Condo. E.Royal to OAK 38 for 46 yards (M.Giordano). OAK-J.Condo was injured during the play. His return is Questionable. PENALTY on SD-D.Stuckey Illegal Block Above the Waist 10 yards enforced at SD 20.,3,3,2012 20120910_SD@OAK,2,41,16,SD,OAK,1,10,90,(11:16) C.Brinkley right guard to SD 12 for 2 yards (R.McClain M.Burris).,3,3,2012 20120910_SD@OAK,2,40,35,SD,OAK,2,8,88,(10:35) (Shotgun) P.Rivers pass short right to E.Royal to SD 19 for 7 yards (T.Branch).,3,3,2012 20120910_SD@OAK,2,40,4,SD,OAK,3,1,81,(10:04) PENALTY on OAK-T.Kelly Encroachment 5 yards enforced at SD 19 - No Play.,3,3,2012 20120910_SD@OAK,2,39,45,SD,OAK,1,10,76,(9:45) P.Rivers pass incomplete short left to C.Brinkley. PENALTY on OAK-T.Branch Defensive Holding 5 yards enforced at SD 24 - No Play.,3,3,2012 20120910_SD@OAK,2,39,38,SD,OAK,1,10,71,(9:38) (Shotgun) P.Rivers pass short right to R.Brown to SD 35 for 6 yards (T.Branch).,3,3,2012 20120910_SD@OAK,2,39,0,SD,OAK,2,4,65,(9:00) R.Brown up the middle to SD 36 for 1 yard (R.McClain).,3,3,2012 20120910_SD@OAK,2,38,19,SD,OAK,3,3,64,(8:19) (Shotgun) P.Rivers pass incomplete deep right to A.Gates. PENALTY on OAK-T.Kelly Defensive Offside 5 yards enforced at SD 36 - No Play.,3,3,2012 20120910_SD@OAK,2,38,13,SD,OAK,1,10,59,(8:13) (Shotgun) P.Rivers pass short right to E.Royal to SD 38 for -3 yards (M.Burris).,3,3,2012 20120910_SD@OAK,2,37,26,SD,OAK,2,13,62,(7:26) P.Rivers pass deep right to M.Floyd to OAK 39 for 23 yards (R.Bartell).,3,3,2012 20120910_SD@OAK,2,36,57,SD,OAK,1,10,39,(6:57) (Shotgun) P.Rivers pass short middle to A.Gates to OAK 29 for 10 yards (T.Branch R.Bartell).,3,3,2012 20120910_SD@OAK,2,36,13,SD,OAK,1,10,29,(6:13) P.Rivers pass short right to L.McClain to OAK 22 for 7 yards (L.Houston).,3,3,2012 20120910_SD@OAK,2,35,35,SD,OAK,2,3,22,(5:35) C.Brinkley left tackle to OAK 24 for -2 yards (M.Burris).,3,3,2012 20120910_SD@OAK,2,34,52,SD,OAK,3,5,24,(4:52) (Shotgun) P.Rivers pass deep left to A.Gates to OAK 7 for 17 yards (T.Branch).,3,3,2012 20120910_SD@OAK,2,34,9,SD,OAK,1,7,7,(4:09) C.Brinkley left guard to OAK 6 for 1 yard (R.Seymour).,3,3,2012 20120910_SD@OAK,2,33,24,SD,OAK,2,6,6,(3:24) (Shotgun) P.Rivers pass incomplete short left to D.Rosario.,3,3,2012 20120910_SD@OAK,2,33,17,SD,OAK,3,6,6,(3:17) (Shotgun) P.Rivers pass short middle to M.Floyd for 6 yards TOUCHDOWN.,3,3,2012 20120910_SD@OAK,2,33,17,SD,OAK,,,6,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,3,3,2012 20120910_SD@OAK,2,33,17,SD,OAK,,,6,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,10,3,2012 20120910_SD@OAK,2,33,10,OAK,SD,1,10,80,(3:10) C.Palmer pass incomplete short right to D.McFadden.,3,10,2012 20120910_SD@OAK,2,33,5,OAK,SD,2,10,80,(3:05) D.McFadden right tackle to OAK 27 for 7 yards (D.Butler; A.Bigby).,3,10,2012 20120910_SD@OAK,2,32,28,OAK,SD,3,3,73,(2:28) C.Palmer pass short middle to M.Reece to OAK 42 for 15 yards (A.Bigby).,3,10,2012 20120910_SD@OAK,2,32,0,OAK,SD,1,10,58,(2:00) C.Palmer pass short middle to D.McFadden to OAK 46 for 4 yards (J.Johnson).,3,10,2012 20120910_SD@OAK,2,31,26,OAK,SD,2,6,54,(1:26) (Shotgun) C.Palmer pass incomplete short left to D.McFadden.,3,10,2012 20120910_SD@OAK,2,31,20,OAK,SD,3,6,54,(1:20) (Shotgun) C.Palmer pass short middle to D.McFadden to SD 42 for 12 yards (E.Weddle).,3,10,2012 20120910_SD@OAK,2,31,12,OAK,SD,1,10,42,(1:12) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,3,10,2012 20120910_SD@OAK,2,31,8,OAK,SD,2,10,42,(1:08) (Shotgun) C.Palmer pass short right to D.Hagan to SD 32 for 10 yards (Q.Jammer).,3,10,2012 20120910_SD@OAK,2,30,44,OAK,SD,1,10,32,(:44) (No Huddle Shotgun) C.Palmer pass short middle to D.Hagan to SD 28 for 4 yards (D.Williams).,3,10,2012 20120910_SD@OAK,2,30,38,OAK,SD,2,6,28,(:38) (Shotgun) C.Palmer pass short left to D.McFadden to SD 11 for 17 yards (A.Bigby).,3,10,2012 20120910_SD@OAK,2,30,26,OAK,SD,1,10,11,(:26) C.Palmer pass incomplete short left to R.Streater.,3,10,2012 20120910_SD@OAK,2,30,23,OAK,SD,2,10,11,(:23) C.Palmer pass incomplete short middle to D.Hagan (A.Bigby).,3,10,2012 20120910_SD@OAK,2,30,16,OAK,SD,3,10,11,(:16) (Shotgun) PENALTY on OAK-C.Palmer Delay of Game 5 yards enforced at SD 11 - No Play.,3,10,2012 20120910_SD@OAK,2,30,16,OAK,SD,3,15,16,(:16) (Shotgun) C.Palmer pass short middle to D.McFadden to SD 1 for 15 yards (Q.Jammer; M.Gilchrist). The Replay Assistant challenged the first down ruling and the play was REVERSED. (Shotgun) C.Palmer pass short middle to D.McFadden to SD 2 for 14 yards (Q.Jammer M.Gilchrist).,3,10,2012 20120910_SD@OAK,2,30,7,OAK,SD,4,1,2,(:07) S.Janikowski 19 yard field goal is GOOD Center-T.Goethel Holder-S.Lechler.,3,10,2012 20120910_SD@OAK,2,30,7,OAK,SD,,,2,S.Janikowski kicks 49 yards from OAK 35 to SD 16. R.Goodman to SD 33 for 17 yards (P.Lee).,6,10,2012 20120910_SD@OAK,3,30,0,OAK,SD,,,2,S.Janikowski kicks 70 yards from OAK 35 to SD -5. R.Goodman to SD 29 for 34 yards (M.Mitchell).,6,10,2012 20120910_SD@OAK,3,29,54,SD,OAK,1,10,71,(14:54) C.Brinkley left guard to SD 29 for no gain (L.Houston).,10,6,2012 20120910_SD@OAK,3,29,10,SD,OAK,2,10,71,(14:10) (Shotgun) P.Rivers pass short right to R.Brown to SD 33 for 4 yards (T.Kelly).,10,6,2012 20120910_SD@OAK,3,28,25,SD,OAK,3,6,67,(13:25) (Shotgun) P.Rivers pass short middle to A.Gates to SD 38 for 5 yards (R.McClain; P.Wheeler).,10,6,2012 20120910_SD@OAK,3,27,34,SD,OAK,4,1,62,(12:34) M.Scifres punts 55 yards to OAK 7 Center-M.Windt fair catch by P.Adams.,10,6,2012 20120910_SD@OAK,3,27,25,OAK,SD,1,10,93,(12:25) D.McFadden right end to OAK 12 for 5 yards (T.Spikes).,6,10,2012 20120910_SD@OAK,3,26,43,OAK,SD,2,5,88,(11:43) (No Huddle) D.McFadden right tackle to OAK 15 for 3 yards (T.Spikes).,6,10,2012 20120910_SD@OAK,3,26,2,OAK,SD,3,2,85,(11:02) (Shotgun) C.Palmer pass incomplete short middle to D.Hagan (Q.Jammer). PENALTY on SD-Q.Jammer Defensive Pass Interference 17 yards enforced at OAK 15 - No Play.,6,10,2012 20120910_SD@OAK,3,25,56,OAK,SD,1,10,68,(10:56) C.Palmer pass short left to D.Ausberry to OAK 44 for 12 yards (A.Bigby).,6,10,2012 20120910_SD@OAK,3,25,49,OAK,SD,1,10,56,(10:49) (No Huddle) PENALTY on SD-V.Martin Neutral Zone Infraction 5 yards enforced at OAK 44 - No Play.,6,10,2012 20120910_SD@OAK,3,25,24,OAK,SD,1,5,51,(10:24) (No Huddle Shotgun) D.McFadden left tackle to SD 49 for 2 yards (J.Johnson).,6,10,2012 20120910_SD@OAK,3,25,6,OAK,SD,2,3,49,(10:06) D.McFadden left tackle to SD 48 for 1 yard (C.Liuget).,6,10,2012 20120910_SD@OAK,3,24,25,OAK,SD,3,2,48,(9:25) C.Palmer pass short left to B.Myers to SD 48 for no gain (E.Weddle).,6,10,2012 20120910_SD@OAK,3,24,16,OAK,SD,4,2,48,(9:16) (Punt formation) PENALTY on OAK Illegal Substitution 5 yards enforced at SD 48 - No Play.,6,10,2012 20120910_SD@OAK,3,24,16,OAK,SD,4,7,61,(9:16) (Punt formation) S.Lechler Aborted. T.Goethel FUMBLES at OAK 36 recovered by OAK-S.Lechler at OAK 39. S.Lechler to OAK 39 for no gain (A.Gachkar).,6,10,2012 20120910_SD@OAK,3,23,43,SD,OAK,1,10,39,(8:43) P.Rivers pass short right to C.Brinkley to OAK 35 for 4 yards (M.Burris).,10,6,2012 20120910_SD@OAK,3,23,10,SD,OAK,2,6,35,(8:10) (Shotgun) P.Rivers pass short left to R.Brown to OAK 28 for 7 yards (M.Shaughnessy).,10,6,2012 20120910_SD@OAK,3,22,45,SD,OAK,1,10,28,(7:45) P.Rivers pass short right to C.Brinkley to OAK 16 for 12 yards (P.Wheeler T.Kelly).,10,6,2012 20120910_SD@OAK,3,21,58,SD,OAK,1,10,16,(6:58) C.Brinkley left end to OAK 10 for 6 yards (M.Huff).,10,6,2012 20120910_SD@OAK,3,21,18,SD,OAK,2,4,10,(6:18) P.Rivers pass incomplete short left to C.Brinkley.,10,6,2012 20120910_SD@OAK,3,21,10,SD,OAK,3,4,10,(6:10) (Shotgun) P.Rivers pass incomplete short right to M.Floyd.,10,6,2012 20120910_SD@OAK,3,21,5,SD,OAK,4,4,10,(6:05) N.Kaeding 28 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,10,6,2012 20120910_SD@OAK,3,21,5,SD,OAK,,,10,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,13,6,2012 20120910_SD@OAK,3,21,1,OAK,SD,1,10,80,(6:01) C.Palmer pass short middle to D.McFadden to OAK 27 for 7 yards (T.Spikes).,6,13,2012 20120910_SD@OAK,3,20,23,OAK,SD,2,3,73,(5:23) C.Palmer pass incomplete short right to R.Streater.,6,13,2012 20120910_SD@OAK,3,20,19,OAK,SD,3,3,73,(5:19) (Shotgun) C.Palmer pass short left to D.McFadden to OAK 29 for 2 yards (A.Cason).,6,13,2012 20120910_SD@OAK,3,19,31,OAK,SD,4,1,71,(4:31) S.Lechler punt is BLOCKED by D.Rosario Center-T.Goethel RECOVERED by SD-C.Lynch at OAK 8. C.Lynch to OAK 8 for no gain (M.Mitchell).,6,13,2012 20120910_SD@OAK,3,19,20,SD,OAK,1,8,8,(4:20) C.Brinkley left tackle to OAK 3 for 5 yards (M.Burris M.Huff).,13,6,2012 20120910_SD@OAK,3,19,10,SD,OAK,2,3,3,(4:10) PENALTY on SD-R.McMichael False Start 5 yards enforced at OAK 3 - No Play.,13,6,2012 20120910_SD@OAK,3,18,17,SD,OAK,2,8,8,(3:17) (Shotgun) R.Brown up the middle to OAK 6 for 2 yards (R.McClain).,13,6,2012 20120910_SD@OAK,3,17,34,SD,OAK,3,6,6,(2:34) (Shotgun) P.Rivers pass short middle to R.Brown to OAK 1 for 5 yards (P.Wheeler M.Huff).,13,6,2012 20120910_SD@OAK,3,16,53,SD,OAK,4,1,1,(1:53) N.Kaeding 19 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,13,6,2012 20120910_SD@OAK,3,16,53,SD,OAK,,,1,N.Kaeding kicks 72 yards from SD 35 to OAK -7. T.Jones Touchback.,16,6,2012 20120910_SD@OAK,3,16,49,OAK,SD,1,10,80,(1:49) D.McFadden left end to OAK 17 for -3 yards (D.Butler Q.Jammer).,6,16,2012 20120910_SD@OAK,3,16,12,OAK,SD,2,13,83,(1:12) C.Palmer pass incomplete short middle to D.McFadden.,6,16,2012 20120910_SD@OAK,3,16,7,OAK,SD,3,13,83,(1:07) (Shotgun) C.Palmer pass incomplete short left to D.McFadden.,6,16,2012 20120910_SD@OAK,3,16,2,OAK,SD,4,13,83,(1:02) S.Lechler punts 52 yards to SD 31 Center-T.Goethel. E.Royal to SD 45 for 14 yards (P.Adams).,6,16,2012 20120910_SD@OAK,3,15,50,SD,OAK,1,10,55,(:50) C.Brinkley left tackle to SD 48 for 3 yards (M.Burris).,16,6,2012 20120910_SD@OAK,3,15,12,SD,OAK,2,7,52,(:12) P.Rivers pass incomplete deep left to A.Gates.,16,6,2012 20120910_SD@OAK,3,15,5,SD,OAK,3,7,52,(:05) (Shotgun) P.Rivers pass short right to A.Gates to OAK 41 for 11 yards (M.Huff).,16,6,2012 20120910_SD@OAK,4,15,0,SD,OAK,1,10,41,(15:00) (Shotgun) P.Rivers pass short middle to R.Meachem to OAK 38 for 3 yards (S.Spencer).,16,6,2012 20120910_SD@OAK,4,14,19,SD,OAK,2,7,38,(14:19) P.Rivers pass short middle to M.Floyd to OAK 26 for 12 yards (P.Lee).,16,6,2012 20120910_SD@OAK,4,13,37,SD,OAK,1,10,26,(13:37) P.Rivers pass short right to L.McClain to OAK 23 for 3 yards (M.Burris; P.Lee).,16,6,2012 20120910_SD@OAK,4,13,5,SD,OAK,2,7,23,(13:05) P.Rivers pass incomplete short left to A.Gates (P.Wheeler).,16,6,2012 20120910_SD@OAK,4,12,58,SD,OAK,3,7,23,(12:58) (Shotgun) P.Rivers pass incomplete short right to A.Gates [M.Giordano].,16,6,2012 20120910_SD@OAK,4,12,53,SD,OAK,4,7,23,(12:53) N.Kaeding 41 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,16,6,2012 20120910_SD@OAK,4,12,53,SD,OAK,,,23,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,19,6,2012 20120910_SD@OAK,4,12,48,OAK,SD,1,10,80,(12:48) C.Palmer pass incomplete deep left to R.Streater [C.Liuget].,6,19,2012 20120910_SD@OAK,4,12,40,OAK,SD,2,10,80,(12:40) (Shotgun) C.Palmer pass deep left to D.Heyward-Bey to OAK 41 for 21 yards (A.Cason).,6,19,2012 20120910_SD@OAK,4,12,2,OAK,SD,1,10,59,(12:02) (Shotgun) C.Palmer sacked at OAK 34 for -7 yards (D.Butler).,6,19,2012 20120910_SD@OAK,4,11,34,OAK,SD,2,17,66,(11:34) (Shotgun) C.Palmer pass short middle to B.Myers to SD 40 for 26 yards (E.Weddle).,6,19,2012 20120910_SD@OAK,4,10,52,OAK,SD,1,10,40,(10:52) C.Palmer pass incomplete deep middle to D.Heyward-Bey (Q.Jammer).,6,19,2012 20120910_SD@OAK,4,10,47,OAK,SD,2,10,40,(10:47) (Shotgun) D.McFadden left end to OAK 49 for -11 yards (M.Gilchrist).,6,19,2012 20120910_SD@OAK,4,10,4,OAK,SD,3,21,51,(10:04) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,6,19,2012 20120910_SD@OAK,4,9,58,OAK,SD,4,21,58,(9:58) S.Lechler Aborted. T.Goethel FUMBLES at OAK 37 touched at OAK 37 recovered by OAK-D.Ausberry at OAK 42. D.Ausberry to OAK 42 for no gain (J.Battle).,6,19,2012 20120910_SD@OAK,4,9,52,SD,OAK,1,10,42,(9:52) C.Brinkley left tackle to OAK 42 for no gain (M.Shaughnessy).,19,6,2012 20120910_SD@OAK,4,9,13,SD,OAK,2,10,42,(9:13) E.Royal left end to OAK 41 for 1 yard (M.Shaughnessy).,19,6,2012 20120910_SD@OAK,4,8,36,SD,OAK,3,9,41,(8:36) (Shotgun) P.Rivers pass deep left to M.Floyd to OAK 16 for 25 yards (T.Branch).,19,6,2012 20120910_SD@OAK,4,7,47,SD,OAK,1,10,16,(7:47) C.Brinkley left end to OAK 21 for -5 yards (D.Tollefson R.Seymour).,19,6,2012 20120910_SD@OAK,4,7,2,SD,OAK,2,15,21,(7:02) P.Rivers pass short left to L.McClain to OAK 19 for 2 yards (P.Wheeler). PENALTY on SD-N.Hardwick Illegal Block Above the Waist 10 yards enforced at OAK 19.,19,6,2012 20120910_SD@OAK,4,6,36,SD,OAK,2,23,29,(6:36) (Shotgun) R.Brown up the middle to OAK 25 for 4 yards (M.Burris).,19,6,2012 20120910_SD@OAK,4,5,53,SD,OAK,3,19,25,(5:53) R.Brown left tackle to OAK 27 for -2 yards (T.Kelly D.Tollefson).,19,6,2012 20120910_SD@OAK,4,5,12,SD,OAK,4,21,27,(5:12) N.Kaeding 45 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,19,6,2012 20120910_SD@OAK,4,5,12,SD,OAK,,,27,N.Kaeding kicks 70 yards from SD 35 to OAK -5. T.Jones Touchback.,22,6,2012 20120910_SD@OAK,4,5,6,OAK,SD,1,10,80,(5:06) (Shotgun) C.Palmer sacked at OAK 11 for -9 yards (S.Phillips).,6,22,2012 20120910_SD@OAK,4,4,40,OAK,SD,2,19,89,(4:40) (Shotgun) C.Palmer pass short right to M.Reece to OAK 16 for 5 yards (D.Butler).,6,22,2012 20120910_SD@OAK,4,4,13,OAK,SD,3,10,80,(4:13) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 36 for 16 yards (J.Johnson).,6,22,2012 20120910_SD@OAK,4,3,48,OAK,SD,1,10,64,(3:48) (No Huddle Shotgun) C.Palmer pass incomplete short left to R.Streater.,6,22,2012 20120910_SD@OAK,4,3,43,OAK,SD,2,10,64,(3:43) (Shotgun) C.Palmer pass short right to D.McFadden to OAK 37 for 1 yard (D.Williams).,6,22,2012 20120910_SD@OAK,4,3,19,OAK,SD,3,9,63,(3:19) (No Huddle Shotgun) C.Palmer pass short middle to D.McFadden to OAK 42 for 5 yards (D.Williams).,6,22,2012 20120910_SD@OAK,4,2,51,OAK,SD,4,4,58,(2:51) C.Palmer pass incomplete short middle to D.Heyward-Bey. PENALTY on SD-A.Cason Defensive Pass Interference 8 yards enforced at OAK 42 - No Play.,6,22,2012 20120910_SD@OAK,4,2,47,OAK,SD,1,10,50,(2:47) (Shotgun) C.Palmer pass deep right to D.Hagan to SD 33 for 17 yards (M.Gilchrist).,6,22,2012 20120910_SD@OAK,4,2,18,OAK,SD,1,10,33,(2:18) (No Huddle Shotgun) C.Palmer sacked at SD 38 for -5 yards (S.Phillips).,6,22,2012 20120910_SD@OAK,4,2,0,OAK,SD,2,15,38,(2:00) (Shotgun) C.Palmer pass short middle to B.Myers to SD 30 for 8 yards (E.Weddle).,6,22,2012 20120910_SD@OAK,4,1,33,OAK,SD,3,7,30,(1:33) (No Huddle Shotgun) C.Palmer pass short middle to D.McFadden to SD 26 for 4 yards (E.Weddle) [K.Reyes].,6,22,2012 20120910_SD@OAK,4,1,24,OAK,SD,4,3,26,(1:24) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan [M.Ingram]. PENALTY on SD-M.Ingram Roughing the Passer 13 yards enforced at SD 26 - No Play.,6,22,2012 20120910_SD@OAK,4,1,20,OAK,SD,1,10,13,(1:20) C.Palmer pass short middle to B.Myers to SD 2 for 11 yards (A.Bigby).,6,22,2012 20120910_SD@OAK,4,0,57,OAK,SD,1,2,2,(:57) (No Huddle) C.Palmer pass short right to R.Streater for 2 yards TOUCHDOWN.,6,22,2012 20120910_SD@OAK,4,0,57,OAK,SD,,,2,TWO-POINT CONVERSION ATTEMPT. C.Palmer pass to R.Streater is complete. ATTEMPT SUCCEEDS.,6,22,2012 20120910_SD@OAK,4,0,57,OAK,SD,,,2,S.Janikowski kicks onside 23 yards from OAK 35 to SD 42. M.Ingram (didn't try to advance) to SD 42 for no gain.,14,22,2012 20120910_SD@OAK,4,0,54,SD,OAK,1,10,58,(:54) L.McClain up the middle to SD 46 for 4 yards (M.Burris).,22,14,2012 20120910_SD@OAK,4,0,50,SD,OAK,2,6,54,(:50) L.McClain up the middle to SD 47 for 1 yard (Team).,22,14,2012 20120910_SD@OAK,4,0,46,SD,OAK,3,5,53,(:46) P.Rivers kneels to SD 45 for -2 yards.,22,14,2012 20120910_SD@OAK,4,0,40,SD,OAK,4,7,55,(:40) (Run formation) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at SD 45 - No Play.,22,14,2012 20120910_SD@OAK,4,0,3,SD,OAK,4,12,60,(:03) M.Scifres punts 55 yards to OAK 5 Center-M.Windt downed by SD.,22,14,2012 20120910_SD@OAK,4,0,3,SD,OAK,,,60,                      ,22,14,2012 20120913_CHI@GB,1,0,0,CHI,GB,,,60,R.Gould kicks 69 yards from CHI 35 to GB -4. R.Cobb to GB 17 for 21 yards (S.McManis).,0,0,2012 20120913_CHI@GB,1,59,56,GB,CHI,1,10,83,(14:56) C.Benson right end to GB 19 for 2 yards (S.Paea).,0,0,2012 20120913_CHI@GB,1,59,27,GB,CHI,2,8,81,(14:27) (No Huddle Shotgun) C.Benson left guard to GB 26 for 7 yards (B.Urlacher N.Roach).,0,0,2012 20120913_CHI@GB,1,58,49,GB,CHI,3,1,74,(13:49) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Nelson (T.Jennings).,0,0,2012 20120913_CHI@GB,1,58,45,GB,CHI,4,1,74,(13:45) T.Masthay punts 56 yards to CHI 18 Center-B.Goode fair catch by D.Hester.,0,0,2012 20120913_CHI@GB,1,58,37,CHI,GB,1,10,82,(13:37) J.Cutler sacked at CHI 5 for -13 yards (D.Smith).,0,0,2012 20120913_CHI@GB,1,58,0,CHI,GB,2,23,95,(13:00) M.Forte right tackle to CHI 9 for 4 yards (J.Worthy).,0,0,2012 20120913_CHI@GB,1,57,18,CHI,GB,3,19,91,(12:18) (Shotgun) M.Forte up the middle to CHI 17 for 8 yards (C.Matthews; D.Smith).,0,0,2012 20120913_CHI@GB,1,56,35,CHI,GB,4,11,83,(11:35) A.Podlesh punts 41 yards to GB 42 Center-P.Mannelly. S.Shields MUFFS catch and recovers at GB 29. S.Shields to GB 29 for no gain (E.Weems; S.McManis).,0,0,2012 20120913_CHI@GB,1,56,26,GB,CHI,1,10,71,(11:26) A.Rodgers pass short right to J.Finley to GB 45 for 16 yards (B.Urlacher).,0,0,2012 20120913_CHI@GB,1,56,1,GB,CHI,1,10,55,(11:01) (No Huddle) C.Benson right end to GB 46 for 1 yard (H.Melton; I.Idonije).,0,0,2012 20120913_CHI@GB,1,55,27,GB,CHI,2,9,54,(10:27) (No Huddle Shotgun) A.Rodgers pass deep middle to J.Nelson to CHI 33 for 21 yards (C.Tillman).,0,0,2012 20120913_CHI@GB,1,54,46,GB,CHI,1,10,33,(9:46) (No Huddle Shotgun) R.Cobb left end to CHI 26 for 7 yards (M.Wright J.Peppers). PENALTY on GB-T.Lang Offensive Holding 10 yards enforced at CHI 33 - No Play.,0,0,2012 20120913_CHI@GB,1,54,17,GB,CHI,1,20,43,(9:17) C.Benson right guard to CHI 39 for 4 yards (H.Melton B.Urlacher).,0,0,2012 20120913_CHI@GB,1,53,45,GB,CHI,2,16,39,(8:45) (No Huddle Shotgun) A.Rodgers sacked at CHI 49 for -10 yards (sack split by C.Wootton and S.McClellin).,0,0,2012 20120913_CHI@GB,1,53,9,GB,CHI,3,26,49,(8:09) (No Huddle Shotgun) A.Rodgers pass incomplete short right.,0,0,2012 20120913_CHI@GB,1,53,4,GB,CHI,4,26,49,(8:04) T.Masthay punts 32 yards to CHI 17 Center-B.Goode out of bounds.,0,0,2012 20120913_CHI@GB,1,52,57,CHI,GB,1,10,83,(7:57) J.Cutler pass incomplete short left to K.Davis (C.Matthews).,0,0,2012 20120913_CHI@GB,1,52,53,CHI,GB,2,10,83,(7:53) M.Forte right end to CHI 23 for 6 yards (B.Raji; C.Matthews).,0,0,2012 20120913_CHI@GB,1,52,6,CHI,GB,3,4,77,(7:06) (Shotgun) PENALTY on CHI-J.Cutler Delay of Game 5 yards enforced at CHI 23 - No Play.,0,0,2012 20120913_CHI@GB,1,51,43,CHI,GB,3,9,82,(6:43) (Shotgun) J.Cutler pass incomplete short middle to M.Forte.,0,0,2012 20120913_CHI@GB,1,51,39,CHI,GB,4,9,82,(6:39) A.Podlesh punts 48 yards to GB 34 Center-P.Mannelly fair catch by R.Cobb.,0,0,2012 20120913_CHI@GB,1,51,31,GB,CHI,1,10,66,(6:31) C.Benson left tackle to GB 41 for 7 yards (A.Okoye N.Roach).,0,0,2012 20120913_CHI@GB,1,50,59,GB,CHI,2,3,59,(5:59) (No Huddle) C.Benson left end to GB 47 for 6 yards (A.Okoye).,0,0,2012 20120913_CHI@GB,1,50,25,GB,CHI,1,10,53,(5:25) (No Huddle) A.Rodgers pass incomplete short right.,0,0,2012 20120913_CHI@GB,1,50,19,GB,CHI,2,10,53,(5:19) (No Huddle) A.Rodgers pass incomplete deep right to J.Nelson.,0,0,2012 20120913_CHI@GB,1,50,13,GB,CHI,3,10,53,(5:13) (No Huddle Shotgun) A.Rodgers sacked at GB 43 for -4 yards (J.Peppers).,0,0,2012 20120913_CHI@GB,1,49,47,GB,CHI,4,14,57,(4:47) T.Masthay punts 57 yards to end zone Center-B.Goode Touchback.,0,0,2012 20120913_CHI@GB,1,49,37,CHI,GB,1,10,80,(4:37) (Shotgun) J.Cutler pass incomplete deep right to K.Davis (D.Smith). PENALTY on GB-D.Smith Defensive Pass Interference 24 yards enforced at CHI 20 - No Play.,0,0,2012 20120913_CHI@GB,1,49,32,CHI,GB,1,10,56,(4:32) (Shotgun) J.Cutler sacked at CHI 34 for -10 yards (sack split by C.Matthews and E.Walden).,0,0,2012 20120913_CHI@GB,1,48,54,CHI,GB,2,20,66,(3:54) (Shotgun) J.Cutler pass short left to M.Forte to CHI 32 for -2 yards (A.Hawk).,0,0,2012 20120913_CHI@GB,1,48,14,CHI,GB,3,22,68,(3:14) (Shotgun) M.Forte left tackle to CHI 39 for 7 yards (M.Burnett).,0,0,2012 20120913_CHI@GB,1,47,42,CHI,GB,4,15,61,(2:42) A.Podlesh punts 40 yards to GB 21 Center-P.Mannelly fair catch by R.Cobb.,0,0,2012 20120913_CHI@GB,1,47,35,GB,CHI,1,10,79,(2:35) C.Benson up the middle to GB 21 for no gain (M.Wright; L.Briggs).,0,0,2012 20120913_CHI@GB,1,47,3,GB,CHI,2,10,79,(2:03) A.Rodgers pass short middle to C.Benson to GB 38 for 17 yards (L.Briggs).,0,0,2012 20120913_CHI@GB,1,46,29,GB,CHI,1,10,62,(1:29) (No Huddle) A.Rodgers pass short middle to C.Benson to GB 46 for 8 yards (L.Briggs).,0,0,2012 20120913_CHI@GB,1,45,56,GB,CHI,2,2,54,(:56) (No Huddle Shotgun) C.Benson up the middle to CHI 49 for 5 yards (N.Roach; B.Urlacher).,0,0,2012 20120913_CHI@GB,1,45,21,GB,CHI,1,10,49,(:21) (No Huddle) C.Benson left tackle to CHI 42 for 7 yards (N.Roach).,0,0,2012 20120913_CHI@GB,2,45,0,GB,CHI,2,3,42,(15:00) (Shotgun) A.Rodgers pass incomplete deep middle to J.Finley.,0,0,2012 20120913_CHI@GB,2,44,54,GB,CHI,3,3,42,(14:54) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones. Green Bay challenged the too many players on field ruling and the play was REVERSED. (No Huddle Shotgun) PENALTY on CHI-N.Roach Defensive 12 On-field 5 yards enforced at CHI 42 - No Play.,0,0,2012 20120913_CHI@GB,2,44,48,GB,CHI,1,10,37,(14:48) A.Rodgers pass short right to Ja.Jones to CHI 42 for -5 yards (T.Jennings).,0,0,2012 20120913_CHI@GB,2,44,17,GB,CHI,2,15,42,(14:17) (No Huddle Shotgun) A.Rodgers pass short left to J.Nelson to CHI 34 for 8 yards (C.Tillman).,0,0,2012 20120913_CHI@GB,2,43,45,GB,CHI,3,7,34,(13:45) (No Huddle Shotgun) A.Rodgers pass short left to J.Kuhn to CHI 29 for 5 yards (L.Briggs; S.McClellin).,0,0,2012 20120913_CHI@GB,2,43,1,GB,CHI,4,2,29,(13:01) M.Crosby 48 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 20120913_CHI@GB,2,43,1,GB,CHI,,,29,M.Crosby kicks 66 yards from GB 35 to CHI -1. D.Hester to CHI 37 for 38 yards (J.Bush).,3,0,2012 20120913_CHI@GB,2,42,50,CHI,GB,1,10,63,(12:50) M.Bush up the middle to CHI 44 for 7 yards (A.Hawk; D.Smith).,0,3,2012 20120913_CHI@GB,2,42,15,CHI,GB,2,3,56,(12:15) M.Bush up the middle to CHI 46 for 2 yards (E.Walden).,0,3,2012 20120913_CHI@GB,2,41,39,CHI,GB,3,1,54,(11:39) M.Bush right tackle to CHI 49 for 3 yards (P.Merling).,0,3,2012 20120913_CHI@GB,2,41,0,CHI,GB,1,10,51,(11:00) M.Bush up the middle to GB 47 for 4 yards (C.Woodson; M.Burnett).,0,3,2012 20120913_CHI@GB,2,40,21,CHI,GB,2,6,47,(10:21) (Shotgun) J.Cutler pass short left to E.Bennett to GB 37 for 10 yards (T.Williams) [M.Burnett].,0,3,2012 20120913_CHI@GB,2,39,42,CHI,GB,1,10,37,(9:42) M.Bush left tackle to GB 38 for -1 yards (J.McMillian; R.Pickett). PENALTY on CHI-G.Carimi Unnecessary Roughness 15 yards enforced at GB 38.,0,3,2012 20120913_CHI@GB,2,39,12,CHI,GB,2,26,53,(9:12) (Shotgun) J.Cutler sacked at CHI 40 for -7 yards (C.Matthews).,0,3,2012 20120913_CHI@GB,2,38,35,CHI,GB,3,33,60,(8:35) (Shotgun) J.Cutler pass short left to A.Jeffery to CHI 47 for 7 yards (C.Hayward).,0,3,2012 20120913_CHI@GB,2,38,4,CHI,GB,4,26,53,(8:04) A.Podlesh punts 53 yards to end zone Center-P.Mannelly Touchback.,0,3,2012 20120913_CHI@GB,2,37,54,GB,CHI,1,10,80,(7:54) C.Benson right end to GB 21 for 1 yard (I.Idonije).,3,0,2012 20120913_CHI@GB,2,37,15,GB,CHI,2,9,79,(7:15) A.Rodgers pass short middle to J.Kuhn to GB 23 for 2 yards (I.Idonije).,3,0,2012 20120913_CHI@GB,2,36,34,GB,CHI,3,7,77,(6:34) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 43 for 20 yards (M.Wright).,3,0,2012 20120913_CHI@GB,2,35,53,GB,CHI,1,10,57,(5:53) A.Rodgers pass short left to J.Nelson to GB 49 for 6 yards (C.Tillman).,3,0,2012 20120913_CHI@GB,2,35,13,GB,CHI,2,4,51,(5:13) A.Rodgers pass short right to C.Benson to CHI 46 for 5 yards (L.Briggs).,3,0,2012 20120913_CHI@GB,2,34,33,GB,CHI,1,10,46,(4:33) A.Green up the middle to CHI 44 for 2 yards (C.Wootton).,3,0,2012 20120913_CHI@GB,2,33,56,GB,CHI,2,8,44,(3:56) C.Benson right guard to CHI 39 for 5 yards (L.Briggs).,3,0,2012 20120913_CHI@GB,2,33,17,GB,CHI,3,3,39,(3:17) (Shotgun) R.Cobb right end to CHI 11 for 28 yards (D.Moore).,3,0,2012 20120913_CHI@GB,2,32,33,GB,CHI,1,10,11,(2:33) (Shotgun) A.Rodgers sacked at CHI 18 for -7 yards (J.Peppers).,3,0,2012 20120913_CHI@GB,2,32,9,GB,CHI,2,17,18,(2:09) (Shotgun) A.Rodgers sacked at CHI 27 for -9 yards (H.Melton).,3,0,2012 20120913_CHI@GB,2,32,0,GB,CHI,3,26,27,(2:00) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb.,3,0,2012 20120913_CHI@GB,2,31,56,GB,CHI,4,26,27,(1:56) T.Masthay pass short middle to T.Crabtree for 27 yards TOUCHDOWN. Field goal formation.,3,0,2012 20120913_CHI@GB,2,31,56,GB,CHI,,,27,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,3,0,2012 20120913_CHI@GB,2,31,56,GB,CHI,,,27,M.Crosby kicks 72 yards from GB 35 to CHI -7. D.Hester Touchback.,10,0,2012 20120913_CHI@GB,2,31,50,CHI,GB,1,10,80,(1:50) (Shotgun) PENALTY on CHI-J.Webb False Start 5 yards enforced at CHI 20 - No Play.,0,10,2012 20120913_CHI@GB,2,31,50,CHI,GB,1,15,85,(1:50) (Shotgun) J.Cutler pass incomplete short left to E.Bennett.,0,10,2012 20120913_CHI@GB,2,31,45,CHI,GB,2,15,85,(1:45) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 37 for 22 yards (M.Burnett C.Hayward).,0,10,2012 20120913_CHI@GB,2,31,18,CHI,GB,1,10,63,(1:18) (No Huddle Shotgun) J.Cutler pass incomplete deep right to A.Jeffery (M.Burnett).,0,10,2012 20120913_CHI@GB,2,31,13,CHI,GB,2,10,63,(1:13) (Shotgun) J.Cutler pass short middle intended for E.Bennett INTERCEPTED by T.Williams at CHI 48. T.Williams to CHI 48 for no gain (E.Bennett). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,0,10,2012 20120913_CHI@GB,2,31,7,GB,CHI,1,10,48,(1:07) (Shotgun) A.Rodgers pass short right to J.Nelson to CHI 40 for 8 yards (L.Briggs).,10,0,2012 20120913_CHI@GB,2,30,58,GB,CHI,2,2,40,(:58) (Shotgun) A.Rodgers pass short right to J.Finley to CHI 39 for 1 yard (T.Jennings).,10,0,2012 20120913_CHI@GB,2,30,36,GB,CHI,3,1,39,(:36) (No Huddle Shotgun) J.Kuhn up the middle to CHI 38 for 1 yard (B.Urlacher M.Wright). The Replay Assistant challenged the first down ruling and the play was Upheld.,10,0,2012 20120913_CHI@GB,2,30,31,GB,CHI,1,10,38,(:31) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb. PENALTY on CHI-M.Wright Illegal Contact 5 yards enforced at CHI 38 - No Play.,10,0,2012 20120913_CHI@GB,2,30,26,GB,CHI,1,10,33,(:26) (Shotgun) A.Rodgers pass incomplete short middle to Ja.Jones (L.Briggs).,10,0,2012 20120913_CHI@GB,2,30,21,GB,CHI,2,10,33,(:21) (Shotgun) A.Rodgers pass short middle to J.Kuhn to CHI 17 for 16 yards (D.Moore C.Conte).,10,0,2012 20120913_CHI@GB,2,30,1,GB,CHI,1,10,17,(:01) M.Crosby 35 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,10,0,2012 20120913_CHI@GB,3,30,0,GB,CHI,,,17,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,13,0,2012 20120913_CHI@GB,3,30,0,CHI,GB,1,10,80,(15:00) M.Forte up the middle to CHI 23 for 3 yards (B.Raji).,0,13,2012 20120913_CHI@GB,3,29,26,CHI,GB,2,7,77,(14:26) M.Forte right end to CHI 25 for 2 yards (D.Smith; J.McMillian).,0,13,2012 20120913_CHI@GB,3,28,47,CHI,GB,3,5,75,(13:47) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 40 for 15 yards (D.Smith C.Woodson).,0,13,2012 20120913_CHI@GB,3,28,7,CHI,GB,1,10,60,(13:07) M.Forte right tackle to CHI 41 for 1 yard (C.Matthews).,0,13,2012 20120913_CHI@GB,3,27,26,CHI,GB,2,9,59,(12:26) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,0,13,2012 20120913_CHI@GB,3,27,20,CHI,GB,3,9,59,(12:20) (Shotgun) J.Cutler pass short left to M.Forte to GB 45 for 14 yards (C.Woodson).,0,13,2012 20120913_CHI@GB,3,26,38,CHI,GB,1,10,45,(11:38) J.Cutler pass incomplete short right to K.Davis [R.Pickett].,0,13,2012 20120913_CHI@GB,3,26,32,CHI,GB,2,10,45,(11:32) (Shotgun) M.Bush up the middle to GB 37 for 8 yards (M.Burnett; C.Woodson).,0,13,2012 20120913_CHI@GB,3,25,51,CHI,GB,3,2,37,(10:51) J.Cutler pass short middle to M.Spaeth to GB 33 for 4 yards (R.Pickett).,0,13,2012 20120913_CHI@GB,3,25,13,CHI,GB,1,10,33,(10:13) M.Bush up the middle to GB 25 for 8 yards (T.Williams A.Hawk).,0,13,2012 20120913_CHI@GB,3,24,38,CHI,GB,2,2,25,(9:38) M.Bush left tackle to GB 27 for -2 yards (J.Worthy).,0,13,2012 20120913_CHI@GB,3,23,59,CHI,GB,3,4,27,(8:59) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,0,13,2012 20120913_CHI@GB,3,23,53,CHI,GB,4,4,27,(8:53) R.Gould 45 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,13,2012 20120913_CHI@GB,3,23,53,CHI,GB,,,27,R.Gould kicks 72 yards from CHI 35 to GB -7. R.Cobb Touchback.,3,13,2012 20120913_CHI@GB,3,23,49,GB,CHI,1,10,80,(8:49) A.Rodgers pass short left to C.Benson pushed ob at GB 25 for 5 yards (M.Wright).,13,3,2012 20120913_CHI@GB,3,23,23,GB,CHI,2,5,75,(8:23) C.Benson left guard to GB 29 for 4 yards (H.Melton).,13,3,2012 20120913_CHI@GB,3,22,38,GB,CHI,3,1,71,(7:38) C.Benson right tackle to GB 29 for no gain (B.Urlacher).,13,3,2012 20120913_CHI@GB,3,22,0,GB,CHI,4,1,71,(7:00) T.Masthay punts 54 yards to CHI 17 Center-B.Goode. D.Hester to CHI 24 for 7 yards (J.Kuhn).,13,3,2012 20120913_CHI@GB,3,21,49,CHI,GB,1,10,76,(6:49) M.Bush right end to CHI 29 for 5 yards (D.Smith).,3,13,2012 20120913_CHI@GB,3,21,15,CHI,GB,2,5,71,(6:15) M.Bush up the middle to CHI 33 for 4 yards (M.Burnett).,3,13,2012 20120913_CHI@GB,3,20,35,CHI,GB,3,1,67,(5:35) M.Bush right guard to CHI 37 for 4 yards (R.Pickett; D.Smith).,3,13,2012 20120913_CHI@GB,3,20,1,CHI,GB,1,10,63,(5:01) M.Bush right tackle to CHI 44 for 7 yards (A.Hawk).,3,13,2012 20120913_CHI@GB,3,19,26,CHI,GB,2,3,56,(4:26) A.Allen right guard to CHI 41 for -3 yards (R.Pickett).,3,13,2012 20120913_CHI@GB,3,18,43,CHI,GB,3,6,59,(3:43) (Shotgun) PENALTY on CHI-K.Davis False Start 5 yards enforced at CHI 41 - No Play.,3,13,2012 20120913_CHI@GB,3,18,18,CHI,GB,3,11,64,(3:18) (Shotgun) J.Cutler pass deep middle intended for E.Bennett INTERCEPTED by C.Woodson [E.Walden] at GB 47. C.Woodson to CHI 47 for 6 yards (E.Bennett). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Cutler pass deep middle intended for E.Bennett INTERCEPTED by C.Woodson [E.Walden] at GB 47. C.Woodson to GB 47 for no gain (E.Bennett).,3,13,2012 20120913_CHI@GB,3,18,11,GB,CHI,1,10,53,(3:11) (Shotgun) A.Rodgers pass short middle to J.Nelson to CHI 38 for 15 yards (C.Conte C.Tillman).,13,3,2012 20120913_CHI@GB,3,17,29,GB,CHI,1,10,38,(2:29) (Shotgun) C.Benson up the middle to CHI 27 for 11 yards (C.Conte; C.Tillman).,13,3,2012 20120913_CHI@GB,3,16,51,GB,CHI,1,10,27,(1:51) C.Benson right guard to CHI 23 for 4 yards (L.Briggs; S.McClellin).,13,3,2012 20120913_CHI@GB,3,16,8,GB,CHI,2,6,23,(1:08) (Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones.,13,3,2012 20120913_CHI@GB,3,16,2,GB,CHI,3,6,23,(1:02) (Shotgun) A.Rodgers pass short left to J.Finley to CHI 19 for 4 yards (C.Tillman). FUMBLES (C.Tillman) RECOVERED by CHI-C.Tillman at CHI 19. C.Tillman to CHI 20 for 1 yard (J.Finley).,13,3,2012 20120913_CHI@GB,3,15,53,CHI,GB,1,10,80,(:53) M.Bush up the middle to CHI 23 for 3 yards (M.Burnett A.Hawk).,3,13,2012 20120913_CHI@GB,3,15,12,CHI,GB,2,7,77,(:12) J.Cutler pass incomplete short middle to M.Spaeth (B.Raji).,3,13,2012 20120913_CHI@GB,3,15,9,CHI,GB,3,7,77,(:09) (Shotgun) J.Cutler pass incomplete short right to D.Hester.,3,13,2012 20120913_CHI@GB,3,15,4,CHI,GB,4,7,77,(:04) A.Podlesh punts 50 yards to GB 27 Center-P.Mannelly. R.Cobb pushed ob at GB 43 for 16 yards (P.Mannelly).,3,13,2012 20120913_CHI@GB,4,15,0,GB,CHI,1,10,57,(15:00) (Shotgun) C.Benson up the middle to GB 49 for 6 yards (S.Paea; H.Melton).,13,3,2012 20120913_CHI@GB,4,14,24,GB,CHI,2,4,51,(14:24) A.Rodgers pass short right to D.Williams to CHI 45 for 6 yards (B.Urlacher S.Paea).,13,3,2012 20120913_CHI@GB,4,13,44,GB,CHI,1,10,45,(13:44) A.Rodgers pass short right to J.Finley to CHI 40 for 5 yards (T.Jennings).,13,3,2012 20120913_CHI@GB,4,13,6,GB,CHI,2,5,40,(13:06) (Shotgun) A.Rodgers pass short right to Ja.Jones to CHI 36 for 4 yards (T.Jennings; M.Wright).,13,3,2012 20120913_CHI@GB,4,12,28,GB,CHI,3,1,36,(12:28) J.Kuhn up the middle to CHI 36 for no gain (L.Briggs B.Urlacher).,13,3,2012 20120913_CHI@GB,4,11,43,GB,CHI,4,1,36,(11:43) M.Crosby 54 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,13,3,2012 20120913_CHI@GB,4,11,43,GB,CHI,,,36,M.Crosby kicks 58 yards from GB 35 to CHI 7. D.Hester ran ob at CHI 26 for 19 yards (D.Moses).,16,3,2012 20120913_CHI@GB,4,11,37,CHI,GB,1,10,74,(11:37) J.Cutler pass deep left intended for B.Marshall INTERCEPTED by T.Williams [A.Hawk] at GB 36. T.Williams ran ob at CHI 26 for 38 yards (R.Garza).,3,16,2012 20120913_CHI@GB,4,11,22,GB,CHI,1,10,26,(11:22) (Shotgun) A.Rodgers pass deep middle to D.Driver for 26 yards TOUCHDOWN.,16,3,2012 20120913_CHI@GB,4,11,22,GB,CHI,,,26,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,16,3,2012 20120913_CHI@GB,4,11,17,CHI,GB,1,10,65,(11:17) J.Cutler left end to CHI 47 for 12 yards (T.Williams).,3,23,2012 20120913_CHI@GB,4,10,34,CHI,GB,1,10,53,(10:34) M.Bush left tackle to CHI 49 for 2 yards (E.Walden R.Pickett).,3,23,2012 20120913_CHI@GB,4,10,0,CHI,GB,2,8,51,(10:00) (Shotgun) J.Cutler pass short left to E.Bennett to GB 40 for 11 yards (T.Williams).,3,23,2012 20120913_CHI@GB,4,9,20,CHI,GB,1,10,40,(9:20) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,3,23,2012 20120913_CHI@GB,4,9,14,CHI,GB,2,10,40,(9:14) (Shotgun) J.Cutler pass incomplete short middle to K.Davis (D.Smith). PENALTY on CHI-G.Carimi Offensive Holding 10 yards enforced at GB 40 - No Play.,3,23,2012 20120913_CHI@GB,4,9,7,CHI,GB,2,20,50,(9:07) (Shotgun) J.Cutler sacked at CHI 49 for -1 yards (M.Daniels).,3,23,2012 20120913_CHI@GB,4,8,28,CHI,GB,3,21,51,(8:28) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,3,23,2012 20120913_CHI@GB,4,8,21,CHI,GB,4,21,51,(8:21) A.Podlesh punts 36 yards to GB 15 Center-P.Mannelly fair catch by R.Cobb. PENALTY on CHI-E.Weems Face Mask (15 Yards) 15 yards enforced at GB 15.,3,23,2012 20120913_CHI@GB,4,8,14,GB,CHI,1,10,70,(8:14) A.Rodgers pass short right intended for Ja.Jones INTERCEPTED by T.Jennings at GB 44. T.Jennings to GB 24 for 20 yards (C.Benson).,23,3,2012 20120913_CHI@GB,4,8,4,CHI,GB,1,10,24,(8:04) J.Cutler sacked at GB 31 for -7 yards (C.Matthews).,3,23,2012 20120913_CHI@GB,4,7,24,CHI,GB,2,17,31,(7:24) (Shotgun) J.Cutler pass short left to B.Marshall ran ob at GB 21 for 10 yards (C.Woodson).,3,23,2012 20120913_CHI@GB,4,6,59,CHI,GB,3,7,21,(6:59) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,3,23,2012 20120913_CHI@GB,4,6,54,CHI,GB,4,7,21,(6:54) (Shotgun) J.Cutler pass deep middle to K.Davis for 21 yards TOUCHDOWN.,3,23,2012 20120913_CHI@GB,4,6,54,CHI,GB,,,21,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,23,2012 20120913_CHI@GB,4,6,54,CHI,GB,,,21,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,10,23,2012 20120913_CHI@GB,4,6,49,GB,CHI,1,10,80,(6:49) C.Benson left end to GB 19 for -1 yards (M.Wright).,23,10,2012 20120913_CHI@GB,4,6,6,GB,CHI,2,11,81,(6:06) A.Rodgers pass incomplete short right to J.Nelson.,23,10,2012 20120913_CHI@GB,4,6,2,GB,CHI,3,11,81,(6:02) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 45 for 26 yards (T.Jennings).,23,10,2012 20120913_CHI@GB,4,5,19,GB,CHI,1,10,55,(5:19) C.Benson right guard to GB 45 for no gain (C.Tillman).,23,10,2012 20120913_CHI@GB,4,4,34,GB,CHI,2,10,55,(4:34) A.Green up the middle to GB 45 for no gain (L.Briggs).,23,10,2012 20120913_CHI@GB,4,4,27,GB,CHI,3,10,55,(4:27) (Shotgun) A.Rodgers sacked at GB 44 for -1 yards (S.McClellin).,23,10,2012 20120913_CHI@GB,4,4,19,GB,CHI,4,11,56,(4:19) T.Masthay punts 39 yards to CHI 17 Center-B.Goode. D.Hester pushed ob at CHI 18 for 1 yard (R.Francois).,23,10,2012 20120913_CHI@GB,4,4,9,CHI,GB,1,10,82,(4:09) J.Cutler sacked at CHI 14 for -4 yards (J.Worthy). GB-B.Raji was injured during the play.,10,23,2012 20120913_CHI@GB,4,3,49,CHI,GB,2,14,86,(3:49) (Shotgun) J.Cutler sacked at CHI 4 for -10 yards (C.Matthews).,10,23,2012 20120913_CHI@GB,4,3,21,CHI,GB,3,24,96,(3:21) (No Huddle Shotgun) M.Bush up the middle to CHI 15 for 11 yards (D.Smith). PENALTY on GB Defensive 12 On-field 5 yards enforced at CHI 4 - No Play.,10,23,2012 20120913_CHI@GB,4,3,16,CHI,GB,3,19,91,(3:16) (Shotgun) J.Cutler pass short left to B.Marshall pushed ob at CHI 23 for 14 yards (C.Hayward).,10,23,2012 20120913_CHI@GB,4,3,7,CHI,GB,4,5,77,(3:07) (Shotgun) J.Cutler pass short left intended for E.Bennett INTERCEPTED by J.McMillian at CHI 30. J.McMillian to CHI 30 for no gain (E.Bennett).,10,23,2012 20120913_CHI@GB,4,3,0,GB,CHI,1,10,30,(3:00) C.Benson left guard to CHI 24 for 6 yards (C.Wootton).,23,10,2012 20120913_CHI@GB,4,2,20,GB,CHI,2,4,24,(2:20) C.Benson right end to CHI 18 for 6 yards (C.Conte).,23,10,2012 20120913_CHI@GB,4,2,0,GB,CHI,1,10,18,(2:00) A.Rodgers kneels to CHI 20 for -2 yards.,23,10,2012 20120913_CHI@GB,4,1,18,GB,CHI,2,12,20,(1:18) A.Rodgers kneels to CHI 22 for -2 yards.,23,10,2012 20120913_CHI@GB,4,0,39,GB,CHI,3,14,22,(:39) A.Rodgers kneels to CHI 24 for -2 yards.,23,10,2012 20120913_CHI@GB,4,0,39,GB,CHI,,,22,                      ,23,10,2012 20120916_KC@BUF,1,0,0,BUF,KC,,,22,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,0,0,2012 20120916_KC@BUF,1,60,0,KC,BUF,1,10,80,(15:00) M.Cassel pass short left to P.Hillis to KC 35 for 15 yards (G.Wilson; N.Barnett). Screen pass caught at KC 20.,0,0,2012 20120916_KC@BUF,1,59,36,KC,BUF,1,10,65,(14:36) M.Cassel pass short right to D.Bowe to KC 39 for 4 yards (A.Williams). Slant pattern caught at KC 39.,0,0,2012 20120916_KC@BUF,1,58,53,KC,BUF,2,6,61,(13:53) J.Charles right guard to KC 47 for 8 yards (G.Wilson).,0,0,2012 20120916_KC@BUF,1,58,7,KC,BUF,1,10,53,(13:07) J.Charles left guard to KC 44 for -3 yards (M.Anderson).,0,0,2012 20120916_KC@BUF,1,57,22,KC,BUF,2,13,56,(12:22) M.Cassel pass incomplete deep left to D.Bowe. Overthrown receiver in flat at BUF 38.,0,0,2012 20120916_KC@BUF,1,57,22,KC,BUF,3,13,56,(12:22) (Shotgun) M.Cassel pass short left to J.Charles pushed ob at BUF 46 for 10 yards (S.Gilmore). Flare pass caught at KC 41.,0,0,2012 20120916_KC@BUF,1,56,49,KC,BUF,4,3,46,(11:49) (Run formation) PENALTY on KC-M.Cassel Delay of Game 5 yards enforced at BUF 46 - No Play.,0,0,2012 20120916_KC@BUF,1,56,35,KC,BUF,4,8,51,(11:35) D.Colquitt punts 35 yards to BUF 16 Center-T.Gafford fair catch by L.McKelvin.,0,0,2012 20120916_KC@BUF,1,56,35,BUF,KC,1,10,84,(11:35) C.Spiller left tackle to BUF 17 for 1 yard (G.Dorsey D.Poe).,0,0,2012 20120916_KC@BUF,1,55,52,BUF,KC,2,9,83,(10:52) C.Spiller up the middle to BUF 25 for 8 yards (D.Johnson; J.Arenas).,0,0,2012 20120916_KC@BUF,1,55,11,BUF,KC,3,1,75,(10:11) R.Fitzpatrick pass incomplete short right to S.Chandler. Underthrown receiver at BUF 37.,0,0,2012 20120916_KC@BUF,1,55,6,BUF,KC,4,1,75,(10:06) B.Moorman punts 60 yards to KC 15 Center-G.Sanborn. J.Arenas to KC 30 for 15 yards (C.White).,0,0,2012 20120916_KC@BUF,1,54,52,KC,BUF,1,10,70,(9:52) P.Hillis up the middle to KC 34 for 4 yards (M.Williams).,0,0,2012 20120916_KC@BUF,1,54,24,KC,BUF,2,6,66,(9:24) (No Huddle) J.Charles right guard to KC 29 for -5 yards (M.Dareus K.Williams).,0,0,2012 20120916_KC@BUF,1,53,43,KC,BUF,3,11,71,(8:43) (Shotgun) M.Cassel pass short middle to J.Charles to KC 31 for 2 yards (S.Gilmore). Screen pass caught at KC 23.,0,0,2012 20120916_KC@BUF,1,53,4,KC,BUF,4,9,69,(8:04) D.Colquitt punts 46 yards to BUF 23 Center-T.Gafford. L.McKelvin to BUF 26 for 3 yards (B.Siler). PENALTY on BUF-D.Searcy Offensive Holding 10 yards enforced at BUF 26.,0,0,2012 20120916_KC@BUF,1,52,53,BUF,KC,1,10,84,(7:53) C.Spiller up the middle to BUF 21 for 5 yards (D.Johnson Ty.Jackson).,0,0,2012 20120916_KC@BUF,1,52,16,BUF,KC,2,5,79,(7:16) Wildcat formation direct snap to B.Smith (R.Fitzpatrick at WR). (Shotgun) C.Spiller right end to BUF 28 for 7 yards (J.Arenas).,0,0,2012 20120916_KC@BUF,1,51,46,BUF,KC,1,10,72,(6:46) C.Spiller right guard to BUF 28 for no gain (J.Houston).,0,0,2012 20120916_KC@BUF,1,51,6,BUF,KC,2,10,72,(6:06) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 47 for 19 yards (A.Elam). Caught at BUF 30 crossing from right.,0,0,2012 20120916_KC@BUF,1,50,21,BUF,KC,1,10,53,(5:21) T.Choice up the middle to KC 45 for 8 yards (D.Johnson T.Daniels).,0,0,2012 20120916_KC@BUF,1,49,41,BUF,KC,2,2,45,(4:41) T.Choice right guard to KC 43 for 2 yards (T.Hali; D.Johnson).,0,0,2012 20120916_KC@BUF,1,49,41,BUF,KC,1,10,43,(4:41) Wildcat formation (R.Fitzpatrick at WR). Direct snap to B.Smith. B.Smith left guard to KC 45 for -2 yards (D.Johnson J.Houston). PENALTY on BUF-A.Levitre Offensive Holding 10 yards enforced at KC 43 - No Play.,0,0,2012 20120916_KC@BUF,1,48,26,BUF,KC,1,20,53,(3:26) R.Fitzpatrick pass deep right to B.Smith ran ob at KC 37 for 16 yards. Caught along sideline at KC 37.,0,0,2012 20120916_KC@BUF,1,48,4,BUF,KC,2,4,37,(3:04) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler [J.Houston]. Dropped by receiver at KC 37. Thrown under pressure.,0,0,2012 20120916_KC@BUF,1,47,58,BUF,KC,3,4,37,(2:58) (Shotgun) R.Fitzpatrick scrambles right tackle to KC 17 for 20 yards (B.Flowers).,0,0,2012 20120916_KC@BUF,1,47,12,BUF,KC,1,10,17,(2:12) R.Fitzpatrick pass incomplete short right to St.Johnson. Dropped in flat at KC 8.,0,0,2012 20120916_KC@BUF,1,47,7,BUF,KC,2,10,17,(2:07) (Shotgun) C.Spiller left guard for 17 yards TOUCHDOWN.,0,0,2012 20120916_KC@BUF,1,47,7,BUF,KC,,,17,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,0,2012 20120916_KC@BUF,1,47,7,BUF,KC,,,17,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,7,0,2012 20120916_KC@BUF,1,47,1,KC,BUF,1,10,80,(2:01) P.Hillis up the middle to KC 20 for no gain (K.Sheppard N.Barnett).,0,7,2012 20120916_KC@BUF,1,46,21,KC,BUF,2,10,80,(1:21) M.Cassel pass short right to D.McCluster to KC 24 for 4 yards (G.Wilson; B.Scott). Dump pass caught at KC 22.,0,7,2012 20120916_KC@BUF,1,45,41,KC,BUF,3,6,76,(:41) (Shotgun) M.Cassel pass incomplete short middle to J.Charles [M.Anderson]. Overthrown receiver at KC 25.,0,7,2012 20120916_KC@BUF,1,45,36,KC,BUF,4,6,76,(:36) D.Colquitt punts 50 yards to BUF 26 Center-T.Gafford. L.McKelvin to BUF 33 for 7 yards (E.Jones). Penalty on KC-E.Jones Face Mask (15 Yards) offsetting enforced at BUF 33. Penalty on BUF-C.McIntyre Illegal Block Above the Waist offsetting.,0,7,2012 20120916_KC@BUF,1,45,24,BUF,KC,1,10,67,(:24) (Shotgun) C.Spiller up the middle to BUF 37 for 4 yards (Ty.Jackson G.Dorsey).,7,0,2012 20120916_KC@BUF,2,45,0,BUF,KC,2,6,63,(15:00) (Shotgun) R.Fitzpatrick scrambles right end pushed ob at BUF 45 for 8 yards (E.Berry).,7,0,2012 20120916_KC@BUF,2,44,34,BUF,KC,1,10,55,(14:34) Wildcat formation snap to B.Smith (R.Fitzpatrick at WR). B.Smith right tackle to 50 for 5 yards (J.Houston A.Elam).,7,0,2012 20120916_KC@BUF,2,43,50,BUF,KC,2,5,50,(13:50) C.Spiller up the middle to KC 12 for 38 yards (A.Elam). Key block: C.Hairston.,7,0,2012 20120916_KC@BUF,2,43,1,BUF,KC,1,10,12,(13:01) (Shotgun) R.Fitzpatrick right tackle to KC 5 for 7 yards (J.Arenas).,7,0,2012 20120916_KC@BUF,2,42,38,BUF,KC,2,3,5,(12:38) R.Fitzpatrick pass incomplete short right to St.Johnson (B.Flowers). Receiver and breakup 4 yds. into end zone along sideline.,7,0,2012 20120916_KC@BUF,2,42,34,BUF,KC,3,3,5,(12:34) (Shotgun) C.Spiller left tackle for 5 yards TOUCHDOWN. Key block: C.Glenn.,7,0,2012 20120916_KC@BUF,2,42,34,BUF,KC,,,5,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,0,2012 20120916_KC@BUF,2,42,34,BUF,KC,,,5,J.Potter kicks 72 yards from BUF 35 to KC -7. J.Arenas Touchback.,14,0,2012 20120916_KC@BUF,2,42,29,KC,BUF,1,10,80,(12:29) P.Hillis right tackle to KC 24 for 4 yards (A.Moats T.McGee).,0,14,2012 20120916_KC@BUF,2,41,47,KC,BUF,2,6,76,(11:47) M.Cassel pass short middle to D.Bowe to KC 43 for 19 yards (J.Byrd). Caught at KC 37 slanting from right.,0,14,2012 20120916_KC@BUF,2,41,5,KC,BUF,1,10,57,(11:05) J.Charles left tackle to KC 44 for 1 yard (M.Anderson).,0,14,2012 20120916_KC@BUF,2,40,21,KC,BUF,2,9,56,(10:21) (Shotgun) M.Cassel pass incomplete short left to D.McCluster. Overthrown receiver along sideline at BUF 47.,0,14,2012 20120916_KC@BUF,2,40,17,KC,BUF,3,9,56,(10:17) (Shotgun) M.Cassel sacked at KC 36 for -8 yards (M.Dareus).,0,14,2012 20120916_KC@BUF,2,39,50,KC,BUF,4,17,64,(9:50) D.Colquitt punts 40 yards to BUF 24 Center-T.Gafford out of bounds.,0,14,2012 20120916_KC@BUF,2,39,42,BUF,KC,1,10,76,(9:42) (Shotgun) R.Fitzpatrick pass short right to C.Spiller to BUF 25 for 1 yard (J.Houston). Screen pass caught at BUF 22.,14,0,2012 20120916_KC@BUF,2,39,2,BUF,KC,2,9,75,(9:02) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler. Thrown wide of receiver at BUF 36 crossing from middle.,14,0,2012 20120916_KC@BUF,2,38,57,BUF,KC,3,9,75,(8:57) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 24 for -1 yards (A.Elam). Screen pass caught at BUF 24.,14,0,2012 20120916_KC@BUF,2,38,23,BUF,KC,4,10,76,(8:23) B.Moorman punts 51 yards to KC 25 Center-G.Sanborn out of bounds. J.Arenas caught ball out of bounds.,14,0,2012 20120916_KC@BUF,2,38,16,KC,BUF,1,10,75,(8:16) P.Hillis right guard pushed ob at KC 31 for 6 yards (T.McGee).,0,14,2012 20120916_KC@BUF,2,37,37,KC,BUF,2,4,69,(7:37) M.Cassel pass incomplete deep middle to T.Moeaki (T.McGee M.Anderson). Underthrown receiver at KC 47.,0,14,2012 20120916_KC@BUF,2,37,30,KC,BUF,3,4,69,(7:30) (Shotgun) M.Cassel pass short right to D.Bowe pushed ob at KC 41 for 10 yards (T.McGee). Caught along sideline at KC 41.,0,14,2012 20120916_KC@BUF,2,37,5,KC,BUF,1,10,59,(7:05) M.Cassel sacked at KC 38 for -3 yards (A.Carrington). FUMBLES (A.Carrington) RECOVERED by BUF-M.Williams at KC 43. M.Williams to KC 43 for no gain (E.Winston).,0,14,2012 20120916_KC@BUF,2,36,58,BUF,KC,1,10,43,(6:58) C.Spiller up the middle to KC 42 for 1 yard (D.Johnson).,14,0,2012 20120916_KC@BUF,2,36,15,BUF,KC,2,9,42,(6:15) C.Spiller up the middle to KC 36 for 6 yards (E.Berry R.Pitoitua).,14,0,2012 20120916_KC@BUF,2,35,34,BUF,KC,3,3,36,(5:34) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to KC 29 for 7 yards (S.Routt). Curl pattern caught at KC 30 slanting to middle.,14,0,2012 20120916_KC@BUF,2,34,49,BUF,KC,1,10,29,(4:49) R.Fitzpatrick pass short left to C.Spiller pushed ob at KC 2 for 27 yards (T.Hali). Screen pass caught at KC 30.,14,0,2012 20120916_KC@BUF,2,34,21,BUF,KC,1,2,2,(4:21) D.Dickerson left end to KC 10 for -8 yards (A.Elam; E.Berry).,14,0,2012 20120916_KC@BUF,2,33,33,BUF,KC,2,10,10,(3:33) (Shotgun) R.Fitzpatrick pass short left to S.Chandler for 10 yards TOUCHDOWN. Caught in flat 5 yds. into end zone.,14,0,2012 20120916_KC@BUF,2,33,33,BUF,KC,,,10,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,14,0,2012 20120916_KC@BUF,2,33,33,BUF,KC,,,10,J.Potter kicks 60 yards from BUF 35 to KC 5. J.Arenas to KC 22 for 17 yards (R.Martin A.Moats).,21,0,2012 20120916_KC@BUF,2,33,25,KC,BUF,1,10,78,(3:25) PENALTY on KC-E.Winston False Start 5 yards enforced at KC 22 - No Play.,0,21,2012 20120916_KC@BUF,2,33,25,KC,BUF,1,15,83,(3:25) P.Hillis up the middle to KC 25 for 8 yards (K.Sheppard N.Barnett).,0,21,2012 20120916_KC@BUF,2,32,49,KC,BUF,2,7,75,(2:49) M.Cassel pass short right to D.Bowe ran ob at KC 34 for 9 yards. Caught along sideline at KC 34.,0,21,2012 20120916_KC@BUF,2,32,31,KC,BUF,1,10,66,(2:31) M.Cassel pass deep middle to K.Boss to BUF 46 for 20 yards (G.Wilson). BUF-G.Wilson was injured during the play. His return is Questionable. Caught at 50. PENALTY on KC-P.Hillis Chop Block 15 yards enforced at KC 34 - No Play.,0,21,2012 20120916_KC@BUF,2,32,10,KC,BUF,1,25,81,(2:10) M.Cassel pass short middle to J.Charles to KC 26 for 7 yards (K.Sheppard). Caught at 22 slanting from left.,0,21,2012 20120916_KC@BUF,2,32,0,KC,BUF,2,18,74,(2:00) (Shotgun) M.Cassel pass deep middle to K.Boss to BUF 45 for 29 yards (D.Searcy). KC-K.Boss was injured during the play. Caught at 50. PENALTY on BUF-D.Searcy Unnecessary Roughness 15 yards enforced at BUF 45.,0,21,2012 20120916_KC@BUF,2,31,43,KC,BUF,1,10,25,(1:43) S.Draughn left guard to BUF 22 for 3 yards (N.Barnett).,0,21,2012 20120916_KC@BUF,2,31,6,KC,BUF,2,7,22,(1:06) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe. Overthrown receiver 3 yds. into end zone.,0,21,2012 20120916_KC@BUF,2,31,1,KC,BUF,3,7,22,(1:01) (Shotgun) M.Cassel scrambles left guard to BUF 1 for 21 yards (J.Rogers; J.Byrd).,0,21,2012 20120916_KC@BUF,2,30,49,KC,BUF,1,1,1,(:49) M.Cassel pass incomplete short left to D.Bowe (S.Gilmore). Overthrown receiver and coverage in rear corner of end zone.,0,21,2012 20120916_KC@BUF,2,30,45,KC,BUF,2,1,1,(:45) P.Hillis up the middle to BUF 1 for no gain (N.Barnett). FUMBLES (N.Barnett) RECOVERED by BUF-B.Scott at BUF -1. Touchback. Play Challenged by Replay Assistant and Upheld.,0,21,2012 20120916_KC@BUF,2,30,38,BUF,KC,1,10,80,(:38) R.Fitzpatrick kneels to BUF 19 for -1 yards.,21,0,2012 20120916_KC@BUF,3,30,0,KC,BUF,,,80,R.Succop kicks 70 yards from KC 35 to BUF -5. L.McKelvin Touchback.,0,21,2012 20120916_KC@BUF,3,30,0,BUF,KC,1,10,80,(15:00) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson (S.Routt). Receiver and breakup along sideline at BUF 30.,21,0,2012 20120916_KC@BUF,3,29,56,BUF,KC,2,10,80,(14:56) (Shotgun) R.Fitzpatrick pass short right to T.Graham to BUF 27 for 7 yards (E.Berry). Screen pass caught at BUF 18.,21,0,2012 20120916_KC@BUF,3,29,14,BUF,KC,3,3,73,(14:14) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Jones (D.Poe). Underthrown receiver at BUF 39 slanting to middle. Pass tipped at line.,21,0,2012 20120916_KC@BUF,3,29,9,BUF,KC,4,3,73,(14:09) B.Moorman punts 43 yards to KC 30 Center-G.Sanborn. J.Arenas ran ob at KC 32 for 2 yards.,21,0,2012 20120916_KC@BUF,3,29,2,KC,BUF,1,10,68,(14:02) J.Charles up the middle to KC 34 for 2 yards (M.Williams).,0,21,2012 20120916_KC@BUF,3,28,26,KC,BUF,2,8,66,(13:26) M.Cassel pass incomplete short left to D.Bowe (M.Williams S.Gilmore). Underthrown receiver in coverage (S.Gilmore) near sideline at KC 41. Pass tipped at line (M.Williams).,0,21,2012 20120916_KC@BUF,3,28,20,KC,BUF,3,8,66,(13:20) (Shotgun) M.Cassel pass incomplete short right to T.Moeaki. Thrown wide of receiver in flat at KC 37.,0,21,2012 20120916_KC@BUF,3,28,13,KC,BUF,4,8,66,(13:13) D.Colquitt punts 66 yards to end zone Center-T.Gafford Touchback. Kick into end zone.,0,21,2012 20120916_KC@BUF,3,28,6,BUF,KC,1,10,95,(13:06) Wildcat snap to B.Smith (R.Fitzpatrick at WR). B.Smith FUMBLES (Aborted) at BUF 15 and recovers at BUF 5. B.Smith to BUF 5 for no gain (T.Hali).,21,0,2012 20120916_KC@BUF,3,27,29,BUF,KC,2,25,95,(12:29) C.Spiller right guard to BUF 12 for 7 yards (Ty.Jackson J.Houston).,21,0,2012 20120916_KC@BUF,3,26,56,BUF,KC,3,18,88,(11:56) C.Spiller up the middle to BUF 18 for 6 yards (D.Johnson).,21,0,2012 20120916_KC@BUF,3,26,16,BUF,KC,4,12,82,(11:16) B.Moorman punts 43 yards to KC 39 Center-G.Sanborn. J.Arenas to BUF 38 for 23 yards (N.Bradham).,21,0,2012 20120916_KC@BUF,3,26,5,KC,BUF,1,10,38,(11:05) M.Cassel pass incomplete deep left to J.Baldwin. Overthrown receiver in coverage at BUF 3.,0,21,2012 20120916_KC@BUF,3,26,2,KC,BUF,2,10,38,(11:02) M.Cassel pass short left to D.McCluster to BUF 28 for 10 yards (S.Gilmore). Penalty on BUF Defensive 12 On-field declined. WR screen caught at BUF 40.,0,21,2012 20120916_KC@BUF,3,25,18,KC,BUF,1,10,28,(10:18) (Shotgun) M.Cassel pass short left to J.Baldwin to BUF 18 for 10 yards (S.Gilmore). Caught along sideline at BUF 18.,0,21,2012 20120916_KC@BUF,3,24,37,KC,BUF,1,10,18,(9:37) (Shotgun) M.Cassel pass short middle to D.McCluster to BUF 12 for 6 yards (A.Williams). Caught at BUF 13 crossing from right.,0,21,2012 20120916_KC@BUF,3,23,53,KC,BUF,2,4,12,(8:53) J.Charles left tackle to BUF 12 for no gain (S.Gilmore).,0,21,2012 20120916_KC@BUF,3,23,10,KC,BUF,3,4,12,(8:10) M.Cassel sacked at BUF 15 for -3 yards (K.Williams).,0,21,2012 20120916_KC@BUF,3,22,36,KC,BUF,4,7,15,(7:36) R.Succop 33 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,21,2012 20120916_KC@BUF,3,22,36,KC,BUF,,,15,R.Succop kicks 73 yards from KC 35 to BUF -8. L.McKelvin Touchback.,3,21,2012 20120916_KC@BUF,3,22,32,BUF,KC,1,10,80,(7:32) C.Spiller right tackle pushed ob at BUF 22 for 2 yards (J.Belcher). PENALTY on BUF-L.Smith Offensive Holding 10 yards enforced at BUF 20 - No Play.,21,3,2012 20120916_KC@BUF,3,22,4,BUF,KC,1,20,90,(7:04) R.Fitzpatrick pass short right to S.Chandler pushed ob at KC 47 for 43 yards (A.Elam). Flat pass caught at BUF 21.,21,3,2012 20120916_KC@BUF,3,21,30,BUF,KC,1,10,47,(6:30) C.Spiller right tackle to KC 49 for -2 yards (J.Houston).,21,3,2012 20120916_KC@BUF,3,20,49,BUF,KC,2,12,49,(5:49) R.Fitzpatrick pass incomplete short left to D.Jones. Thrown wide of receiver along sideline at KC 38.,21,3,2012 20120916_KC@BUF,3,20,45,BUF,KC,3,12,49,(5:45) (Shotgun) R.Fitzpatrick pass short right to St.Johnson for 49 yards TOUCHDOWN. Caught in flat at KC 42 crossing to middle. Cut back from left at KC20 to end zone.,21,3,2012 20120916_KC@BUF,3,20,45,BUF,KC,,,49,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,21,3,2012 20120916_KC@BUF,3,20,45,BUF,KC,,,49,J.Potter kicks 59 yards from BUF 35 to KC 6. J.Arenas to KC 29 for 23 yards (D.Searcy).,28,3,2012 20120916_KC@BUF,3,20,29,KC,BUF,1,10,71,(5:29) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 41 for 12 yards (J.Byrd). Caught at KC 39 slanting from left.,3,28,2012 20120916_KC@BUF,3,19,52,KC,BUF,1,10,59,(4:52) M.Cassel pass incomplete short middle to P.Hillis. Overthrown under pressure PENALTY on KC-M.Cassel Intentional Grounding 8 yards enforced at KC 41.,3,28,2012 20120916_KC@BUF,3,19,47,KC,BUF,2,18,67,(4:47) (Shotgun) M.Cassel pass incomplete deep right to J.Baldwin. Overthrown receiver along sideline at BUF 37. Penalty on KC-E.Winston Offensive Holding declined.,3,28,2012 20120916_KC@BUF,3,19,40,KC,BUF,3,18,67,(4:40) (Shotgun) M.Cassel pass short middle to P.Hillis to KC 43 for 10 yards (N.Barnett J.Byrd). Dump pass caught at KC 32.,3,28,2012 20120916_KC@BUF,3,19,5,KC,BUF,4,8,57,(4:05) D.Colquitt punts 45 yards to BUF 12 Center-T.Gafford. L.McKelvin for 88 yards TOUCHDOWN.,3,28,2012 20120916_KC@BUF,3,19,5,BUF,KC,,,57,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,28,3,2012 20120916_KC@BUF,3,19,5,BUF,KC,,,57,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,35,3,2012 20120916_KC@BUF,3,18,45,KC,BUF,1,10,80,(3:45) P.Hillis up the middle to KC 23 for 3 yards (M.Anderson).,3,35,2012 20120916_KC@BUF,3,18,9,KC,BUF,2,7,77,(3:09) M.Cassel sacked at KC 13 for -10 yards (K.Sheppard).,3,35,2012 20120916_KC@BUF,3,17,32,KC,BUF,3,17,87,(2:32) (Shotgun) P.Hillis right tackle to KC 31 for 18 yards (J.Byrd; T.McGee).,3,35,2012 20120916_KC@BUF,3,16,46,KC,BUF,1,10,69,(1:46) M.Cassel pass incomplete deep left to J.Baldwin (S.Gilmore). Receiver and coverage along sideline at BUF 35.,3,35,2012 20120916_KC@BUF,3,16,39,KC,BUF,2,10,69,(1:39) S.Draughn up the middle to BUF 44 for 25 yards (G.Wilson).,3,35,2012 20120916_KC@BUF,3,15,51,KC,BUF,1,10,44,(:51) M.Cassel pass short middle to D.Bowe to BUF 30 for 14 yards (G.Wilson). Caught at BUF 38 crossing from right.,3,35,2012 20120916_KC@BUF,3,15,51,KC,BUF,1,10,30,(:51) M.Cassel sacked at BUF 38 for -8 yards (K.Williams).,3,35,2012 20120916_KC@BUF,4,15,0,KC,BUF,2,18,38,(15:00) M.Cassel scrambles up the middle to BUF 34 for 4 yards (Sp.Johnson).,3,35,2012 20120916_KC@BUF,4,14,16,KC,BUF,3,14,34,(14:16) (Shotgun) M.Cassel pass incomplete short left to S.Draughn. Thrown away under pressure from C.Kelsay.,3,35,2012 20120916_KC@BUF,4,14,9,KC,BUF,4,14,34,(14:09) D.Colquitt punts 31 yards to BUF 3 Center-T.Gafford downed by KC-S.Draughn.,3,35,2012 20120916_KC@BUF,4,14,1,BUF,KC,1,10,97,(14:01) T.Choice left guard to BUF 4 for 1 yard (D.Poe).,35,3,2012 20120916_KC@BUF,4,13,21,BUF,KC,2,9,96,(13:21) T.Choice right tackle to BUF 10 for 6 yards (T.Hali R.Pitoitua).,35,3,2012 20120916_KC@BUF,4,12,38,BUF,KC,3,3,90,(12:38) (Shotgun) T.Choice up the middle to BUF 16 for 6 yards (R.Pitoitua A.Elam).,35,3,2012 20120916_KC@BUF,4,11,55,BUF,KC,1,10,84,(11:55) (Shotgun) T.Choice up the middle to BUF 25 for 9 yards (D.Johnson).,35,3,2012 20120916_KC@BUF,4,11,11,BUF,KC,2,1,75,(11:11) (Shotgun) C.Spiller up the middle to BUF 45 for 20 yards (A.Elam). C.Spiller bounced off to left soon after crossing line.,35,3,2012 20120916_KC@BUF,4,10,21,BUF,KC,1,10,55,(10:21) Wildcat formation snap to J.White (R.Fitzpatrick at WR). T.Choice left tackle pushed ob at BUF 47 for 2 yards (S.Routt).,35,3,2012 20120916_KC@BUF,4,9,37,BUF,KC,2,8,53,(9:37) T.Choice up the middle to 50 for 3 yards (D.Poe J.Belcher).,35,3,2012 20120916_KC@BUF,4,8,54,BUF,KC,3,5,50,(8:54) (Shotgun) R.Fitzpatrick pass incomplete short left to T.Choice (T.Hartman). Receiver and coverage at KC 47.,35,3,2012 20120916_KC@BUF,4,8,46,BUF,KC,4,5,50,(8:46) B.Moorman punts 50 yards to end zone Center-G.Sanborn Touchback. Kick through end zone.,35,3,2012 20120916_KC@BUF,4,8,39,KC,BUF,1,10,80,(8:39) S.Draughn left guard pushed ob at KC 21 for 1 yard (J.Byrd).,3,35,2012 20120916_KC@BUF,4,8,7,KC,BUF,2,9,79,(8:07) S.Draughn up the middle to KC 30 for 9 yards (A.Moats).,3,35,2012 20120916_KC@BUF,4,7,37,KC,BUF,1,10,70,(7:37) (No Huddle Shotgun) M.Cassel pass short right to D.Bowe to KC 41 for 11 yards (A.Williams). Caught near sideline at KC 40.,3,35,2012 20120916_KC@BUF,4,6,57,KC,BUF,1,10,59,(6:57) (Shotgun) M.Cassel pass deep left to J.Baldwin to BUF 33 for 26 yards (S.Gilmore). Caught near sideline at BUF 40.,3,35,2012 20120916_KC@BUF,4,6,32,KC,BUF,1,10,33,(6:32) (No Huddle Shotgun) M.Cassel pass deep right to D.Bowe for 33 yards TOUCHDOWN. Caught along sideline in coverage at BUF 5.,3,35,2012 20120916_KC@BUF,4,6,32,KC,BUF,,,33,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,35,2012 20120916_KC@BUF,4,6,32,KC,BUF,,,33,R.Succop kicks 50 yards from KC 35 to BUF 15. B.Smith pushed ob at BUF 20 for 5 yards (T.Hartman).,10,35,2012 20120916_KC@BUF,4,6,23,BUF,KC,1,10,80,(6:23) T.Thigpen in at QB. (Shotgun) J.White right guard to BUF 24 for 4 yards (A.Elam G.Dorsey).,35,10,2012 20120916_KC@BUF,4,5,36,BUF,KC,2,6,76,(5:36) (Shotgun) J.White up the middle to BUF 24 for no gain (D.Johnson).,35,10,2012 20120916_KC@BUF,4,4,54,BUF,KC,3,6,76,(4:54) (Shotgun) J.White up the middle to BUF 29 for 5 yards (D.Johnson Ty.Jackson).,35,10,2012 20120916_KC@BUF,4,4,9,BUF,KC,4,1,71,(4:09) B.Moorman punts 54 yards to KC 17 Center-G.Sanborn out of bounds. S.Breaston caught ball out of bounds.,35,10,2012 20120916_KC@BUF,4,4,1,KC,BUF,1,10,83,(4:01) (Shotgun) P.Hillis right guard to KC 34 for 17 yards (D.Searcy).,10,35,2012 20120916_KC@BUF,4,3,27,KC,BUF,1,10,66,(3:27) (Shotgun) P.Hillis right guard to KC 38 for 4 yards (D.Searcy; N.Bradham).,10,35,2012 20120916_KC@BUF,4,2,54,KC,BUF,2,6,62,(2:54) (No Huddle Shotgun) M.Cassel pass incomplete short right to D.Bowe (A.Williams). Receiver and coverage along sideline at BUF 49.,10,35,2012 20120916_KC@BUF,4,2,49,KC,BUF,3,6,62,(2:49) (Shotgun) M.Cassel pass short right to S.Draughn to BUF 39 for 23 yards (C.White). Screen pass caught at KC 34.,10,35,2012 20120916_KC@BUF,4,2,15,KC,BUF,1,10,39,(2:15) (No Huddle Shotgun) M.Cassel pass incomplete deep left to D.Bowe. Overthrown receiver along sideline at BUF 13.,10,35,2012 20120916_KC@BUF,4,2,11,KC,BUF,2,10,39,(2:11) (Shotgun) M.Cassel pass short middle to T.Moeaki to BUF 30 for 9 yards (J.Byrd). Caught at BUF 30.,10,35,2012 20120916_KC@BUF,4,2,0,KC,BUF,3,1,30,(2:00) P.Hillis left tackle to BUF 28 for 2 yards (C.White).,10,35,2012 20120916_KC@BUF,4,1,29,KC,BUF,1,10,28,(1:29) (No Huddle Shotgun) M.Cassel pass deep left to J.Baldwin to BUF 2 for 26 yards (S.Gilmore). BUF-S.Gilmore was injured during the play. Caught in coverage at BUF 5. S.Gilmore walks off.,10,35,2012 20120916_KC@BUF,4,1,14,KC,BUF,1,2,2,(1:14) (Shotgun) M.Cassel pass short left to D.Bowe for 2 yards TOUCHDOWN. Caught 5 yds. into end zone along sideline.,10,35,2012 20120916_KC@BUF,4,1,14,KC,BUF,,,2,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,10,35,2012 20120916_KC@BUF,4,1,14,KC,BUF,,,2,R.Succop kicks 65 yards from KC 35 to end zone Touchback. Kick through end zone.,17,35,2012 20120916_KC@BUF,4,1,10,BUF,KC,1,10,80,(1:10) T.Thigpen kneels to BUF 19 for -1 yards.,35,17,2012 20120916_KC@BUF,4,1,7,BUF,KC,2,11,81,(1:07) J.White left guard to BUF 21 for 2 yards (J.Powe).,35,17,2012 20120916_KC@BUF,4,1,0,BUF,KC,3,9,79,(1:00) J.White up the middle to BUF 21 for no gain (E.Jones).,35,17,2012 20120916_KC@BUF,4,0,50,BUF,KC,4,9,79,(:50) B.Moorman punts 48 yards to KC 31 Center-G.Sanborn. S.Breaston MUFFS catch and recovers at KC 31. S.Breaston to BUF 48 for 21 yards (N.Bradham).,35,17,2012 20120916_KC@BUF,4,0,35,KC,BUF,1,10,48,(:35) (Shotgun) M.Cassel pass incomplete deep middle to T.Moeaki. Thrown behind receiver at BUF 30.,17,35,2012 20120916_KC@BUF,4,0,30,KC,BUF,2,10,48,(:30) (No Huddle Shotgun) S.Draughn right guard to BUF 30 for 18 yards (T.McGee).,17,35,2012 20120916_KC@BUF,4,0,14,KC,BUF,1,10,30,(:14) (No Huddle) M.Cassel spiked the ball to stop the clock.,17,35,2012 20120916_KC@BUF,4,0,12,KC,BUF,2,10,30,(:12) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe (G.Wilson). Receiver and coverage along sideline at goal line.,17,35,2012 20120916_KC@BUF,4,0,5,KC,BUF,3,10,30,(:05) (Shotgun) M.Cassel pass deep middle intended for S.Breaston INTERCEPTED by J.Byrd at BUF -9. Touchback.,17,35,2012 20120916_KC@BUF,4,0,5,KC,BUF,,,30,                      ,17,35,2012 20120916_NO@CAR,1,0,0,CAR,NO,,,30,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 20120916_NO@CAR,1,60,0,NO,CAR,1,10,80,(15:00) P.Thomas left guard to NO 22 for 2 yards (J.Anderson).,0,0,2012 20120916_NO@CAR,1,59,34,NO,CAR,2,8,78,(14:34) (Shotgun) D.Brees pass short right to D.Sproles to NO 27 for 5 yards (C.Munnerlyn; J.Beason).,0,0,2012 20120916_NO@CAR,1,58,56,NO,CAR,3,3,73,(13:56) (Shotgun) D.Brees pass short right to D.Sproles to NO 45 for 18 yards (H.Nakamura).,0,0,2012 20120916_NO@CAR,1,58,35,NO,CAR,1,10,55,(13:35) M.Ingram right tackle to NO 49 for 4 yards (C.Gamble).,0,0,2012 20120916_NO@CAR,1,57,58,NO,CAR,2,6,51,(12:58) (Shotgun) D.Brees pass short right to D.Sproles to CAR 48 for 3 yards (T.Davis).,0,0,2012 20120916_NO@CAR,1,57,18,NO,CAR,3,3,48,(12:18) (Shotgun) D.Brees pass short right to D.Sproles to CAR 23 for 25 yards (H.Nakamura).,0,0,2012 20120916_NO@CAR,1,56,46,NO,CAR,1,10,23,(11:46) M.Ingram up the middle to CAR 18 for 5 yards (A.Applewhite; L.Kuechly).,0,0,2012 20120916_NO@CAR,1,56,24,NO,CAR,2,5,18,(11:24) M.Ingram up the middle to CAR 6 for 12 yards (H.Nakamura; C.Gamble).,0,0,2012 20120916_NO@CAR,1,55,49,NO,CAR,1,6,6,(10:49) (Shotgun) D.Brees pass short left to D.Sproles to CAR 3 for 3 yards (C.Godfrey; J.Norman).,0,0,2012 20120916_NO@CAR,1,55,16,NO,CAR,2,3,3,(10:16) M.Ingram left tackle to CAR 1 for 2 yards (J.Norman; J.Anderson).,0,0,2012 20120916_NO@CAR,1,54,43,NO,CAR,3,1,1,(9:43) D.Brees pass short right to J.Graham for 1 yard TOUCHDOWN.,0,0,2012 20120916_NO@CAR,1,54,43,NO,CAR,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 20120916_NO@CAR,1,54,43,NO,CAR,,,1,T.Morstead kicks 69 yards from NO 35 to CAR -4. J.Adams to CAR 20 for 24 yards (M.Wilson; J.Casillas).,7,0,2012 20120916_NO@CAR,1,54,35,CAR,NO,1,10,80,(9:35) C.Newton pass deep left to B.LaFell ran ob at CAR 47 for 27 yards.,0,7,2012 20120916_NO@CAR,1,54,12,CAR,NO,1,10,53,(9:12) (Shotgun) D.Williams up the middle to NO 45 for 8 yards (M.Jenkins).,0,7,2012 20120916_NO@CAR,1,53,50,CAR,NO,2,2,45,(8:50) D.Williams up the middle to NO 42 for 3 yards (C.Jordan).,0,7,2012 20120916_NO@CAR,1,53,10,CAR,NO,1,10,42,(8:10) (Shotgun) C.Newton sacked at CAR 49 for -9 yards (C.Jordan).,0,7,2012 20120916_NO@CAR,1,52,34,CAR,NO,2,19,51,(7:34) (Shotgun) J.Stewart left end to CAR 47 for -2 yards (C.Lofton).,0,7,2012 20120916_NO@CAR,1,51,55,CAR,NO,3,21,53,(6:55) (Shotgun) C.Newton scrambles left end to NO 44 for 9 yards (J.Casillas).,0,7,2012 20120916_NO@CAR,1,51,18,CAR,NO,4,12,44,(6:18) B.Nortman punts 37 yards to NO 7 Center-J.Jansen fair catch by D.Sproles.,0,7,2012 20120916_NO@CAR,1,51,11,NO,CAR,1,10,93,(6:11) P.Thomas up the middle to NO 9 for 2 yards (G.Hardy).,7,0,2012 20120916_NO@CAR,1,50,41,NO,CAR,2,8,91,(5:41) D.Brees pass short right intended for D.Thomas INTERCEPTED by C.Godfrey at NO 9. C.Godfrey for 9 yards TOUCHDOWN.,7,0,2012 20120916_NO@CAR,1,50,41,CAR,NO,,,91,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,7,2012 20120916_NO@CAR,1,50,41,CAR,NO,,,91,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,7,7,2012 20120916_NO@CAR,1,50,33,NO,CAR,1,10,80,(5:33) D.Brees pass deep left to L.Moore ran ob at NO 37 for 17 yards.,7,7,2012 20120916_NO@CAR,1,50,19,NO,CAR,1,10,63,(5:19) M.Ingram left guard to NO 39 for 2 yards (D.Edwards; J.Anderson).,7,7,2012 20120916_NO@CAR,1,49,50,NO,CAR,2,8,61,(4:50) P.Thomas up the middle to CAR 38 for 23 yards (C.Gamble).,7,7,2012 20120916_NO@CAR,1,49,6,NO,CAR,1,10,38,(4:06) M.Ingram right end to CAR 35 for 3 yards (G.Hardy; C.Gamble).,7,7,2012 20120916_NO@CAR,1,48,34,NO,CAR,2,7,35,(3:34) (Shotgun) D.Brees pass short left to J.Graham to CAR 24 for 11 yards (J.Beason).,7,7,2012 20120916_NO@CAR,1,48,1,NO,CAR,1,10,24,(3:01) D.Brees pass short left to J.Graham to CAR 10 for 14 yards (C.Godfrey).,7,7,2012 20120916_NO@CAR,1,47,34,NO,CAR,1,10,10,(2:34) M.Ingram up the middle to CAR 8 for 2 yards (G.Hardy; L.Kuechly).,7,7,2012 20120916_NO@CAR,1,47,1,NO,CAR,2,8,8,(2:01) (Shotgun) D.Brees pass short right to L.Moore to CAR 3 for 5 yards (J.Beason). PENALTY on CAR-G.Hardy Defensive Offside 4 yards enforced at CAR 8 - No Play.,7,7,2012 20120916_NO@CAR,1,46,40,NO,CAR,2,4,4,(1:40) (Shotgun) D.Brees pass incomplete short right to L.Moore.,7,7,2012 20120916_NO@CAR,1,46,36,NO,CAR,3,4,4,(1:36) (Shotgun) D.Brees pass incomplete short left to J.Graham.,7,7,2012 20120916_NO@CAR,1,46,30,NO,CAR,4,4,4,(1:30) G.Hartley 22 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,7,7,2012 20120916_NO@CAR,1,46,30,NO,CAR,,,4,T.Morstead kicks 69 yards from NO 35 to CAR -4. J.Adams to CAR 20 for 24 yards (M.Wilson).,10,7,2012 20120916_NO@CAR,1,46,20,CAR,NO,1,10,80,(1:20) (Shotgun) C.Newton right end to NO 40 for 40 yards (R.Harper).,7,10,2012 20120916_NO@CAR,1,45,51,CAR,NO,1,10,40,(:51) D.Williams left tackle to NO 36 for 4 yards (M.Jenkins).,7,10,2012 20120916_NO@CAR,1,45,6,CAR,NO,2,6,36,(:06) (Shotgun) C.Newton pass short left to M.Tolbert to NO 33 for 3 yards (S.Shanle).,7,10,2012 20120916_NO@CAR,2,45,0,CAR,NO,3,4,33,(15:00) (Shotgun) C.Newton right end to NO 26 for 7 yards (J.Greer).,7,10,2012 20120916_NO@CAR,2,44,47,CAR,NO,1,10,26,(14:47) (No Huddle Shotgun) C.Newton pass short left to S.Smith to NO 23 for 3 yards (C.Lofton; P.Robinson).,7,10,2012 20120916_NO@CAR,2,44,13,CAR,NO,2,7,23,(14:13) (Shotgun) D.Williams up the middle to NO 13 for 10 yards (R.Harper; W.Smith).,7,10,2012 20120916_NO@CAR,2,43,33,CAR,NO,1,10,13,(13:33) (Shotgun) J.Stewart up the middle to NO 5 for 8 yards (C.Lofton; M.Jenkins).,7,10,2012 20120916_NO@CAR,2,43,5,CAR,NO,2,2,5,(13:05) (No Huddle Shotgun) J.Stewart up the middle to NO 5 for no gain (W.Smith).,7,10,2012 20120916_NO@CAR,2,42,25,CAR,NO,3,2,5,(12:25) (Shotgun) C.Newton scrambles left end to NO 4 for 1 yard (B.Bunkley; C.White).,7,10,2012 20120916_NO@CAR,2,41,53,NO,CAR,4,1,8,(11:53) C.Newton FUMBLES (Aborted) at NO 8 RECOVERED by NO-J.Casillas at NO 8. J.Casillas to NO 8 for no gain (S.Smith).,10,7,2012 20120916_NO@CAR,2,41,44,NO,CAR,1,10,92,(11:44) P.Thomas up the middle to NO 12 for 4 yards (J.Anderson; L.Kuechly).,10,7,2012 20120916_NO@CAR,2,41,13,NO,CAR,2,6,88,(11:13) D.Brees pass incomplete deep left to L.Moore.,10,7,2012 20120916_NO@CAR,2,41,9,NO,CAR,3,6,88,(11:09) (Shotgun) D.Brees pass short left to J.Graham to NO 25 for 13 yards (J.Beason).,10,7,2012 20120916_NO@CAR,2,40,48,NO,CAR,1,10,75,(10:48) M.Ingram right guard to NO 34 for 9 yards (C.Godfrey).,10,7,2012 20120916_NO@CAR,2,40,3,NO,CAR,2,1,66,(10:03) (Shotgun) D.Brees pass short middle to D.Sproles to NO 45 for 11 yards (C.Godfrey; J.Beason).,10,7,2012 20120916_NO@CAR,2,39,29,NO,CAR,1,10,55,(9:29) D.Brees pass short left to J.Morgan to 50 for 5 yards (H.Nakamura).,10,7,2012 20120916_NO@CAR,2,38,51,NO,CAR,2,5,50,(8:51) (Shotgun) D.Brees pass short right to P.Thomas to CAR 41 for 9 yards (T.Davis; C.Gamble).,10,7,2012 20120916_NO@CAR,2,38,22,NO,CAR,1,10,41,(8:22) M.Ingram up the middle to CAR 39 for 2 yards (J.Anderson; C.Johnson).,10,7,2012 20120916_NO@CAR,2,37,43,NO,CAR,2,8,39,(7:43) D.Brees pass short right to D.Sproles to CAR 35 for 4 yards (C.Gamble).,10,7,2012 20120916_NO@CAR,2,37,17,NO,CAR,3,4,35,(7:17) (Shotgun) D.Brees pass incomplete short middle to L.Moore (F.Alexander).,10,7,2012 20120916_NO@CAR,2,37,13,NO,CAR,4,4,35,(7:13) G.Hartley 53 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,10,7,2012 20120916_NO@CAR,2,37,13,NO,CAR,,,35,T.Morstead kicks 63 yards from NO 35 to CAR 2. J.Adams to CAR 26 for 24 yards (R.Bush).,13,7,2012 20120916_NO@CAR,2,37,1,CAR,NO,1,10,74,(7:01) (Shotgun) C.Newton pass short right to B.LaFell ran ob at CAR 38 for 12 yards.,7,13,2012 20120916_NO@CAR,2,36,35,CAR,NO,1,10,62,(6:35) (Shotgun) C.Newton right end to CAR 47 for 9 yards (C.Lofton). PENALTY on CAR-B.Bell Offensive Holding 10 yards enforced at CAR 39.,7,13,2012 20120916_NO@CAR,2,36,14,CAR,NO,1,19,71,(6:14) (Shotgun) C.Newton left guard to CAR 33 for 4 yards (C.Jordan).,7,13,2012 20120916_NO@CAR,2,35,28,CAR,NO,2,15,67,(5:28) (Shotgun) C.Newton pass incomplete short left to B.LaFell.,7,13,2012 20120916_NO@CAR,2,35,24,CAR,NO,3,15,67,(5:24) (Shotgun) C.Newton pass deep left to S.Smith to NO 32 for 35 yards (P.Robinson).,7,13,2012 20120916_NO@CAR,2,34,38,CAR,NO,1,10,32,(4:38) (Shotgun) J.Stewart right end to NO 28 for 4 yards (C.Lofton).,7,13,2012 20120916_NO@CAR,2,34,23,CAR,NO,2,6,28,(4:23) (No Huddle Shotgun) C.Newton pass short left to B.LaFell to NO 17 for 11 yards (C.Lofton; C.White).,7,13,2012 20120916_NO@CAR,2,33,41,CAR,NO,1,10,17,(3:41) (Shotgun) C.Newton pass short left to J.Stewart for 17 yards TOUCHDOWN.,7,13,2012 20120916_NO@CAR,2,33,41,CAR,NO,,,17,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,13,2012 20120916_NO@CAR,2,33,41,CAR,NO,,,17,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,14,13,2012 20120916_NO@CAR,2,33,33,NO,CAR,1,10,80,(3:33) D.Brees pass short middle to P.Thomas to NO 24 for 4 yards (F.Alexander; J.Beason).,13,14,2012 20120916_NO@CAR,2,32,55,NO,CAR,2,6,76,(2:55) (Shotgun) D.Brees pass incomplete short left to P.Thomas [A.Applewhite].,13,14,2012 20120916_NO@CAR,2,32,49,NO,CAR,3,6,76,(2:49) (Shotgun) D.Brees pass incomplete short right.,13,14,2012 20120916_NO@CAR,2,32,42,NO,CAR,4,6,76,(2:42) T.Morstead punts 48 yards to CAR 28 Center-J.Drescher. J.Adams to CAR 42 for 14 yards (J.Murphy).,13,14,2012 20120916_NO@CAR,2,32,31,CAR,NO,1,10,58,(2:31) (Shotgun) B.LaFell right end to NO 33 for 25 yards (M.Jenkins). End around,14,13,2012 20120916_NO@CAR,2,32,0,CAR,NO,1,10,33,(2:00) (Shotgun) C.Newton pass incomplete short right to G.Olsen [A.Hicks].,14,13,2012 20120916_NO@CAR,2,31,55,CAR,NO,2,10,33,(1:55) (Shotgun) C.Newton pass incomplete deep right to G.Olsen.,14,13,2012 20120916_NO@CAR,2,31,51,CAR,NO,3,10,33,(1:51) (Shotgun) C.Newton pass deep left to B.LaFell ran ob at NO 14 for 19 yards.,14,13,2012 20120916_NO@CAR,2,31,45,CAR,NO,1,10,14,(1:45) (Shotgun) J.Stewart up the middle to NO 7 for 7 yards (S.Ellis).,14,13,2012 20120916_NO@CAR,2,31,3,CAR,NO,2,3,7,(1:03) (Shotgun) C.Newton pass short right to B.LaFell to NO 6 for 1 yard (C.White).,14,13,2012 20120916_NO@CAR,2,30,22,CAR,NO,3,2,6,(:22) (Shotgun) C.Newton up the middle to NO 2 for 4 yards (C.Jordan; J.Galette).,14,13,2012 20120916_NO@CAR,2,30,14,CAR,NO,1,2,2,(:14) (Shotgun) M.Tolbert up the middle for 2 yards TOUCHDOWN.,14,13,2012 20120916_NO@CAR,2,30,14,CAR,NO,,,2,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,13,2012 20120916_NO@CAR,2,30,14,CAR,NO,,,2,J.Medlock kicks 43 yards from CAR 35 to NO 22. J.Galette to NO 24 for 2 yards (J.Thomas). PENALTY on CAR-K.Pilares Unnecessary Roughness 15 yards enforced at NO 24.,21,13,2012 20120916_NO@CAR,2,30,5,NO,CAR,1,10,61,(:05) D.Brees kneels to NO 38 for -1 yards.,13,21,2012 20120916_NO@CAR,3,30,0,NO,CAR,,,61,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,13,21,2012 20120916_NO@CAR,3,30,0,CAR,NO,1,10,80,(15:00) D.Williams left tackle to CAR 22 for 2 yards (D.Hawthorne).,21,13,2012 20120916_NO@CAR,3,29,26,CAR,NO,2,8,78,(14:26) C.Newton pass short right to G.Olsen to CAR 35 for 13 yards (R.Harper).,21,13,2012 20120916_NO@CAR,3,28,48,CAR,NO,1,10,65,(13:48) (Shotgun) J.Stewart left guard to CAR 36 for 1 yard (C.Lofton).,21,13,2012 20120916_NO@CAR,3,28,11,CAR,NO,2,9,64,(13:11) (Shotgun) C.Newton pass incomplete deep left to S.Smith (P.Robinson).,21,13,2012 20120916_NO@CAR,3,28,5,CAR,NO,3,9,64,(13:05) (Shotgun) C.Newton pass incomplete short left.,21,13,2012 20120916_NO@CAR,3,28,5,CAR,NO,4,9,64,(13:05) (Punt formation) PENALTY on CAR-B.Nortman Delay of Game 5 yards enforced at CAR 36 - No Play.,21,13,2012 20120916_NO@CAR,3,27,56,CAR,NO,4,14,69,(12:56) B.Nortman punts 58 yards to NO 11 Center-J.Jansen. D.Sproles to NO 27 for 16 yards (C.Jones). CAR-H.Nakamura was injured during the play. His return is Probable.,21,13,2012 20120916_NO@CAR,3,27,44,NO,CAR,1,10,73,(12:44) M.Ingram right guard to NO 28 for 1 yard (J.Anderson).,13,21,2012 20120916_NO@CAR,3,27,15,NO,CAR,2,9,72,(12:15) (Shotgun) D.Brees pass short right to D.Sproles to NO 35 for 7 yards (C.Godfrey).,13,21,2012 20120916_NO@CAR,3,26,36,NO,CAR,3,2,65,(11:36) (Shotgun) D.Brees pass incomplete short left to M.Colston.,13,21,2012 20120916_NO@CAR,3,26,30,NO,CAR,4,2,65,(11:30) T.Morstead punts 65 yards to end zone Center-J.Drescher Touchback.,13,21,2012 20120916_NO@CAR,3,26,21,CAR,NO,1,10,80,(11:21) (Shotgun) C.Newton pass deep right to B.LaFell pushed ob at CAR 40 for 20 yards (C.White).,21,13,2012 20120916_NO@CAR,3,25,56,CAR,NO,1,10,60,(10:56) (Shotgun) C.Newton left end to CAR 40 for no gain (M.Jenkins).,21,13,2012 20120916_NO@CAR,3,25,14,CAR,NO,2,10,60,(10:14) (Shotgun) J.Stewart right end to NO 44 for 16 yards (C.White).,21,13,2012 20120916_NO@CAR,3,24,36,CAR,NO,1,10,44,(9:36) (Shotgun) D.Williams left end pushed ob at NO 17 for 27 yards (M.Jenkins).,21,13,2012 20120916_NO@CAR,3,24,8,CAR,NO,1,10,17,(9:08) (Shotgun) D.Williams right end to NO 16 for 1 yard (M.Jenkins).,21,13,2012 20120916_NO@CAR,3,23,28,CAR,NO,2,9,16,(8:28) (Shotgun) C.Newton pass incomplete short left to S.Smith. CAR-S.Smith was injured during the play. His return is Probable. PENALTY on NO-P.Robinson Defensive Pass Interference 13 yards enforced at NO 16 - No Play.,21,13,2012 20120916_NO@CAR,3,23,21,CAR,NO,1,3,3,(8:21) (Shotgun) D.Williams up the middle for 3 yards TOUCHDOWN.,21,13,2012 20120916_NO@CAR,3,23,21,CAR,NO,,,3,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,21,13,2012 20120916_NO@CAR,3,23,21,CAR,NO,,,3,J.Medlock kicks 70 yards from CAR 35 to NO -5. D.Sproles pushed ob at NO 33 for 38 yards (C.Munnerlyn).,28,13,2012 20120916_NO@CAR,3,23,10,NO,CAR,1,10,67,(8:10) (Shotgun) D.Brees pass short left to P.Thomas to NO 45 for 12 yards (J.Anderson; C.Godfrey).,13,28,2012 20120916_NO@CAR,3,22,55,NO,CAR,1,10,55,(7:55) P.Thomas left tackle to CAR 44 for 11 yards (J.Norman).,13,28,2012 20120916_NO@CAR,3,22,21,NO,CAR,1,10,44,(7:21) M.Ingram up the middle to CAR 44 for no gain (J.Norman).,13,28,2012 20120916_NO@CAR,3,21,48,NO,CAR,2,10,44,(6:48) D.Brees pass short right to C.Roby to CAR 35 for 9 yards (C.Johnson).,13,28,2012 20120916_NO@CAR,3,21,21,NO,CAR,3,1,35,(6:21) (No Huddle) M.Ingram up the middle to CAR 33 for 2 yards (J.Beason; J.Anderson).,13,28,2012 20120916_NO@CAR,3,20,56,NO,CAR,1,10,33,(5:56) D.Brees pass incomplete short middle to P.Thomas.,13,28,2012 20120916_NO@CAR,3,20,51,NO,CAR,2,10,33,(5:51) P.Thomas up the middle to CAR 28 for 5 yards (C.Godfrey; J.Beason).,13,28,2012 20120916_NO@CAR,3,20,8,NO,CAR,3,5,28,(5:08) (Shotgun) D.Brees pass incomplete short middle [G.Hardy]. PENALTY on NO-D.Brees Intentional Grounding 10 yards enforced at CAR 28.,13,28,2012 20120916_NO@CAR,3,20,0,NO,CAR,4,15,38,(5:00) T.Morstead punts 35 yards to CAR 3 Center-J.Drescher downed by NO-C.Roby.,13,28,2012 20120916_NO@CAR,3,19,52,CAR,NO,1,10,97,(4:52) J.Stewart left end to CAR 6 for 3 yards (P.Robinson).,28,13,2012 20120916_NO@CAR,3,19,16,CAR,NO,2,7,94,(4:16) J.Stewart left guard to CAR 9 for 3 yards (C.Lofton; M.Jenkins).,28,13,2012 20120916_NO@CAR,3,18,38,CAR,NO,3,4,91,(3:38) (Shotgun) C.Newton pass short left to M.Tolbert to CAR 29 for 20 yards (C.Lofton).,28,13,2012 20120916_NO@CAR,3,18,8,CAR,NO,1,10,71,(3:08) (Shotgun) J.Stewart right tackle to CAR 37 for 8 yards (S.Ellis).,28,13,2012 20120916_NO@CAR,3,17,28,CAR,NO,2,2,63,(2:28) (Shotgun) C.Newton right end to CAR 36 for -1 yards (J.Casillas).,28,13,2012 20120916_NO@CAR,3,16,44,CAR,NO,3,3,64,(1:44) (Shotgun) C.Newton pass incomplete short right to B.LaFell (P.Robinson).,28,13,2012 20120916_NO@CAR,3,16,40,CAR,NO,4,3,64,(1:40) B.Nortman punts 46 yards to NO 18 Center-J.Jansen. D.Sproles to NO 32 for 14 yards (T.Davis).,28,13,2012 20120916_NO@CAR,3,16,28,NO,CAR,1,10,68,(1:28) M.Ingram up the middle to NO 34 for 2 yards (G.Hardy).,13,28,2012 20120916_NO@CAR,3,15,58,NO,CAR,2,8,66,(:58) D.Brees pass short left to M.Colston to NO 44 for 10 yards (J.Norman).,13,28,2012 20120916_NO@CAR,3,15,40,NO,CAR,1,10,56,(:40) P.Thomas up the middle to NO 48 for 4 yards (T.Keiser).,13,28,2012 20120916_NO@CAR,3,15,4,NO,CAR,2,6,52,(:04) (Shotgun) D.Brees pass incomplete deep middle to J.Morgan (T.Davis).,13,28,2012 20120916_NO@CAR,4,15,0,NO,CAR,3,6,52,(15:00) (Shotgun) D.Brees pass deep left to M.Colston ran ob at CAR 23 for 29 yards.,13,28,2012 20120916_NO@CAR,4,14,39,NO,CAR,1,10,23,(14:39) M.Ingram up the middle to CAR 20 for 3 yards (D.Edwards).,13,28,2012 20120916_NO@CAR,4,14,6,NO,CAR,2,7,20,(14:06) (Shotgun) D.Brees pass short left to P.Thomas to CAR 12 for 8 yards (J.Norman).,13,28,2012 20120916_NO@CAR,4,13,31,NO,CAR,1,10,12,(13:31) P.Thomas left end to CAR 1 for 11 yards (C.Gamble).,13,28,2012 20120916_NO@CAR,4,12,57,NO,CAR,1,1,1,(12:57) M.Ingram up the middle for 1 yard TOUCHDOWN.,13,28,2012 20120916_NO@CAR,4,12,57,NO,CAR,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,13,28,2012 20120916_NO@CAR,4,12,57,NO,CAR,,,1,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,20,28,2012 20120916_NO@CAR,4,12,53,CAR,NO,1,10,80,(12:53) (Shotgun) C.Newton pass deep right to S.Smith to NO 14 for 66 yards (C.White).,28,20,2012 20120916_NO@CAR,4,12,33,CAR,NO,1,10,14,(12:33) (No Huddle Shotgun) J.Stewart up the middle to NO 11 for 3 yards (J.Casillas). CAR-B.Bell was injured during the play. His return is Probable.,28,20,2012 20120916_NO@CAR,4,12,3,CAR,NO,2,7,11,(12:03) (Shotgun) C.Newton pass short right to K.Pilares to NO 5 for 6 yards (M.Jenkins).,28,20,2012 20120916_NO@CAR,4,11,29,CAR,NO,3,1,5,(11:29) (No Huddle Shotgun) D.Williams up the middle to NO 4 for 1 yard (M.Jenkins).,28,20,2012 20120916_NO@CAR,4,10,43,CAR,NO,1,4,4,(10:43) (Shotgun) D.Williams up the middle to NO 5 for -1 yards (A.Hicks; W.Smith).,28,20,2012 20120916_NO@CAR,4,9,58,CAR,NO,2,5,5,(9:58) C.Newton left guard for 5 yards TOUCHDOWN.,28,20,2012 20120916_NO@CAR,4,9,58,CAR,NO,,,5,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,28,20,2012 20120916_NO@CAR,4,9,58,CAR,NO,,,5,J.Medlock kicks 70 yards from CAR 35 to NO -5. D.Sproles to NO 9 for 14 yards (K.Pilares).,35,20,2012 20120916_NO@CAR,4,9,50,NO,CAR,1,10,91,(9:50) (Shotgun) D.Brees pass incomplete short left to J.Graham [T.Davis].,20,35,2012 20120916_NO@CAR,4,9,46,NO,CAR,2,10,91,(9:46) D.Brees pass short left to L.Moore to NO 22 for 13 yards (J.Norman).,20,35,2012 20120916_NO@CAR,4,9,13,NO,CAR,1,10,78,(9:13) P.Thomas up the middle ran ob at CAR 30 for 48 yards (C.Godfrey).,20,35,2012 20120916_NO@CAR,4,8,51,NO,CAR,1,10,30,(8:51) M.Ingram left tackle to CAR 27 for 3 yards (C.Godfrey; L.Kuechly).,20,35,2012 20120916_NO@CAR,4,8,11,NO,CAR,2,7,27,(8:11) (Shotgun) D.Brees pass short middle to D.Sproles to CAR 24 for 3 yards (R.Edwards).,20,35,2012 20120916_NO@CAR,4,7,24,NO,CAR,3,4,24,(7:24) (Shotgun) D.Brees pass incomplete deep right to J.Graham (C.Gamble).,20,35,2012 20120916_NO@CAR,4,7,19,NO,CAR,4,4,24,(7:19) (Shotgun) D.Brees to CAR 24 for no gain (C.Johnson). FUMBLES (C.Johnson) and recovers at CAR 33. D.Brees pass incomplete short right to J.Graham (J.Beason).,20,35,2012 20120916_NO@CAR,4,7,7,CAR,NO,1,10,76,(7:07) D.Williams right guard to CAR 28 for 4 yards (B.Bunkley; S.Ellis).,35,20,2012 20120916_NO@CAR,4,6,25,CAR,NO,2,6,72,(6:25) (Shotgun) D.Williams left end to CAR 32 for 4 yards (W.Smith).,35,20,2012 20120916_NO@CAR,4,5,40,CAR,NO,3,2,68,(5:40) (Shotgun) M.Tolbert up the middle to CAR 33 for 1 yard (C.Lofton; W.Smith).,35,20,2012 20120916_NO@CAR,4,4,58,CAR,NO,4,1,67,(4:58) B.Nortman punts 48 yards to NO 19 Center-J.Jansen downed by CAR-J.Thomas.,35,20,2012 20120916_NO@CAR,4,4,49,NO,CAR,1,10,81,(4:49) (Shotgun) D.Brees sacked at NO 17 for -2 yards (sack split by T.Keiser and D.Edwards).,20,35,2012 20120916_NO@CAR,4,4,23,NO,CAR,2,12,83,(4:23) (No Huddle Shotgun) D.Brees pass short middle to D.Sproles to NO 24 for 7 yards (C.Munnerlyn).,20,35,2012 20120916_NO@CAR,4,3,58,NO,CAR,3,5,76,(3:58) (No Huddle Shotgun) D.Brees pass short middle to J.Graham to NO 30 for 6 yards (J.Norman; J.Anderson). CAR-C.Johnson was injured during the play. His return is Probable.,20,35,2012 20120916_NO@CAR,4,3,45,NO,CAR,1,10,70,(3:45) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,20,35,2012 20120916_NO@CAR,4,3,41,NO,CAR,2,10,70,(3:41) (Shotgun) D.Brees pass short middle to J.Graham to NO 47 for 17 yards (C.Godfrey).,20,35,2012 20120916_NO@CAR,4,3,18,NO,CAR,1,10,53,(3:18) (No Huddle Shotgun) D.Brees pass incomplete short left to J.Graham.,20,35,2012 20120916_NO@CAR,4,3,16,NO,CAR,2,10,53,(3:16) (Shotgun) D.Brees pass short right to D.Sproles to CAR 29 for 24 yards (C.Godfrey).,20,35,2012 20120916_NO@CAR,4,2,47,NO,CAR,1,10,29,(2:47) (No Huddle Shotgun) D.Brees pass short middle to D.Sproles to CAR 22 for 7 yards (T.Keiser).,20,35,2012 20120916_NO@CAR,4,2,39,NO,CAR,2,3,22,(2:39) (Shotgun) D.Brees pass short right to D.Sproles to CAR 11 for 11 yards (L.Kuechly).,20,35,2012 20120916_NO@CAR,4,2,12,NO,CAR,1,10,11,(2:12) (No Huddle Shotgun) D.Brees pass incomplete short left to J.Morgan.,20,35,2012 20120916_NO@CAR,4,2,6,NO,CAR,2,10,11,(2:06) (Shotgun) D.Brees pass short right to M.Colston to CAR 1 for 10 yards (H.Nakamura).,20,35,2012 20120916_NO@CAR,4,1,59,NO,CAR,1,1,1,(1:59) D.Brees up the middle for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,20,35,2012 20120916_NO@CAR,4,1,59,NO,CAR,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,20,35,2012 20120916_NO@CAR,4,1,59,NO,CAR,,,1,G.Hartley kicks onside 11 yards from NO 35 to NO 46. G.Olsen (didn't try to advance) to NO 46 for no gain.,27,35,2012 20120916_NO@CAR,4,1,53,CAR,NO,1,10,46,(1:53) D.Williams up the middle to NO 45 for 1 yard (W.Smith).,35,27,2012 20120916_NO@CAR,4,1,48,CAR,NO,2,9,45,(1:48) D.Williams left guard to NO 43 for 2 yards (W.Smith; D.Hawthorne).,35,27,2012 20120916_NO@CAR,4,1,43,CAR,NO,3,7,43,(1:43) (Shotgun) C.Newton up the middle to NO 40 for 3 yards (J.Casillas).,35,27,2012 20120916_NO@CAR,4,0,54,CAR,NO,4,4,40,(:54) B.Nortman punts 40 yards to end zone Center-J.Jansen Touchback.,35,27,2012 20120916_NO@CAR,4,0,48,NO,CAR,1,10,80,(:48) (Shotgun) D.Brees pass short middle to J.Graham to NO 29 for 9 yards (C.Munnerlyn).,27,35,2012 20120916_NO@CAR,4,0,31,NO,CAR,2,1,71,(:31) D.Brees pass short middle intended for J.Graham INTERCEPTED by J.Beason at NO 43. J.Beason to NO 41 for 2 yards.,27,35,2012 20120916_NO@CAR,4,0,22,CAR,NO,1,10,41,(:22) C.Newton kneels to NO 43 for -2 yards.,35,27,2012 20120916_NO@CAR,4,0,22,CAR,NO,,,41,                      ,35,27,2012 20120916_CLE@CIN,1,0,0,CIN,CLE,,,41,M.Nugent kicks 68 yards from CIN 35 to CLV -3. J.Cribbs to CLV 18 for 21 yards (D.Skuta).,0,0,2012 20120916_CLE@CIN,1,59,53,CLE,CIN,1,10,82,(14:53) T.Benjamin left end pushed ob at CLV 31 for 13 yards (T.Newman). {End around},0,0,2012 20120916_CLE@CIN,1,59,32,CLE,CIN,1,10,69,(14:32) T.Richardson up the middle to CLV 33 for 2 yards (R.Nelson; V.Rey).,0,0,2012 20120916_CLE@CIN,1,58,59,CLE,CIN,2,8,67,(13:59) B.Weeden pass incomplete deep right to M.Massaquoi.,0,0,2012 20120916_CLE@CIN,1,58,54,CLE,CIN,3,8,67,(13:54) B.Weeden sacked at CLV 28 for -5 yards (M.Johnson).,0,0,2012 20120916_CLE@CIN,1,58,35,CLE,CIN,4,13,72,(13:35) R.Hodges punts 53 yards to CIN 19 Center-C.Yount. A.Jones for 81 yards TOUCHDOWN.,0,0,2012 20120916_CLE@CIN,1,58,35,CIN,CLE,,,72,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 20120916_CLE@CIN,1,58,35,CIN,CLE,,,72,M.Nugent kicks 67 yards from CIN 35 to CLV -2. J.Cribbs to CLV 36 for 38 yards (T.Newman).,7,0,2012 20120916_CLE@CIN,1,58,6,CLE,CIN,1,10,64,(13:06) T.Richardson right end to CLV 38 for 2 yards (V.Burfict; N.Clements).,0,7,2012 20120916_CLE@CIN,1,57,44,CLE,CIN,2,8,62,(12:44) B.Weeden pass deep middle to M.Massaquoi to CIN 43 for 19 yards (J.Miles).,0,7,2012 20120916_CLE@CIN,1,57,6,CLE,CIN,1,10,43,(12:06) (Shotgun) B.Weeden pass incomplete deep middle to G.Little (L.Hall).,0,7,2012 20120916_CLE@CIN,1,56,58,CLE,CIN,2,10,43,(11:58) T.Richardson left tackle to CIN 38 for 5 yards (J.Anderson).,0,7,2012 20120916_CLE@CIN,1,56,19,CLE,CIN,3,5,38,(11:19) (Shotgun) B.Weeden pass short middle to G.Little to CIN 27 for 11 yards (N.Clements).,0,7,2012 20120916_CLE@CIN,1,55,42,CLE,CIN,1,10,27,(10:42) B.Weeden pass incomplete deep left to B.Watson. PENALTY on CLV-S.Lauvao Offensive Holding 10 yards enforced at CIN 27 - No Play.,0,7,2012 20120916_CLE@CIN,1,55,36,CLE,CIN,1,20,37,(10:36) T.Richardson left tackle to CIN 36 for 1 yard (D.Peko; M.Johnson).,0,7,2012 20120916_CLE@CIN,1,54,57,CLE,CIN,2,19,36,(9:57) B.Weeden scrambles left end to CIN 32 for 4 yards (G.Atkins).,0,7,2012 20120916_CLE@CIN,1,54,11,CLE,CIN,3,15,32,(9:11) (Shotgun) B.Weeden pass incomplete short left to J.Gordon.,0,7,2012 20120916_CLE@CIN,1,54,6,CLE,CIN,4,15,32,(9:06) P.Dawson 50 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,7,2012 20120916_CLE@CIN,1,54,6,CLE,CIN,,,32,P.Dawson kicks 70 yards from CLV 35 to CIN -5. B.Tate to CIN 22 for 27 yards (T.Wade). PENALTY on CIN-D.Skuta Offensive Holding 9 yards enforced at CIN 19.,3,7,2012 20120916_CLE@CIN,1,53,57,CIN,CLE,1,10,90,(8:57) PENALTY on CIN-J.Gresham False Start 5 yards enforced at CIN 10 - No Play.,7,3,2012 20120916_CLE@CIN,1,53,57,CIN,CLE,1,15,95,(8:57) A.Dalton pass short left to A.Binns to CIN 17 for 12 yards (B.Skrine).,7,3,2012 20120916_CLE@CIN,1,53,17,CIN,CLE,2,3,83,(8:17) B.Green-Ellis left tackle to CIN 18 for 1 yard (F.Rucker; J.Hughes).,7,3,2012 20120916_CLE@CIN,1,52,34,CIN,CLE,3,2,82,(7:34) (Shotgun) A.Dalton sacked at CIN 12 for -6 yards (J.Parker). PENALTY on CLV-D.Jackson Unnecessary Roughness 15 yards enforced at CIN 12.,7,3,2012 20120916_CLE@CIN,1,52,16,CIN,CLE,1,10,73,(7:16) B.Green-Ellis left tackle to CIN 32 for 5 yards (T.Ward).,7,3,2012 20120916_CLE@CIN,1,51,42,CIN,CLE,2,5,68,(6:42) A.Dalton pass short right to A.Binns ran ob at CIN 40 for 8 yards.,7,3,2012 20120916_CLE@CIN,1,51,8,CIN,CLE,1,10,60,(6:08) A.Dalton sacked at CIN 40 for 0 yards (D.Jackson).,7,3,2012 20120916_CLE@CIN,1,50,27,CIN,CLE,2,10,60,(5:27) B.Green-Ellis right tackle to CIN 44 for 4 yards (S.Fujita; D.Jackson).,7,3,2012 20120916_CLE@CIN,1,49,47,CIN,CLE,3,6,56,(4:47) (Shotgun) A.Dalton pass short right to B.Tate to CIN 49 for 5 yards (C.Robertson).,7,3,2012 20120916_CLE@CIN,1,49,17,CIN,CLE,4,1,51,(4:17) A.Dalton right guard to CLV 49 for 2 yards (J.Hughes).,7,3,2012 20120916_CLE@CIN,1,48,38,CIN,CLE,1,10,49,(3:38) B.Green-Ellis left tackle to CLV 48 for 1 yard (J.Sheard).,7,3,2012 20120916_CLE@CIN,1,47,59,CIN,CLE,2,9,48,(2:59) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,7,3,2012 20120916_CLE@CIN,1,47,52,CIN,CLE,3,9,48,(2:52) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (J.Sheard). {Tipped at the line scrimmage},7,3,2012 20120916_CLE@CIN,1,47,47,CIN,CLE,4,9,48,(2:47) K.Huber punts 34 yards to CLV 14 Center-C.Harris fair catch by J.Cribbs.,7,3,2012 20120916_CLE@CIN,1,47,39,CLE,CIN,1,10,86,(2:39) T.Richardson right guard to CLV 21 for 7 yards (R.Maualuga; V.Rey).,3,7,2012 20120916_CLE@CIN,1,47,11,CLE,CIN,2,3,79,(2:11) PENALTY on CLV-B.Watson False Start 5 yards enforced at CLV 21 - No Play.,3,7,2012 20120916_CLE@CIN,1,46,51,CLE,CIN,2,8,84,(1:51) (Shotgun) T.Richardson up the middle to CLV 21 for 5 yards (M.Lawson).,3,7,2012 20120916_CLE@CIN,1,46,15,CLE,CIN,3,3,79,(1:15) (Shotgun) B.Weeden pass short middle to M.Massaquoi to CLV 34 for 13 yards (T.Newman).,3,7,2012 20120916_CLE@CIN,1,45,43,CLE,CIN,1,10,66,(:43) T.Richardson left tackle to CLV 38 for 4 yards (L.Hall; V.Burfict).,3,7,2012 20120916_CLE@CIN,1,45,19,CLE,CIN,2,6,62,(:19) B.Weeden pass incomplete deep right to A.Smith.,3,7,2012 20120916_CLE@CIN,1,45,1,CLE,CIN,3,6,62,(:01) (Shotgun) B.Weeden pass short middle to G.Little to CLV 43 for 5 yards (R.Maualuga; V.Rey).,3,7,2012 20120916_CLE@CIN,2,45,0,CLE,CIN,4,1,57,(15:00) R.Hodges punts 40 yards to CIN 17 Center-C.Yount. A.Jones pushed ob at CIN 26 for 9 yards (C.Robertson).,3,7,2012 20120916_CLE@CIN,2,44,52,CIN,CLE,1,10,74,(14:52) B.Green-Ellis right end to CIN 28 for 2 yards (E.Hagg).,7,3,2012 20120916_CLE@CIN,2,44,15,CIN,CLE,2,8,72,(14:15) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 36 for 8 yards (C.Robertson).,7,3,2012 20120916_CLE@CIN,2,43,34,CIN,CLE,1,10,64,(13:34) (Shotgun) A.Dalton sacked at CIN 35 for -1 yards (D.Jackson).,7,3,2012 20120916_CLE@CIN,2,43,0,CIN,CLE,2,11,65,(13:00) (Shotgun) A.Dalton pass short left to A.Binns to CLV 45 for 20 yards (B.Skrine).,7,3,2012 20120916_CLE@CIN,2,42,25,CIN,CLE,1,10,45,(12:25) B.Green-Ellis left tackle to CLV 41 for 4 yards (T.Ward).,7,3,2012 20120916_CLE@CIN,2,41,48,CIN,CLE,2,6,41,(11:48) A.Dalton pass short left to A.Green to CLV 29 for 12 yards (B.Skrine).,7,3,2012 20120916_CLE@CIN,2,41,18,CIN,CLE,1,10,29,(11:18) B.Green-Ellis left guard to CLV 10 for 19 yards (E.Hagg).,7,3,2012 20120916_CLE@CIN,2,40,33,CIN,CLE,1,10,10,(10:33) A.Dalton pass short right to A.Green for 10 yards TOUCHDOWN.,7,3,2012 20120916_CLE@CIN,2,40,33,CIN,CLE,,,10,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,3,2012 20120916_CLE@CIN,2,40,33,CIN,CLE,,,10,M.Nugent kicks 68 yards from CIN 35 to CLV -3. J.Cribbs to CLV 24 for 27 yards (R.Muckelroy; G.Iloka).,14,3,2012 20120916_CLE@CIN,2,40,21,CLE,CIN,1,10,76,(10:21) B.Weeden pass short left to G.Little to CLV 32 for 8 yards (R.Nelson; M.Lawson).,3,14,2012 20120916_CLE@CIN,2,39,50,CLE,CIN,2,2,68,(9:50) B.Weeden pass incomplete short right to O.Marecic (J.Miles).,3,14,2012 20120916_CLE@CIN,2,39,41,CLE,CIN,3,2,68,(9:41) B.Weeden pass short right to C.Ogbonnaya to CLV 41 for 9 yards (T.Newman; L.Hall). PENALTY on CIN-L.Hall Personal Foul 15 yards enforced at CLV 41.,3,14,2012 20120916_CLE@CIN,2,39,5,CLE,CIN,1,10,44,(9:05) (Shotgun) PENALTY on CLV-J.Thomas False Start 5 yards enforced at CIN 44 - No Play.,3,14,2012 20120916_CLE@CIN,2,38,51,CLE,CIN,1,15,49,(8:51) B.Weeden pass short middle to A.Smith to CIN 32 for 17 yards (J.Miles).,3,14,2012 20120916_CLE@CIN,2,38,15,CLE,CIN,1,10,32,(8:15) T.Richardson right guard for 32 yards TOUCHDOWN.,3,14,2012 20120916_CLE@CIN,2,38,15,CLE,CIN,,,32,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,3,14,2012 20120916_CLE@CIN,2,38,15,CLE,CIN,,,32,P.Dawson kicks 73 yards from CLV 35 to CIN -8. A.Jones to CIN 23 for 31 yards (U.Young).,10,14,2012 20120916_CLE@CIN,2,37,57,CIN,CLE,1,10,77,(7:57) A.Dalton pass deep middle to A.Binns to CIN 41 for 18 yards (D.Patterson).,14,10,2012 20120916_CLE@CIN,2,37,19,CIN,CLE,1,10,59,(7:19) B.Green-Ellis up the middle to CIN 45 for 4 yards (I.Kitchen; T.Ward).,14,10,2012 20120916_CLE@CIN,2,36,45,CIN,CLE,2,6,55,(6:45) B.Green-Ellis left tackle to CIN 46 for 1 yard (I.Kitchen; S.Fujita).,14,10,2012 20120916_CLE@CIN,2,36,3,CIN,CLE,3,5,54,(6:03) (Shotgun) A.Dalton pass incomplete short middle to A.Binns (D.Jackson). PENALTY on CLV-T.Ward Neutral Zone Infraction 5 yards enforced at CIN 46 - No Play.,14,10,2012 20120916_CLE@CIN,2,35,53,CIN,CLE,1,10,49,(5:53) A.Dalton pass incomplete deep left to M.Jones. PENALTY on CLV-B.Skrine Defensive Pass Interference 31 yards enforced at CLV 49 - No Play.,14,10,2012 20120916_CLE@CIN,2,35,46,CIN,CLE,1,10,18,(5:46) PENALTY on CIN-A.Smith False Start 5 yards enforced at CLV 18 - No Play.,14,10,2012 20120916_CLE@CIN,2,35,46,CIN,CLE,1,15,23,(5:46) B.Green-Ellis left guard to CLV 21 for 2 yards (C.Yount).,14,10,2012 20120916_CLE@CIN,2,35,2,CIN,CLE,2,13,21,(5:02) (Shotgun) A.Dalton pass incomplete deep middle to A.Hawkins.,14,10,2012 20120916_CLE@CIN,2,34,55,CIN,CLE,3,13,21,(4:55) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,14,10,2012 20120916_CLE@CIN,2,34,49,CIN,CLE,4,13,21,(4:49) M.Nugent 39 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,14,10,2012 20120916_CLE@CIN,2,34,49,CIN,CLE,,,21,M.Nugent kicks 70 yards from CIN 35 to CLV -5. J.Cribbs to CLV 19 for 24 yards (G.Iloka; T.Mays).,17,10,2012 20120916_CLE@CIN,2,34,40,CLE,CIN,1,10,81,(4:40) T.Richardson up the middle to CLV 22 for 3 yards (R.Nelson; J.Anderson).,10,17,2012 20120916_CLE@CIN,2,34,3,CLE,CIN,2,7,78,(4:03) B.Weeden pass incomplete short middle to G.Little (L.Hall).,10,17,2012 20120916_CLE@CIN,2,33,54,CLE,CIN,3,7,78,(3:54) (Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CLV 43 for 21 yards (T.Newman N.Clements). FUMBLES (T.Newman) RECOVERED by CIN-M.Johnson at CLV 43. M.Johnson to CLV 43 for no gain (C.Ogbonnaya).,10,17,2012 20120916_CLE@CIN,2,33,42,CIN,CLE,1,10,43,(3:42) B.Green-Ellis right guard to CLV 39 for 4 yards (I.Kitchen; A.Rubin). PENALTY on CIN-J.Gresham Offensive Holding 10 yards enforced at CLV 43 - No Play.,17,10,2012 20120916_CLE@CIN,2,33,25,CIN,CLE,1,20,53,(3:25) A.Dalton pass incomplete short right to A.Green.,17,10,2012 20120916_CLE@CIN,2,32,51,CIN,CLE,2,20,53,(2:51) (Shotgun) A.Dalton pass short middle to J.Gresham to CLV 44 for 9 yards (C.Robertson; D.Jackson).,17,10,2012 20120916_CLE@CIN,2,32,11,CIN,CLE,3,11,44,(2:11) (Shotgun) A.Dalton scrambles right end to CLV 41 for 3 yards (J.Parker).,17,10,2012 20120916_CLE@CIN,2,32,0,CIN,CLE,4,8,41,(2:00) K.Huber punts 34 yards to CLV 7 Center-C.Harris downed by CIN-C.Harris.,17,10,2012 20120916_CLE@CIN,2,31,51,CLE,CIN,1,10,93,(1:51) T.Richardson right tackle to CLV 16 for 9 yards (N.Clements; J.Miles).,10,17,2012 20120916_CLE@CIN,2,31,23,CLE,CIN,2,1,84,(1:23) T.Richardson right guard to CLV 15 for -1 yards (D.Peko).,10,17,2012 20120916_CLE@CIN,2,31,18,CLE,CIN,3,2,85,(1:18) B.Weeden pass deep right to M.Massaquoi pushed ob at CLV 33 for 18 yards (T.Newman).,10,17,2012 20120916_CLE@CIN,2,30,54,CLE,CIN,1,10,67,(:54) (Shotgun) B.Weeden sacked at CLV 25 for -8 yards (V.Rey).,10,17,2012 20120916_CLE@CIN,2,30,48,CLE,CIN,2,18,75,(:48) (Shotgun) T.Richardson left guard to CLV 35 for 10 yards (M.Johnson; R.Maualuga).,10,17,2012 20120916_CLE@CIN,2,30,39,CLE,CIN,3,8,65,(:39) T.Richardson left end to CLV 44 for 9 yards (R.Geathers; L.Hall). PENALTY on CLV-J.Thomas Offensive Holding 10 yards enforced at CLV 35 - No Play.,10,17,2012 20120916_CLE@CIN,2,30,33,CLE,CIN,3,18,75,(:33) T.Richardson right tackle to CLV 29 for 4 yards (R.Nelson; J.Anderson).,10,17,2012 20120916_CLE@CIN,3,30,0,CLE,CIN,,,75,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,10,17,2012 20120916_CLE@CIN,3,30,0,CIN,CLE,1,10,80,(15:00) B.Green-Ellis left tackle to CIN 23 for 3 yards (S.Fujita).,17,10,2012 20120916_CLE@CIN,3,29,20,CIN,CLE,2,7,77,(14:20) (Shotgun) A.Dalton pass short left to A.Green ran ob at CIN 33 for 10 yards (B.Skrine).,17,10,2012 20120916_CLE@CIN,3,28,55,CIN,CLE,1,10,67,(13:55) A.Dalton sacked at CIN 30 for -3 yards (D.Jackson).,17,10,2012 20120916_CLE@CIN,3,28,24,CIN,CLE,2,13,70,(13:24) (Shotgun) A.Dalton pass short left to B.Tate pushed ob at CLV 48 for 22 yards (E.Hagg).,17,10,2012 20120916_CLE@CIN,3,27,55,CIN,CLE,1,10,48,(12:55) B.Green-Ellis right tackle to CLV 44 for 4 yards (F.Rucker).,17,10,2012 20120916_CLE@CIN,3,27,13,CIN,CLE,2,6,44,(12:13) A.Dalton pass incomplete deep right to A.Green.,17,10,2012 20120916_CLE@CIN,3,27,5,CIN,CLE,3,6,44,(12:05) (Shotgun) A.Dalton pass deep right to B.Tate for 44 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,17,10,2012 20120916_CLE@CIN,3,27,5,CIN,CLE,,,44,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,10,2012 20120916_CLE@CIN,3,27,5,CIN,CLE,,,44,M.Nugent kicks 70 yards from CIN 35 to CLV -5. J.Cribbs to CLV 19 for 24 yards (V.Rey).,24,10,2012 20120916_CLE@CIN,3,26,52,CLE,CIN,1,10,81,(11:52) B.Weeden pass short right to T.Richardson to CLV 16 for -3 yards (M.Lawson).,10,24,2012 20120916_CLE@CIN,3,26,8,CLE,CIN,2,13,84,(11:08) B.Weeden pass incomplete deep left to M.Massaquoi.,10,24,2012 20120916_CLE@CIN,3,26,2,CLE,CIN,3,13,84,(11:02) B.Weeden pass short right to J.Gordon to CLV 21 for 5 yards (T.Newman) [J.Anderson].,10,24,2012 20120916_CLE@CIN,3,25,25,CLE,CIN,4,8,79,(10:25) R.Hodges punts 44 yards to CIN 35 Center-C.Yount downed by CLV-C.Yount.,10,24,2012 20120916_CLE@CIN,3,25,13,CIN,CLE,1,10,65,(10:13) A.Dalton pass short right to A.Green pushed ob at CIN 44 for 9 yards (D.Patterson).,24,10,2012 20120916_CLE@CIN,3,24,49,CIN,CLE,2,1,56,(9:49) B.Green-Ellis right tackle to CIN 45 for 1 yard (K.Maiava; J.Hughes). PENALTY on CIN-A.Binns Offensive Holding 10 yards enforced at CIN 44 - No Play.,24,10,2012 20120916_CLE@CIN,3,24,27,CIN,CLE,2,11,66,(9:27) A.Dalton sacked at CIN 31 for -3 yards (J.Hughes).,24,10,2012 20120916_CLE@CIN,3,23,44,CIN,CLE,3,14,69,(8:44) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 37 for 6 yards (D.Patterson).,24,10,2012 20120916_CLE@CIN,3,23,3,CIN,CLE,4,8,63,(8:03) K.Huber punts 58 yards to CLV 5 Center-C.Harris. J.Cribbs to CLV 23 for 18 yards (A.Hawkins). PENALTY on CLV-T.Gipson Illegal Block Above the Waist 7 yards enforced at CLV 14. {Cribbs credited with a 9 yard return due to the penalty},24,10,2012 20120916_CLE@CIN,3,22,51,CLE,CIN,1,10,93,(7:51) T.Richardson right end to CLV 10 for 3 yards (N.Clements).,10,24,2012 20120916_CLE@CIN,3,22,11,CLE,CIN,2,7,90,(7:11) T.Richardson up the middle to CLV 16 for 6 yards (R.Nelson).,10,24,2012 20120916_CLE@CIN,3,21,28,CLE,CIN,3,1,84,(6:28) B.Weeden pass short middle to A.Smith to CLV 26 for 10 yards (J.Miles).,10,24,2012 20120916_CLE@CIN,3,20,45,CLE,CIN,1,10,74,(5:45) T.Benjamin left end ran ob at CLV 28 for 2 yards (R.Nelson).,10,24,2012 20120916_CLE@CIN,3,20,21,CLE,CIN,2,8,72,(5:21) (Shotgun) T.Richardson left tackle to CLV 28 for no gain (R.Maualuga). PENALTY on CLV-A.Mack Offensive Holding 10 yards enforced at CLV 28 - No Play.,10,24,2012 20120916_CLE@CIN,3,20,3,CLE,CIN,2,18,82,(5:03) (Shotgun) B.Weeden pass incomplete short left to T.Richardson [D.Still].,10,24,2012 20120916_CLE@CIN,3,19,56,CLE,CIN,3,18,82,(4:56) (Shotgun) B.Weeden pass short right to G.Little to CLV 27 for 9 yards (T.Newman; L.Hall).,10,24,2012 20120916_CLE@CIN,3,19,14,CLE,CIN,4,9,73,(4:14) R.Hodges punts 49 yards to CIN 24 Center-C.Yount. A.Jones to CIN 24 for no gain (J.Bademosi).,10,24,2012 20120916_CLE@CIN,3,19,5,CIN,CLE,1,10,76,(4:05) A.Dalton pass short left to A.Green pushed ob at CIN 34 for 10 yards (B.Skrine).,24,10,2012 20120916_CLE@CIN,3,18,45,CIN,CLE,1,10,66,(3:45) B.Green-Ellis right guard to CIN 35 for 1 yard (J.Hughes).,24,10,2012 20120916_CLE@CIN,3,18,9,CIN,CLE,2,9,65,(3:09) A.Dalton pass short left to J.Gresham to CIN 35 for no gain (B.Skrine).,24,10,2012 20120916_CLE@CIN,3,17,28,CIN,CLE,3,9,65,(2:28) (Shotgun) A.Dalton pass deep middle intended for A.Green INTERCEPTED by D.Jackson (D.Patterson) at CLV 43. D.Jackson to CLV 47 for 4 yards (J.Gresham). {Pass was tipped by Patterson},24,10,2012 20120916_CLE@CIN,3,17,19,CLE,CIN,1,10,53,(2:19) T.Richardson right guard to CIN 44 for 9 yards (J.Miles; R.Maualuga).,10,24,2012 20120916_CLE@CIN,3,16,46,CLE,CIN,2,1,44,(1:46) T.Richardson right tackle to CIN 41 for 3 yards (G.Atkins; D.Peko).,10,24,2012 20120916_CLE@CIN,3,16,9,CLE,CIN,1,10,41,(1:09) B.Weeden pass incomplete short right. {Thrown away},10,24,2012 20120916_CLE@CIN,3,16,1,CLE,CIN,2,10,41,(1:01) B.Weeden pass short right to M.Massaquoi to CIN 23 for 18 yards (N.Clements).,10,24,2012 20120916_CLE@CIN,3,15,20,CLE,CIN,1,10,23,(:20) B.Weeden pass short left to T.Richardson for 23 yards TOUCHDOWN.,10,24,2012 20120916_CLE@CIN,3,15,20,CLE,CIN,,,23,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,10,24,2012 20120916_CLE@CIN,3,15,20,CLE,CIN,,,23,P.Dawson kicks 72 yards from CLV 35 to CIN -7. B.Tate to CIN 23 for 30 yards (C.Robertson).,17,24,2012 20120916_CLE@CIN,4,15,0,CIN,CLE,1,10,77,(15:00) A.Dalton pass short right to A.Green to CIN 26 for 3 yards (D.Patterson).,24,17,2012 20120916_CLE@CIN,4,14,20,CIN,CLE,2,7,74,(14:20) (Shotgun) A.Dalton pass short left to A.Binns to CIN 34 for 8 yards (B.Skrine). Penalty on CLV-D.Patterson Defensive Offside declined.,24,17,2012 20120916_CLE@CIN,4,14,0,CIN,CLE,1,10,66,(14:00) B.Green-Ellis right guard to CIN 37 for 3 yards (J.Sheard).,24,17,2012 20120916_CLE@CIN,4,13,15,CIN,CLE,2,7,63,(13:15) (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 43 for 6 yards (C.Robertson; T.Wade).,24,17,2012 20120916_CLE@CIN,4,12,50,CIN,CLE,3,1,57,(12:50) B.Green-Ellis right guard to 50 for 7 yards (T.Ward).,24,17,2012 20120916_CLE@CIN,4,12,15,CIN,CLE,1,10,50,(12:15) A.Dalton sacked at CIN 40 for -10 yards (F.Rucker).,24,17,2012 20120916_CLE@CIN,4,11,45,CIN,CLE,2,20,60,(11:45) (Shotgun) A.Dalton pass short right to B.Green-Ellis to 50 for 10 yards (D.Patterson).,24,17,2012 20120916_CLE@CIN,4,11,1,CIN,CLE,3,10,50,(11:01) (Shotgun) A.Dalton pass short right to A.Hawkins for 50 yards TOUCHDOWN.,24,17,2012 20120916_CLE@CIN,4,11,1,CIN,CLE,,,50,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,24,17,2012 20120916_CLE@CIN,4,11,1,CIN,CLE,,,50,M.Nugent kicks 71 yards from CIN 35 to CLV -6. J.Cribbs Touchback.,31,17,2012 20120916_CLE@CIN,4,10,44,CLE,CIN,1,10,80,(10:44) T.Richardson right guard to CLV 26 for 6 yards (J.Miles; R.Maualuga).,17,31,2012 20120916_CLE@CIN,4,10,13,CLE,CIN,2,4,74,(10:13) (Shotgun) B.Weeden pass short middle to A.Smith to CLV 29 for 3 yards (N.Clements) [R.Geathers].,17,31,2012 20120916_CLE@CIN,4,9,57,CLE,CIN,3,1,71,(9:57) B.Weeden up the middle to CLV 31 for 2 yards (R.Maualuga).,17,31,2012 20120916_CLE@CIN,4,9,25,CLE,CIN,1,10,69,(9:25) B.Weeden pass short middle to M.Massaquoi to CIN 47 for 22 yards (J.Miles; L.Hall).,17,31,2012 20120916_CLE@CIN,4,8,51,CLE,CIN,1,10,47,(8:51) B.Weeden pass short left to T.Richardson pushed ob at CIN 39 for 8 yards (V.Burfict).,17,31,2012 20120916_CLE@CIN,4,8,26,CLE,CIN,2,2,39,(8:26) T.Richardson left tackle to CIN 40 for -1 yards (R.Maualuga).,17,31,2012 20120916_CLE@CIN,4,7,44,CLE,CIN,3,3,40,(7:44) (Shotgun) B.Weeden pass short right to C.Ogbonnaya pushed ob at CIN 24 for 16 yards (V.Rey).,17,31,2012 20120916_CLE@CIN,4,7,18,CLE,CIN,1,10,24,(7:18) (Shotgun) B.Weeden pass deep middle to G.Little for 24 yards TOUCHDOWN.,17,31,2012 20120916_CLE@CIN,4,7,18,CLE,CIN,,,24,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,17,31,2012 20120916_CLE@CIN,4,7,18,CLE,CIN,,,24,P.Dawson kicks 60 yards from CLV 35 to CIN 5. B.Tate to CIN 23 for 18 yards (T.Gipson).,24,31,2012 20120916_CLE@CIN,4,7,4,CIN,CLE,1,10,77,(7:04) B.Green-Ellis left guard to CIN 28 for 5 yards (F.Rucker; K.Maiava).,31,24,2012 20120916_CLE@CIN,4,6,38,CIN,CLE,2,5,72,(6:38) A.Dalton pass short right to A.Green to CIN 32 for 4 yards (D.Patterson).,31,24,2012 20120916_CLE@CIN,4,5,56,CIN,CLE,3,1,68,(5:56) PENALTY on CLV-J.Hughes Defensive Offside 5 yards enforced at CIN 32 - No Play.,31,24,2012 20120916_CLE@CIN,4,5,41,CIN,CLE,1,10,63,(5:41) B.Green-Ellis left end to CIN 39 for 2 yards (A.Rubin; J.Hughes).,31,24,2012 20120916_CLE@CIN,4,5,3,CIN,CLE,2,8,61,(5:03) A.Dalton pass short middle to B.Green-Ellis to CLV 49 for 12 yards (S.Fujita).,31,24,2012 20120916_CLE@CIN,4,4,25,CIN,CLE,1,10,49,(4:25) B.Green-Ellis left tackle to CLV 47 for 2 yards (T.Ward).,31,24,2012 20120916_CLE@CIN,4,3,50,CIN,CLE,2,8,47,(3:50) (Shotgun) C.Peerman right tackle to CLV 46 for 1 yard (A.Rubin).,31,24,2012 20120916_CLE@CIN,4,3,43,CIN,CLE,3,7,46,(3:43) (Shotgun) A.Dalton pass deep left to J.Gresham pushed ob at CLV 24 for 22 yards (T.Ward). Cleveland challenged the pass completion ruling and the play was Upheld. (Timeout #2.),31,24,2012 20120916_CLE@CIN,4,3,35,CIN,CLE,1,10,24,(3:35) B.Green-Ellis left end to CLV 26 for -2 yards (T.Ward; J.Hughes).,31,24,2012 20120916_CLE@CIN,4,3,28,CIN,CLE,2,12,26,(3:28) B.Green-Ellis right tackle to CLV 20 for 6 yards (E.Hagg; T.Ward).,31,24,2012 20120916_CLE@CIN,4,2,54,CIN,CLE,3,6,20,(2:54) B.Green-Ellis right guard to CLV 19 for 1 yard (T.Ward).,31,24,2012 20120916_CLE@CIN,4,2,14,CIN,CLE,4,5,19,(2:14) M.Nugent 37 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,31,24,2012 20120916_CLE@CIN,4,2,14,CIN,CLE,,,19,M.Nugent kicks 69 yards from CIN 35 to CLV -4. J.Cribbs to CLV 27 for 31 yards (T.Mays).,34,24,2012 20120916_CLE@CIN,4,2,3,CLE,CIN,1,10,73,(2:03) B.Weeden pass short right to T.Richardson to CLV 35 for 8 yards (V.Rey; R.Maualuga).,24,34,2012 20120916_CLE@CIN,4,1,56,CLE,CIN,2,2,65,(1:56) (Shotgun) B.Weeden pass short right to C.Ogbonnaya ran ob at CLV 41 for 6 yards (T.Newman).,24,34,2012 20120916_CLE@CIN,4,1,50,CLE,CIN,1,10,59,(1:50) (Shotgun) B.Weeden pass short right to C.Ogbonnaya pushed ob at CIN 48 for 11 yards (T.Newman). CIN-J.Anderson was injured during the play.,24,34,2012 20120916_CLE@CIN,4,1,41,CLE,CIN,1,10,48,(1:41) (Shotgun) B.Weeden pass short middle to B.Watson to CIN 21 for 27 yards (N.Clements; L.Hall).,24,34,2012 20120916_CLE@CIN,4,1,14,CLE,CIN,1,10,21,(1:14) (Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CIN 11 for 10 yards (R.Maualuga L.Hall).,24,34,2012 20120916_CLE@CIN,4,0,50,CLE,CIN,1,10,11,(:50) (Shotgun) B.Weeden pass incomplete short right to J.Gordon.,24,34,2012 20120916_CLE@CIN,4,0,46,CLE,CIN,2,10,11,(:46) (Shotgun) B.Weeden pass short middle to J.Cribbs to CIN 7 for 4 yards (R.Maualuga; L.Hall).,24,34,2012 20120916_CLE@CIN,4,0,29,CLE,CIN,3,6,7,(:29) B.Weeden pass incomplete short right to J.Cribbs.,24,34,2012 20120916_CLE@CIN,4,0,24,CLE,CIN,4,6,7,(:24) P.Dawson 25 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,24,34,2012 20120916_CLE@CIN,4,0,24,CLE,CIN,,,7,P.Dawson kicks onside 13 yards from CLV 35 to CLV 48. A.Green (didn't try to advance) to CLV 48 for no gain (J.Cameron).,27,34,2012 20120916_CLE@CIN,4,0,16,CIN,CLE,1,10,48,(:16) A.Dalton kneels to CLV 49 for -1 yards.,34,27,2012 20120916_CLE@CIN,4,0,16,CIN,CLE,,,48,                      ,34,27,2012 20120916_MIN@IND,1,0,0,IND,MIN,,,48,P.McAfee kicks 70 yards from IND 35 to MIN -5. P.Harvin to MIN 23 for 28 yards (M.Addison).,0,0,2012 20120916_MIN@IND,1,59,55,MIN,IND,1,10,77,(14:55) (Run formation) A.Peterson right guard to MIN 28 for 5 yards (R.Mathis; J.Freeman).,0,0,2012 20120916_MIN@IND,1,59,17,MIN,IND,2,5,72,(14:17) (Run formation) C.Ponder pass short left to P.Harvin to MIN 39 for 11 yards (V.Davis).,0,0,2012 20120916_MIN@IND,1,58,50,MIN,IND,1,10,61,(13:50) (Run formation) C.Ponder sacked at MIN 38 for -1 yards (R.Mathis).,0,0,2012 20120916_MIN@IND,1,58,21,MIN,IND,2,11,62,(13:21) (Run formation) A.Peterson up the middle to MIN 43 for 5 yards (A.Bethea).,0,0,2012 20120916_MIN@IND,1,57,38,MIN,IND,3,6,57,(12:38) (Shotgun) C.Ponder pass short left to P.Harvin to IND 49 for 8 yards (V.Davis).,0,0,2012 20120916_MIN@IND,1,57,0,MIN,IND,1,10,49,(12:00) (Run formation) A.Peterson left end pushed ob at IND 43 for 6 yards (T.Zbikowski; V.Davis).,0,0,2012 20120916_MIN@IND,1,56,30,MIN,IND,2,4,43,(11:30) (Run formation) P.Harvin right end to 50 for -7 yards (A.Bethea).,0,0,2012 20120916_MIN@IND,1,55,50,MIN,IND,3,11,50,(10:50) (Shotgun) C.Ponder pass short left to T.Gerhart to IND 38 for 12 yards (V.Davis).,0,0,2012 20120916_MIN@IND,1,55,8,MIN,IND,1,10,38,(10:08) (Run formation) T.Gerhart up the middle to IND 30 for 8 yards (J.Freeman).,0,0,2012 20120916_MIN@IND,1,54,31,MIN,IND,2,2,30,(9:31) (Run formation) A.Peterson left tackle to IND 21 for 9 yards (J.Freeman). PENALTY on MIN-C.Johnson Offensive Holding 10 yards enforced at IND 30 - No Play.,0,0,2012 20120916_MIN@IND,1,54,8,MIN,IND,2,12,40,(9:08) (Shotgun) C.Ponder pass incomplete short right to P.Harvin. PENALTY on MIN-P.Loadholt Illegal Formation 5 yards enforced at IND 40 - No Play.,0,0,2012 20120916_MIN@IND,1,54,5,MIN,IND,2,17,45,(9:05) (Run formation) A.Peterson up the middle to IND 40 for 5 yards (J.Freeman; C.Redding).,0,0,2012 20120916_MIN@IND,1,53,30,MIN,IND,3,12,40,(8:30) (Shotgun) C.Ponder pass short right to M.Jenkins to IND 33 for 7 yards (J.Powers).,0,0,2012 20120916_MIN@IND,1,52,53,MIN,IND,4,5,33,(7:53) B.Walsh 51 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 20120916_MIN@IND,1,52,53,MIN,IND,,,33,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,3,0,2012 20120916_MIN@IND,1,52,48,IND,MIN,1,10,80,(7:48) (Run formation) D.Brown up the middle to IND 22 for 2 yards (E.Henderson; H.Smith).,0,3,2012 20120916_MIN@IND,1,52,11,IND,MIN,2,8,78,(7:11) (Shotgun) D.Brown left end to IND 26 for 4 yards (M.Sherels; H.Smith).,0,3,2012 20120916_MIN@IND,1,51,24,IND,MIN,3,4,74,(6:24) (Shotgun) A.Luck scrambles up the middle to IND 33 for 7 yards (A.Winfield).,0,3,2012 20120916_MIN@IND,1,50,43,IND,MIN,1,10,67,(5:43) PENALTY on MIN-C.Ballard Encroachment 5 yards enforced at IND 33 - No Play.,0,3,2012 20120916_MIN@IND,1,50,28,IND,MIN,1,5,62,(5:28) (Run formation) A.Luck scrambles right end to IND 44 for 6 yards (E.Henderson).,0,3,2012 20120916_MIN@IND,1,49,43,IND,MIN,1,10,56,(4:43) (Shotgun) A.Luck pass incomplete short left to K.Adams.,0,3,2012 20120916_MIN@IND,1,49,38,IND,MIN,2,10,56,(4:38) (Run formation) D.Brown right end to IND 45 for 1 yard (C.Greenway).,0,3,2012 20120916_MIN@IND,1,48,58,IND,MIN,3,9,55,(3:58) (Shotgun) A.Luck pass short right to D.Avery pushed ob at MIN 42 for 13 yards (E.Henderson).,0,3,2012 20120916_MIN@IND,1,48,29,IND,MIN,1,10,42,(3:29) (Run formation) D.Brown up the middle to MIN 40 for 2 yards (E.Henderson). PENALTY on IND-D.Allen Personal Foul 15 yards enforced at MIN 40.,0,3,2012 20120916_MIN@IND,1,48,4,IND,MIN,1,23,55,(3:04) (Shotgun) A.Luck pass short left to D.Avery to MIN 44 for 11 yards (H.Smith).,0,3,2012 20120916_MIN@IND,1,47,18,IND,MIN,2,12,44,(2:18) (Run formation) A.Luck pass deep right to D.Avery to MIN 3 for 41 yards (A.Winfield).,0,3,2012 20120916_MIN@IND,1,46,38,IND,MIN,1,3,3,(1:38) (Run formation) D.Brown left tackle to MIN 3 for no gain (C.Greenway).,0,3,2012 20120916_MIN@IND,1,45,58,IND,MIN,2,3,3,(:58) (Run formation) A.Luck pass incomplete short right to C.Fleener.,0,3,2012 20120916_MIN@IND,1,45,54,IND,MIN,3,3,3,(:54) (Shotgun) A.Luck pass short left to D.Allen for 3 yards TOUCHDOWN.,0,3,2012 20120916_MIN@IND,1,45,54,IND,MIN,,,3,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,3,2012 20120916_MIN@IND,1,45,54,IND,MIN,,,3,P.McAfee kicks 72 yards from IND 35 to MIN -7. P.Harvin pushed ob at MIN 43 for 50 yards (P.McAfee).,7,3,2012 20120916_MIN@IND,1,45,43,MIN,IND,1,10,57,(:43) (Run formation) A.Peterson right end to MIN 46 for 3 yards (J.Freeman).,3,7,2012 20120916_MIN@IND,1,45,5,MIN,IND,2,7,54,(:05) (Run formation) P.Harvin left end pushed ob at IND 34 for 20 yards (A.Bethea).,3,7,2012 20120916_MIN@IND,2,45,0,MIN,IND,1,10,34,(15:00) (Run formation) C.Ponder pass short right to P.Harvin to IND 26 for 8 yards (J.Powers).,3,7,2012 20120916_MIN@IND,2,44,28,MIN,IND,2,2,26,(14:28) (Run formation) T.Gerhart up the middle to IND 25 for 1 yard (R.Mathis; D.Nevis).,3,7,2012 20120916_MIN@IND,2,43,53,MIN,IND,3,1,25,(13:53) (Run formation) A.Peterson up the middle to IND 19 for 6 yards (R.Mathis).,3,7,2012 20120916_MIN@IND,2,43,16,MIN,IND,1,10,19,(13:16) (Run formation) T.Gerhart right end to IND 21 for -2 yards (C.Redding; F.Moala).,3,7,2012 20120916_MIN@IND,2,42,38,MIN,IND,2,12,21,(12:38) (Run formation) C.Ponder scrambles left end to IND 16 for 5 yards (J.Hughes).,3,7,2012 20120916_MIN@IND,2,41,59,MIN,IND,3,7,16,(11:59) (Shotgun) C.Ponder pass short right to P.Harvin pushed ob at IND 11 for 5 yards (J.Powers).,3,7,2012 20120916_MIN@IND,2,41,42,MIN,IND,4,2,11,(11:42) B.Walsh 29 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,3,7,2012 20120916_MIN@IND,2,41,42,MIN,IND,,,11,B.Walsh kicks 68 yards from MIN 35 to IND -3. T.Hilton to IND 16 for 19 yards (J.Sanford).,6,7,2012 20120916_MIN@IND,2,41,33,IND,MIN,1,10,84,(11:33) (Run formation) A.Luck pass short right to R.Wayne to IND 21 for 5 yards (A.Winfield).,7,6,2012 20120916_MIN@IND,2,40,53,IND,MIN,2,5,79,(10:53) (Run formation) D.Brown up the middle to IND 23 for 2 yards (C.Greenway; E.Henderson).,7,6,2012 20120916_MIN@IND,2,40,11,IND,MIN,3,3,77,(10:11) (Shotgun) A.Luck pass incomplete short left to R.Wayne (J.Allen).,7,6,2012 20120916_MIN@IND,2,40,7,IND,MIN,4,3,77,(10:07) P.McAfee punts 57 yards to MIN 20 Center-M.Overton. M.Sherels pushed ob at MIN 34 for 14 yards (J.Lefeged).,7,6,2012 20120916_MIN@IND,2,39,54,MIN,IND,1,10,66,(9:54) (Run formation) A.Peterson up the middle to MIN 40 for 6 yards (J.Freeman; D.Nevis).,6,7,2012 20120916_MIN@IND,2,39,11,MIN,IND,2,4,60,(9:11) (Run formation) C.Ponder pass short right to P.Harvin to MIN 45 for 5 yards (J.Powers).,6,7,2012 20120916_MIN@IND,2,38,35,MIN,IND,1,10,55,(8:35) (Run formation) A.Peterson left end pushed ob at 50 for 5 yards (A.Bethea).,6,7,2012 20120916_MIN@IND,2,38,10,MIN,IND,2,5,50,(8:10) (Run formation) T.Gerhart up the middle to IND 44 for 6 yards (K.Conner). MIN-J.Felton was injured during the play.,6,7,2012 20120916_MIN@IND,2,37,33,MIN,IND,1,10,44,(7:33) (Run formation) T.Gerhart up the middle to IND 42 for 2 yards (C.Redding).,6,7,2012 20120916_MIN@IND,2,36,52,MIN,IND,2,8,42,(6:52) (Run formation) C.Ponder sacked at IND 42 for 0 yards (K.Conner).,6,7,2012 20120916_MIN@IND,2,36,10,MIN,IND,3,8,42,(6:10) (Shotgun) C.Ponder sacked at MIN 49 for -9 yards (J.Freeman). FUMBLES (J.Freeman) RECOVERED by IND-C.Redding at MIN 48. C.Redding to MIN 48 for no gain (C.Ponder). Freeman credited with 10 sack yards.,6,7,2012 20120916_MIN@IND,2,36,2,IND,MIN,1,10,48,(6:02) (Run formation) A.Luck pass incomplete deep right to D.Avery. PENALTY on MIN-F.Evans Defensive Offside 5 yards enforced at MIN 48 - No Play.,7,6,2012 20120916_MIN@IND,2,35,56,IND,MIN,1,5,43,(5:56) (Shotgun) A.Luck pass incomplete short right to V.Ballard.,7,6,2012 20120916_MIN@IND,2,35,53,IND,MIN,2,5,43,(5:53) (Run formation) V.Ballard left end pushed ob at MIN 34 for 9 yards (C.Greenway).,7,6,2012 20120916_MIN@IND,2,35,22,IND,MIN,1,10,34,(5:22) (Run formation) D.Avery left end pushed ob at MIN 27 for 7 yards (C.Cook).,7,6,2012 20120916_MIN@IND,2,34,49,IND,MIN,2,3,27,(4:49) (Shotgun) D.Avery left end to MIN 27 for no gain (A.Winfield; C.Ballard).,7,6,2012 20120916_MIN@IND,2,34,4,IND,MIN,3,3,27,(4:04) (Shotgun) A.Luck pass short right to D.Avery to MIN 17 for 10 yards (C.Cook).,7,6,2012 20120916_MIN@IND,2,33,22,IND,MIN,1,10,17,(3:22) V.Ballard left end to MIN 17 for no gain (J.Allen).,7,6,2012 20120916_MIN@IND,2,32,39,IND,MIN,2,10,17,(2:39) (Shotgun) A.Luck pass short middle to C.Fleener to MIN 8 for 9 yards (J.Brinkley).,7,6,2012 20120916_MIN@IND,2,32,0,IND,MIN,3,1,8,(2:00) (Run formation) D.Allen up the middle to MIN 8 for no gain (J.Brinkley; E.Henderson).,7,6,2012 20120916_MIN@IND,2,31,54,IND,MIN,4,1,8,(1:54) A.Vinatieri 26 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,7,6,2012 20120916_MIN@IND,2,31,54,IND,MIN,,,8,P.McAfee kicks 73 yards from IND 35 to MIN -8. M.Sherels to MIN 15 for 23 yards (J.Lefeged).,10,6,2012 20120916_MIN@IND,2,31,46,MIN,IND,1,10,85,(1:46) (Shotgun) C.Ponder pass short right to M.Jenkins to MIN 19 for 4 yards (J.Powers).,6,10,2012 20120916_MIN@IND,2,31,31,MIN,IND,2,6,81,(1:31) (No Huddle Shotgun) C.Ponder pass incomplete short middle to T.Gerhart (C.Redding).,6,10,2012 20120916_MIN@IND,2,31,26,MIN,IND,3,6,81,(1:26) (Shotgun) C.Ponder pass incomplete short left to P.Harvin.,6,10,2012 20120916_MIN@IND,2,31,23,MIN,IND,4,6,81,(1:23) C.Kluwe punts 45 yards to IND 36 Center-C.Loeffler downed by MIN.,6,10,2012 20120916_MIN@IND,2,31,11,IND,MIN,1,10,64,(1:11) (Shotgun) A.Luck pass short middle to C.Fleener to IND 43 for 7 yards (E.Henderson; C.Greenway).,10,6,2012 20120916_MIN@IND,2,30,50,IND,MIN,2,3,57,(:50) (No Huddle Shotgun) A.Luck pass short right to M.Moore to MIN 49 for 8 yards (J.Robinson).,10,6,2012 20120916_MIN@IND,2,30,45,IND,MIN,1,10,49,(:45) (Shotgun) A.Luck pass incomplete short right to D.Avery (H.Smith).,10,6,2012 20120916_MIN@IND,2,30,39,IND,MIN,2,10,49,(:39) (Shotgun) A.Luck pass short left to R.Wayne to MIN 40 for 9 yards (A.Winfield).,10,6,2012 20120916_MIN@IND,2,30,32,IND,MIN,3,1,40,(:32) (Shotgun) D.Brown up the middle to MIN 37 for 3 yards (A.Winfield).,10,6,2012 20120916_MIN@IND,2,30,21,IND,MIN,1,10,37,(:21) A.Luck spiked the ball to stop the clock.,10,6,2012 20120916_MIN@IND,2,30,19,IND,MIN,2,10,37,(:19) (Shotgun) A.Luck scrambles left end pushed ob at MIN 30 for 7 yards (C.Greenway).,10,6,2012 20120916_MIN@IND,2,30,14,IND,MIN,3,3,30,(:14) (Shotgun) A.Luck pass deep middle to R.Wayne for 30 yards TOUCHDOWN [K.Williams].,10,6,2012 20120916_MIN@IND,2,30,14,IND,MIN,,,30,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,10,6,2012 20120916_MIN@IND,2,30,14,IND,MIN,,,30,P.McAfee kicks 42 yards from IND 35 to MIN 23. D.Reed to MIN 33 for 10 yards (J.Gordy). PENALTY on IND-M.Harvey Offside on Free Kick 5 yards enforced at MIN 33.,17,6,2012 20120916_MIN@IND,2,30,2,MIN,IND,1,10,62,(:02) C.Ponder kneels to MIN 37 for -1 yards.,6,17,2012 20120916_MIN@IND,3,30,0,MIN,IND,,,62,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,6,17,2012 20120916_MIN@IND,3,30,0,IND,MIN,1,10,80,(15:00) (Run formation) D.Brown left tackle to IND 25 for 5 yards (L.Guion; C.Cook).,17,6,2012 20120916_MIN@IND,3,29,25,IND,MIN,2,5,75,(14:25) (Shotgun) A.Luck pass short right to T.Hilton to IND 40 for 15 yards (J.Robinson).,17,6,2012 20120916_MIN@IND,3,28,39,IND,MIN,1,10,60,(13:39) (Run formation) D.Brown left end to IND 48 for 8 yards (C.Cook).,17,6,2012 20120916_MIN@IND,3,28,0,IND,MIN,2,2,52,(13:00) (Run formation) D.Brown up the middle to IND 45 for -3 yards (K.Williams; C.Greenway).,17,6,2012 20120916_MIN@IND,3,27,17,IND,MIN,3,5,55,(12:17) (Shotgun) A.Luck pass incomplete deep left to M.Moore. Penalty on IND-A.Castonzo Offensive Holding declined.,17,6,2012 20120916_MIN@IND,3,27,11,IND,MIN,4,5,55,(12:11) P.McAfee punts 35 yards to MIN 20 Center-M.Overton. M.Sherels pushed ob at MIN 34 for 14 yards (T.Zbikowski). PENALTY on MIN-A.Sendejo Roughing the Kicker 15 yards enforced at IND 45 - No Play.,17,6,2012 20120916_MIN@IND,3,27,0,IND,MIN,1,10,40,(12:00) (Run formation) PENALTY on IND-T.Essex False Start 5 yards enforced at MIN 40 - No Play.,17,6,2012 20120916_MIN@IND,3,27,0,IND,MIN,1,15,45,(12:00) (Shotgun) A.Luck pass short right to D.Avery to MIN 46 for -1 yards (A.Winfield).,17,6,2012 20120916_MIN@IND,3,26,18,IND,MIN,2,16,46,(11:18) (Shotgun) A.Luck pass incomplete short left to K.Adams (A.Winfield).,17,6,2012 20120916_MIN@IND,3,26,14,IND,MIN,3,16,46,(11:14) (Shotgun) A.Luck scrambles left end pushed ob at MIN 45 for 1 yard (J.Allen). PENALTY on MIN-J.Allen Personal Foul 15 yards enforced at MIN 45.,17,6,2012 20120916_MIN@IND,3,25,53,IND,MIN,1,10,30,(10:53) (Run formation) D.Brown up the middle to MIN 30 for no gain (C.Ballard).,17,6,2012 20120916_MIN@IND,3,25,7,IND,MIN,2,10,30,(10:07) (Shotgun) D.Brown left end to MIN 15 for 15 yards (C.Cook).,17,6,2012 20120916_MIN@IND,3,24,20,IND,MIN,1,10,15,(9:20) (Run formation) D.Brown right tackle to MIN 13 for 2 yards (M.Raymond).,17,6,2012 20120916_MIN@IND,3,23,36,IND,MIN,2,8,13,(8:36) (Shotgun) A.Luck pass incomplete short left to C.Fleener. PENALTY on IND-S.Olsen Offensive Holding 10 yards enforced at MIN 13 - No Play.,17,6,2012 20120916_MIN@IND,3,23,31,IND,MIN,2,18,23,(8:31) (Shotgun) A.Luck pass short left to D.Avery to MIN 19 for 4 yards (H.Smith).,17,6,2012 20120916_MIN@IND,3,22,45,IND,MIN,3,14,19,(7:45) (Shotgun) A.Luck sacked at MIN 27 for -8 yards (E.Henderson).,17,6,2012 20120916_MIN@IND,3,22,12,IND,MIN,4,22,27,(7:12) A.Vinatieri 45 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,17,6,2012 20120916_MIN@IND,3,22,12,IND,MIN,,,27,P.McAfee kicks 74 yards from IND 35 to MIN -9. P.Harvin Touchback.,20,6,2012 20120916_MIN@IND,3,22,6,MIN,IND,1,10,80,(7:06) (Run formation) A.Peterson up the middle to MIN 25 for 5 yards (C.Redding).,6,20,2012 20120916_MIN@IND,3,21,34,MIN,IND,2,5,75,(6:34) (Run formation) C.Ponder pass short right to K.Rudolph pushed ob at MIN 40 for 15 yards (J.Powers).,6,20,2012 20120916_MIN@IND,3,21,8,MIN,IND,1,10,60,(6:08) (Run formation) A.Peterson up the middle to MIN 41 for 1 yard (C.Redding).,6,20,2012 20120916_MIN@IND,3,20,36,MIN,IND,2,9,59,(5:36) (Run formation) A.Peterson up the middle to MIN 43 for 2 yards (C.Redding; K.Conner).,6,20,2012 20120916_MIN@IND,3,20,0,MIN,IND,3,7,57,(5:00) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph (A.Bethea).,6,20,2012 20120916_MIN@IND,3,19,55,MIN,IND,4,7,57,(4:55) C.Kluwe punts 55 yards to IND 2 Center-C.Loeffler downed by MIN-J.Sanford.,6,20,2012 20120916_MIN@IND,3,19,45,IND,MIN,1,10,98,(4:45) (Run formation) V.Ballard up the middle to IND 1 for -1 yards (J.Allen).,20,6,2012 20120916_MIN@IND,3,19,8,IND,MIN,2,11,99,(4:08) (Run formation) A.Luck pass incomplete deep right to C.Fleener.,20,6,2012 20120916_MIN@IND,3,19,2,IND,MIN,3,11,99,(4:02) (Run formation) V.Ballard up the middle to IND 5 for 4 yards (J.Sanford).,20,6,2012 20120916_MIN@IND,3,18,24,IND,MIN,4,7,95,(3:24) P.McAfee punts 64 yards to MIN 31 Center-M.Overton. M.Sherels pushed ob at MIN 42 for 11 yards (J.Lefeged). PENALTY on MIN-C.Ballard Illegal Block Above the Waist 10 yards enforced at MIN 42.,20,6,2012 20120916_MIN@IND,3,18,12,MIN,IND,1,10,68,(3:12) (Run formation) C.Ponder scrambles pushed ob at MIN 35 for 3 yards (R.Mathis). PENALTY on MIN-M.Kalil Unnecessary Roughness 15 yards enforced at MIN 35.,6,20,2012 20120916_MIN@IND,3,18,1,MIN,IND,2,22,80,(3:01) (Run formation) C.Ponder pass short left to P.Harvin to MIN 40 for 20 yards (K.Conner) [M.Addison].,6,20,2012 20120916_MIN@IND,3,17,23,MIN,IND,3,2,60,(2:23) (Shotgun) C.Ponder pass short right to P.Harvin to MIN 45 for 5 yards (A.Bethea).,6,20,2012 20120916_MIN@IND,3,16,47,MIN,IND,1,10,55,(1:47) (Run formation) A.Peterson up the middle to MIN 49 for 4 yards (D.Nevis).,6,20,2012 20120916_MIN@IND,3,16,7,MIN,IND,2,6,51,(1:07) (Run formation) C.Ponder scrambles right end pushed ob at IND 36 for 15 yards (J.Freeman). PENALTY on MIN-P.Loadholt Offensive Holding 10 yards enforced at MIN 49 - No Play.,6,20,2012 20120916_MIN@IND,3,15,48,MIN,IND,2,16,61,(:48) (Run formation) C.Ponder sacked at MIN 37 for -2 yards (J.Hughes).,6,20,2012 20120916_MIN@IND,3,15,22,MIN,IND,3,18,63,(:22) (Shotgun) C.Ponder pass short left to T.Gerhart to MIN 42 for 5 yards (J.Freeman; V.Davis).,6,20,2012 20120916_MIN@IND,4,15,0,MIN,IND,4,13,58,(15:00) C.Kluwe punts 39 yards to IND 19 Center-C.Loeffler. T.Hilton to IND 30 for 11 yards (T.McKenzie).,6,20,2012 20120916_MIN@IND,4,14,48,IND,MIN,1,10,70,(14:48) (Run formation) A.Luck pass short right to R.Wayne pushed ob at IND 32 for 2 yards (J.Sanford).,20,6,2012 20120916_MIN@IND,4,14,31,IND,MIN,2,8,68,(14:31) D.Brown up the middle to IND 36 for 4 yards (B.Robison; H.Smith).,20,6,2012 20120916_MIN@IND,4,13,51,IND,MIN,3,4,64,(13:51) (Shotgun) A.Luck pass incomplete short middle to K.Adams.,20,6,2012 20120916_MIN@IND,4,13,47,IND,MIN,4,4,64,(13:47) P.McAfee punts 49 yards to MIN 15 Center-M.Overton. M.Sherels MUFFS catch and recovers at MIN 15. M.Sherels to MIN 21 for 6 yards (J.Lefeged).,20,6,2012 20120916_MIN@IND,4,13,47,MIN,IND,1,10,79,(13:47) C.Ponder pass incomplete deep right to P.Harvin. PENALTY on MIN-P.Harvin Offensive Pass Interference 10 yards enforced at MIN 21 - No Play.,6,20,2012 20120916_MIN@IND,4,13,40,MIN,IND,1,20,89,(13:40) (Run formation) C.Ponder pass short middle to P.Harvin to MIN 28 for 17 yards (R.Mathis; J.Powers).,6,20,2012 20120916_MIN@IND,4,12,59,MIN,IND,2,3,72,(12:59) (Run formation) C.Ponder pass incomplete short middle to S.Burton (K.Conner).,6,20,2012 20120916_MIN@IND,4,12,53,MIN,IND,3,3,72,(12:53) (Shotgun) C.Ponder pass incomplete short right to D.Aromashodu (J.Powers).,6,20,2012 20120916_MIN@IND,4,12,48,MIN,IND,4,3,72,(12:48) C.Kluwe punts 53 yards to IND 19 Center-C.Loeffler fair catch by T.Hilton.,6,20,2012 20120916_MIN@IND,4,12,40,IND,MIN,1,10,81,(12:40) (Run formation) PENALTY on IND-D.Allen False Start 5 yards enforced at IND 19 - No Play.,20,6,2012 20120916_MIN@IND,4,12,40,IND,MIN,1,15,86,(12:40) (Run formation) V.Ballard left guard to IND 12 for -2 yards (E.Henderson).,20,6,2012 20120916_MIN@IND,4,12,0,IND,MIN,2,17,88,(12:00) (Shotgun) V.Ballard up the middle to IND 20 for 8 yards (M.Raymond). PENALTY on IND-T.Essex Offensive Holding 6 yards enforced at IND 12 - No Play.,20,6,2012 20120916_MIN@IND,4,11,45,IND,MIN,2,23,94,(11:45) (Run formation) V.Ballard up the middle to IND 9 for 3 yards (K.Williams).,20,6,2012 20120916_MIN@IND,4,11,3,IND,MIN,3,20,91,(11:03) (Shotgun) M.Moore left tackle to IND 7 for -2 yards (E.Henderson).,20,6,2012 20120916_MIN@IND,4,10,23,IND,MIN,4,22,93,(10:23) P.McAfee punts 55 yards to MIN 38 Center-M.Overton. M.Sherels to MIN 46 for 8 yards (M.Overton).,20,6,2012 20120916_MIN@IND,4,10,10,MIN,IND,1,10,54,(10:10) C.Ponder pass short right to K.Rudolph to IND 40 for 14 yards (J.Powers).,6,20,2012 20120916_MIN@IND,4,9,33,MIN,IND,1,10,40,(9:33) (Run formation) C.Ponder pass incomplete deep right to K.Rudolph.,6,20,2012 20120916_MIN@IND,4,9,26,MIN,IND,2,10,40,(9:26) A.Peterson up the middle to IND 36 for 4 yards (A.Bethea).,6,20,2012 20120916_MIN@IND,4,8,44,MIN,IND,3,6,36,(8:44) (Shotgun) C.Ponder pass short left to P.Harvin ran ob at IND 23 for 13 yards.,6,20,2012 20120916_MIN@IND,4,8,20,MIN,IND,1,10,23,(8:20) (Shotgun) C.Ponder pass short right to P.Harvin to IND 16 for 7 yards (A.Bethea; J.Freeman).,6,20,2012 20120916_MIN@IND,4,7,47,MIN,IND,2,3,16,(7:47) (Run formation) A.Peterson up the middle to IND 13 for 3 yards (K.Conner).,6,20,2012 20120916_MIN@IND,4,7,8,MIN,IND,1,10,13,(7:08) (Run formation) A.Peterson up the middle to IND 12 for 1 yard (J.Freeman; A.Bethea).,6,20,2012 20120916_MIN@IND,4,6,28,MIN,IND,2,9,12,(6:28) (Shotgun) C.Ponder pass short right to P.Harvin pushed ob at IND 6 for 6 yards (J.Freeman).,6,20,2012 20120916_MIN@IND,4,5,57,MIN,IND,3,3,6,(5:57) A.Peterson up the middle to IND 7 for -1 yards (M.Fokou; R.Mathis). MIN-P.Harvin was injured during the play.,6,20,2012 20120916_MIN@IND,4,5,15,MIN,IND,4,4,7,(5:15) (Shotgun) C.Ponder pass short right to S.Burton for 7 yards TOUCHDOWN [R.Mathis]. Pass tipped by IND Redding (#90).,6,20,2012 20120916_MIN@IND,4,5,15,MIN,IND,,,7,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,6,20,2012 20120916_MIN@IND,4,5,15,MIN,IND,,,7,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,13,20,2012 20120916_MIN@IND,4,5,7,IND,MIN,1,10,80,(5:07) (Run formation) D.Brown up the middle to IND 20 for no gain (E.Henderson).,20,13,2012 20120916_MIN@IND,4,4,32,IND,MIN,2,10,80,(4:32) (Run formation) A.Luck pass short right to R.Wayne to IND 25 for 5 yards (H.Smith; E.Henderson). MIN-E.Henderson was injured during the play.,20,13,2012 20120916_MIN@IND,4,4,3,IND,MIN,3,5,75,(4:03) (Shotgun) A.Luck pass short left to D.Avery to IND 33 for 8 yards (C.Cook).,20,13,2012 20120916_MIN@IND,4,3,20,IND,MIN,1,10,67,(3:20) (Run formation) D.Brown up the middle to IND 33 for no gain (B.Robison).,20,13,2012 20120916_MIN@IND,4,3,13,IND,MIN,2,10,67,(3:13) (Run formation) A.Luck pass short right to D.Avery to IND 38 for 5 yards (A.Winfield; B.Robison).,20,13,2012 20120916_MIN@IND,4,3,7,IND,MIN,3,5,62,(3:07) (Shotgun) A.Luck sacked at IND 16 for -22 yards (E.Griffen).,20,13,2012 20120916_MIN@IND,4,3,0,IND,MIN,4,27,84,(3:00) P.McAfee punts 43 yards to MIN 41 Center-M.Overton. M.Sherels to IND 47 for 12 yards (M.Addison).,20,13,2012 20120916_MIN@IND,4,2,50,MIN,IND,1,10,47,(2:50) (Shotgun) C.Ponder pass short right to P.Harvin to IND 48 for -1 yards (J.Freeman). MIN-P.Harvin was injured during the play.,13,20,2012 20120916_MIN@IND,4,2,23,MIN,IND,2,11,48,(2:23) (Shotgun) C.Ponder pass short right to M.Jenkins to IND 39 for 9 yards (J.Freeman).,13,20,2012 20120916_MIN@IND,4,2,4,MIN,IND,3,2,39,(2:04) (No Huddle Shotgun) C.Ponder pass short right to M.Jenkins to IND 31 for 8 yards (J.Powers; J.Freeman).,13,20,2012 20120916_MIN@IND,4,1,59,MIN,IND,1,10,31,(1:59) (Shotgun) C.Ponder pass short left to A.Peterson to IND 30 for 1 yard (V.Davis).,13,20,2012 20120916_MIN@IND,4,1,37,MIN,IND,2,9,30,(1:37) (No Huddle Shotgun) C.Ponder pass incomplete deep right to M.Jenkins (J.Powers).,13,20,2012 20120916_MIN@IND,4,1,31,MIN,IND,3,9,30,(1:31) (Shotgun) C.Ponder pass short middle to A.Peterson to IND 10 for 20 yards (T.Zbikowski).,13,20,2012 20120916_MIN@IND,4,0,44,MIN,IND,1,10,10,(:44) (No Huddle Shotgun) C.Ponder pass short middle to A.Peterson to IND 11 for -1 yards (M.Fokou).,13,20,2012 20120916_MIN@IND,4,0,44,MIN,IND,2,11,11,(:44) (No Huddle Shotgun) C.Ponder pass incomplete short left to P.Harvin. PENALTY on IND-J.King Defensive Holding 5 yards enforced at IND 11 - No Play.,13,20,2012 20120916_MIN@IND,4,0,39,MIN,IND,1,6,6,(:39) (Shotgun) C.Ponder pass incomplete short right to D.Aromashodu.,13,20,2012 20120916_MIN@IND,4,0,36,MIN,IND,2,6,6,(:36) (Shotgun) C.Ponder pass short middle to K.Rudolph for 6 yards TOUCHDOWN.,13,20,2012 20120916_MIN@IND,4,0,36,MIN,IND,,,6,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,20,2012 20120916_MIN@IND,4,0,36,MIN,IND,,,6,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,20,20,2012 20120916_MIN@IND,4,0,31,IND,MIN,1,10,80,(:31) (Shotgun) A.Luck pass deep left to D.Avery to IND 40 for 20 yards (H.Smith).,20,20,2012 20120916_MIN@IND,4,0,24,IND,MIN,1,10,60,(:24) (Shotgun) A.Luck pass deep right to R.Wayne to MIN 40 for 20 yards (M.Raymond).,20,20,2012 20120916_MIN@IND,4,0,18,IND,MIN,1,10,40,(:18) (Shotgun) A.Luck pass short right to D.Avery to MIN 33 for 7 yards (J.Robinson). PENALTY on MIN-E.Griffen Defensive Offside 5 yards enforced at MIN 40 - No Play.,20,20,2012 20120916_MIN@IND,4,0,13,IND,MIN,1,5,35,(:13) (Run formation) A.Luck spiked the ball to stop the clock.,20,20,2012 20120916_MIN@IND,4,0,12,IND,MIN,2,5,35,(:12) A.Vinatieri 53 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,20,20,2012 20120916_MIN@IND,4,0,12,IND,MIN,,,35,P.McAfee kicks 74 yards from IND 35 to MIN -9. P.Harvin Touchback.,23,20,2012 20120916_MIN@IND,4,0,8,MIN,IND,1,10,80,(:08) (Shotgun) C.Ponder pass short right to M.Jenkins ran ob at MIN 35 for 15 yards.,20,23,2012 20120916_MIN@IND,4,0,4,MIN,IND,1,10,65,(:04) (Shotgun) C.Ponder pass deep left to D.Aromashodu to IND 46 for 19 yards (V.Davis).,20,23,2012 20120916_MIN@IND,4,0,4,MIN,IND,,,65,                      ,20,23,2012 20120916_HOU@JAC,1,0,0,JAC,HOU,,,65,J.Scobee kicks 74 yards from JAX 35 to HST -9. T.Holliday to HST 21 for 30 yards (M.Harris).,0,0,2012 20120916_HOU@JAC,1,59,54,HOU,JAC,1,10,79,(14:54) M.Schaub pass short left to J.Casey to HST 30 for 9 yards (A.Ross).,0,0,2012 20120916_HOU@JAC,1,59,54,HOU,JAC,2,1,70,(14:54) M.Schaub pass short left to K.Walter to HST 36 for 6 yards (R.Allen).,0,0,2012 20120916_HOU@JAC,1,58,49,HOU,JAC,1,10,64,(13:49) M.Schaub pass short left to O.Daniels to HST 48 for 12 yards (R.Allen).,0,0,2012 20120916_HOU@JAC,1,58,18,HOU,JAC,1,10,52,(13:18) M.Schaub pass short right to B.Tate pushed ob at JAX 41 for 11 yards (D.Landry).,0,0,2012 20120916_HOU@JAC,1,57,56,HOU,JAC,1,10,41,(12:56) (No Huddle) B.Tate up the middle to JAX 36 for 5 yards (D.Landry).,0,0,2012 20120916_HOU@JAC,1,57,27,HOU,JAC,2,5,36,(12:27) (No Huddle) A.Foster left end to JAX 32 for 4 yards (R.Allen).,0,0,2012 20120916_HOU@JAC,1,56,50,HOU,JAC,3,1,32,(11:50) A.Foster up the middle to JAX 28 for 4 yards (P.Posluszny).,0,0,2012 20120916_HOU@JAC,1,56,18,HOU,JAC,1,10,28,(11:18) (Shotgun) M.Schaub pass short middle to O.Daniels to JAX 24 for 4 yards (P.Posluszny) [T.Knighton].,0,0,2012 20120916_HOU@JAC,1,55,42,HOU,JAC,2,6,24,(10:42) B.Tate left end to JAX 15 for 9 yards (W.Middleton).,0,0,2012 20120916_HOU@JAC,1,55,13,HOU,JAC,1,10,15,(10:13) B.Tate up the middle to JAX 13 for 2 yards (T.Alualu).,0,0,2012 20120916_HOU@JAC,1,54,38,HOU,JAC,2,8,13,(9:38) M.Schaub pass incomplete short middle to A.Foster.,0,0,2012 20120916_HOU@JAC,1,54,34,HOU,JAC,3,8,13,(9:34) (Shotgun) M.Schaub pass incomplete short middle to K.Walter.,0,0,2012 20120916_HOU@JAC,1,54,28,HOU,JAC,4,8,13,(9:28) (Field Goal formation) S.Graham 31 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 20120916_HOU@JAC,1,54,28,HOU,JAC,,,13,S.Graham kicks 74 yards from HST 35 to JAX -9. J.Parmele Touchback.,3,0,2012 20120916_HOU@JAC,1,54,25,JAC,HOU,1,10,80,(9:25) B.Gabbert pass incomplete short middle to L.Robinson. PENALTY on HST-S.Cody Defensive Offside 5 yards enforced at JAX 20 - No Play.,0,3,2012 20120916_HOU@JAC,1,54,20,JAC,HOU,1,5,75,(9:20) M.Jones-Drew up the middle to JAX 26 for 1 yard (J.Watt).,0,3,2012 20120916_HOU@JAC,1,53,43,JAC,HOU,2,4,74,(8:43) M.Jones-Drew up the middle to JAX 28 for 2 yards (B.Reed). PENALTY on HST-B.Reed Defensive Offside 5 yards enforced at JAX 26 - No Play.,0,3,2012 20120916_HOU@JAC,1,53,23,JAC,HOU,1,10,69,(8:23) (Shotgun) B.Gabbert pass short left to Z.Potter to JAX 35 for 4 yards (J.Joseph).,0,3,2012 20120916_HOU@JAC,1,52,50,JAC,HOU,2,6,65,(7:50) M.Jones-Drew right end to JAX 49 for 14 yards (G.Quin).,0,3,2012 20120916_HOU@JAC,1,52,18,JAC,HOU,1,10,51,(7:18) M.Jones-Drew up the middle to HST 48 for 3 yards (A.Smith).,0,3,2012 20120916_HOU@JAC,1,51,35,JAC,HOU,2,7,48,(6:35) B.Gabbert pass short right to G.Jones to HST 44 for 4 yards (C.Barwin).,0,3,2012 20120916_HOU@JAC,1,51,5,JAC,HOU,3,3,44,(6:05) (Shotgun) B.Gabbert pass incomplete short right to L.Robinson (J.Watt).,0,3,2012 20120916_HOU@JAC,1,51,1,JAC,HOU,4,3,44,(6:01) (Punt formation) B.Anger punts 32 yards to HST 12 Center-J.Cain fair catch by T.Holliday.,0,3,2012 20120916_HOU@JAC,1,50,54,HOU,JAC,1,10,88,(5:54) M.Schaub pass incomplete short middle to O.Daniels [C.Mosley].,3,0,2012 20120916_HOU@JAC,1,50,49,HOU,JAC,2,10,88,(5:49) A.Foster left end to HST 13 for 1 yard (C.Mosley).,3,0,2012 20120916_HOU@JAC,1,50,17,HOU,JAC,3,9,87,(5:17) (Shotgun) M.Schaub pass short left to A.Johnson to HST 20 for 7 yards (A.Branch).,3,0,2012 20120916_HOU@JAC,1,49,44,HOU,JAC,4,2,80,(4:44) (Punt formation) D.Jones punts 58 yards to JAX 22 Center-J.Weeks. M.Thomas to JAX 25 for 3 yards (W.Mercilus).,3,0,2012 20120916_HOU@JAC,1,49,30,JAC,HOU,1,10,75,(4:30) (Shotgun) PENALTY on JAX-H.Taylor False Start 5 yards enforced at JAX 25 - No Play.,0,3,2012 20120916_HOU@JAC,1,49,30,JAC,HOU,1,15,80,(4:30) M.Jones-Drew right end to JAX 20 for no gain (J.Watt).,0,3,2012 20120916_HOU@JAC,1,48,52,JAC,HOU,2,15,80,(3:52) B.Gabbert pass incomplete short right to Z.Potter.,0,3,2012 20120916_HOU@JAC,1,48,52,JAC,HOU,3,15,80,(3:52) (Shotgun) PENALTY on JAX-E.Monroe False Start 5 yards enforced at JAX 20 - No Play.,0,3,2012 20120916_HOU@JAC,1,48,46,JAC,HOU,3,20,85,(3:46) (Shotgun) B.Gabbert scrambles up the middle to JAX 20 for 5 yards.,0,3,2012 20120916_HOU@JAC,1,48,7,JAC,HOU,4,15,80,(3:07) (Punt formation) B.Anger punts 57 yards to HST 23 Center-J.Cain. T.Holliday to JAX 41 for 36 yards (B.Anger).,0,3,2012 20120916_HOU@JAC,1,47,52,HOU,JAC,1,10,41,(2:52) A.Foster right guard to JAX 38 for 3 yards (R.Allen).,3,0,2012 20120916_HOU@JAC,1,47,23,HOU,JAC,2,7,38,(2:23) M.Schaub pass short left to J.Casey to JAX 35 for 3 yards (W.Middleton).,3,0,2012 20120916_HOU@JAC,1,46,56,HOU,JAC,3,4,35,(1:56) (Shotgun) M.Schaub pass short left to O.Daniels to JAX 26 for 9 yards (R.Allen) [T.Knighton].,3,0,2012 20120916_HOU@JAC,1,46,20,HOU,JAC,1,10,26,(1:20) B.Tate right guard for 26 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was REVERSED. B.Tate right guard to JAX 1 for 25 yards (D.Lowery).,3,0,2012 20120916_HOU@JAC,1,46,1,HOU,JAC,1,1,1,(1:01) B.Tate right guard to JAX 1 for no gain (C.Mosley).,3,0,2012 20120916_HOU@JAC,1,45,19,HOU,JAC,2,1,1,(:19) A.Foster up the middle for 1 yard TOUCHDOWN.,3,0,2012 20120916_HOU@JAC,1,45,19,HOU,JAC,,,1,(Kick formation) S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,0,2012 20120916_HOU@JAC,1,45,19,HOU,JAC,,,1,S.Graham kicks 67 yards from HST 35 to JAX -2. J.Parmele to JAX 21 for 23 yards (J.Nading).,10,0,2012 20120916_HOU@JAC,1,45,10,JAC,HOU,1,10,79,(:10) M.Jones-Drew up the middle to JAX 33 for 12 yards (D.Manning).,0,10,2012 20120916_HOU@JAC,2,45,0,JAC,HOU,1,10,67,(15:00) B.Gabbert pass incomplete short right to M.Lewis. PENALTY on HST-B.Cushing Illegal Contact 5 yards enforced at JAX 33 - No Play.,0,10,2012 20120916_HOU@JAC,2,44,55,JAC,HOU,1,10,62,(14:55) B.Gabbert pass incomplete short middle to J.Blackmon (J.Watt).,0,10,2012 20120916_HOU@JAC,2,44,28,JAC,HOU,3,7,59,(14:28) (Shotgun) PENALTY on JAX Illegal Substitution 5 yards enforced at JAX 41 - No Play.,0,10,2012 20120916_HOU@JAC,2,43,53,JAC,HOU,4,20,72,(13:53) B.Anger punts 50 yards to HST 22 Center-J.Cain. T.Holliday to HST 31 for 9 yards (K.Bosworth).,0,10,2012 20120916_HOU@JAC,2,43,42,HOU,JAC,1,10,69,(13:42) A.Foster right end to HST 30 for -1 yards (J.Mincey).,10,0,2012 20120916_HOU@JAC,2,43,15,HOU,JAC,2,11,70,(13:15) M.Schaub pass short middle to A.Foster to HST 39 for 9 yards (R.Allen).,10,0,2012 20120916_HOU@JAC,2,42,43,HOU,JAC,3,2,61,(12:43) A.Foster left end to HST 40 for 1 yard (T.Alualu).,10,0,2012 20120916_HOU@JAC,2,42,7,HOU,JAC,4,1,60,(12:07) (Punt formation) D.Jones punts 55 yards to JAX 5 Center-J.Weeks downed by HST-A.Ball.,10,0,2012 20120916_HOU@JAC,2,41,56,JAC,HOU,1,10,95,(11:56) B.Gabbert pass incomplete deep left to C.Shorts.,0,10,2012 20120916_HOU@JAC,2,41,49,JAC,HOU,2,10,95,(11:49) M.Jones-Drew up the middle to JAX 6 for 1 yard (E.Mitchell).,0,10,2012 20120916_HOU@JAC,2,41,10,JAC,HOU,3,9,94,(11:10) (Shotgun) B.Gabbert pass short left to M.Jones-Drew to JAX 5 for -1 yards (Q.Demps).,0,10,2012 20120916_HOU@JAC,2,40,36,JAC,HOU,4,10,95,(10:36) (Punt formation) B.Anger punts 57 yards to HST 38 Center-J.Cain. T.Holliday to JAX 48 for 14 yards (K.Bosworth). PENALTY on HST-M.Alexander Illegal Block Above the Waist 10 yards enforced at JAX 48.,0,10,2012 20120916_HOU@JAC,2,40,23,HOU,JAC,1,10,58,(10:23) M.Schaub pass short middle to B.Tate to HST 44 for 2 yards (R.Mathis).,10,0,2012 20120916_HOU@JAC,2,39,48,HOU,JAC,2,8,56,(9:48) M.Schaub pass short left to O.Daniels to HST 49 for 5 yards (A.Ross).,10,0,2012 20120916_HOU@JAC,2,39,10,HOU,JAC,3,3,51,(9:10) M.Schaub pass short right to A.Foster to JAX 33 for 18 yards (D.Landry).,10,0,2012 20120916_HOU@JAC,2,38,32,HOU,JAC,1,10,33,(8:32) A.Foster up the middle to JAX 24 for 9 yards (J.Mincey).,10,0,2012 20120916_HOU@JAC,2,37,59,HOU,JAC,2,1,24,(7:59) A.Foster up the middle to JAX 21 for 3 yards (T.Knighton; A.Branch).,10,0,2012 20120916_HOU@JAC,2,37,26,HOU,JAC,1,10,21,(7:26) M.Schaub pass short middle to K.Walter to JAX 8 for 13 yards (D.Landry).,10,0,2012 20120916_HOU@JAC,2,36,54,HOU,JAC,1,8,8,(6:54) B.Tate up the middle for 8 yards TOUCHDOWN.,10,0,2012 20120916_HOU@JAC,2,36,54,HOU,JAC,,,8,(Kick formation) S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,10,0,2012 20120916_HOU@JAC,2,36,54,HOU,JAC,,,8,S.Graham kicks 65 yards from HST 35 to JAX 0. J.Parmele to JAX 38 for 38 yards (S.Graham).,17,0,2012 20120916_HOU@JAC,2,36,40,JAC,HOU,1,10,62,(6:40) B.Gabbert pass incomplete short middle to J.Blackmon.,0,17,2012 20120916_HOU@JAC,2,36,36,JAC,HOU,2,10,62,(6:36) M.Jones-Drew up the middle to JAX 44 for 6 yards (J.Crick).,0,17,2012 20120916_HOU@JAC,2,35,56,JAC,HOU,3,4,56,(5:56) (Shotgun) B.Gabbert pass incomplete short middle to J.Blackmon.,0,17,2012 20120916_HOU@JAC,2,35,49,JAC,HOU,4,4,56,(5:49) (Punt formation) B.Anger punts 41 yards to HST 15 Center-J.Cain fair catch by T.Holliday.,0,17,2012 20120916_HOU@JAC,2,35,42,HOU,JAC,1,10,85,(5:42) M.Schaub pass short middle to O.Daniels to HST 21 for 6 yards (T.Alualu).,17,0,2012 20120916_HOU@JAC,2,35,9,HOU,JAC,2,4,79,(5:09) A.Foster up the middle to HST 24 for 3 yards (R.Allen).,17,0,2012 20120916_HOU@JAC,2,34,36,HOU,JAC,3,1,76,(4:36) A.Foster left end to HST 42 for 18 yards (D.Lowery).,17,0,2012 20120916_HOU@JAC,2,33,57,HOU,JAC,1,10,58,(3:57) M.Schaub pass incomplete short left to J.Casey [R.Allen].,17,0,2012 20120916_HOU@JAC,2,33,49,HOU,JAC,2,10,58,(3:49) M.Schaub pass short middle to J.Casey to HST 48 for 6 yards (R.Allen).,17,0,2012 20120916_HOU@JAC,2,33,5,HOU,JAC,3,4,52,(3:05) (Shotgun) M.Schaub pass incomplete deep left to O.Daniels.,17,0,2012 20120916_HOU@JAC,2,33,0,HOU,JAC,4,4,52,(3:00) (Punt formation) D.Jones punts 52 yards to end zone Center-J.Weeks Touchback.,17,0,2012 20120916_HOU@JAC,2,32,52,JAC,HOU,1,10,80,(2:52) B.Gabbert pass incomplete short left to L.Robinson. PENALTY on JAX-H.Taylor Offensive Holding 10 yards enforced at JAX 20 - No Play.,0,17,2012 20120916_HOU@JAC,2,32,41,JAC,HOU,1,20,90,(2:41) B.Gabbert pass incomplete short right to L.Robinson [J.Watt].,0,17,2012 20120916_HOU@JAC,2,32,37,JAC,HOU,2,20,90,(2:37) B.Gabbert sacked at JAX 1 for -9 yards (B.Reed).,0,17,2012 20120916_HOU@JAC,2,32,28,JAC,HOU,3,29,99,(2:28) (Shotgun) B.Gabbert pass short left to L.Robinson to JAX 7 for 6 yards (D.Manning).,0,17,2012 20120916_HOU@JAC,2,32,23,JAC,HOU,4,23,93,(2:23) (Punt formation) B.Anger punts 58 yards to HST 35 Center-J.Cain. T.Holliday MUFFS catch ball out of bounds at HST 33.,0,17,2012 20120916_HOU@JAC,2,32,14,HOU,JAC,1,10,67,(2:14) (Shotgun) A.Foster right guard to HST 41 for 8 yards (D.Lowery).,17,0,2012 20120916_HOU@JAC,2,32,0,HOU,JAC,2,2,59,(2:00) (Shotgun) M.Schaub pass incomplete short right to K.Martin (J.Mincey).,17,0,2012 20120916_HOU@JAC,2,31,55,HOU,JAC,3,2,59,(1:55) (Shotgun) A.Foster up the middle to JAX 44 for 15 yards (C.Prosinski).,17,0,2012 20120916_HOU@JAC,2,31,25,HOU,JAC,1,10,44,(1:25) (No Huddle Shotgun) M.Schaub pass incomplete short middle to A.Johnson (A.Branch).,17,0,2012 20120916_HOU@JAC,2,31,21,HOU,JAC,2,10,44,(1:21) (Shotgun) M.Schaub pass incomplete deep right to K.Martin.,17,0,2012 20120916_HOU@JAC,2,31,15,HOU,JAC,3,10,44,(1:15) (Shotgun) M.Schaub pass short middle to A.Foster to JAX 40 for 4 yards (R.Allen).,17,0,2012 20120916_HOU@JAC,2,30,27,HOU,JAC,4,6,40,(:27) (Shotgun) PENALTY on HST-M.Schaub Delay of Game 5 yards enforced at JAX 40 - No Play.,17,0,2012 20120916_HOU@JAC,2,30,27,HOU,JAC,4,11,45,(:27) (Punt formation) D.Jones punts 45 yards to end zone Center-J.Weeks Touchback.,17,0,2012 20120916_HOU@JAC,2,30,19,JAC,HOU,1,10,80,(:19) M.Jones-Drew up the middle to JAX 22 for 2 yards (S.Cody).,0,17,2012 20120916_HOU@JAC,3,30,0,HOU,JAC,,,80,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,17,0,2012 20120916_HOU@JAC,3,30,0,JAC,HOU,1,10,80,(15:00) (Shotgun) M.Jones-Drew up the middle to JAX 25 for 5 yards (S.Cody; B.James).,0,17,2012 20120916_HOU@JAC,3,29,22,JAC,HOU,2,5,75,(14:22) B.Gabbert pass incomplete short right to J.Blackmon.,0,17,2012 20120916_HOU@JAC,3,29,16,JAC,HOU,3,5,75,(14:16) (Shotgun) B.Gabbert pass incomplete deep right to M.Thomas [B.Cushing].,0,17,2012 20120916_HOU@JAC,3,29,11,JAC,HOU,4,5,75,(14:11) (Punt formation) B.Anger punts 57 yards to HST 18 Center-J.Cain. T.Holliday to HST 31 for 13 yards (M.Owens). PENALTY on HST-Q.Demps Illegal Block Above the Waist 10 yards enforced at HST 28.,0,17,2012 20120916_HOU@JAC,3,28,58,HOU,JAC,1,10,82,(13:58) PENALTY on HST-D.Newton False Start 5 yards enforced at HST 18 - No Play.,17,0,2012 20120916_HOU@JAC,3,28,58,HOU,JAC,1,15,87,(13:58) A.Foster up the middle to HST 12 for -1 yards (K.Bosworth).,17,0,2012 20120916_HOU@JAC,3,28,29,HOU,JAC,2,16,88,(13:29) M.Schaub pass short right to A.Foster to HST 6 for -6 yards (P.Posluszny).,17,0,2012 20120916_HOU@JAC,3,27,50,HOU,JAC,3,22,94,(12:50) A.Foster right end pushed ob at HST 11 for 5 yards (W.Middleton).,17,0,2012 20120916_HOU@JAC,3,27,43,HOU,JAC,4,17,89,(12:43) (Punt formation) D.Jones punts 44 yards to JAX 45 Center-J.Weeks. M.Thomas to HST 37 for 18 yards (B.McCain).,17,0,2012 20120916_HOU@JAC,3,27,35,JAC,HOU,1,10,37,(12:35) B.Gabbert pass deep middle to L.Robinson to HST 5 for 32 yards (J.Joseph).,0,17,2012 20120916_HOU@JAC,3,26,52,JAC,HOU,1,5,5,(11:52) (Shotgun) B.Gabbert pass short right to M.Jones-Drew for 5 yards TOUCHDOWN.,0,17,2012 20120916_HOU@JAC,3,26,52,JAC,HOU,,,5,(Kick formation) J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,17,2012 20120916_HOU@JAC,3,26,52,JAC,HOU,,,5,J.Scobee kicks 73 yards from JAX 35 to HST -8. T.Holliday to HST 20 for 28 yards (A.Blake).,7,17,2012 20120916_HOU@JAC,3,26,39,HOU,JAC,1,10,80,(11:39) M.Schaub pass short middle to A.Johnson to HST 23 for 3 yards (R.Allen).,17,7,2012 20120916_HOU@JAC,3,26,6,HOU,JAC,2,7,77,(11:06) M.Schaub pass incomplete short middle to O.Daniels.,17,7,2012 20120916_HOU@JAC,3,26,0,HOU,JAC,3,7,77,(11:00) M.Schaub pass incomplete short right to A.Johnson [J.Mincey]. PENALTY on JAX-A.Branch Defensive Offside 5 yards enforced at HST 23 - No Play.,17,7,2012 20120916_HOU@JAC,3,25,59,HOU,JAC,3,2,72,(10:59) A.Foster left end to HST 31 for 3 yards (P.Posluszny).,17,7,2012 20120916_HOU@JAC,3,25,20,HOU,JAC,1,10,69,(10:20) M.Schaub pass short right to B.Tate to HST 38 for 7 yards (W.Middleton).,17,7,2012 20120916_HOU@JAC,3,24,58,HOU,JAC,2,3,62,(9:58) B.Tate up the middle to HST 45 for 7 yards (D.Landry).,17,7,2012 20120916_HOU@JAC,3,24,21,HOU,JAC,1,10,55,(9:21) B.Tate up the middle to HST 44 for -1 yards (T.Alualu).,17,7,2012 20120916_HOU@JAC,3,23,39,HOU,JAC,2,11,56,(8:39) (Shotgun) M.Schaub pass short right to A.Johnson to JAX 45 for 11 yards (A.Ross).,17,7,2012 20120916_HOU@JAC,3,23,0,HOU,JAC,1,10,45,(8:00) A.Foster up the middle to JAX 39 for 6 yards (J.Mincey).,17,7,2012 20120916_HOU@JAC,3,22,27,HOU,JAC,2,4,39,(7:27) A.Foster right end to JAX 36 for 3 yards (W.Middleton).,17,7,2012 20120916_HOU@JAC,3,21,40,HOU,JAC,3,1,36,(6:40) M.Schaub pass short left to B.Tate to JAX 33 for 3 yards (J.Mincey).,17,7,2012 20120916_HOU@JAC,3,21,8,HOU,JAC,1,10,33,(6:08) B.Tate up the middle to JAX 31 for 2 yards (A.Branch).,17,7,2012 20120916_HOU@JAC,3,20,34,HOU,JAC,2,8,31,(5:34) M.Schaub pass short middle to G.Graham to JAX 16 for 15 yards (R.Mathis).,17,7,2012 20120916_HOU@JAC,3,19,57,HOU,JAC,1,10,16,(4:57) A.Foster right end to JAX 8 for 8 yards (R.Allen; D.Lowery).,17,7,2012 20120916_HOU@JAC,3,19,27,HOU,JAC,2,2,8,(4:27) A.Foster up the middle to JAX 7 for 1 yard (T.Alualu).,17,7,2012 20120916_HOU@JAC,3,18,47,HOU,JAC,3,1,7,(3:47) A.Foster up the middle to JAX 4 for 3 yards (D.Landry).,17,7,2012 20120916_HOU@JAC,3,18,10,HOU,JAC,1,4,4,(3:10) A.Foster right end to JAX 2 for 2 yards (P.Posluszny).,17,7,2012 20120916_HOU@JAC,3,17,34,HOU,JAC,2,2,2,(2:34) B.Tate up the middle for 2 yards TOUCHDOWN.,17,7,2012 20120916_HOU@JAC,3,17,34,HOU,JAC,,,2,(Kick formation) S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,17,7,2012 20120916_HOU@JAC,3,17,34,HOU,JAC,,,2,S.Graham kicks 60 yards from HST 35 to JAX 5. J.Parmele to JAX 23 for 18 yards (T.Dobbins).,24,7,2012 20120916_HOU@JAC,3,17,22,JAC,HOU,1,10,77,(2:22) B.Gabbert pass incomplete deep left to C.Shorts.,7,24,2012 20120916_HOU@JAC,3,17,16,JAC,HOU,2,10,77,(2:16) M.Jones-Drew up the middle to JAX 19 for -4 yards (J.Watt).,7,24,2012 20120916_HOU@JAC,3,16,32,JAC,HOU,3,14,81,(1:32) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to JAX 22 for 3 yards (B.Cushing).,7,24,2012 20120916_HOU@JAC,3,15,57,JAC,HOU,4,11,78,(:57) B.Anger punts 57 yards to HST 21 impetus ends at HST 29 Center-J.Cain out of bounds.,7,24,2012 20120916_HOU@JAC,3,15,48,HOU,JAC,1,10,79,(:48) PENALTY on HST-G.Graham False Start 5 yards enforced at HST 21 - No Play.,24,7,2012 20120916_HOU@JAC,3,15,48,HOU,JAC,1,15,84,(:48) A.Foster left end to HST 16 for no gain (R.Allen).,24,7,2012 20120916_HOU@JAC,3,15,11,HOU,JAC,2,15,84,(:11) M.Schaub pass short left to A.Foster to HST 19 for 3 yards (P.Posluszny).,24,7,2012 20120916_HOU@JAC,4,15,0,HOU,JAC,3,12,81,(15:00) (Shotgun) M.Schaub pass short middle to A.Foster to HST 28 for 9 yards (P.Posluszny).,24,7,2012 20120916_HOU@JAC,4,14,26,HOU,JAC,4,3,72,(14:26) (Punt formation) D.Jones punts 45 yards to JAX 27 Center-J.Weeks. M.Thomas to JAX 38 for 11 yards (T.Dobbins).,24,7,2012 20120916_HOU@JAC,4,14,13,JAC,HOU,1,10,62,(14:13) (Shotgun) B.Gabbert sacked at JAX 31 for -7 yards (J.Watt).,7,24,2012 20120916_HOU@JAC,4,13,56,JAC,HOU,2,17,69,(13:56) (Shotgun) B.Gabbert pass incomplete short middle to M.Thomas.,7,24,2012 20120916_HOU@JAC,4,13,52,JAC,HOU,3,17,69,(13:52) (Shotgun) B.Gabbert pass incomplete deep left to L.Robinson.,7,24,2012 20120916_HOU@JAC,4,13,47,JAC,HOU,4,17,69,(13:47) (Punt formation) B.Anger punts 59 yards to HST 10 Center-J.Cain. T.Holliday to HST 18 for 8 yards (D.Lowery). PENALTY on HST-M.Alexander Illegal Block Above the Waist 9 yards enforced at HST 18.,7,24,2012 20120916_HOU@JAC,4,13,35,HOU,JAC,1,10,91,(13:35) B.Tate up the middle to HST 10 for 1 yard (K.Bosworth).,24,7,2012 20120916_HOU@JAC,4,13,3,HOU,JAC,2,9,90,(13:03) M.Schaub pass short middle to K.Walter to HST 25 for 15 yards (A.Ross).,24,7,2012 20120916_HOU@JAC,4,12,19,HOU,JAC,1,10,75,(12:19) A.Foster up the middle to HST 26 for 1 yard (DA.Smith).,24,7,2012 20120916_HOU@JAC,4,11,41,HOU,JAC,2,9,74,(11:41) M.Schaub pass short right to O.Daniels to HST 37 for 11 yards (C.Prosinski).,24,7,2012 20120916_HOU@JAC,4,11,6,HOU,JAC,1,10,63,(11:06) A.Foster right end to HST 39 for 2 yards (P.Posluszny).,24,7,2012 20120916_HOU@JAC,4,10,27,HOU,JAC,2,8,61,(10:27) M.Schaub pass incomplete deep left to L.Jean. PENALTY on JAX-A.Ross Defensive Pass Interference 21 yards enforced at HST 39 - No Play.,24,7,2012 20120916_HOU@JAC,4,10,20,HOU,JAC,1,10,40,(10:20) B.Tate up the middle to JAX 26 for 14 yards (D.Landry).,24,7,2012 20120916_HOU@JAC,4,9,30,HOU,JAC,1,10,26,(9:30) A.Foster up the middle to JAX 21 for 5 yards (J.Mincey).,24,7,2012 20120916_HOU@JAC,4,8,47,HOU,JAC,2,5,21,(8:47) A.Foster left end to JAX 17 for 4 yards (A.Branch).,24,7,2012 20120916_HOU@JAC,4,8,4,HOU,JAC,3,1,17,(8:04) A.Foster up the middle to JAX 18 for -1 yards (K.Bosworth).,24,7,2012 20120916_HOU@JAC,4,7,24,HOU,JAC,4,2,18,(7:24) (Field Goal formation) S.Graham 37 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,24,7,2012 20120916_HOU@JAC,4,7,24,HOU,JAC,,,18,S.Graham kicks 74 yards from HST 35 to JAX -9. J.Parmele Touchback.,27,7,2012 20120916_HOU@JAC,4,7,20,JAC,HOU,1,10,80,(7:20) JAX 11 Gabbert out for the game with a leg injury. C.Henne pass short left to L.Robinson to JAX 31 for 11 yards (J.Joseph).,7,27,2012 20120916_HOU@JAC,4,6,53,JAC,HOU,1,10,69,(6:53) (No Huddle) PENALTY on HST-W.Mercilus Defensive Offside 5 yards enforced at JAX 31 - No Play.,7,27,2012 20120916_HOU@JAC,4,6,53,JAC,HOU,1,5,64,(6:53) PENALTY on JAX-U.Nwaneri False Start 5 yards enforced at JAX 36 - No Play.,7,27,2012 20120916_HOU@JAC,4,6,19,JAC,HOU,1,10,69,(6:19) (Shotgun) C.Henne pass short left to M.Thomas to JAX 43 for 12 yards (Q.Demps) [B.Reed].,7,27,2012 20120916_HOU@JAC,4,5,43,JAC,HOU,1,10,57,(5:43) M.Jones-Drew up the middle to HST 40 for 17 yards (D.Manning). PENALTY on JAX-G.Whimper Unnecessary Roughness 15 yards enforced between downs.,7,27,2012 20120916_HOU@JAC,4,5,15,HOU,JAC,1,10,57,(5:15) C.Henne FUMBLES (Aborted) at JAX 43 RECOVERED by HST-J.Watt at JAX 43. J.Watt to JAX 43 for no gain (M.Jones-Drew).,27,7,2012 20120916_HOU@JAC,4,5,9,HOU,JAC,1,10,43,(5:09) J.Forsett right end to JAX 29 for 14 yards (A.Ross).,27,7,2012 20120916_HOU@JAC,4,4,24,HOU,JAC,1,10,29,(4:24) J.Forsett left end to JAX 19 for 10 yards (P.Posluszny).,27,7,2012 20120916_HOU@JAC,4,3,31,HOU,JAC,1,10,19,(3:31) J.Forsett up the middle to JAX 17 for 2 yards (T.Alualu).,27,7,2012 20120916_HOU@JAC,4,2,53,HOU,JAC,2,8,17,(2:53) J.Forsett left end to JAX 10 for 7 yards (R.Allen).,27,7,2012 20120916_HOU@JAC,4,2,11,HOU,JAC,3,1,10,(2:11) J.Forsett right end to JAX 11 for -1 yards (C.Mosley).,27,7,2012 20120916_HOU@JAC,4,2,0,HOU,JAC,4,2,11,(2:00) J.Forsett up the middle to JAX 8 for 3 yards (C.Mosley).,27,7,2012 20120916_HOU@JAC,4,1,16,HOU,JAC,1,8,8,(1:16) M.Schaub kneels to JAX 10 for -2 yards.,27,7,2012 20120916_HOU@JAC,4,0,37,HOU,JAC,2,10,10,(:37) M.Schaub kneels to JAX 11 for -1 yards.,27,7,2012 20120916_HOU@JAC,4,0,37,HOU,JAC,,,10,                      ,27,7,2012 20120916_ARI@NE,1,0,0,NE,ARI,,,10,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,0,0,2012 20120916_ARI@NE,1,60,0,ARI,NE,1,10,80,(15:00) C.Wells right guard to ARZ 26 for 6 yards (P.Chung).,0,0,2012 20120916_ARI@NE,1,59,26,ARI,NE,2,4,74,(14:26) C.Wells up the middle to ARZ 29 for 3 yards (C.Jones).,0,0,2012 20120916_ARI@NE,1,58,51,ARI,NE,3,1,71,(13:51) K.Kolb up the middle to ARZ 31 for 2 yards (V.Wilfork; J.Mayo).,0,0,2012 20120916_ARI@NE,1,58,11,ARI,NE,1,10,69,(13:11) K.Kolb pass incomplete short left to T.Heap.,0,0,2012 20120916_ARI@NE,1,58,4,ARI,NE,2,10,69,(13:04) (Shotgun) K.Kolb pass short middle to L.Stephens-Howling to ARZ 41 for 10 yards (J.Mayo).,0,0,2012 20120916_ARI@NE,1,57,26,ARI,NE,1,10,59,(12:26) Direct snap to P.Peterson. P.Peterson left end pushed ob at NE 42 for 17 yards (P.Chung).,0,0,2012 20120916_ARI@NE,1,57,3,ARI,NE,1,10,42,(12:03) C.Wells left tackle to NE 42 for no gain (K.Love).,0,0,2012 20120916_ARI@NE,1,56,21,ARI,NE,2,10,42,(11:21) (Shotgun) K.Kolb pass short left to R.Williams to NE 39 for 3 yards (S.Moore).,0,0,2012 20120916_ARI@NE,1,55,40,ARI,NE,3,7,39,(10:40) (Shotgun) K.Kolb pass short middle to E.Doucet to NE 27 for 12 yards (S.Gregory K.Arrington).,0,0,2012 20120916_ARI@NE,1,55,12,ARI,NE,1,10,27,(10:12) C.Wells left tackle to NE 24 for 3 yards (J.Mayo; C.Jones).,0,0,2012 20120916_ARI@NE,1,54,34,ARI,NE,2,7,24,(9:34) (Shotgun) K.Kolb pass short middle to L.Fitzgerald to NE 20 for 4 yards (B.Spikes).,0,0,2012 20120916_ARI@NE,1,53,50,ARI,NE,3,3,20,(8:50) (Shotgun) K.Kolb pass incomplete short right to T.Heap.,0,0,2012 20120916_ARI@NE,1,53,47,ARI,NE,4,3,20,(8:47) J.Feely 38 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 20120916_ARI@NE,1,53,47,ARI,NE,,,20,J.Feely kicks 65 yards from ARZ 35 to NE 0. D.McCourty to NE 21 for 21 yards (R.Walker).,3,0,2012 20120916_ARI@NE,1,53,37,NE,ARI,1,10,79,(8:37) T.Brady pass short right intended for A.Hernandez INTERCEPTED by P.Peterson (D.Dockett) at NE 36. P.Peterson to NE 36 for no gain (J.Edelman).,0,3,2012 20120916_ARI@NE,1,53,31,ARI,NE,1,10,36,(8:31) C.Wells up the middle to NE 34 for 2 yards (K.Love).,3,0,2012 20120916_ARI@NE,1,52,57,ARI,NE,2,8,34,(7:57) K.Kolb pass incomplete deep right to L.Fitzgerald.,3,0,2012 20120916_ARI@NE,1,52,51,ARI,NE,3,8,34,(7:51) (Shotgun) PENALTY on NE-V.Wilfork Encroachment 5 yards enforced at NE 34 - No Play.,3,0,2012 20120916_ARI@NE,1,52,51,ARI,NE,3,3,29,(7:51) (Shotgun) K.Kolb pass incomplete deep right to T.Heap.,3,0,2012 20120916_ARI@NE,1,52,47,ARI,NE,4,3,29,(7:47) J.Feely 47 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,3,0,2012 20120916_ARI@NE,1,52,47,ARI,NE,,,29,J.Feely kicks 65 yards from ARZ 35 to NE 0. D.McCourty to NE 25 for 25 yards (R.Johnson; E.Doucet).,6,0,2012 20120916_ARI@NE,1,52,34,NE,ARI,1,10,75,(7:34) S.Ridley left guard to NE 26 for 1 yard (S.Acho; C.Campbell).,0,6,2012 20120916_ARI@NE,1,52,3,NE,ARI,2,9,74,(7:03) (Shotgun) T.Brady pass short right to J.Edelman to NE 32 for 6 yards (W.Gay). NE-A.Hernandez was injured during the play.,0,6,2012 20120916_ARI@NE,1,51,38,NE,ARI,3,3,68,(6:38) (Shotgun) D.Woodhead up the middle to NE 35 for 3 yards (D.Washington).,0,6,2012 20120916_ARI@NE,1,51,2,NE,ARI,1,10,65,(6:02) D.Woodhead left guard to NE 38 for 3 yards (D.Dockett).,0,6,2012 20120916_ARI@NE,1,50,35,NE,ARI,2,7,62,(5:35) S.Ridley left end ran ob at NE 39 for 1 yard.,0,6,2012 20120916_ARI@NE,1,50,6,NE,ARI,3,6,61,(5:06) (Shotgun) T.Brady pass short left to R.Gronkowski to NE 48 for 9 yards (J.Fleming; D.Washington).,0,6,2012 20120916_ARI@NE,1,49,36,NE,ARI,1,10,52,(4:36) T.Brady pass short left to S.Ridley to ARZ 36 for 16 yards (P.Lenon). NE 12-Brady 40246 career pass yards passing Johnny Unitas for 13th in NFL history.,0,6,2012 20120916_ARI@NE,1,48,52,NE,ARI,1,10,36,(3:52) S.Ridley left guard to ARZ 35 for 1 yard (C.Campbell).,0,6,2012 20120916_ARI@NE,1,48,13,NE,ARI,2,9,35,(3:13) T.Brady pass short left to B.Lloyd to ARZ 33 for 2 yards (K.Rhodes).,0,6,2012 20120916_ARI@NE,1,47,37,NE,ARI,3,7,33,(2:37) (Shotgun) T.Brady pass incomplete deep middle to B.Lloyd. PENALTY on ARZ-Q.Groves Encroachment 5 yards enforced at ARZ 33 - No Play.,0,6,2012 20120916_ARI@NE,1,47,31,NE,ARI,3,2,28,(2:31) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,0,6,2012 20120916_ARI@NE,1,47,27,NE,ARI,4,2,28,(2:27) S.Gostkowski 46 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,6,2012 20120916_ARI@NE,1,47,27,NE,ARI,,,28,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,3,6,2012 20120916_ARI@NE,1,47,22,ARI,NE,1,10,80,(2:22) R.Williams up the middle to ARZ 22 for 2 yards (B.Spikes).,6,3,2012 20120916_ARI@NE,1,46,52,ARI,NE,2,8,78,(1:52) (No Huddle Shotgun) K.Kolb pass short right to T.Heap to ARZ 28 for 6 yards (K.Arrington; D.McCourty). ARI 86-Heap just passed Mike Ditka for 12th all-time receiving yards for a TE.,6,3,2012 20120916_ARI@NE,1,46,7,ARI,NE,3,2,72,(1:07) (Shotgun) K.Kolb sacked at ARZ 28 for 0 yards (R.Ninkovich).,6,3,2012 20120916_ARI@NE,1,45,33,ARI,NE,4,2,72,(:33) D.Zastudil punts 44 yards to NE 28 Center-M.Leach fair catch by J.Edelman.,6,3,2012 20120916_ARI@NE,1,45,27,NE,ARI,1,10,72,(:27) S.Ridley right end to NE 48 for 20 yards (D.Washington).,3,6,2012 20120916_ARI@NE,1,45,2,NE,ARI,1,10,52,(:02) (No Huddle) S.Ridley right tackle to NE 49 for 1 yard (P.Lenon).,3,6,2012 20120916_ARI@NE,2,45,0,NE,ARI,2,9,51,(15:00) T.Brady pass incomplete deep middle to B.Lloyd.,3,6,2012 20120916_ARI@NE,2,44,53,NE,ARI,3,9,51,(14:53) (Shotgun) T.Brady pass incomplete short right to B.Lloyd.,3,6,2012 20120916_ARI@NE,2,44,48,NE,ARI,4,9,51,(14:48) Z.Mesko punts 38 yards to ARZ 13 Center-D.Aiken. P.Peterson ran ob at ARZ 16 for 3 yards.,3,6,2012 20120916_ARI@NE,2,44,40,ARI,NE,1,10,84,(14:40) R.Williams left tackle to ARZ 11 for -5 yards (C.Jones).,6,3,2012 20120916_ARI@NE,2,44,3,ARI,NE,2,15,89,(14:03) (Shotgun) K.Kolb pass short middle to R.Williams to ARZ 18 for 7 yards (D.Hightower).,6,3,2012 20120916_ARI@NE,2,43,21,ARI,NE,3,8,82,(13:21) (Shotgun) K.Kolb pass short right to T.Heap to ARZ 32 for 14 yards (D.McCourty; K.Arrington). PENALTY on ARZ-D.Batiste Offensive Holding 9 yards enforced at ARZ 18 - No Play.,6,3,2012 20120916_ARI@NE,2,42,58,ARI,NE,3,17,91,(12:58) (Shotgun) K.Kolb pass incomplete short middle to T.Heap [C.Jones].,6,3,2012 20120916_ARI@NE,2,42,53,ARI,NE,4,17,91,(12:53) D.Zastudil punts 59 yards to NE 32 Center-M.Leach. J.Edelman to ARZ 46 for 22 yards (J.Sanders).,6,3,2012 20120916_ARI@NE,2,42,40,NE,ARI,1,10,46,(12:40) (Shotgun) S.Ridley left guard to ARZ 41 for 5 yards (D.Washington).,3,6,2012 20120916_ARI@NE,2,42,6,NE,ARI,2,5,41,(12:06) S.Ridley left end to ARZ 29 for 12 yards (A.Wilson).,3,6,2012 20120916_ARI@NE,2,41,32,NE,ARI,1,10,29,(11:32) S.Ridley up the middle to ARZ 19 for 10 yards (W.Gay).,3,6,2012 20120916_ARI@NE,2,40,57,NE,ARI,1,10,19,(10:57) S.Ridley left end to ARZ 16 for 3 yards (C.Campbell).,3,6,2012 20120916_ARI@NE,2,40,21,NE,ARI,2,7,16,(10:21) T.Brady pass short left to B.Lloyd pushed ob at ARZ 11 for 5 yards (J.Fleming).,3,6,2012 20120916_ARI@NE,2,39,56,NE,ARI,3,2,11,(9:56) D.Woodhead left guard to ARZ 11 for no gain (N.Eason).,3,6,2012 20120916_ARI@NE,2,39,12,NE,ARI,4,2,11,(9:12) (Field Goal formation) PENALTY on NE-D.Aiken False Start 5 yards enforced at ARZ 11 - No Play.,3,6,2012 20120916_ARI@NE,2,39,12,NE,ARI,4,7,16,(9:12) S.Gostkowski 34 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,3,6,2012 20120916_ARI@NE,2,39,12,NE,ARI,,,16,S.Gostkowski kicks 69 yards from NE 35 to ARZ -4. L.Stephens-Howling pushed ob at ARZ 28 for 32 yards (K.Arrington). PENALTY on ARZ-J.Sanders Offensive Holding 10 yards enforced at ARZ 28.,6,6,2012 20120916_ARI@NE,2,39,2,ARI,NE,1,10,82,(9:02) K.Kolb pass short middle to T.Heap to ARZ 23 for 5 yards (J.Mayo; B.Spikes).,6,6,2012 20120916_ARI@NE,2,38,30,ARI,NE,2,5,77,(8:30) (No Huddle) C.Wells right end ran ob at ARZ 30 for 7 yards.,6,6,2012 20120916_ARI@NE,2,38,7,ARI,NE,1,10,70,(8:07) (No Huddle Shotgun) K.Kolb scrambles right end ran ob at ARZ 35 for 5 yards.,6,6,2012 20120916_ARI@NE,2,37,39,ARI,NE,2,5,65,(7:39) (No Huddle Shotgun) K.Kolb right guard to ARZ 41 for 6 yards (B.Spikes; R.Brace).,6,6,2012 20120916_ARI@NE,2,36,55,ARI,NE,1,10,59,(6:55) (No Huddle) C.Wells up the middle to ARZ 45 for 4 yards (J.Mayo; R.Ninkovich).,6,6,2012 20120916_ARI@NE,2,36,15,ARI,NE,2,6,55,(6:15) (No Huddle) K.Kolb pass incomplete short right [B.Spikes].,6,6,2012 20120916_ARI@NE,2,36,11,ARI,NE,3,6,55,(6:11) (Shotgun) K.Kolb left guard to ARZ 48 for 3 yards (C.Jones). FUMBLES (C.Jones) RECOVERED by NE-T.Wilson at NE 48. T.Wilson to NE 48 for no gain (L.Sendlein).,6,6,2012 20120916_ARI@NE,2,36,4,NE,ARI,1,10,52,(6:04) T.Brady sacked at NE 38 for -10 yards (S.Acho).,6,6,2012 20120916_ARI@NE,2,35,35,NE,ARI,2,20,62,(5:35) (Shotgun) PENALTY on NE-D.Thomas False Start 5 yards enforced at NE 38 - No Play.,6,6,2012 20120916_ARI@NE,2,35,33,NE,ARI,2,25,67,(5:33) (Shotgun) T.Brady sacked at NE 26 for -7 yards (Q.Groves).,6,6,2012 20120916_ARI@NE,2,35,6,NE,ARI,3,32,74,(5:06) (Shotgun) D.Woodhead up the middle to NE 31 for 5 yards (C.Campbell).,6,6,2012 20120916_ARI@NE,2,34,35,NE,ARI,4,27,69,(4:35) Z.Mesko punts 40 yards to ARZ 29 Center-D.Aiken downed by NE-M.Cole.,6,6,2012 20120916_ARI@NE,2,34,26,ARI,NE,1,10,71,(4:26) C.Wells right tackle to ARZ 26 for -3 yards (B.Spikes).,6,6,2012 20120916_ARI@NE,2,33,52,ARI,NE,2,13,74,(3:52) (No Huddle Shotgun) K.Kolb pass incomplete short right to E.Doucet.,6,6,2012 20120916_ARI@NE,2,33,46,ARI,NE,3,13,74,(3:46) (Shotgun) K.Kolb pass short middle to T.Heap to ARZ 38 for 12 yards (D.Hightower).,6,6,2012 20120916_ARI@NE,2,33,5,ARI,NE,4,1,62,(3:05) D.Zastudil punts 52 yards to NE 10 Center-M.Leach out of bounds.,6,6,2012 20120916_ARI@NE,2,32,59,NE,ARI,1,10,90,(2:59) S.Ridley left guard to NE 11 for 1 yard (P.Lenon; C.Campbell).,6,6,2012 20120916_ARI@NE,2,32,20,NE,ARI,2,9,89,(2:20) S.Ridley right tackle to NE 10 for -1 yards (D.Dockett; D.Washington).,6,6,2012 20120916_ARI@NE,2,32,0,NE,ARI,3,10,90,(2:00) (Shotgun) T.Brady pass deep left to W.Welker ran ob at NE 35 for 25 yards. NE 83-Welker 558th career reception franchise record (Troy Brown).,6,6,2012 20120916_ARI@NE,2,31,52,NE,ARI,1,10,65,(1:52) (No Huddle Shotgun) T.Brady pass short middle to D.Woodhead to NE 47 for 12 yards (P.Lenon).,6,6,2012 20120916_ARI@NE,2,31,24,NE,ARI,1,10,53,(1:24) (No Huddle Shotgun) T.Brady pass incomplete deep left to R.Gronkowski.,6,6,2012 20120916_ARI@NE,2,31,16,NE,ARI,2,10,53,(1:16) (Shotgun) D.Woodhead right guard to ARZ 47 for 6 yards (C.Campbell; W.Gay).,6,6,2012 20120916_ARI@NE,2,30,46,NE,ARI,3,4,47,(:46) (No Huddle Shotgun) T.Brady sacked at ARZ 47 for 0 yards (C.Campbell).,6,6,2012 20120916_ARI@NE,2,30,6,NE,ARI,4,4,47,(:06) Z.Mesko punts 21 yards to ARZ 26 Center-D.Aiken downed by NE-M.Rivera.,6,6,2012 20120916_ARI@NE,3,30,0,ARI,NE,,,47,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,6,6,2012 20120916_ARI@NE,3,30,0,NE,ARI,1,10,80,(15:00) T.Brady pass deep middle to W.Welker to ARZ 44 for 36 yards (K.Rhodes).,6,6,2012 20120916_ARI@NE,3,29,20,NE,ARI,1,10,44,(14:20) (Shotgun) T.Brady pass short left to B.Lloyd to ARZ 40 for 4 yards (S.Acho).,6,6,2012 20120916_ARI@NE,3,28,53,NE,ARI,2,6,40,(13:53) (No Huddle) S.Ridley right tackle to ARZ 33 for 7 yards (D.Washington).,6,6,2012 20120916_ARI@NE,3,28,12,NE,ARI,1,10,33,(13:12) (No Huddle Shotgun) T.Brady pass incomplete short right to J.Edelman.,6,6,2012 20120916_ARI@NE,3,28,8,NE,ARI,2,10,33,(13:08) (No Huddle) T.Brady pass incomplete short middle to S.Ridley.,6,6,2012 20120916_ARI@NE,3,28,3,NE,ARI,3,10,33,(13:03) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,6,6,2012 20120916_ARI@NE,3,27,58,NE,ARI,4,10,33,(12:58) S.Gostkowski 51 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,6,6,2012 20120916_ARI@NE,3,27,58,NE,ARI,,,33,S.Gostkowski kicks 56 yards from NE 35 to ARZ 9. E.Doucet pushed ob at ARZ 27 for 18 yards (T.Scott).,9,6,2012 20120916_ARI@NE,3,27,47,ARI,NE,1,10,73,(12:47) K.Kolb pass short right to C.Wells pushed ob at NE 49 for 24 yards (J.Mayo).,6,9,2012 20120916_ARI@NE,3,27,16,ARI,NE,1,10,49,(12:16) C.Wells left tackle to ARZ 49 for -2 yards (D.Hightower).,6,9,2012 20120916_ARI@NE,3,26,41,ARI,NE,2,12,51,(11:41) Direct snap to P.Peterson. L.Stephens-Howling right end to NE 44 for 7 yards (S.Gregory).,6,9,2012 20120916_ARI@NE,3,25,59,ARI,NE,3,5,44,(10:59) (Shotgun) K.Kolb pass incomplete short right to L.Stephens-Howling.,6,9,2012 20120916_ARI@NE,3,25,56,ARI,NE,4,5,44,(10:56) D.Zastudil punts 34 yards to NE 10 Center-M.Leach fair catch by W.Welker.,6,9,2012 20120916_ARI@NE,3,25,49,NE,ARI,1,10,90,(10:49) (Shotgun) S.Ridley right guard to NE 14 for 4 yards (P.Peterson).,9,6,2012 20120916_ARI@NE,3,25,28,NE,ARI,2,6,86,(10:28) (No Huddle) S.Ridley right end to NE 11 for -3 yards (D.Washington).,9,6,2012 20120916_ARI@NE,3,24,53,NE,ARI,3,9,89,(9:53) (Shotgun) T.Brady pass incomplete short right to W.Welker.,9,6,2012 20120916_ARI@NE,3,24,48,NE,ARI,4,9,89,(9:48) Z.Mesko punt is BLOCKED by Q.Groves Center-D.Aiken ball out of bounds at NE 2.,9,6,2012 20120916_ARI@NE,3,24,41,ARI,NE,1,2,2,(9:41) R.Williams up the middle to NE 2 for no gain (R.Brace).,6,9,2012 20120916_ARI@NE,3,24,0,ARI,NE,2,2,2,(9:00) K.Kolb pass incomplete short left to L.Fitzgerald.,6,9,2012 20120916_ARI@NE,3,23,56,ARI,NE,3,2,2,(8:56) (Shotgun) K.Kolb pass short left to A.Roberts for 2 yards TOUCHDOWN.,6,9,2012 20120916_ARI@NE,3,23,56,ARI,NE,,,2,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,6,9,2012 20120916_ARI@NE,3,23,56,ARI,NE,,,2,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,13,9,2012 20120916_ARI@NE,3,23,52,NE,ARI,1,10,80,(8:52) (Shotgun) S.Ridley right guard to NE 25 for 5 yards (P.Lenon).,9,13,2012 20120916_ARI@NE,3,23,16,NE,ARI,2,5,75,(8:16) (Shotgun) T.Brady pass short middle to W.Welker to NE 34 for 9 yards (D.Washington).,9,13,2012 20120916_ARI@NE,3,22,43,NE,ARI,1,10,66,(7:43) T.Brady pass short left to S.Ridley pushed ob at NE 38 for 4 yards (D.Washington).,9,13,2012 20120916_ARI@NE,3,22,16,NE,ARI,2,6,62,(7:16) (Shotgun) S.Ridley up the middle to NE 45 for 7 yards (K.Rhodes).,9,13,2012 20120916_ARI@NE,3,21,47,NE,ARI,1,10,55,(6:47) T.Brady pass short left to B.Lloyd to ARZ 46 for 9 yards (P.Lenon).,9,13,2012 20120916_ARI@NE,3,21,12,NE,ARI,2,1,46,(6:12) S.Ridley up the middle to ARZ 45 for 1 yard (D.Dockett).,9,13,2012 20120916_ARI@NE,3,20,31,NE,ARI,1,10,45,(5:31) (Shotgun) T.Brady pass incomplete short left to W.Welker [S.Acho].,9,13,2012 20120916_ARI@NE,3,20,24,NE,ARI,2,10,45,(5:24) (Shotgun) T.Brady pass short right to B.Lloyd to ARZ 36 for 9 yards (P.Lenon).,9,13,2012 20120916_ARI@NE,3,19,53,NE,ARI,3,1,36,(4:53) L.Hilliard up the middle to ARZ 34 for 2 yards (D.Washington).,9,13,2012 20120916_ARI@NE,3,19,12,NE,ARI,1,10,34,(4:12) (Shotgun) T.Brady pass incomplete deep right to B.Lloyd.,9,13,2012 20120916_ARI@NE,3,19,8,NE,ARI,2,10,34,(4:08) T.Brady pass short left to S.Ridley to ARZ 30 for 4 yards (W.Gay).,9,13,2012 20120916_ARI@NE,3,18,27,NE,ARI,3,6,30,(3:27) D.Woodhead right end to ARZ 39 for -9 yards (D.Dockett).,9,13,2012 20120916_ARI@NE,3,17,53,NE,ARI,4,15,39,(2:53) Z.Mesko punts 39 yards to end zone Center-D.Aiken Touchback. PENALTY on NE Illegal Formation 5 yards enforced at ARZ 20.,9,13,2012 20120916_ARI@NE,3,17,46,ARI,NE,1,10,75,(2:46) K.Kolb pass short middle to T.Heap to ARZ 36 for 11 yards (S.Gregory).,13,9,2012 20120916_ARI@NE,3,17,16,ARI,NE,1,10,64,(2:16) R.Williams up the middle to ARZ 38 for 2 yards (R.Ninkovich).,13,9,2012 20120916_ARI@NE,3,16,41,ARI,NE,2,8,62,(1:41) K.Kolb pass short right to L.Fitzgerald pushed ob at ARZ 46 for 8 yards (S.Moore) [J.Mayo]. PENALTY on ARZ-A.Snyder Offensive Holding 10 yards enforced at ARZ 38 - No Play.,13,9,2012 20120916_ARI@NE,3,16,13,ARI,NE,2,18,72,(1:13) (Shotgun) K.Kolb pass short right to T.Heap pushed ob at NE 44 for 28 yards (S.Gregory) [B.Spikes]. Penalty on NE-B.Spikes Roughing the Passer declined. PENALTY on NE-S.Gregory Personal Foul 15 yards enforced at NE 44.,13,9,2012 20120916_ARI@NE,3,15,47,ARI,NE,1,10,29,(:47) R.Williams up the middle to NE 25 for 4 yards (J.Mayo).,13,9,2012 20120916_ARI@NE,3,15,10,ARI,NE,2,6,25,(:10) (Shotgun) K.Kolb pass incomplete deep right to L.Fitzgerald.,13,9,2012 20120916_ARI@NE,3,15,2,ARI,NE,3,6,25,(:02) (Shotgun) K.Kolb pass short middle to E.Doucet to NE 16 for 9 yards (J.Mayo).,13,9,2012 20120916_ARI@NE,4,15,0,ARI,NE,1,10,16,(15:00) K.Kolb pass short left to R.Housler pushed ob at NE 9 for 7 yards (K.Arrington).,13,9,2012 20120916_ARI@NE,4,14,37,ARI,NE,2,3,9,(14:37) (Shotgun) L.Stephens-Howling left tackle to NE 5 for 4 yards (K.Love).,13,9,2012 20120916_ARI@NE,4,14,4,ARI,NE,1,5,5,(14:04) K.Kolb up the middle for 5 yards TOUCHDOWN.,13,9,2012 20120916_ARI@NE,4,14,4,ARI,NE,,,5,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,13,9,2012 20120916_ARI@NE,4,14,4,ARI,NE,,,5,J.Feely kicks 73 yards from ARZ 35 to NE -8. D.McCourty Touchback.,20,9,2012 20120916_ARI@NE,4,14,0,NE,ARI,1,10,80,(14:00) (Shotgun) T.Brady pass short left to B.Lloyd to NE 30 for 10 yards (D.Washington).,9,20,2012 20120916_ARI@NE,4,13,27,NE,ARI,1,10,70,(13:27) T.Brady pass short middle to R.Gronkowski to ARZ 48 for 22 yards (K.Rhodes; A.Wilson).,9,20,2012 20120916_ARI@NE,4,12,51,NE,ARI,1,10,48,(12:51) (Shotgun) T.Brady pass short left to B.Lloyd ran ob at ARZ 39 for 9 yards. Arizona challenged the pass completion ruling and the play was Upheld. (Timeout #1.),9,20,2012 20120916_ARI@NE,4,12,41,NE,ARI,2,1,39,(12:41) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,9,20,2012 20120916_ARI@NE,4,12,37,NE,ARI,3,1,39,(12:37) S.Ridley right end to ARZ 43 for -4 yards (P.Peterson).,9,20,2012 20120916_ARI@NE,4,12,1,NE,ARI,4,5,43,(12:01) Z.Mesko punts 34 yards to ARZ 9 Center-D.Aiken fair catch by P.Peterson.,9,20,2012 20120916_ARI@NE,4,11,54,ARI,NE,1,10,91,(11:54) C.Wells right end to ARZ 17 for 8 yards (D.McCourty; D.Hightower).,20,9,2012 20120916_ARI@NE,4,11,10,ARI,NE,2,2,83,(11:10) PENALTY on ARZ-A.Roberts False Start 5 yards enforced at ARZ 17 - No Play.,20,9,2012 20120916_ARI@NE,4,10,47,ARI,NE,2,7,88,(10:47) C.Wells right end to ARZ 22 for 10 yards (D.McCourty).,20,9,2012 20120916_ARI@NE,4,10,5,ARI,NE,1,10,78,(10:05) C.Wells up the middle to ARZ 23 for 1 yard (B.Spikes).,20,9,2012 20120916_ARI@NE,4,9,23,ARI,NE,2,9,77,(9:23) C.Wells up the middle to ARZ 26 for 3 yards (R.Ninkovich).,20,9,2012 20120916_ARI@NE,4,8,43,ARI,NE,3,6,74,(8:43) (Shotgun) K.Kolb pass short middle to E.Doucet to ARZ 26 for no gain (J.Cunningham; V.Wilfork). NE-V.Wilfork was injured during the play. shovel pass,20,9,2012 20120916_ARI@NE,4,8,5,ARI,NE,4,6,74,(8:05) D.Zastudil punts 38 yards to NE 36 Center-M.Leach downed by ARZ-J.Bethel.,20,9,2012 20120916_ARI@NE,4,7,56,NE,ARI,1,10,64,(7:56) (Shotgun) T.Brady pass short middle to J.Edelman to ARZ 47 for 17 yards (P.Peterson).,9,20,2012 20120916_ARI@NE,4,7,33,NE,ARI,1,10,47,(7:33) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd ran ob at ARZ 35 for 12 yards.,9,20,2012 20120916_ARI@NE,4,7,22,NE,ARI,1,10,35,(7:22) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker [C.Campbell].,9,20,2012 20120916_ARI@NE,4,7,19,NE,ARI,2,10,35,(7:19) (No Huddle Shotgun) D.Woodhead up the middle to ARZ 35 for no gain (C.Campbell).,9,20,2012 20120916_ARI@NE,4,6,54,NE,ARI,3,10,35,(6:54) (No Huddle Shotgun) T.Brady pass incomplete short right to R.Gronkowski (D.Washington).,9,20,2012 20120916_ARI@NE,4,6,50,NE,ARI,4,10,35,(6:50) S.Gostkowski 53 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,9,20,2012 20120916_ARI@NE,4,6,50,NE,ARI,,,35,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,12,20,2012 20120916_ARI@NE,4,6,45,ARI,NE,1,10,80,(6:45) C.Wells up the middle to ARZ 22 for 2 yards (J.Mayo; V.Wilfork).,20,12,2012 20120916_ARI@NE,4,6,6,ARI,NE,2,8,78,(6:06) K.Kolb pass incomplete short right to A.Sherman (P.Chung).,20,12,2012 20120916_ARI@NE,4,6,1,ARI,NE,3,8,78,(6:01) (Shotgun) K.Kolb pass incomplete short right to L.Fitzgerald. Arizona challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),20,12,2012 20120916_ARI@NE,4,5,54,ARI,NE,4,8,78,(5:54) D.Zastudil punts 53 yards to NE 25 Center-M.Leach. J.Edelman pushed ob at NE 28 for 3 yards (Q.Groves). PENALTY on NE Illegal Block Above the Waist 10 yards enforced at NE 28.,20,12,2012 20120916_ARI@NE,4,5,42,NE,ARI,1,10,82,(5:42) (Shotgun) T.Brady pass short right to J.Edelman ran ob at NE 27 for 9 yards.,12,20,2012 20120916_ARI@NE,4,5,22,NE,ARI,2,1,73,(5:22) (No Huddle Shotgun) T.Brady pass short left to W.Welker to NE 40 for 13 yards (W.Gay; J.Fleming).,12,20,2012 20120916_ARI@NE,4,4,56,NE,ARI,1,10,60,(4:56) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to ARZ 41 for 19 yards (A.Wilson).,12,20,2012 20120916_ARI@NE,4,4,28,NE,ARI,1,10,41,(4:28) (No Huddle Shotgun) T.Brady pass short middle to J.Edelman to ARZ 36 for 5 yards (D.Washington).,12,20,2012 20120916_ARI@NE,4,3,56,NE,ARI,2,5,36,(3:56) (No Huddle Shotgun) T.Brady pass short left to R.Gronkowski pushed ob at ARZ 28 for 8 yards (D.Washington).,12,20,2012 20120916_ARI@NE,4,3,50,NE,ARI,1,10,28,(3:50) (No Huddle Shotgun) T.Brady pass incomplete deep right to W.Welker.,12,20,2012 20120916_ARI@NE,4,3,45,NE,ARI,2,10,28,(3:45) (Shotgun) T.Brady pass short middle to R.Gronkowski to ARZ 16 for 12 yards (P.Lenon). NE 12-Brady 5392 career pass attempts passing Joe Montana for 12th most all-time.,12,20,2012 20120916_ARI@NE,4,3,19,NE,ARI,1,10,16,(3:19) (No Huddle Shotgun) T.Brady pass incomplete deep middle to R.Gronkowski (K.Rhodes).,12,20,2012 20120916_ARI@NE,4,3,15,NE,ARI,2,10,16,(3:15) (Shotgun) T.Brady sacked at ARZ 18 for -2 yards (C.Campbell).,12,20,2012 20120916_ARI@NE,4,2,49,NE,ARI,3,12,18,(2:49) (No Huddle Shotgun) T.Brady pass short left to J.Edelman to ARZ 5 for 13 yards (J.Fleming).,12,20,2012 20120916_ARI@NE,4,2,49,NE,ARI,1,5,5,(2:49) (Shotgun) T.Brady pass short middle to R.Gronkowski for 5 yards TOUCHDOWN. NE 12-Brady 34th straight regular season game with a TD pass 4th-longest all-time. NE 12-Brady 46th career 300-yard game 8th most all-time.,12,20,2012 20120916_ARI@NE,4,2,49,NE,ARI,,,5,TWO-POINT CONVERSION ATTEMPT. T.Brady pass to R.Gronkowski is incomplete. ATTEMPT FAILS.,12,20,2012 20120916_ARI@NE,4,2,49,NE,ARI,,,5,S.Gostkowski kicks 67 yards from NE 35 to ARZ -2. L.Stephens-Howling Touchback.,18,20,2012 20120916_ARI@NE,4,2,6,ARI,NE,1,10,80,(2:06) R.Williams right tackle to ARZ 25 for 5 yards (C.Jones; D.Hightower).,20,18,2012 20120916_ARI@NE,4,2,0,ARI,NE,2,5,75,(2:00) R.Williams up the middle to ARZ 38 for 13 yards (S.Gregory; P.Chung).,20,18,2012 20120916_ARI@NE,4,1,53,ARI,NE,1,10,62,(1:53) R.Williams right end to ARZ 34 for -4 yards (R.Brace).,20,18,2012 20120916_ARI@NE,4,1,14,ARI,NE,2,14,66,(1:14) R.Williams up the middle to ARZ 35 for 1 yard (V.Wilfork).,20,18,2012 20120916_ARI@NE,4,1,10,ARI,NE,3,13,65,(1:10) R.Williams left end to ARZ 33 for -2 yards (B.Spikes). FUMBLES (B.Spikes) RECOVERED by NE-V.Wilfork at ARZ 30. V.Wilfork to ARZ 30 for no gain (A.Snyder).,20,18,2012 20120916_ARI@NE,4,1,1,NE,ARI,1,10,30,(1:01) (Shotgun) T.Brady pass incomplete short left to W.Welker.,18,20,2012 20120916_ARI@NE,4,0,58,NE,ARI,2,10,30,(:58) (Shotgun) D.Woodhead up the middle for 30 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on NE-R.Gronkowski Offensive Holding 10 yards enforced at ARZ 20.,18,20,2012 20120916_ARI@NE,4,0,52,NE,ARI,2,10,30,(:52) (Shotgun) T.Brady pass short left to W.Welker ran ob at ARZ 18 for 12 yards.,18,20,2012 20120916_ARI@NE,4,0,46,NE,ARI,1,10,18,(:46) T.Brady right guard to ARZ 17 for 1 yard. PENALTY on NE-R.Gronkowski False Start 5 yards enforced at ARZ 18 - No Play.,18,20,2012 20120916_ARI@NE,4,0,46,NE,ARI,1,15,23,(:46) T.Brady right guard to ARZ 24 for -1 yards (C.Campbell).,18,20,2012 20120916_ARI@NE,4,0,7,NE,ARI,2,16,24,(:07) T.Brady spiked the ball to stop the clock.,18,20,2012 20120916_ARI@NE,4,0,5,NE,ARI,3,16,24,(:05) S.Gostkowski 42 yard field goal is No Good Wide Left Center-D.Aiken Holder-Z.Mesko.,18,20,2012 20120916_ARI@NE,4,0,1,ARI,NE,1,10,68,(:01) K.Kolb kneels to ARZ 31 for -1 yards.,20,18,2012 20120916_ARI@NE,4,0,1,ARI,NE,,,68,                      ,20,18,2012 20120916_TB@NYG,1,0,0,TB,NYG,,,68,M.Koenen kicks 68 yards from TB 35 to NYG -3. D.Wilson to NYG 30 for 33 yards (E.Lorig).,0,0,2012 20120916_TB@NYG,1,59,54,NYG,TB,1,10,70,(14:54) E.Manning pass short left to H.Nicks to NYG 38 for 8 yards (A.Talib).,0,0,2012 20120916_TB@NYG,1,59,22,NYG,TB,2,2,62,(14:22) E.Manning pass deep right to H.Nicks to TB 22 for 40 yards (A.Talib).,0,0,2012 20120916_TB@NYG,1,58,37,NYG,TB,1,10,22,(13:37) (Shotgun) A.Bradshaw right guard to TB 19 for 3 yards (L.David).,0,0,2012 20120916_TB@NYG,1,58,2,NYG,TB,2,7,19,(13:02) (Shotgun) E.Manning pass incomplete short middle to D.Wilson.,0,0,2012 20120916_TB@NYG,1,57,54,NYG,TB,3,7,19,(12:54) (Shotgun) E.Manning pass incomplete deep right to H.Nicks (A.Talib).,0,0,2012 20120916_TB@NYG,1,57,48,NYG,TB,4,7,19,(12:48) L.Tynes 37 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 20120916_TB@NYG,1,57,48,NYG,TB,,,19,L.Tynes kicks 69 yards from NYG 35 to TB -4. A.Benn to TB 15 for 19 yards (A.Tracy). FUMBLES (A.Tracy) recovered by TB-Q.Black at TB 13. Q.Black to TB 13 for no gain (J.Williams). Officially a return for 17 yards.,3,0,2012 20120916_TB@NYG,1,57,34,TB,NYG,1,10,87,(12:34) D.Martin left guard to TB 17 for 4 yards (M.Boley).,0,3,2012 20120916_TB@NYG,1,57,1,TB,NYG,2,6,83,(12:01) J.Freeman pass short right to M.Williams to TB 28 for 11 yards (C.Webster C.Blackburn).,0,3,2012 20120916_TB@NYG,1,56,14,TB,NYG,1,10,72,(11:14) J.Freeman pass deep right to V.Jackson to NYG 31 for 41 yards (C.Webster A.Rolle).,0,3,2012 20120916_TB@NYG,1,55,26,TB,NYG,1,10,31,(10:26) (Shotgun) J.Freeman pass incomplete short right to D.Martin.,0,3,2012 20120916_TB@NYG,1,55,18,TB,NYG,2,10,31,(10:18) D.Martin right tackle to NYG 28 for 3 yards (L.Joseph J.Pierre-Paul).,0,3,2012 20120916_TB@NYG,1,54,37,TB,NYG,3,7,28,(9:37) (Shotgun) J.Freeman pass short left to D.Ware to NYG 27 for 1 yard (J.Hosley J.Williams).,0,3,2012 20120916_TB@NYG,1,53,53,TB,NYG,4,6,27,(8:53) C.Barth 45 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,0,3,2012 20120916_TB@NYG,1,53,53,TB,NYG,,,27,M.Koenen kicks 47 yards from TB 35 to NYG 18. M.Bennett pushed ob at NYG 31 for 13 yards (E.Lorig L.Johnson).,3,3,2012 20120916_TB@NYG,1,53,37,NYG,TB,1,10,69,(8:37) A.Bradshaw right end to NYG 31 for no gain (G.McCoy R.Miller).,3,3,2012 20120916_TB@NYG,1,52,58,NYG,TB,2,10,69,(7:58) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 47 for 16 yards (M.Foster Q.Black).,3,3,2012 20120916_TB@NYG,1,52,21,NYG,TB,1,10,53,(7:21) D.Wilson right end to TB 49 for 4 yards (A.Talib).,3,3,2012 20120916_TB@NYG,1,51,43,NYG,TB,2,6,49,(6:43) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,3,3,2012 20120916_TB@NYG,1,51,35,NYG,TB,3,6,49,(6:35) (Shotgun) E.Manning pass short middle to V.Cruz to TB 29 for 20 yards (D.Watson) [M.Bennett].,3,3,2012 20120916_TB@NYG,1,50,50,NYG,TB,1,10,29,(5:50) A.Bradshaw up the middle to TB 17 for 12 yards (R.Barber M.Barron).,3,3,2012 20120916_TB@NYG,1,50,9,NYG,TB,1,10,17,(5:09) D.Wilson left guard to TB 16 for 1 yard (Q.Black R.Barber).,3,3,2012 20120916_TB@NYG,1,49,28,NYG,TB,2,9,16,(4:28) (Shotgun) E.Manning pass short right to D.Hixon to TB 4 for 12 yards (M.Foster B.McDonald). PENALTY on TB-M.Foster Personal Foul 2 yards enforced at TB 4.,3,3,2012 20120916_TB@NYG,1,49,5,NYG,TB,1,2,2,(4:05) E.Manning pass incomplete short middle to W.Beatty.,3,3,2012 20120916_TB@NYG,1,48,59,NYG,TB,2,2,2,(3:59) A.Bradshaw up the middle to TB 1 for 1 yard (M.Foster G.Gibson). NYG-D.Diehl was injured during the play.,3,3,2012 20120916_TB@NYG,1,48,31,NYG,TB,3,1,1,(3:31) PENALTY on NYG-W.Beatty False Start 5 yards enforced at TB 1 - No Play.,3,3,2012 20120916_TB@NYG,1,48,8,NYG,TB,3,6,6,(3:08) (Shotgun) E.Manning pass incomplete short middle to M.Bennett.,3,3,2012 20120916_TB@NYG,1,47,58,NYG,TB,4,6,6,(2:58) L.Tynes 24 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,3,2012 20120916_TB@NYG,1,47,58,NYG,TB,,,6,L.Tynes kicks 66 yards from NYG 35 to TB -1. A.Benn to TB 19 for 20 yards (M.Herzlich).,6,3,2012 20120916_TB@NYG,1,47,48,TB,NYG,1,10,81,(2:48) J.Freeman pass short right to E.Lorig pushed ob at TB 27 for 8 yards (K.Phillips).,3,6,2012 20120916_TB@NYG,1,47,22,TB,NYG,2,2,73,(2:22) P.Parker left end pushed ob at TB 34 for 7 yards (A.Rolle). End Around.,3,6,2012 20120916_TB@NYG,1,46,46,TB,NYG,1,10,66,(1:46) J.Freeman pass deep left to V.Jackson to NYG 49 for 17 yards (M.Kiwanuka).,3,6,2012 20120916_TB@NYG,1,46,8,TB,NYG,1,10,49,(1:08) J.Freeman pass incomplete deep right to V.Jackson.,3,6,2012 20120916_TB@NYG,1,45,56,TB,NYG,2,10,49,(:56) J.Freeman sacked at TB 44 for -7 yards (C.Blackburn).,3,6,2012 20120916_TB@NYG,1,45,21,TB,NYG,3,17,56,(:21) (Shotgun) D.Ware up the middle to 50 for 6 yards (J.Tuck).,3,6,2012 20120916_TB@NYG,2,45,0,TB,NYG,4,11,50,(15:00) M.Koenen punts 39 yards to NYG 11 Center-A.Economos fair catch by R.Randle.,3,6,2012 20120916_TB@NYG,2,44,53,NYG,TB,1,10,89,(14:53) E.Manning pass deep middle intended for M.Bennett INTERCEPTED by M.Foster at NYG 28. M.Foster to NYG 28 for no gain (M.Bennett).,6,3,2012 20120916_TB@NYG,2,44,44,TB,NYG,1,10,28,(14:44) J.Freeman pass incomplete short right to M.Williams.,3,6,2012 20120916_TB@NYG,2,44,39,TB,NYG,2,10,28,(14:39) D.Martin left tackle to NYG 29 for -1 yards (M.Kiwanuka L.Joseph).,3,6,2012 20120916_TB@NYG,2,43,55,TB,NYG,3,11,29,(13:55) (Shotgun) J.Freeman pass deep left to V.Jackson for 29 yards TOUCHDOWN.,3,6,2012 20120916_TB@NYG,2,43,55,TB,NYG,,,29,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,3,6,2012 20120916_TB@NYG,2,43,55,TB,NYG,,,29,M.Koenen kicks 72 yards from TB 35 to NYG -7. D.Wilson Touchback.,10,6,2012 20120916_TB@NYG,2,43,48,NYG,TB,1,10,80,(13:48) A.Bradshaw left guard to NYG 20 for no gain (M.Foster).,6,10,2012 20120916_TB@NYG,2,43,14,NYG,TB,2,10,80,(13:14) E.Manning pass short right to V.Cruz to NYG 32 for 12 yards (E.Wright).,6,10,2012 20120916_TB@NYG,2,42,48,NYG,TB,1,10,68,(12:48) E.Manning pass incomplete short right to H.Nicks (A.Talib).,6,10,2012 20120916_TB@NYG,2,42,41,NYG,TB,2,10,68,(12:41) (Shotgun) H.Hynoski left tackle to NYG 35 for 3 yards (M.Foster).,6,10,2012 20120916_TB@NYG,2,42,1,NYG,TB,3,7,65,(12:01) (Shotgun) E.Manning pass short left to H.Nicks to NYG 40 for 5 yards (A.Talib).,6,10,2012 20120916_TB@NYG,2,41,23,NYG,TB,4,2,60,(11:23) S.Weatherford punts 47 yards to TB 13 Center-Z.DeOssie. S.Stroughter to TB 26 for 13 yards (S.Paysinger J.Williams).,6,10,2012 20120916_TB@NYG,2,41,10,TB,NYG,1,10,74,(11:10) D.Martin up the middle to TB 28 for 2 yards (J.Pierre-Paul).,10,6,2012 20120916_TB@NYG,2,40,32,TB,NYG,2,8,72,(10:32) J.Freeman sacked at TB 20 for -8 yards (J.Pierre-Paul).,10,6,2012 20120916_TB@NYG,2,39,50,TB,NYG,3,16,80,(9:50) (Shotgun) J.Freeman pass short left to D.Clark to TB 17 for -3 yards (M.Boley).,10,6,2012 20120916_TB@NYG,2,39,21,TB,NYG,4,19,83,(9:21) M.Koenen punts 52 yards to NYG 31 Center-A.Economos. R.Randle to NYG 43 for 12 yards (A.Benn C.Grimm).,10,6,2012 20120916_TB@NYG,2,39,9,NYG,TB,1,10,57,(9:09) (Shotgun) E.Manning pass short middle to V.Cruz to TB 46 for 11 yards (M.Barron L.David).,6,10,2012 20120916_TB@NYG,2,38,35,NYG,TB,1,10,46,(8:35) E.Manning pass short right to H.Hynoski to TB 41 for 5 yards (E.Wright). NYG-H.Hynoski was injured during the play.,6,10,2012 20120916_TB@NYG,2,38,5,NYG,TB,2,5,41,(8:05) A.Brown left guard to TB 42 for -1 yards (L.David).,6,10,2012 20120916_TB@NYG,2,37,22,NYG,TB,3,6,42,(7:22) (Shotgun) E.Manning pass short left intended for V.Cruz INTERCEPTED by B.McDonald at TB 34. B.McDonald to NYG 26 for 40 yards (A.Brown). PENALTY on NYG-A.Brown Horse Collar Tackle 13 yards enforced at NYG 26.,6,10,2012 20120916_TB@NYG,2,37,6,TB,NYG,1,10,13,(7:06) (Shotgun) D.Martin right guard to NYG 8 for 5 yards (O.Umenyiora J.Pierre-Paul).,10,6,2012 20120916_TB@NYG,2,36,30,TB,NYG,2,5,8,(6:30) D.Martin left end for 8 yards TOUCHDOWN.,10,6,2012 20120916_TB@NYG,2,36,30,TB,NYG,,,8,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,10,6,2012 20120916_TB@NYG,2,36,30,TB,NYG,,,8,M.Koenen kicks 74 yards from TB 35 to NYG -9. D.Wilson Touchback.,17,6,2012 20120916_TB@NYG,2,36,19,NYG,TB,1,10,80,(6:19) A.Brown up the middle to NYG 43 for 23 yards (L.David).,6,17,2012 20120916_TB@NYG,2,35,43,NYG,TB,1,10,57,(5:43) A.Brown right guard to NYG 49 for 6 yards (R.Barber). PENALTY on NYG-D.Baas Offensive Holding 10 yards enforced at NYG 43 - No Play.,6,17,2012 20120916_TB@NYG,2,35,17,NYG,TB,1,20,67,(5:17) (Shotgun) E.Manning pass incomplete short middle to V.Cruz (E.Wright) [A.Clayborn]. PENALTY on TB-E.Wright Defensive Holding 5 yards enforced at NYG 33 - No Play.,6,17,2012 20120916_TB@NYG,2,35,7,NYG,TB,1,10,62,(5:07) (Shotgun) A.Brown up the middle to NYG 43 for 5 yards (G.McCoy Q.Black).,6,17,2012 20120916_TB@NYG,2,34,37,NYG,TB,2,5,57,(4:37) (Shotgun) E.Manning pass short middle to M.Bennett to TB 46 for 11 yards (M.Foster M.Barron).,6,17,2012 20120916_TB@NYG,2,34,0,NYG,TB,1,10,46,(4:00) (Shotgun) E.Manning pass short middle to V.Cruz to TB 43 for 3 yards (Q.Black).,6,17,2012 20120916_TB@NYG,2,33,19,NYG,TB,2,7,43,(3:19) (Shotgun) E.Manning pass short left to V.Cruz to TB 38 for 5 yards (M.Barron M.Foster).,6,17,2012 20120916_TB@NYG,2,32,36,NYG,TB,3,2,38,(2:36) E.Manning pass short right to V.Cruz to TB 35 for 3 yards (Q.Black).,6,17,2012 20120916_TB@NYG,2,32,5,NYG,TB,1,10,35,(2:05) (Shotgun) A.Brown left guard to TB 23 for 12 yards (M.Barron Q.Black).,6,17,2012 20120916_TB@NYG,2,31,59,NYG,TB,1,10,23,(1:59) (Shotgun) E.Manning pass short middle to H.Nicks for 23 yards TOUCHDOWN. Penalty on TB-M.Bennett Defensive Offside declined.,6,17,2012 20120916_TB@NYG,2,31,59,NYG,TB,,,23,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,6,17,2012 20120916_TB@NYG,2,31,59,NYG,TB,,,23,L.Tynes kicks 65 yards from NYG 35 to TB 0. A.Benn to TB 22 for 22 yards (S.Brown).,13,17,2012 20120916_TB@NYG,2,31,49,TB,NYG,1,10,78,(1:49) (Shotgun) D.Martin up the middle to TB 23 for 1 yard (J.Tuck J.Pierre-Paul).,17,13,2012 20120916_TB@NYG,2,31,19,TB,NYG,2,9,77,(1:19) (No Huddle Shotgun) J.Freeman pass incomplete short middle to P.Parker.,17,13,2012 20120916_TB@NYG,2,31,14,TB,NYG,3,9,77,(1:14) (Shotgun) J.Freeman pass incomplete short right to D.Martin.,17,13,2012 20120916_TB@NYG,2,31,8,TB,NYG,4,9,77,(1:08) M.Koenen punts 53 yards to NYG 24 Center-A.Economos. R.Randle to TB 31 for 45 yards (D.Watson). Penalty on NYG-A.Tracy Offensive Holding declined. PENALTY on NYG-J.Williams Illegal Block Above the Waist 10 yards enforced at NYG 35. Officially a return for 11 yards.,17,13,2012 20120916_TB@NYG,2,30,53,NYG,TB,1,10,75,(:53) (Shotgun) E.Manning pass short left to H.Nicks to NYG 42 for 17 yards (A.Talib).,13,17,2012 20120916_TB@NYG,2,30,46,NYG,TB,1,10,58,(:46) (Shotgun) E.Manning pass short left to V.Cruz to TB 47 for 11 yards (M.Barron).,13,17,2012 20120916_TB@NYG,2,30,39,NYG,TB,1,10,47,(:39) (Shotgun) PENALTY on NYG-W.Beatty False Start 5 yards enforced at TB 47 - No Play.,13,17,2012 20120916_TB@NYG,2,30,39,NYG,TB,1,15,52,(:39) E.Manning pass short middle to V.Cruz to TB 39 for 13 yards (B.McDonald E.Wright).,13,17,2012 20120916_TB@NYG,2,30,29,NYG,TB,2,2,39,(:29) (Shotgun) E.Manning pass incomplete deep left to R.Barden.,13,17,2012 20120916_TB@NYG,2,30,23,NYG,TB,3,2,39,(:23) (Shotgun) E.Manning pass short left intended for V.Cruz INTERCEPTED by E.Wright at TB 40. E.Wright for 60 yards TOUCHDOWN.,13,17,2012 20120916_TB@NYG,2,30,23,TB,NYG,,,39,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,17,13,2012 20120916_TB@NYG,2,30,23,TB,NYG,,,39,M.Koenen kicks 66 yards from TB 35 to NYG -1. D.Wilson to NYG 8 for 9 yards (D.Watson C.Grimm).,24,13,2012 20120916_TB@NYG,2,30,2,NYG,TB,1,10,92,(:02) E.Manning kneels to NYG 7 for -1 yards.,13,24,2012 20120916_TB@NYG,3,30,0,NYG,TB,,,92,L.Tynes kicks 67 yards from NYG 35 to TB -2. A.Benn pushed ob at NYG 47 for 55 yards (J.Hosley).,13,24,2012 20120916_TB@NYG,3,29,52,TB,NYG,1,10,47,(14:52) D.Martin up the middle to NYG 35 for 12 yards (J.Hosley A.Rolle).,24,13,2012 20120916_TB@NYG,3,29,18,TB,NYG,1,10,35,(14:18) D.Martin right guard to NYG 33 for 2 yards (J.Hosley).,24,13,2012 20120916_TB@NYG,3,28,37,TB,NYG,2,8,33,(13:37) J.Freeman pass incomplete short left to D.Martin [L.Joseph].,24,13,2012 20120916_TB@NYG,3,28,27,TB,NYG,3,8,33,(13:27) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson (M.Coe).,24,13,2012 20120916_TB@NYG,3,28,19,TB,NYG,4,8,33,(13:19) C.Barth 52 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,24,13,2012 20120916_TB@NYG,3,28,19,TB,NYG,,,33,M.Koenen kicks 68 yards from TB 35 to NYG -3. D.Wilson to NYG 41 for 44 yards (M.Lewis).,27,13,2012 20120916_TB@NYG,3,28,4,NYG,TB,1,10,59,(13:04) E.Manning pass short right to H.Nicks to TB 48 for 11 yards (A.Talib).,13,27,2012 20120916_TB@NYG,3,27,30,NYG,TB,1,10,48,(12:30) A.Brown up the middle to TB 49 for -1 yards (M.Foster).,13,27,2012 20120916_TB@NYG,3,26,50,NYG,TB,2,11,49,(11:50) E.Manning pass short left to M.Bennett to TB 43 for 6 yards (M.Foster).,13,27,2012 20120916_TB@NYG,3,26,0,NYG,TB,3,5,43,(11:00) (Shotgun) E.Manning pass incomplete short right to V.Cruz (G.McCoy).,13,27,2012 20120916_TB@NYG,3,25,55,NYG,TB,4,5,43,(10:55) S.Weatherford punts 32 yards to TB 11 Center-Z.DeOssie. S.Stroughter to TB 14 for 3 yards (Z.DeOssie S.Brown).,13,27,2012 20120916_TB@NYG,3,25,46,TB,NYG,1,10,86,(10:46) (Shotgun) PENALTY on TB-D.Dotson False Start 5 yards enforced at TB 14 - No Play.,27,13,2012 20120916_TB@NYG,3,25,46,TB,NYG,1,15,91,(10:46) J.Freeman pass deep right to V.Jackson to TB 31 for 22 yards (K.Phillips C.Webster).,27,13,2012 20120916_TB@NYG,3,25,6,TB,NYG,1,10,69,(10:06) D.Martin up the middle to TB 34 for 3 yards (R.Bernard K.Phillips).,27,13,2012 20120916_TB@NYG,3,24,24,TB,NYG,2,7,66,(9:24) D.Martin right end to TB 41 for 7 yards (J.Pierre-Paul C.Blackburn).,27,13,2012 20120916_TB@NYG,3,23,37,TB,NYG,1,10,59,(8:37) D.Martin left tackle to TB 45 for 4 yards (R.Bernard J.Pierre-Paul).,27,13,2012 20120916_TB@NYG,3,23,0,TB,NYG,2,6,55,(8:00) D.Martin left end to 50 for 5 yards (A.Rolle).,27,13,2012 20120916_TB@NYG,3,22,9,TB,NYG,3,1,50,(7:09) D.Martin left guard to TB 49 for -1 yards (J.Pierre-Paul M.Kuhn).,27,13,2012 20120916_TB@NYG,3,21,28,TB,NYG,4,2,51,(6:28) M.Koenen punts 33 yards to NYG 18 Center-A.Economos fair catch by R.Randle.,27,13,2012 20120916_TB@NYG,3,21,19,NYG,TB,1,10,82,(6:19) D.Wilson left end to NYG 19 for 1 yard (R.Barber). TB-E.Wright was injured during the play.,13,27,2012 20120916_TB@NYG,3,21,0,NYG,TB,2,9,81,(6:00) (Shotgun) E.Manning pass short middle to A.Brown to NYG 30 for 11 yards (L.David).,13,27,2012 20120916_TB@NYG,3,20,20,NYG,TB,1,10,70,(5:20) (Shotgun) E.Manning pass incomplete short left to V.Cruz (B.McDonald) [G.McCoy].,13,27,2012 20120916_TB@NYG,3,20,15,NYG,TB,2,10,70,(5:15) (Shotgun) E.Manning pass incomplete short right to V.Cruz (B.McDonald). PENALTY on TB-A.Talib Defensive Holding 5 yards enforced at NYG 30 - No Play.,13,27,2012 20120916_TB@NYG,3,20,9,NYG,TB,1,10,65,(5:09) (Shotgun) A.Brown right guard to NYG 39 for 4 yards (G.Gibson M.Bennett).,13,27,2012 20120916_TB@NYG,3,19,33,NYG,TB,2,6,61,(4:33) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 44 for 5 yards (L.David B.McDonald).,13,27,2012 20120916_TB@NYG,3,18,56,NYG,TB,3,1,56,(3:56) (Shotgun) A.Brown left guard to NYG 46 for 2 yards (R.Miller).,13,27,2012 20120916_TB@NYG,3,18,16,NYG,TB,1,10,54,(3:16) E.Manning pass incomplete deep right to V.Cruz (R.Barber).,13,27,2012 20120916_TB@NYG,3,18,7,NYG,TB,2,10,54,(3:07) (Shotgun) E.Manning pass incomplete deep left to H.Nicks. PENALTY on TB-A.Talib Defensive Pass Interference 16 yards enforced at NYG 46 - No Play.,13,27,2012 20120916_TB@NYG,3,18,1,NYG,TB,1,10,38,(3:01) (Shotgun) A.Brown up the middle to TB 30 for 8 yards (L.David B.McDonald).,13,27,2012 20120916_TB@NYG,3,17,24,NYG,TB,2,2,30,(2:24) (Shotgun) E.Manning pass short left to H.Nicks to TB 19 for 11 yards (M.Foster).,13,27,2012 20120916_TB@NYG,3,16,42,NYG,TB,1,10,23,(1:42) E.Manning FUMBLES (Aborted) at TB 19 recovered by NYG-A.Brown at TB 23. A.Brown to TB 18 for 5 yards (M.Foster). Officially a rush for 0 yards and a recovery for 1 yard.,13,27,2012 20120916_TB@NYG,3,15,57,NYG,TB,2,9,18,(:57) (Shotgun) E.Manning pass incomplete deep left to M.Bennett (M.Barron).,13,27,2012 20120916_TB@NYG,3,15,50,NYG,TB,3,9,18,(:50) (Shotgun) E.Manning pass incomplete short left to D.Wilson (R.Barber).,13,27,2012 20120916_TB@NYG,3,15,44,NYG,TB,4,9,18,(:44) L.Tynes 36 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,13,27,2012 20120916_TB@NYG,3,15,44,NYG,TB,,,18,L.Tynes kicks 66 yards from NYG 35 to TB -1. A.Benn to TB 24 for 25 yards (W.Hill).,16,27,2012 20120916_TB@NYG,3,15,34,TB,NYG,1,10,76,(:34) J.Freeman pass incomplete short middle to V.Jackson (K.Phillips).,27,16,2012 20120916_TB@NYG,3,15,28,TB,NYG,2,10,76,(:28) J.Freeman pass short middle intended for S.Stroughter INTERCEPTED by C.Webster [L.Joseph] at TB 36. C.Webster to TB 36 for no gain (S.Stroughter).,27,16,2012 20120916_TB@NYG,3,15,21,NYG,TB,1,10,36,(:21) E.Manning pass short left to M.Bennett to TB 28 for 8 yards (R.Barber).,16,27,2012 20120916_TB@NYG,4,15,0,NYG,TB,2,2,28,(15:00) A.Brown left end pushed ob at TB 18 for 10 yards (M.Barron).,16,27,2012 20120916_TB@NYG,4,14,33,NYG,TB,1,10,18,(14:33) (Shotgun) A.Brown left end to TB 19 for -1 yards (M.Foster M.Barron). TB-M.Foster was injured during the play.,16,27,2012 20120916_TB@NYG,4,13,59,NYG,TB,2,11,19,(13:59) E.Manning pass incomplete deep middle to M.Bennett (M.Barron).,16,27,2012 20120916_TB@NYG,4,13,54,NYG,TB,3,11,19,(13:54) (Shotgun) E.Manning pass short left to H.Nicks to TB 5 for 14 yards (A.Talib).,16,27,2012 20120916_TB@NYG,4,13,19,NYG,TB,1,5,5,(13:19) E.Manning pass incomplete short middle to V.Cruz (A.Hayward R.Barber).,16,27,2012 20120916_TB@NYG,4,13,13,NYG,TB,2,5,5,(13:13) (Shotgun) A.Brown right tackle to TB 6 for -1 yards (L.David M.Barron).,16,27,2012 20120916_TB@NYG,4,12,34,NYG,TB,3,6,6,(12:34) E.Manning pass incomplete short left to M.Bennett.,16,27,2012 20120916_TB@NYG,4,12,26,NYG,TB,4,6,6,(12:26) L.Tynes 24 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,16,27,2012 20120916_TB@NYG,4,12,26,NYG,TB,,,6,L.Tynes kicks 58 yards from NYG 35 to TB 7. A.Benn to TB 26 for 19 yards (M.Coe).,19,27,2012 20120916_TB@NYG,4,12,17,TB,NYG,1,10,74,(12:17) D.Martin right end to TB 28 for 2 yards (R.Bernard K.Phillips).,27,19,2012 20120916_TB@NYG,4,11,37,TB,NYG,2,8,72,(11:37) (Shotgun) D.Martin up the middle to TB 29 for 1 yard (J.Tuck R.Bernard).,27,19,2012 20120916_TB@NYG,4,10,57,TB,NYG,3,7,71,(10:57) (Shotgun) J.Freeman pass short middle to S.Stroughter to TB 43 for 14 yards (K.Phillips).,27,19,2012 20120916_TB@NYG,4,10,9,TB,NYG,1,10,57,(10:09) D.Martin right end to TB 46 for 3 yards (R.Bernard K.Phillips).,27,19,2012 20120916_TB@NYG,4,9,19,TB,NYG,2,7,54,(9:19) D.Martin right end to TB 45 for -1 yards (L.Joseph).,27,19,2012 20120916_TB@NYG,4,8,36,TB,NYG,3,8,55,(8:36) (Shotgun) J.Freeman pass short left to M.Williams to NYG 48 for 7 yards (M.Coe).,27,19,2012 20120916_TB@NYG,4,7,53,TB,NYG,4,1,48,(7:53) M.Koenen punts 36 yards to NYG 12 Center-A.Economos fair catch by R.Randle.,27,19,2012 20120916_TB@NYG,4,7,41,NYG,TB,1,10,88,(7:41) (Shotgun) E.Manning pass short middle to A.Brown to NYG 20 for 8 yards (M.Foster B.McDonald).,19,27,2012 20120916_TB@NYG,4,7,8,NYG,TB,2,2,80,(7:08) (Shotgun) E.Manning pass incomplete short left to H.Nicks (A.Talib).,19,27,2012 20120916_TB@NYG,4,6,59,NYG,TB,3,2,80,(6:59) (Shotgun) E.Manning pass deep right to V.Cruz for 80 yards TOUCHDOWN.,19,27,2012 20120916_TB@NYG,4,6,59,NYG,TB,,,80,TWO-POINT CONVERSION ATTEMPT. A.Brown rushes right guard. ATTEMPT SUCCEEDS.,19,27,2012 20120916_TB@NYG,4,6,59,NYG,TB,,,80,L.Tynes kicks 63 yards from NYG 35 to TB 2. A.Benn to TB 24 for 22 yards (S.Paysinger).,27,27,2012 20120916_TB@NYG,4,6,42,TB,NYG,1,10,76,(6:42) D.Martin up the middle to TB 28 for 4 yards (C.Blackburn L.Joseph).,27,27,2012 20120916_TB@NYG,4,6,5,TB,NYG,2,6,72,(6:05) J.Freeman pass incomplete deep left to V.Jackson.,27,27,2012 20120916_TB@NYG,4,5,56,TB,NYG,3,6,72,(5:56) J.Freeman pass incomplete short left to V.Jackson.,27,27,2012 20120916_TB@NYG,4,5,51,TB,NYG,4,6,72,(5:51) M.Koenen punts 39 yards to NYG 33 Center-A.Economos out of bounds.,27,27,2012 20120916_TB@NYG,4,5,43,NYG,TB,1,10,67,(5:43) E.Manning pass incomplete deep right to H.Nicks (A.Talib). NYG-H.Nicks was injured during the play.,27,27,2012 20120916_TB@NYG,4,5,36,NYG,TB,2,10,67,(5:36) (Shotgun) E.Manning pass short right to M.Bennett to NYG 47 for 14 yards (B.McDonald).,27,27,2012 20120916_TB@NYG,4,4,52,NYG,TB,1,10,53,(4:52) (Shotgun) E.Manning pass short middle to H.Nicks to TB 33 for 20 yards (M.Barron).,27,27,2012 20120916_TB@NYG,4,4,9,NYG,TB,1,10,33,(4:09) (Shotgun) E.Manning pass deep right to M.Bennett for 33 yards TOUCHDOWN.,27,27,2012 20120916_TB@NYG,4,4,9,NYG,TB,,,33,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,27,27,2012 20120916_TB@NYG,4,4,9,NYG,TB,,,33,L.Tynes kicks 66 yards from NYG 35 to TB -1. D.Ware Touchback.,34,27,2012 20120916_TB@NYG,4,3,59,TB,NYG,1,10,80,(3:59) D.Martin left guard to TB 23 for 3 yards (J.Hosley).,27,34,2012 20120916_TB@NYG,4,3,22,TB,NYG,2,7,77,(3:22) (Shotgun) J.Freeman pass short middle to D.Clark to TB 33 for 10 yards (C.Blackburn J.Hosley). Penalty on NYG-J.Tuck Defensive Offside declined.,27,34,2012 20120916_TB@NYG,4,3,12,TB,NYG,1,10,67,(3:12) (Shotgun) J.Freeman pass short left to D.Clark to TB 39 for 6 yards (J.Tryon).,27,34,2012 20120916_TB@NYG,4,2,41,TB,NYG,2,4,61,(2:41) (Shotgun) J.Freeman pass short middle to D.Clark to NYG 41 for 20 yards (M.Boley).,27,34,2012 20120916_TB@NYG,4,2,8,TB,NYG,1,10,41,(2:08) (No Huddle Shotgun) J.Freeman pass deep left to M.Williams for 41 yards TOUCHDOWN.,27,34,2012 20120916_TB@NYG,4,2,8,TB,NYG,,,41,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,27,34,2012 20120916_TB@NYG,4,2,8,TB,NYG,,,41,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,34,34,2012 20120916_TB@NYG,4,1,58,NYG,TB,1,10,80,(1:58) (Shotgun) E.Manning pass deep right to R.Barden to NYG 44 for 24 yards (B.McDonald).,34,34,2012 20120916_TB@NYG,4,1,31,NYG,TB,1,10,56,(1:31) (No Huddle Shotgun) PENALTY on NYG-S.Locklear False Start 5 yards enforced at NYG 44 - No Play.,34,34,2012 20120916_TB@NYG,4,1,28,NYG,TB,1,15,61,(1:28) (Shotgun) E.Manning pass deep right to H.Nicks pushed ob at TB 11 for 50 yards (A.Black).,34,34,2012 20120916_TB@NYG,4,1,20,NYG,TB,1,10,11,(1:20) (Shotgun) A.Brown up the middle to TB 2 for 9 yards (A.Talib).,34,34,2012 20120916_TB@NYG,4,0,34,NYG,TB,2,1,2,(:34) A.Brown left guard for 2 yards TOUCHDOWN.,34,34,2012 20120916_TB@NYG,4,0,34,NYG,TB,,,2,(Kick formation) PENALTY on NYG-K.Boothe False Start 5 yards enforced at TB 2 - No Play.,34,34,2012 20120916_TB@NYG,4,0,34,NYG,TB,,,2,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,34,34,2012 20120916_TB@NYG,4,0,34,NYG,TB,,,2,L.Tynes kicks 47 yards from NYG 35 to TB 18. D.Ware to TB 36 for 18 yards (A.Rolle S.Brown).,41,34,2012 20120916_TB@NYG,4,0,25,TB,NYG,1,10,64,(:25) (Shotgun) J.Freeman pass deep left to V.Jackson ran ob at NYG 45 for 19 yards (J.Tryon).,34,41,2012 20120916_TB@NYG,4,0,18,TB,NYG,1,10,45,(:18) (Shotgun) J.Freeman pass deep left to M.Williams pushed ob at NYG 16 for 29 yards (A.Rolle). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) J.Freeman pass incomplete deep left to M.Williams (A.Rolle).,34,41,2012 20120916_TB@NYG,4,0,12,TB,NYG,2,10,45,(:12) (Shotgun) J.Freeman pass deep middle intended for D.Clark INTERCEPTED by M.Boley at NYG 24. M.Boley to NYG 30 for 6 yards (V.Jackson).,34,41,2012 20120916_TB@NYG,4,0,5,NYG,TB,1,10,70,(:05) E.Manning kneels to NYG 29 for -1 yards.,41,34,2012 20120916_TB@NYG,4,0,5,NYG,TB,,,70,                      ,41,34,2012 20120916_BAL@PHI,1,0,0,BAL,PHI,,,70,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,0,0,2012 20120916_BAL@PHI,1,60,0,PHI,BAL,1,10,80,(15:00) M.Vick pass deep right to B.Celek to PHI 43 for 23 yards (B.Pollard).,0,0,2012 20120916_BAL@PHI,1,59,22,PHI,BAL,1,10,57,(14:22) (No Huddle Shotgun) M.Vick pass short left to D.Jackson pushed ob at BLT 40 for 17 yards (D.Ellerbe).,0,0,2012 20120916_BAL@PHI,1,58,52,PHI,BAL,1,10,40,(13:52) (No Huddle) L.McCoy right end to BLT 38 for 2 yards (A.McClellan).,0,0,2012 20120916_BAL@PHI,1,58,12,PHI,BAL,2,8,38,(13:12) (No Huddle Shotgun) M.Vick pass short left to D.Jackson to BLT 40 for -2 yards (A.McClellan).,0,0,2012 20120916_BAL@PHI,1,57,25,PHI,BAL,3,10,40,(12:25) (No Huddle Shotgun) M.Vick pass short right to J.Avant to BLT 24 for 16 yards (R.Lewis).,0,0,2012 20120916_BAL@PHI,1,56,47,PHI,BAL,1,10,24,(11:47) (No Huddle Shotgun) M.Vick pass short left to B.Celek to BLT 19 for 5 yards (E.Reed).,0,0,2012 20120916_BAL@PHI,1,56,10,PHI,BAL,2,5,19,(11:10) (No Huddle Shotgun) D.Johnson left end ran ob at BLT 13 for 6 yards.,0,0,2012 20120916_BAL@PHI,1,55,54,PHI,BAL,1,10,13,(10:54) S.Havili right end to BLT 12 for 1 yard (C.Upshaw).,0,0,2012 20120916_BAL@PHI,1,55,22,PHI,BAL,2,9,12,(10:22) M.Vick pass deep middle intended for C.Harbor INTERCEPTED by B.Pollard at BLT -5. Touchback.,0,0,2012 20120916_BAL@PHI,1,55,14,BAL,PHI,1,10,80,(10:14) (Shotgun) J.Flacco pass short right to R.Rice to BLT 20 for no gain (N.Allen).,0,0,2012 20120916_BAL@PHI,1,54,40,BAL,PHI,2,10,80,(9:40) (No Huddle Shotgun) J.Flacco sacked at BLT 15 for -5 yards (T.Cole). FUMBLES (T.Cole) RECOVERED by PHI-C.Jenkins at BLT 15. C.Jenkins to BLT 15 for no gain (M.Birk).,0,0,2012 20120916_BAL@PHI,1,54,34,PHI,BAL,1,10,15,(9:34) L.McCoy right end to BLT 15 for no gain (L.Webb; A.McClellan).,0,0,2012 20120916_BAL@PHI,1,53,57,PHI,BAL,2,10,15,(8:57) L.McCoy left end to BLT 15 for no gain (R.Lewis). PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at BLT 15 - No Play.,0,0,2012 20120916_BAL@PHI,1,53,29,PHI,BAL,2,20,25,(8:29) (Shotgun) L.McCoy left end to BLT 25 for no gain (C.Upshaw).,0,0,2012 20120916_BAL@PHI,1,52,51,PHI,BAL,3,20,25,(7:51) (Shotgun) M.Vick pass short left to B.Celek to BLT 6 for 19 yards (B.Pollard).,0,0,2012 20120916_BAL@PHI,1,52,11,PHI,BAL,4,1,6,(7:11) L.McCoy right end to BLT 4 for 2 yards (J.McClain).,0,0,2012 20120916_BAL@PHI,1,51,24,PHI,BAL,1,4,4,(6:24) B.Brown up the middle to BLT 3 for 1 yard (E.Reed C.Upshaw).,0,0,2012 20120916_BAL@PHI,1,50,48,PHI,BAL,2,3,3,(5:48) M.Vick pass incomplete short left to D.Jackson. PENALTY on BLT-E.Reed Roughing the Passer 2 yards enforced at BLT 3 - No Play.,0,0,2012 20120916_BAL@PHI,1,50,43,PHI,BAL,1,1,1,(5:43) L.McCoy left guard for 1 yard TOUCHDOWN.,0,0,2012 20120916_BAL@PHI,1,50,43,PHI,BAL,,,1,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,0,0,2012 20120916_BAL@PHI,1,50,43,PHI,BAL,,,1,A.Henery kicks 72 yards from PHI 35 to BLT -7. D.Thompson to BLT 42 for 49 yards (D.Sims).,7,0,2012 20120916_BAL@PHI,1,50,34,BAL,PHI,1,10,58,(5:34) J.Flacco pass deep right to E.Dickson to PHI 35 for 23 yards (N.Allen).,0,7,2012 20120916_BAL@PHI,1,49,56,BAL,PHI,1,10,35,(4:56) R.Rice left tackle to PHI 30 for 5 yards (N.Allen).,0,7,2012 20120916_BAL@PHI,1,49,28,BAL,PHI,2,5,30,(4:28) R.Rice up the middle to PHI 24 for 6 yards (A.Jordan).,0,7,2012 20120916_BAL@PHI,1,48,57,BAL,PHI,1,10,24,(3:57) (No Huddle) J.Flacco pass short right to D.Pitta to PHI 16 for 8 yards (K.Coleman).,0,7,2012 20120916_BAL@PHI,1,48,32,BAL,PHI,2,2,16,(3:32) (No Huddle) R.Rice up the middle to PHI 12 for 4 yards (N.Allen).,0,7,2012 20120916_BAL@PHI,1,47,57,BAL,PHI,1,10,12,(2:57) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to PHI 5 for 7 yards (D.Ryans; K.Coleman).,0,7,2012 20120916_BAL@PHI,1,47,12,BAL,PHI,2,3,5,(2:12) V.Leach right tackle for 5 yards TOUCHDOWN. Penalty on BLT-M.Yanda Personal Foul offsetting. Penalty on PHI-C.Jenkins Personal Foul offsetting.,0,7,2012 20120916_BAL@PHI,1,47,12,BAL,PHI,,,5,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,7,2012 20120916_BAL@PHI,1,47,12,BAL,PHI,,,5,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,7,7,2012 20120916_BAL@PHI,1,47,8,PHI,BAL,1,10,80,(2:08) M.Vick pass deep left to B.Celek to PHI 41 for 21 yards (B.Pollard).,7,7,2012 20120916_BAL@PHI,1,46,30,PHI,BAL,1,10,59,(1:30) B.Brown right end to PHI 44 for 3 yards (H.Ngata).,7,7,2012 20120916_BAL@PHI,1,45,54,PHI,BAL,2,7,56,(:54) S.Havili left end to PHI 44 for no gain (H.Ngata M.Kemoeatu).,7,7,2012 20120916_BAL@PHI,1,45,9,PHI,BAL,3,7,56,(:09) (Shotgun) M.Vick sacked at PHI 37 for -7 yards (B.Pollard).,7,7,2012 20120916_BAL@PHI,2,45,0,PHI,BAL,4,14,63,(15:00) C.Henry punts 56 yards to BLT 7 Center-J.Dorenbos. J.Jones pushed ob at BLT 25 for 18 yards (J.Dorenbos).,7,7,2012 20120916_BAL@PHI,2,44,50,BAL,PHI,1,10,75,(14:50) J.Flacco pass short left to V.Leach to BLT 31 for 6 yards (N.Allen).,7,7,2012 20120916_BAL@PHI,2,44,27,BAL,PHI,2,4,69,(14:27) J.Flacco pass short left to D.Pitta to BLT 37 for 6 yards (N.Allen).,7,7,2012 20120916_BAL@PHI,2,43,58,BAL,PHI,1,10,63,(13:58) J.Flacco pass short right to D.Pitta ran ob at BLT 41 for 4 yards (M.Kendricks).,7,7,2012 20120916_BAL@PHI,2,43,31,BAL,PHI,2,6,59,(13:31) R.Rice left tackle to BLT 43 for 2 yards (F.Cox).,7,7,2012 20120916_BAL@PHI,2,42,47,BAL,PHI,3,4,57,(12:47) (Shotgun) J.Flacco pass incomplete short left to R.Rice.,7,7,2012 20120916_BAL@PHI,2,42,42,BAL,PHI,4,4,57,(12:42) (Punt formation) S.Considine up the middle to BLT 46 for 3 yards (S.Havili).,7,7,2012 20120916_BAL@PHI,2,42,35,PHI,BAL,1,10,45,(12:35) M.Vick scrambles right end to BLT 39 for 6 yards (C.Upshaw). Penalty on BLT-C.Williams Personal Foul offsetting. Penalty on PHI-D.Jackson Personal Foul offsetting.,7,7,2012 20120916_BAL@PHI,2,42,8,PHI,BAL,2,4,39,(12:08) (Shotgun) M.Vick pass incomplete short middle to B.Celek (R.Lewis).,7,7,2012 20120916_BAL@PHI,2,42,6,PHI,BAL,3,4,39,(12:06) (Shotgun) M.Vick pass short left to D.Jackson pushed ob at BLT 29 for 10 yards (C.Williams).,7,7,2012 20120916_BAL@PHI,2,41,40,PHI,BAL,1,10,29,(11:40) PENALTY on PHI-E.Mathis False Start 5 yards enforced at BLT 29 - No Play.,7,7,2012 20120916_BAL@PHI,2,41,23,PHI,BAL,1,15,34,(11:23) L.McCoy right end to BLT 27 for 7 yards (L.Webb).,7,7,2012 20120916_BAL@PHI,2,40,48,PHI,BAL,2,8,27,(10:48) L.McCoy left end to BLT 20 for 7 yards (J.Ihedigbo).,7,7,2012 20120916_BAL@PHI,2,40,9,BAL,PHI,3,1,30,(10:09) M.Vick FUMBLES (Aborted) at BLT 25 RECOVERED by BLT-A.McClellan at BLT 30. A.McClellan to BLT 30 for no gain (C.Harbor).,7,7,2012 20120916_BAL@PHI,2,40,1,BAL,PHI,1,10,70,(10:01) R.Rice up the middle to PHI 27 for 43 yards (M.Kendricks).,7,7,2012 20120916_BAL@PHI,2,39,21,BAL,PHI,1,10,27,(9:21) J.Flacco pass incomplete deep left to D.Pitta.,7,7,2012 20120916_BAL@PHI,2,39,15,BAL,PHI,2,10,27,(9:15) (Shotgun) J.Flacco pass short left to T.Doss to PHI 21 for 6 yards (N.Asomugha).,7,7,2012 20120916_BAL@PHI,2,38,38,BAL,PHI,3,4,21,(8:38) (Shotgun) J.Flacco pass deep right to J.Jones for 21 yards TOUCHDOWN.,7,7,2012 20120916_BAL@PHI,2,38,38,BAL,PHI,,,21,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,7,2012 20120916_BAL@PHI,2,38,38,BAL,PHI,,,21,J.Tucker kicks 70 yards from BLT 35 to PHI -5. B.Boykin to PHI 16 for 21 yards (B.Ayanbadejo).,14,7,2012 20120916_BAL@PHI,2,38,27,PHI,BAL,1,10,84,(8:27) M.Vick scrambles left end ran ob at PHI 21 for 5 yards.,7,14,2012 20120916_BAL@PHI,2,38,4,PHI,BAL,2,5,79,(8:04) (Shotgun) L.McCoy up the middle to PHI 25 for 4 yards (M.Kemoeatu).,7,14,2012 20120916_BAL@PHI,2,37,18,PHI,BAL,3,1,75,(7:18) (Shotgun) M.Vick pass incomplete short right to L.McCoy.,7,14,2012 20120916_BAL@PHI,2,37,16,PHI,BAL,4,1,75,(7:16) C.Henry punts 32 yards to BLT 43 Center-J.Dorenbos downed by PHI-A.Jordan.,7,14,2012 20120916_BAL@PHI,2,37,3,BAL,PHI,1,10,57,(7:03) B.Pierce right tackle to BLT 49 for 6 yards (A.Jordan).,14,7,2012 20120916_BAL@PHI,2,36,24,BAL,PHI,2,4,51,(6:24) R.Rice left tackle to PHI 49 for 2 yards (F.Cox).,14,7,2012 20120916_BAL@PHI,2,35,39,BAL,PHI,3,2,49,(5:39) (Shotgun) J.Flacco pass short left to R.Rice to BLT 46 for -5 yards (M.Kendricks).,14,7,2012 20120916_BAL@PHI,2,34,59,BAL,PHI,4,7,54,(4:59) S.Koch punts 54 yards to end zone Center-M.Cox Touchback.,14,7,2012 20120916_BAL@PHI,2,34,48,PHI,BAL,1,10,80,(4:48) L.McCoy right end to PHI 25 for 5 yards (C.Upshaw).,7,14,2012 20120916_BAL@PHI,2,34,16,PHI,BAL,2,5,75,(4:16) L.McCoy right end to PHI 45 for 20 yards (E.Reed). BLT-D.Ellerbe was injured during the play. His return is Probable.,7,14,2012 20120916_BAL@PHI,2,34,2,PHI,BAL,1,10,55,(4:02) M.Vick pass short left to D.Jackson to BLT 37 for 18 yards (J.McClain).,7,14,2012 20120916_BAL@PHI,2,33,19,PHI,BAL,1,10,37,(3:19) M.Vick pass deep right to B.Celek to BLT 9 for 28 yards (E.Reed).,7,14,2012 20120916_BAL@PHI,2,32,36,PHI,BAL,1,9,9,(2:36) (Shotgun) L.McCoy up the middle to BLT 11 for -2 yards (L.Webb). FUMBLES (L.Webb) RECOVERED by BLT-R.Lewis at BLT 9. R.Lewis to BLT 22 for 13 yards (M.Vick). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) L.McCoy up the middle to BLT 11 for -2 yards (L.Webb). FUMBLES (L.Webb) RECOVERED by BLT-R.Lewis at BLT 9. R.Lewis to BLT 9 for no gain (K.Dunlap).,7,14,2012 20120916_BAL@PHI,2,32,31,BAL,PHI,1,10,91,(2:31) J.Flacco pass to T.Smith to BLT 20 for 11 yards (D.Rodgers-Cromartie).,14,7,2012 20120916_BAL@PHI,2,32,11,BAL,PHI,1,10,80,(2:11) R.Rice up the middle to BLT 36 for 16 yards (K.Coleman; N.Allen).,14,7,2012 20120916_BAL@PHI,2,32,0,BAL,PHI,1,10,64,(2:00) (Shotgun) J.Flacco pass incomplete short left to D.Pitta.,14,7,2012 20120916_BAL@PHI,2,31,57,BAL,PHI,2,10,64,(1:57) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 39 for 3 yards (D.Ryans).,14,7,2012 20120916_BAL@PHI,2,31,22,BAL,PHI,3,7,61,(1:22) (Shotgun) J.Flacco pass short left to D.Pitta to BLT 41 for 2 yards (D.Ryans).,14,7,2012 20120916_BAL@PHI,2,31,15,BAL,PHI,4,5,59,(1:15) S.Koch punts 56 yards to PHI 3 Center-M.Cox. D.Johnson to PHI 6 for 3 yards (B.Ayanbadejo).,14,7,2012 20120916_BAL@PHI,2,31,5,PHI,BAL,1,10,94,(1:05) L.McCoy left end to PHI 9 for 3 yards (J.McClain).,7,14,2012 20120916_BAL@PHI,2,30,31,PHI,BAL,2,7,91,(:31) L.McCoy right end to PHI 12 for 3 yards (P.McPhee).,7,14,2012 20120916_BAL@PHI,2,30,25,PHI,BAL,3,4,88,(:25) (Shotgun) L.McCoy up the middle to PHI 10 for -2 yards (S.Kindle).,7,14,2012 20120916_BAL@PHI,2,30,18,PHI,BAL,4,6,90,(:18) C.Henry punts 38 yards to PHI 48 Center-J.Dorenbos. J.Jones ran ob at PHI 38 for 10 yards.,7,14,2012 20120916_BAL@PHI,2,30,9,BAL,PHI,1,10,38,(:09) (Shotgun) J.Flacco pass short left to A.Boldin pushed ob at PHI 38 for no gain (M.Kendricks).,14,7,2012 20120916_BAL@PHI,2,30,4,BAL,PHI,2,10,38,(:04) J.Tucker 56 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,14,7,2012 20120916_BAL@PHI,2,30,4,BAL,PHI,,,38,J.Tucker kicks 16 yards from BLT 35 to PHI 49. A.Jordan to 50 for 1 yard (A.Allen).,17,7,2012 20120916_BAL@PHI,3,30,0,PHI,BAL,,,38,A.Henery kicks 65 yards from PHI 35 to BLT 0. D.Thompson to BLT 23 for 23 yards (B.Boykin).,7,17,2012 20120916_BAL@PHI,3,29,54,BAL,PHI,1,10,77,(14:54) J.Flacco pass incomplete short right to R.Rice (F.Cox).,17,7,2012 20120916_BAL@PHI,3,29,48,BAL,PHI,2,10,77,(14:48) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to BLT 39 for 16 yards (N.Allen).,17,7,2012 20120916_BAL@PHI,3,29,23,BAL,PHI,1,10,61,(14:23) (No Huddle) J.Flacco pass incomplete short middle to D.Pitta (M.Kendricks).,17,7,2012 20120916_BAL@PHI,3,29,18,BAL,PHI,2,10,61,(14:18) (Shotgun) J.Flacco pass short left to D.Pitta ran ob at BLT 47 for 8 yards.,17,7,2012 20120916_BAL@PHI,3,28,40,BAL,PHI,3,2,53,(13:40) (Shotgun) J.Flacco pass short left intended for D.Pitta INTERCEPTED by D.Ryans at PHI 43. D.Ryans to PHI 43 for no gain (D.Pitta). PENALTY on BLT-R.Rice Unnecessary Roughness 15 yards enforced at PHI 43.,17,7,2012 20120916_BAL@PHI,3,28,28,PHI,BAL,1,10,42,(13:28) L.McCoy up the middle to BLT 42 for no gain (P.McPhee).,7,17,2012 20120916_BAL@PHI,3,27,56,PHI,BAL,2,10,42,(12:56) (Shotgun) M.Vick pass short middle to S.Havili to BLT 38 for 4 yards (A.McClellan).,7,17,2012 20120916_BAL@PHI,3,27,19,PHI,BAL,3,6,38,(12:19) (Shotgun) M.Vick pass short left to D.Jackson to BLT 30 for 8 yards (C.Williams).,7,17,2012 20120916_BAL@PHI,3,26,47,PHI,BAL,1,10,30,(11:47) L.McCoy right end to BLT 21 for 9 yards (R.Lewis). PHI-J.Kelce was injured during the play. He is Out.,7,17,2012 20120916_BAL@PHI,3,26,19,PHI,BAL,2,1,21,(11:19) L.McCoy left tackle to BLT 23 for -2 yards (J.Ihedigbo).,7,17,2012 20120916_BAL@PHI,3,25,46,PHI,BAL,3,3,23,(10:46) (Shotgun) M.Vick pass deep left to J.Maclin for 23 yards TOUCHDOWN.,7,17,2012 20120916_BAL@PHI,3,25,46,PHI,BAL,,,23,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,7,17,2012 20120916_BAL@PHI,3,25,46,PHI,BAL,,,23,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,14,17,2012 20120916_BAL@PHI,3,25,40,BAL,PHI,1,10,80,(10:40) J.Flacco pass incomplete deep left to E.Dickson.,17,14,2012 20120916_BAL@PHI,3,25,32,BAL,PHI,2,10,80,(10:32) (Shotgun) J.Flacco pass incomplete deep right to T.Smith.,17,14,2012 20120916_BAL@PHI,3,25,27,BAL,PHI,3,10,80,(10:27) (Shotgun) J.Flacco pass incomplete short left to T.Smith.,17,14,2012 20120916_BAL@PHI,3,25,23,BAL,PHI,4,10,80,(10:23) S.Koch punts 48 yards to PHI 32 Center-M.Cox. D.Johnson pushed ob at PHI 35 for 3 yards (C.Brown).,17,14,2012 20120916_BAL@PHI,3,25,12,PHI,BAL,1,10,65,(10:12) L.McCoy left end pushed ob at PHI 33 for -2 yards (A.McClellan). PHI-K.Dunlap was injured during the play. His return is Doubtful.,14,17,2012 20120916_BAL@PHI,3,24,49,PHI,BAL,2,12,67,(9:49) (Shotgun) M.Vick pass short right to B.Celek pushed ob at BLT 43 for 24 yards (J.Smith). PHI-J.Maclin was injured during the play. His return is Doubtful.,14,17,2012 20120916_BAL@PHI,3,24,24,PHI,BAL,1,10,43,(9:24) M.Vick pass incomplete short left (M.Kemoeatu).,14,17,2012 20120916_BAL@PHI,3,24,12,PHI,BAL,2,10,43,(9:12) L.McCoy up the middle to BLT 40 for 3 yards (J.McClain).,14,17,2012 20120916_BAL@PHI,3,23,34,PHI,BAL,3,7,40,(8:34) (Shotgun) M.Vick pass short right to D.Johnson pushed ob at BLT 27 for 13 yards (J.Smith).,14,17,2012 20120916_BAL@PHI,3,23,3,PHI,BAL,1,10,27,(8:03) L.McCoy right end to BLT 22 for 5 yards (L.Webb).,14,17,2012 20120916_BAL@PHI,3,22,19,PHI,BAL,2,5,22,(7:19) (Shotgun) M.Vick right end ran ob at BLT 14 for 8 yards.,14,17,2012 20120916_BAL@PHI,3,21,55,PHI,BAL,1,10,14,(6:55) B.Brown right end to BLT 11 for 3 yards (L.Webb).,14,17,2012 20120916_BAL@PHI,3,21,18,PHI,BAL,2,7,11,(6:18) (Shotgun) M.Vick pass incomplete short left to B.Celek (A.McClellan).,14,17,2012 20120916_BAL@PHI,3,21,13,PHI,BAL,3,7,11,(6:13) (Shotgun) M.Vick scrambles up the middle to BLT 5 for 6 yards (D.Ellerbe). Philadelphia challenged the first down ruling and the play was Upheld. (Timeout #1.),14,17,2012 20120916_BAL@PHI,3,20,33,PHI,BAL,4,1,5,(5:33) (Field Goal formation) A.Henery 23 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,14,17,2012 20120916_BAL@PHI,3,20,33,PHI,BAL,,,5,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,17,17,2012 20120916_BAL@PHI,3,20,30,BAL,PHI,1,10,80,(5:30) R.Rice right end to BLT 26 for 6 yards (F.Cox).,17,17,2012 20120916_BAL@PHI,3,19,57,BAL,PHI,2,4,74,(4:57) R.Rice left guard to BLT 28 for 2 yards (J.Babin).,17,17,2012 20120916_BAL@PHI,3,19,26,BAL,PHI,3,2,72,(4:26) (Shotgun) J.Flacco pass incomplete short left to E.Dickson.,17,17,2012 20120916_BAL@PHI,3,19,21,BAL,PHI,4,2,72,(4:21) S.Koch punts 52 yards to PHI 20 Center-M.Cox. D.Johnson to PHI 24 for 4 yards (B.Ayanbadejo). BLT-J.McClain was injured during the play. His return is Probable.,17,17,2012 20120916_BAL@PHI,3,19,11,PHI,BAL,1,10,76,(4:11) (Shotgun) M.Vick sacked at PHI 17 for -7 yards (D.Ellerbe).,17,17,2012 20120916_BAL@PHI,3,18,45,PHI,BAL,2,17,83,(3:45) M.Vick pass short middle to L.McCoy to PHI 20 for 3 yards (R.Lewis).,17,17,2012 20120916_BAL@PHI,3,18,7,PHI,BAL,3,14,80,(3:07) (Shotgun) M.Vick pass short right to L.McCoy ran ob at PHI 25 for 5 yards (J.Smith).,17,17,2012 20120916_BAL@PHI,3,17,42,PHI,BAL,4,9,75,(2:42) C.Henry punts 40 yards to BLT 35 Center-J.Dorenbos. J.Jones to BLT 41 for 6 yards (S.Havili).,17,17,2012 20120916_BAL@PHI,3,17,32,BAL,PHI,1,10,59,(2:32) J.Flacco pass incomplete short left to R.Rice.,17,17,2012 20120916_BAL@PHI,3,17,26,BAL,PHI,2,10,59,(2:26) R.Rice right tackle to 50 for 9 yards (K.Coleman).,17,17,2012 20120916_BAL@PHI,3,16,48,BAL,PHI,3,1,50,(1:48) (Shotgun) J.Flacco pass incomplete short left to A.Boldin.,17,17,2012 20120916_BAL@PHI,3,16,43,BAL,PHI,4,1,50,(1:43) S.Koch punts 41 yards to PHI 9 Center-M.Cox fair catch by D.Johnson.,17,17,2012 20120916_BAL@PHI,3,16,36,PHI,BAL,1,10,91,(1:36) L.McCoy right end to PHI 15 for 6 yards (P.McPhee).,17,17,2012 20120916_BAL@PHI,3,16,3,PHI,BAL,2,4,85,(1:03) L.McCoy right end to PHI 15 for no gain (J.McClain). PENALTY on PHI-D.Bell Offensive Holding 8 yards enforced at PHI 15 - No Play.,17,17,2012 20120916_BAL@PHI,3,15,52,PHI,BAL,2,12,93,(:52) M.Vick pass deep right to D.Jackson pushed ob at BLT 44 for 49 yards (E.Reed).,17,17,2012 20120916_BAL@PHI,3,15,26,PHI,BAL,1,10,44,(:26) (Shotgun) M.Vick pass deep middle intended for B.Celek INTERCEPTED by E.Reed at BLT 27. E.Reed to BLT 36 for 9 yards (D.Johnson).,17,17,2012 20120916_BAL@PHI,3,15,19,BAL,PHI,1,10,64,(:19) J.Flacco pass deep right to T.Smith ran ob at PHI 24 for 40 yards.,17,17,2012 20120916_BAL@PHI,4,15,0,BAL,PHI,1,10,24,(15:00) R.Rice left end to PHI 28 for -4 yards (F.Cox).,17,17,2012 20120916_BAL@PHI,4,14,21,BAL,PHI,2,14,28,(14:21) J.Flacco pass incomplete short right to A.Boldin. PENALTY on PHI-D.Rodgers-Cromartie Illegal Contact 5 yards enforced at PHI 28 - No Play.,17,17,2012 20120916_BAL@PHI,4,14,15,BAL,PHI,1,10,23,(14:15) R.Rice up the middle to PHI 21 for 2 yards (N.Allen).,17,17,2012 20120916_BAL@PHI,4,13,39,BAL,PHI,2,8,21,(13:39) R.Rice right end to PHI 21 for no gain (F.Cox).,17,17,2012 20120916_BAL@PHI,4,12,58,BAL,PHI,3,8,21,(12:58) (Shotgun) J.Flacco pass short left to T.Smith to PHI 21 for no gain (B.Boykin). PENALTY on BLT-M.Birk Offensive Holding 10 yards enforced at PHI 21 - No Play.,17,17,2012 20120916_BAL@PHI,4,12,40,BAL,PHI,3,18,31,(12:40) (Shotgun) J.Flacco pass incomplete deep left to J.Jones (N.Asomugha). PENALTY on PHI-N.Asomugha Illegal Contact 15 yards enforced at PHI 31 - No Play. Penalty on PHI-J.Babin Personal Foul declined.,17,17,2012 20120916_BAL@PHI,4,12,33,BAL,PHI,1,10,16,(12:33) R.Rice right tackle to PHI 15 for 1 yard (D.Ryans).,17,17,2012 20120916_BAL@PHI,4,11,55,BAL,PHI,2,9,15,(11:55) (Shotgun) J.Flacco pass incomplete short left to D.Pitta (D.Landri).,17,17,2012 20120916_BAL@PHI,4,11,49,BAL,PHI,3,9,15,(11:49) (Shotgun) PENALTY on BLT-J.Flacco Delay of Game 5 yards enforced at PHI 15 - No Play.,17,17,2012 20120916_BAL@PHI,4,11,49,BAL,PHI,3,14,20,(11:49) (Shotgun) J.Flacco sacked at PHI 33 for -13 yards (D.Ryans).,17,17,2012 20120916_BAL@PHI,4,11,33,BAL,PHI,4,27,33,(11:33) J.Tucker 51 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,17,17,2012 20120916_BAL@PHI,4,11,33,BAL,PHI,,,33,J.Tucker kicks 65 yards from BLT 35 to PHI 0. B.Boykin to PHI 27 for 27 yards (S.Considine).,20,17,2012 20120916_BAL@PHI,4,11,21,PHI,BAL,1,10,73,(11:21) (Shotgun) M.Vick pass short left to J.Avant to PHI 44 for 17 yards (L.Webb).,17,20,2012 20120916_BAL@PHI,4,10,54,PHI,BAL,1,10,56,(10:54) (No Huddle) L.McCoy right end to BLT 45 for 11 yards (A.McClellan).,17,20,2012 20120916_BAL@PHI,4,10,27,PHI,BAL,1,10,45,(10:27) (No Huddle) L.McCoy left end to BLT 42 for 3 yards (R.Lewis).,17,20,2012 20120916_BAL@PHI,4,9,54,PHI,BAL,2,7,42,(9:54) (Shotgun) M.Vick pass incomplete short left. PENALTY on PHI-E.Mathis Offensive Holding 10 yards enforced at BLT 42 - No Play. Baltimore challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1.),17,20,2012 20120916_BAL@PHI,4,9,44,PHI,BAL,2,17,52,(9:44) (Shotgun) M.Vick pass incomplete short middle [P.McPhee].,17,20,2012 20120916_BAL@PHI,4,9,40,PHI,BAL,3,17,52,(9:40) (Shotgun) M.Vick pass incomplete deep right to D.Jackson.,17,20,2012 20120916_BAL@PHI,4,9,33,PHI,BAL,4,17,52,(9:33) C.Henry punts 30 yards to BLT 22 Center-J.Dorenbos fair catch by L.Webb.,17,20,2012 20120916_BAL@PHI,4,9,26,BAL,PHI,1,10,78,(9:26) J.Flacco pass incomplete deep right to T.Smith.,20,17,2012 20120916_BAL@PHI,4,9,19,BAL,PHI,2,10,78,(9:19) (Shotgun) R.Rice right guard to BLT 25 for 3 yards (D.Ryans).,20,17,2012 20120916_BAL@PHI,4,8,39,BAL,PHI,3,7,75,(8:39) (Shotgun) J.Flacco pass short right to R.Rice ran ob at BLT 38 for 13 yards (K.Coleman).,20,17,2012 20120916_BAL@PHI,4,8,19,BAL,PHI,1,10,62,(8:19) R.Rice right tackle to BLT 40 for 2 yards (C.Jenkins).,20,17,2012 20120916_BAL@PHI,4,7,45,BAL,PHI,2,8,60,(7:45) (Shotgun) J.Flacco pass incomplete short left to D.Pitta (M.Kendricks).,20,17,2012 20120916_BAL@PHI,4,7,40,BAL,PHI,3,8,60,(7:40) (Shotgun) J.Flacco pass short right to R.Rice to PHI 23 for 37 yards (K.Coleman).,20,17,2012 20120916_BAL@PHI,4,6,53,BAL,PHI,1,10,23,(6:53) B.Pierce left end to PHI 25 for -2 yards (D.Ryans).,20,17,2012 20120916_BAL@PHI,4,6,19,BAL,PHI,2,12,25,(6:19) (Shotgun) B.Pierce up the middle to PHI 25 for no gain (B.Graham).,20,17,2012 20120916_BAL@PHI,4,5,35,BAL,PHI,3,12,25,(5:35) (Shotgun) J.Flacco pass deep right to J.Jones for 25 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on BLT-J.Jones Offensive Pass Interference 10 yards enforced at PHI 25 - No Play.,20,17,2012 20120916_BAL@PHI,4,5,29,BAL,PHI,3,22,35,(5:29) (Shotgun) J.Flacco pass short middle to R.Rice to PHI 30 for 5 yards (M.Kendricks).,20,17,2012 20120916_BAL@PHI,4,4,48,BAL,PHI,4,17,30,(4:48) J.Tucker 48 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,20,17,2012 20120916_BAL@PHI,4,4,48,BAL,PHI,,,30,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,23,17,2012 20120916_BAL@PHI,4,4,43,PHI,BAL,1,10,80,(4:43) (Shotgun) M.Vick pass short left to D.Jackson ran ob at PHI 34 for 14 yards.,17,23,2012 20120916_BAL@PHI,4,4,29,PHI,BAL,1,10,66,(4:29) M.Vick pass deep right to B.Celek to BLT 42 for 24 yards (R.Lewis).,17,23,2012 20120916_BAL@PHI,4,3,57,PHI,BAL,1,10,42,(3:57) (Shotgun) M.Vick scrambles right end ran ob at BLT 34 for 8 yards.,17,23,2012 20120916_BAL@PHI,4,3,50,PHI,BAL,2,2,34,(3:50) L.McCoy left end to BLT 34 for no gain (D.Ellerbe).,17,23,2012 20120916_BAL@PHI,4,3,16,PHI,BAL,3,2,34,(3:16) (Shotgun) M.Vick pass short middle to B.Celek to BLT 21 for 13 yards (J.McClain).,17,23,2012 20120916_BAL@PHI,4,2,49,PHI,BAL,1,10,21,(2:49) (No Huddle) L.McCoy up the middle to BLT 25 for -4 yards (C.Upshaw).,17,23,2012 20120916_BAL@PHI,4,2,15,PHI,BAL,2,14,25,(2:15) M.Vick pass short right to C.Harbor to BLT 6 for 19 yards (L.Webb). PENALTY on BLT-A.Jones Roughing the Passer 3 yards enforced at BLT 6.,17,23,2012 20120916_BAL@PHI,4,2,5,PHI,BAL,1,3,3,(2:05) (Shotgun) M.Vick up the middle to BLT 1 for 2 yards (H.Ngata).,17,23,2012 20120916_BAL@PHI,4,2,0,PHI,BAL,2,1,1,(2:00) M.Vick sacked at BLT 5 for -4 yards (H.Ngata). FUMBLES (H.Ngata) RECOVERED by BLT-M.Kemoeatu at BLT 1. M.Kemoeatu to BLT 1 for no gain (D.Reynolds). The Replay Assistant challenged the fumble ruling and the play was REVERSED. M.Vick pass incomplete short left.,17,23,2012 20120916_BAL@PHI,4,1,57,PHI,BAL,3,1,1,(1:57) (Shotgun) M.Vick up the middle for 1 yard TOUCHDOWN.,17,23,2012 20120916_BAL@PHI,4,1,57,PHI,BAL,,,1,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,17,23,2012 20120916_BAL@PHI,4,1,57,PHI,BAL,,,1,A.Henery kicks 73 yards from PHI 35 to BLT -8. D.Thompson ran ob at BLT 20 for 28 yards (M.Gilyard).,24,23,2012 20120916_BAL@PHI,4,1,48,BAL,PHI,1,10,80,(1:48) (Shotgun) J.Flacco pass incomplete short right to A.Boldin.,23,24,2012 20120916_BAL@PHI,4,1,43,BAL,PHI,2,10,80,(1:43) (Shotgun) J.Flacco pass incomplete deep middle to J.Jones (B.Boykin).,23,24,2012 20120916_BAL@PHI,4,1,38,BAL,PHI,3,10,80,(1:38) (Shotgun) J.Flacco pass short left to D.Pitta ran ob at BLT 32 for 12 yards (K.Coleman).,23,24,2012 20120916_BAL@PHI,4,1,31,BAL,PHI,1,10,68,(1:31) (Shotgun) J.Flacco pass incomplete short left to T.Doss. PENALTY on PHI-N.Asomugha Illegal Contact 5 yards enforced at BLT 32 - No Play.,23,24,2012 20120916_BAL@PHI,4,1,26,BAL,PHI,1,10,63,(1:26) (Shotgun) J.Flacco pass incomplete deep left to E.Dickson (N.Allen).,23,24,2012 20120916_BAL@PHI,4,1,21,BAL,PHI,2,10,63,(1:21) (Shotgun) J.Flacco pass short left to D.Pitta to BLT 46 for 9 yards (N.Allen).,23,24,2012 20120916_BAL@PHI,4,0,57,BAL,PHI,3,1,54,(:57) (Shotgun) J.Flacco pass incomplete short left to D.Pitta.,23,24,2012 20120916_BAL@PHI,4,0,54,BAL,PHI,4,1,54,(:54) (Shotgun) J.Flacco pass incomplete short right to R.Rice.,23,24,2012 20120916_BAL@PHI,4,0,50,PHI,BAL,1,10,45,(:50) M.Vick kneels to BLT 46 for -1 yards.,24,23,2012 20120916_BAL@PHI,4,0,14,PHI,BAL,2,11,46,(:14) M.Vick kneels to BLT 47 for -1 yards.,24,23,2012 20120916_BAL@PHI,4,0,14,PHI,BAL,,,46,                      ,24,23,2012 20120916_OAK@MIA,1,0,0,OAK,MIA,,,46,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,0,0,2012 20120916_OAK@MIA,1,60,0,MIA,OAK,1,10,80,(15:00) R.Bush up the middle to MIA 31 for 11 yards (P.Wheeler).,0,0,2012 20120916_OAK@MIA,1,59,28,MIA,OAK,1,10,69,(14:28) R.Tannehill pass incomplete short middle to D.Bess.,0,0,2012 20120916_OAK@MIA,1,59,23,MIA,OAK,2,10,69,(14:23) R.Tannehill scrambles right guard to MIA 44 for 13 yards (T.Branch).,0,0,2012 20120916_OAK@MIA,1,58,50,MIA,OAK,1,10,56,(13:50) R.Bush up the middle to 50 for 6 yards (T.Branch).,0,0,2012 20120916_OAK@MIA,1,58,16,MIA,OAK,2,4,50,(13:16) R.Bush right end to OAK 47 for 3 yards (L.Houston).,0,0,2012 20120916_OAK@MIA,1,57,43,MIA,OAK,3,1,47,(12:43) R.Bush up the middle to OAK 42 for 5 yards (T.Branch).,0,0,2012 20120916_OAK@MIA,1,57,12,MIA,OAK,1,10,42,(12:12) R.Tannehill pass short right to B.Hartline to OAK 27 for 15 yards (P.Lee).,0,0,2012 20120916_OAK@MIA,1,56,49,MIA,OAK,1,10,27,(11:49) R.Bush left guard to OAK 26 for 1 yard (S.Spencer).,0,0,2012 20120916_OAK@MIA,1,56,0,MIA,OAK,2,9,26,(11:00) (Shotgun) R.Tannehill pass deep right to B.Hartline to OAK 5 for 21 yards (P.Lee).,0,0,2012 20120916_OAK@MIA,1,55,15,MIA,OAK,1,5,5,(10:15) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (P.Lee).,0,0,2012 20120916_OAK@MIA,1,55,6,MIA,OAK,2,5,5,(10:06) R.Bush right guard to OAK 2 for 3 yards.,0,0,2012 20120916_OAK@MIA,1,54,19,MIA,OAK,3,2,2,(9:19) R.Tannehill left end for 2 yards TOUCHDOWN.,0,0,2012 20120916_OAK@MIA,1,54,19,MIA,OAK,,,2,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 20120916_OAK@MIA,1,54,19,MIA,OAK,,,2,D.Carpenter kicks 62 yards from MIA 35 to OAK 3. C.Francies to OAK 16 for 13 yards (M.Moore).,7,0,2012 20120916_OAK@MIA,1,54,13,OAK,MIA,1,10,84,(9:13) C.Palmer pass deep right to D.Heyward-Bey to OAK 35 for 19 yards (S.Smith).,0,7,2012 20120916_OAK@MIA,1,53,40,OAK,MIA,1,10,65,(8:40) C.Palmer pass incomplete deep left to M.Reece.,0,7,2012 20120916_OAK@MIA,1,53,31,OAK,MIA,2,10,65,(8:31) D.McFadden right guard to OAK 37 for 2 yards (J.Odrick).,0,7,2012 20120916_OAK@MIA,1,52,54,OAK,MIA,3,8,63,(7:54) (Shotgun) C.Palmer scrambles right end to OAK 44 for 7 yards (S.Smith).,0,7,2012 20120916_OAK@MIA,1,52,31,OAK,MIA,4,1,56,(7:31) (Punt formation) S.Lechler punts 33 yards to MIA 23 Center-J.Condo fair catch by D.Bess.,0,7,2012 20120916_OAK@MIA,1,52,5,MIA,OAK,1,10,77,(7:05) R.Bush right end to MIA 24 for 1 yard (P.Wheeler).,7,0,2012 20120916_OAK@MIA,1,51,38,MIA,OAK,2,9,76,(6:38) R.Bush up the middle to MIA 24 for no gain (L.Houston).,7,0,2012 20120916_OAK@MIA,1,51,5,MIA,OAK,3,9,76,(6:05) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 35 for 11 yards (J.Hanson).,7,0,2012 20120916_OAK@MIA,1,50,22,MIA,OAK,1,10,65,(5:22) (Shotgun) R.Bush up the middle to MIA 37 for 2 yards (P.Wheeler).,7,0,2012 20120916_OAK@MIA,1,49,49,MIA,OAK,2,8,63,(4:49) (Shotgun) R.Tannehill pass deep middle to D.Bess to OAK 42 for 21 yards (T.Branch).,7,0,2012 20120916_OAK@MIA,1,49,17,MIA,OAK,1,10,42,(4:17) (No Huddle Shotgun) L.Miller right tackle to OAK 37 for 5 yards (R.Seymour).,7,0,2012 20120916_OAK@MIA,1,48,48,MIA,OAK,2,5,37,(3:48) (Shotgun) R.Tannehill pass incomplete short middle to A.Fasano.,7,0,2012 20120916_OAK@MIA,1,48,44,MIA,OAK,3,5,37,(3:44) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,7,0,2012 20120916_OAK@MIA,1,48,38,MIA,OAK,4,5,37,(3:38) (Field Goal formation) D.Carpenter punts 29 yards to OAK 8 Center-J.Denney downed by MIA-J.Denney.,7,0,2012 20120916_OAK@MIA,1,48,28,OAK,MIA,1,10,92,(3:28) D.McFadden left end to OAK 11 for 3 yards (K.Misi). PENALTY on OAK-S.Wisniewski Offensive Holding 4 yards enforced at OAK 8 - No Play.,0,7,2012 20120916_OAK@MIA,1,48,4,OAK,MIA,1,14,96,(3:04) C.Palmer pass short left to D.Heyward-Bey to OAK 17 for 13 yards (R.Marshall).,0,7,2012 20120916_OAK@MIA,1,47,27,OAK,MIA,2,1,83,(2:27) D.McFadden right guard to OAK 20 for 3 yards (C.Wake).,0,7,2012 20120916_OAK@MIA,1,46,49,OAK,MIA,1,10,80,(1:49) D.McFadden right tackle to OAK 22 for 2 yards (K.Dansby).,0,7,2012 20120916_OAK@MIA,1,46,10,OAK,MIA,2,8,78,(1:10) C.Palmer pass short left to M.Reece to OAK 36 for 14 yards (R.Marshall).,0,7,2012 20120916_OAK@MIA,1,45,29,OAK,MIA,1,10,64,(:29) C.Palmer pass incomplete deep left to D.Moore.,0,7,2012 20120916_OAK@MIA,1,45,23,OAK,MIA,2,10,64,(:23) C.Palmer pass short right to M.Goodson for 64 yards TOUCHDOWN.,0,7,2012 20120916_OAK@MIA,1,45,23,OAK,MIA,,,64,(Kick formation) S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,0,7,2012 20120916_OAK@MIA,1,45,23,OAK,MIA,,,64,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,7,7,2012 20120916_OAK@MIA,1,45,11,MIA,OAK,1,10,80,(:11) L.Miller right end ran ob at MIA 29 for 9 yards (M.Huff).,7,7,2012 20120916_OAK@MIA,2,45,0,MIA,OAK,2,1,71,(15:00) L.Miller left tackle to MIA 35 for 6 yards. Penalty on OAK-M.Shaughnessy Defensive Offside declined.,7,7,2012 20120916_OAK@MIA,2,45,0,MIA,OAK,1,10,65,(15:00) R.Tannehill pass short right to B.Hartline ran ob at MIA 44 for 9 yards.,7,7,2012 20120916_OAK@MIA,2,44,15,MIA,OAK,2,1,56,(14:15) L.Miller left tackle to MIA 49 for 5 yards (M.Burris).,7,7,2012 20120916_OAK@MIA,2,43,28,MIA,OAK,1,10,51,(13:28) R.Tannehill pass incomplete short right.,7,7,2012 20120916_OAK@MIA,2,43,15,MIA,OAK,2,10,51,(13:15) R.Tannehill pass short left to C.Clay pushed ob at OAK 49 for 2 yards (J.Hanson).,7,7,2012 20120916_OAK@MIA,2,42,47,MIA,OAK,3,8,49,(12:47) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline. Penalty on MIA-J.Long Illegal Formation declined.,7,7,2012 20120916_OAK@MIA,2,42,41,MIA,OAK,4,8,49,(12:41) (Punt formation) B.Fields punts 42 yards to OAK 7 Center-J.Denney fair catch by P.Adams.,7,7,2012 20120916_OAK@MIA,2,42,32,OAK,MIA,1,10,93,(12:32) D.McFadden right tackle to OAK 10 for 3 yards (R.Starks).,7,7,2012 20120916_OAK@MIA,2,42,0,OAK,MIA,2,7,90,(12:00) C.Palmer pass incomplete short middle to D.McFadden (K.Dansby).,7,7,2012 20120916_OAK@MIA,2,41,50,OAK,MIA,3,7,90,(11:50) C.Palmer pass short left to D.Heyward-Bey to OAK 15 for 5 yards (K.Dansby; N.Carroll).,7,7,2012 20120916_OAK@MIA,2,41,13,OAK,MIA,4,2,85,(11:13) (Punt formation) S.Lechler punts 60 yards to MIA 25 Center-J.Condo. M.Thigpen to MIA 43 for 18 yards (T.Jones).,7,7,2012 20120916_OAK@MIA,2,40,55,MIA,OAK,1,10,57,(10:55) R.Tannehill sacked at MIA 32 for -11 yards (M.Shaughnessy).,7,7,2012 20120916_OAK@MIA,2,40,24,MIA,OAK,2,21,68,(10:24) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 29 for -3 yards (S.Spencer).,7,7,2012 20120916_OAK@MIA,2,39,41,MIA,OAK,3,24,71,(9:41) (Shotgun) R.Tannehill pass incomplete short right to C.Clay.,7,7,2012 20120916_OAK@MIA,2,39,34,MIA,OAK,4,24,71,(9:34) (Punt formation) D.Carpenter punts 56 yards to OAK 15 Center-J.Denney. P.Adams to OAK 14 for -1 yards (C.Clemons).,7,7,2012 20120916_OAK@MIA,2,39,21,OAK,MIA,1,10,86,(9:21) C.Palmer pass deep right to B.Myers to OAK 35 for 21 yards (K.Dansby).,7,7,2012 20120916_OAK@MIA,2,38,45,OAK,MIA,1,10,65,(8:45) C.Palmer pass incomplete short right to R.Gordon.,7,7,2012 20120916_OAK@MIA,2,38,38,OAK,MIA,2,10,65,(8:38) D.McFadden left end ran ob at OAK 38 for 3 yards (R.Marshall).,7,7,2012 20120916_OAK@MIA,2,38,7,OAK,MIA,3,7,62,(8:07) (Shotgun) C.Palmer pass incomplete short left to D.Hagan [K.Burnett].,7,7,2012 20120916_OAK@MIA,2,38,0,OAK,MIA,4,7,62,(8:00) (Punt formation) S.Lechler punts 48 yards to MIA 14 Center-J.Condo. M.Thigpen to MIA 27 for 13 yards (R.Gordon).,7,7,2012 20120916_OAK@MIA,2,37,49,MIA,OAK,1,10,73,(7:49) (Shotgun) R.Bush right guard to MIA 25 for -2 yards (M.Shaughnessy).,7,7,2012 20120916_OAK@MIA,2,37,12,MIA,OAK,2,12,75,(7:12) (Shotgun) R.Tannehill pass incomplete short left to L.Naanee.,7,7,2012 20120916_OAK@MIA,2,37,7,MIA,OAK,3,12,75,(7:07) R.Tannehill pass incomplete short right to R.Bush.,7,7,2012 20120916_OAK@MIA,2,37,2,MIA,OAK,4,12,75,(7:02) (Punt formation) B.Fields punts 54 yards to OAK 21 Center-J.Denney. P.Adams pushed ob at OAK 28 for 7 yards (B.Fields). PENALTY on OAK-B.Myers Offensive Holding 10 yards enforced at OAK 28.,7,7,2012 20120916_OAK@MIA,2,36,46,OAK,MIA,1,10,82,(6:46) D.McFadden right tackle to OAK 20 for 2 yards (K.Misi).,7,7,2012 20120916_OAK@MIA,2,36,16,OAK,MIA,2,8,80,(6:16) C.Palmer pass deep left to D.Moore to MIA 49 for 31 yards (C.Clemons).,7,7,2012 20120916_OAK@MIA,2,35,50,OAK,MIA,1,10,49,(5:50) C.Palmer pass incomplete short right to D.Ausberry.,7,7,2012 20120916_OAK@MIA,2,35,25,OAK,MIA,2,10,49,(5:25) C.Palmer pass incomplete short right to R.Gordon.,7,7,2012 20120916_OAK@MIA,2,35,21,OAK,MIA,3,10,49,(5:21) (Shotgun) C.Palmer pass incomplete deep middle to D.Heyward-Bey [R.Starks].,7,7,2012 20120916_OAK@MIA,2,35,20,OAK,MIA,4,10,49,(5:20) (Punt formation) S.Lechler punts 35 yards to MIA 14 Center-J.Condo. D.Bess to MIA 25 for 11 yards (R.Gordon).,7,7,2012 20120916_OAK@MIA,2,35,7,MIA,OAK,1,10,75,(5:07) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,7,7,2012 20120916_OAK@MIA,2,34,59,MIA,OAK,2,10,75,(4:59) R.Tannehill pass short middle to R.Bush ran ob at MIA 28 for 3 yards (M.Huff) [D.Tollefson].,7,7,2012 20120916_OAK@MIA,2,34,33,MIA,OAK,3,7,72,(4:33) (Shotgun) R.Tannehill pass short right to D.Bess ran ob at MIA 34 for 6 yards.,7,7,2012 20120916_OAK@MIA,2,33,55,MIA,OAK,4,1,66,(3:55) (Punt formation) B.Fields punts 59 yards to OAK 7 Center-J.Denney. P.Adams to OAK 12 for 5 yards (L.Naanee).,7,7,2012 20120916_OAK@MIA,2,33,33,OAK,MIA,1,10,88,(3:33) C.Palmer pass short middle to B.Myers to OAK 24 for 12 yards (K.Dansby).,7,7,2012 20120916_OAK@MIA,2,33,3,OAK,MIA,1,10,76,(3:03) D.McFadden left end to OAK 26 for 2 yards (K.Dansby).,7,7,2012 20120916_OAK@MIA,2,32,30,OAK,MIA,2,8,74,(2:30) C.Palmer pass short middle to M.Reece to OAK 29 for 3 yards (K.Burnett).,7,7,2012 20120916_OAK@MIA,2,32,0,OAK,MIA,3,5,71,(2:00) (Shotgun) C.Palmer pass short right to D.Moore ran ob at OAK 39 for 10 yards.,7,7,2012 20120916_OAK@MIA,2,31,53,OAK,MIA,1,10,61,(1:53) (Shotgun) C.Palmer pass incomplete short right to R.Streater.,7,7,2012 20120916_OAK@MIA,2,31,48,OAK,MIA,2,10,61,(1:48) (Shotgun) C.Palmer pass short right to D.Ausberry to MIA 30 for 31 yards (R.Jones).,7,7,2012 20120916_OAK@MIA,2,31,37,OAK,MIA,1,10,30,(1:37) C.Palmer pass short right to R.Streater to MIA 24 for 6 yards (S.Smith).,7,7,2012 20120916_OAK@MIA,2,31,16,OAK,MIA,2,4,24,(1:16) (No Huddle Shotgun) C.Palmer pass short left to D.Hagan to MIA 14 for 10 yards (N.Carroll) [J.Wilson]. PENALTY on MIA-J.Wilson Roughing the Passer 7 yards enforced at MIA 14.,7,7,2012 20120916_OAK@MIA,2,31,8,OAK,MIA,1,7,7,(1:08) C.Palmer pass incomplete short right to D.McFadden.,7,7,2012 20120916_OAK@MIA,2,31,2,OAK,MIA,2,7,7,(1:02) (Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey [R.Starks].,7,7,2012 20120916_OAK@MIA,2,30,56,OAK,MIA,3,7,7,(:56) C.Palmer pass incomplete short left to R.Gordon [C.Wake].,7,7,2012 20120916_OAK@MIA,2,30,50,OAK,MIA,4,7,7,(:50) (Field Goal formation) S.Janikowski 25 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,7,7,2012 20120916_OAK@MIA,2,30,50,OAK,MIA,,,7,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,10,7,2012 20120916_OAK@MIA,2,30,46,MIA,OAK,1,10,80,(:46) R.Bush left guard to MIA 24 for 4 yards (T.Kelly).,7,10,2012 20120916_OAK@MIA,2,30,11,MIA,OAK,2,6,76,(:11) R.Tannehill kneels to MIA 23 for -1 yards.,7,10,2012 20120916_OAK@MIA,3,30,0,MIA,OAK,,,76,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,7,10,2012 20120916_OAK@MIA,3,30,0,OAK,MIA,1,10,80,(15:00) C.Palmer pass incomplete short right to D.Moore (S.Smith).,10,7,2012 20120916_OAK@MIA,3,29,54,OAK,MIA,2,10,80,(14:54) D.McFadden left end to OAK 20 for no gain (K.Dansby).,10,7,2012 20120916_OAK@MIA,3,29,17,OAK,MIA,3,10,80,(14:17) C.Palmer pass short left to B.Myers to OAK 24 for 4 yards (K.Dansby).,10,7,2012 20120916_OAK@MIA,3,28,32,OAK,MIA,4,6,76,(13:32) (Punt formation) S.Lechler punts 50 yards to MIA 26 Center-J.Condo. M.Thigpen to MIA 33 for 7 yards (T.Goethel).,10,7,2012 20120916_OAK@MIA,3,28,17,MIA,OAK,1,10,67,(13:17) R.Bush left tackle to MIA 34 for 1 yard (R.McClain).,7,10,2012 20120916_OAK@MIA,3,27,47,MIA,OAK,2,9,66,(12:47) R.Bush right end to MIA 35 for 1 yard (P.Wheeler).,7,10,2012 20120916_OAK@MIA,3,27,11,MIA,OAK,3,8,65,(12:11) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 40 for 5 yards (R.McClain).,7,10,2012 20120916_OAK@MIA,3,26,36,MIA,OAK,4,3,60,(11:36) (Punt formation) B.Fields punts 58 yards to OAK 2 Center-J.Denney. P.Adams to OAK 26 for 24 yards (J.Wilson). PENALTY on OAK-P.Adams Offensive Holding 1 yard enforced at OAK 2. Penalty on OAK-M.Reece Illegal Block Above the Waist declined.,7,10,2012 20120916_OAK@MIA,3,26,7,OAK,MIA,1,10,99,(11:07) D.McFadden up the middle to OAK 2 for 1 yard (K.Misi).,10,7,2012 20120916_OAK@MIA,3,25,28,OAK,MIA,2,9,98,(10:28) D.McFadden left tackle to OAK 6 for 4 yards (R.Starks).,10,7,2012 20120916_OAK@MIA,3,25,3,OAK,MIA,3,5,94,(10:03) C.Palmer pass incomplete deep middle to D.Moore.,10,7,2012 20120916_OAK@MIA,3,24,46,OAK,MIA,4,5,94,(9:46) (Punt formation) S.Lechler punts 59 yards to MIA 35 Center-J.Condo. M.Thigpen to OAK 44 for 21 yards (R.Gordon).,10,7,2012 20120916_OAK@MIA,3,24,34,MIA,OAK,1,10,44,(9:34) R.Tannehill pass short right to B.Hartline ran ob at OAK 32 for 12 yards.,7,10,2012 20120916_OAK@MIA,3,24,9,MIA,OAK,1,10,32,(9:09) (No Huddle) R.Bush up the middle to OAK 29 for 3 yards (T.Branch).,7,10,2012 20120916_OAK@MIA,3,23,31,MIA,OAK,2,7,29,(8:31) (No Huddle) R.Tannehill pass short right to B.Hartline to OAK 23 for 6 yards (J.Hanson).,7,10,2012 20120916_OAK@MIA,3,23,31,MIA,OAK,3,1,23,(8:31) (No Huddle) R.Bush right tackle for 23 yards TOUCHDOWN.,7,10,2012 20120916_OAK@MIA,3,23,31,MIA,OAK,,,23,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,7,10,2012 20120916_OAK@MIA,3,23,31,MIA,OAK,,,23,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,14,10,2012 20120916_OAK@MIA,3,22,57,OAK,MIA,1,10,80,(7:57) C.Palmer pass incomplete deep middle to D.Heyward-Bey.,10,14,2012 20120916_OAK@MIA,3,22,51,OAK,MIA,2,10,80,(7:51) C.Palmer pass short middle to M.Goodson to OAK 31 for 11 yards (C.Clemons) [P.Soliai].,10,14,2012 20120916_OAK@MIA,3,22,16,OAK,MIA,1,10,69,(7:16) C.Palmer pass short left to B.Myers to OAK 48 for 17 yards (K.Misi).,10,14,2012 20120916_OAK@MIA,3,21,51,OAK,MIA,1,10,52,(6:51) M.Goodson right end to OAK 42 for -6 yards (R.Jones).,10,14,2012 20120916_OAK@MIA,3,21,7,OAK,MIA,2,16,58,(6:07) C.Palmer pass short left to D.McFadden pushed ob at MIA 45 for 13 yards (N.Carroll).,10,14,2012 20120916_OAK@MIA,3,20,38,OAK,MIA,3,3,45,(5:38) C.Palmer pass incomplete short right to D.Moore (S.Smith).,10,14,2012 20120916_OAK@MIA,3,20,15,OAK,MIA,4,3,45,(5:15) (Punt formation) S.Lechler punts 45 yards to end zone Center-J.Condo Touchback.,10,14,2012 20120916_OAK@MIA,3,20,14,MIA,OAK,1,10,80,(5:14) R.Bush left tackle to MIA 22 for 2 yards (P.Wheeler).,14,10,2012 20120916_OAK@MIA,3,19,40,MIA,OAK,2,8,78,(4:40) R.Tannehill pass short right to B.Hartline to MIA 35 for 13 yards (J.Hanson) [P.Wheeler].,14,10,2012 20120916_OAK@MIA,3,19,11,MIA,OAK,1,10,65,(4:11) R.Bush left end for 65 yards TOUCHDOWN.,14,10,2012 20120916_OAK@MIA,3,19,11,MIA,OAK,,,65,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,14,10,2012 20120916_OAK@MIA,3,19,11,MIA,OAK,,,65,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,21,10,2012 20120916_OAK@MIA,3,18,52,OAK,MIA,1,10,80,(3:52) C.Palmer pass deep left to D.Moore pushed ob at OAK 46 for 26 yards (K.Burnett).,10,21,2012 20120916_OAK@MIA,3,18,38,OAK,MIA,1,10,54,(3:38) C.Palmer pass short right to R.Streater to MIA 48 for 6 yards (K.Dansby).,10,21,2012 20120916_OAK@MIA,3,18,17,OAK,MIA,2,10,54,(3:17) C.Palmer pass incomplete short left to D.McFadden.,10,21,2012 20120916_OAK@MIA,3,18,12,OAK,MIA,3,10,54,(3:12) (Shotgun) C.Palmer pass incomplete short right to D.Ausberry [J.Odrick].,10,21,2012 20120916_OAK@MIA,3,18,6,OAK,MIA,4,10,54,(3:06) (Punt formation) S.Lechler punts 36 yards to MIA 18 Center-J.Condo fair catch by D.Bess.,10,21,2012 20120916_OAK@MIA,3,17,58,MIA,OAK,1,10,82,(2:58) L.Miller left tackle to MIA 21 for 3 yards (L.Houston).,21,10,2012 20120916_OAK@MIA,3,17,25,MIA,OAK,2,7,79,(2:25) L.Miller left end to MIA 22 for 1 yard (D.Bryant).,21,10,2012 20120916_OAK@MIA,3,16,39,MIA,OAK,3,6,78,(1:39) (Shotgun) R.Tannehill pass incomplete short middle to C.Clay [P.Wheeler].,21,10,2012 20120916_OAK@MIA,3,16,32,MIA,OAK,4,6,78,(1:32) (Punt formation) B.Fields punts 50 yards to OAK 28 Center-J.Denney. P.Adams pushed ob at MIA 25 for 47 yards (B.Fields).,21,10,2012 20120916_OAK@MIA,3,16,15,OAK,MIA,1,10,25,(1:15) C.Palmer pass incomplete short middle to D.McFadden (P.Soliai).,10,21,2012 20120916_OAK@MIA,3,16,10,OAK,MIA,2,10,25,(1:10) C.Palmer pass incomplete short left to R.Streater. PENALTY on MIA-N.Carroll Defensive Pass Interference 9 yards enforced at MIA 25 - No Play.,10,21,2012 20120916_OAK@MIA,3,16,4,OAK,MIA,1,10,16,(1:04) C.Palmer pass short right to D.McFadden to MIA 10 for 6 yards (S.Smith) [P.Soliai].,10,21,2012 20120916_OAK@MIA,3,15,34,OAK,MIA,2,4,10,(:34) D.McFadden left guard to MIA 10 for no gain (P.Soliai).,10,21,2012 20120916_OAK@MIA,4,15,0,OAK,MIA,3,4,10,(15:00) C.Palmer pass incomplete short right to D.Heyward-Bey (J.Wilson).,10,21,2012 20120916_OAK@MIA,4,14,53,OAK,MIA,4,4,10,(14:53) (Field Goal formation) S.Janikowski 27 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,10,21,2012 20120916_OAK@MIA,4,14,53,OAK,MIA,,,10,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,13,21,2012 20120916_OAK@MIA,4,14,50,MIA,OAK,1,10,80,(14:50) R.Tannehill pass incomplete deep right to D.Bess. PENALTY on OAK-S.Spencer Defensive Pass Interference 18 yards enforced at MIA 20 - No Play.,21,13,2012 20120916_OAK@MIA,4,14,43,MIA,OAK,1,10,62,(14:43) R.Bush up the middle to MIA 45 for 7 yards (T.Kelly).,21,13,2012 20120916_OAK@MIA,4,14,14,MIA,OAK,2,3,55,(14:14) R.Bush up the middle to MIA 43 for -2 yards (T.Kelly).,21,13,2012 20120916_OAK@MIA,4,13,41,MIA,OAK,3,5,57,(13:41) (Shotgun) R.Tannehill pass short right to B.Hartline ran ob at OAK 44 for 13 yards.,21,13,2012 20120916_OAK@MIA,4,13,7,MIA,OAK,1,10,44,(13:07) R.Bush right guard to OAK 41 for 3 yards (M.Shaughnessy).,21,13,2012 20120916_OAK@MIA,4,12,34,MIA,OAK,2,7,41,(12:34) R.Tannehill pass incomplete short right to B.Hartline (M.Burris).,21,13,2012 20120916_OAK@MIA,4,12,28,MIA,OAK,3,7,41,(12:28) (Shotgun) R.Tannehill pass deep right to B.Hartline ran ob at OAK 30 for 11 yards.,21,13,2012 20120916_OAK@MIA,4,12,18,MIA,OAK,1,10,30,(12:18) R.Tannehill pass deep left to D.Bess ran ob at OAK 14 for 16 yards.,21,13,2012 20120916_OAK@MIA,4,11,57,MIA,OAK,1,10,14,(11:57) (Shotgun) R.Tannehill pass short middle to A.Fasano for 14 yards TOUCHDOWN.,21,13,2012 20120916_OAK@MIA,4,11,57,MIA,OAK,,,14,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,21,13,2012 20120916_OAK@MIA,4,11,57,MIA,OAK,,,14,D.Carpenter kicks 66 yards from MIA 35 to OAK -1. C.Francies to OAK 19 for 20 yards (O.Vernon). PENALTY on MIA-M.Thigpen Offside on Free Kick 5 yards enforced at MIA 35 - No Play.,28,13,2012 20120916_OAK@MIA,4,11,57,MIA,OAK,,,14,D.Carpenter kicks 65 yards from MIA 30 to OAK 5. M.Goodson to OAK 30 for 25 yards (J.Trusnik).,28,13,2012 20120916_OAK@MIA,4,11,31,OAK,MIA,1,10,70,(11:31) C.Palmer pass short right to D.Heyward-Bey to OAK 34 for 4 yards (R.Jones) [C.Wake].,13,28,2012 20120916_OAK@MIA,4,10,50,OAK,MIA,2,6,66,(10:50) C.Palmer pass incomplete deep right to R.Gordon.,13,28,2012 20120916_OAK@MIA,4,10,43,OAK,MIA,3,6,66,(10:43) (Shotgun) C.Palmer pass incomplete short right to D.McFadden.,13,28,2012 20120916_OAK@MIA,4,10,38,OAK,MIA,4,6,66,(10:38) (Punt formation) S.Lechler punts 56 yards to MIA 10 Center-J.Condo. M.Thigpen to MIA 25 for 15 yards (R.Gordon).,13,28,2012 20120916_OAK@MIA,4,10,24,MIA,OAK,1,10,75,(10:24) R.Bush up the middle to MIA 29 for 4 yards (T.Branch).,28,13,2012 20120916_OAK@MIA,4,9,39,MIA,OAK,2,6,71,(9:39) R.Bush up the middle to MIA 44 for 15 yards (J.Hanson).,28,13,2012 20120916_OAK@MIA,4,9,6,MIA,OAK,1,10,56,(9:06) R.Bush up the middle to MIA 49 for 5 yards (P.Wheeler).,28,13,2012 20120916_OAK@MIA,4,8,13,MIA,OAK,2,5,51,(8:13) R.Bush up the middle to OAK 47 for 4 yards (T.Branch). OAK-M.Burris was injured during the play. His return is Probable.,28,13,2012 20120916_OAK@MIA,4,7,39,MIA,OAK,3,1,47,(7:39) R.Tannehill pass short right to R.Bush to OAK 22 for 25 yards (M.Huff).,28,13,2012 20120916_OAK@MIA,4,7,1,MIA,OAK,1,10,22,(7:01) R.Bush up the middle to OAK 16 for 6 yards (P.Wheeler).,28,13,2012 20120916_OAK@MIA,4,5,57,MIA,OAK,2,4,16,(5:57) R.Bush left guard to OAK 15 for 1 yard (J.Hanson).,28,13,2012 20120916_OAK@MIA,4,5,14,MIA,OAK,3,3,15,(5:14) L.Miller left tackle for 15 yards TOUCHDOWN.,28,13,2012 20120916_OAK@MIA,4,5,14,MIA,OAK,,,15,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,28,13,2012 20120916_OAK@MIA,4,5,14,MIA,OAK,,,15,D.Carpenter kicks 63 yards from MIA 35 to OAK 2. M.Goodson to OAK 18 for 16 yards (R.Stanford).,35,13,2012 20120916_OAK@MIA,4,4,59,OAK,MIA,1,10,82,(4:59) (Shotgun) C.Palmer pass incomplete short right to B.Myers. PENALTY on OAK-K.Barnes Offensive Holding 9 yards enforced at OAK 18 - No Play.,13,35,2012 20120916_OAK@MIA,4,4,52,OAK,MIA,1,19,91,(4:52) (Shotgun) C.Palmer pass short left to M.Goodson to OAK 17 for 8 yards (K.Burnett).,13,35,2012 20120916_OAK@MIA,4,4,23,OAK,MIA,2,11,83,(4:23) (Shotgun) C.Palmer pass short left to B.Myers to OAK 30 for 13 yards (N.Carroll).,13,35,2012 20120916_OAK@MIA,4,3,58,OAK,MIA,1,10,70,(3:58) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to OAK 49 for 19 yards (K.Dansby).,13,35,2012 20120916_OAK@MIA,4,3,25,OAK,MIA,1,10,51,(3:25) (No Huddle Shotgun) C.Palmer pass short middle to R.Streater to MIA 38 for 13 yards (C.Clemons).,13,35,2012 20120916_OAK@MIA,4,3,12,OAK,MIA,1,10,43,(3:12) C.Palmer Aborted. S.Wisniewski FUMBLES at MIA 38 recovered by OAK-C.Palmer at MIA 43. C.Palmer to MIA 43 for no gain (K.Burnett).,13,35,2012 20120916_OAK@MIA,4,3,12,OAK,MIA,2,15,43,(3:12) C.Palmer pass short middle intended for D.Moore INTERCEPTED by R.Jones at MIA 35. R.Jones to MIA 43 for 8 yards (M.Goodson).,13,35,2012 20120916_OAK@MIA,4,2,32,MIA,OAK,1,10,57,(2:32) L.Miller left guard to MIA 46 for 3 yards (D.Bryant).,35,13,2012 20120916_OAK@MIA,4,2,25,MIA,OAK,2,7,54,(2:25) L.Miller up the middle to MIA 45 for -1 yards (C.Ihenacho).,35,13,2012 20120916_OAK@MIA,4,2,20,MIA,OAK,3,8,55,(2:20) L.Miller left tackle pushed ob at OAK 36 for 19 yards (M.Huff).,35,13,2012 20120916_OAK@MIA,4,2,13,MIA,OAK,1,10,36,(2:13) J.Lane right guard to OAK 33 for 3 yards (T.Kelly).,35,13,2012 20120916_OAK@MIA,4,2,0,MIA,OAK,2,7,33,(2:00) J.Lane right guard to OAK 30 for 3 yards (D.Tollefson).,35,13,2012 20120916_OAK@MIA,4,1,15,MIA,OAK,3,4,30,(1:15) J.Lane right guard to OAK 28 for 2 yards (M.Burris).,35,13,2012 20120916_OAK@MIA,4,0,40,MIA,OAK,4,2,28,(:40) J.Lane up the middle to OAK 24 for 4 yards (M.Shaughnessy).,35,13,2012 20120916_OAK@MIA,4,1,15,MIA,OAK,4,2,28,(1:15) J.Lane up the middle to OAK 24 for 4 yards (M.Shaughnessy).,35,13,2012 20120916_OAK@MIA,4,1,15,MIA,OAK,,,28,                      ,35,13,2012 20120916_DAL@SEA,1,1,0,SEA,DAL,,,28,S.Hauschka kicks 63 yards from SEA 35 to DAL 2. F.Jones to DAL 21 for 19 yards (M.Robinson). FUMBLES (M.Robinson) RECOVERED by SEA-E.Thomas at DAL 29. E.Thomas to DAL 29 for no gain (L.Vickers).,0,0,2012 20120916_DAL@SEA,1,59,53,SEA,DAL,1,10,29,(14:53) M.Lynch right tackle to DAL 25 for 4 yards (J.Hatcher; B.Church).,0,0,2012 20120916_DAL@SEA,1,59,13,SEA,DAL,2,6,25,(14:13) M.Lynch left guard to DAL 22 for 3 yards (K.Coleman B.Carter).,0,0,2012 20120916_DAL@SEA,1,58,28,SEA,DAL,3,3,22,(13:28) (Shotgun) R.Wilson pass short right to S.Rice to DAL 16 for 6 yards (A.Spencer). PENALTY on DAL-J.Price-Brent Unnecessary Roughness 8 yards enforced at DAL 16.,0,0,2012 20120916_DAL@SEA,1,58,16,SEA,DAL,1,8,8,(13:16) M.Lynch left guard to DAL 5 for 3 yards (B.Carter D.Ware).,0,0,2012 20120916_DAL@SEA,1,57,34,SEA,DAL,2,5,5,(12:34) M.Lynch right guard to DAL 3 for 2 yards (S.Lissemore; D.Ware).,0,0,2012 20120916_DAL@SEA,1,56,51,SEA,DAL,3,3,3,(11:51) (Shotgun) R.Wilson pass incomplete short middle to S.Rice (B.Carter).,0,0,2012 20120916_DAL@SEA,1,56,51,SEA,DAL,4,3,3,(11:51) S.Hauschka 21 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 20120916_DAL@SEA,1,56,51,SEA,DAL,,,3,S.Hauschka kicks 65 yards from SEA 35 to DAL 0. F.Jones to DAL 16 for 16 yards (B.Maxwell).,3,0,2012 20120916_DAL@SEA,1,56,37,DAL,SEA,1,10,84,(11:37) T.Romo pass short left to D.Murray to DAL 18 for 2 yards (E.Thomas).,0,3,2012 20120916_DAL@SEA,1,56,16,DAL,SEA,2,8,82,(11:16) D.Murray right tackle to DAL 21 for 3 yards (R.Bryant).,0,3,2012 20120916_DAL@SEA,1,55,33,DAL,SEA,3,5,79,(10:33) (Shotgun) T.Romo pass incomplete short middle to J.Witten.,0,3,2012 20120916_DAL@SEA,1,55,28,DAL,SEA,4,5,79,(10:28) C.Jones punt is BLOCKED by M.Smith Center-L.Ladouceur RECOVERED by SEA-J.Johnson at DAL 3. J.Johnson for 3 yards TOUCHDOWN.,0,3,2012 20120916_DAL@SEA,1,55,28,SEA,DAL,,,79,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,0,2012 20120916_DAL@SEA,1,55,28,SEA,DAL,,,79,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,10,0,2012 20120916_DAL@SEA,1,55,23,DAL,SEA,1,10,80,(10:23) (Shotgun) T.Romo pass incomplete deep left to D.Bryant.,0,10,2012 20120916_DAL@SEA,1,55,19,DAL,SEA,2,10,80,(10:19) F.Jones left tackle to DAL 21 for 1 yard (C.Clemons; B.Mebane).,0,10,2012 20120916_DAL@SEA,1,54,35,DAL,SEA,3,9,79,(9:35) (Shotgun) T.Romo pass deep left to K.Ogletree ran ob at DAL 47 for 26 yards.,0,10,2012 20120916_DAL@SEA,1,54,18,DAL,SEA,1,10,53,(9:18) K.Ogletree left end pushed ob at SEA 48 for 5 yards (K.Chancellor).,0,10,2012 20120916_DAL@SEA,1,53,30,DAL,SEA,2,5,48,(8:30) D.Murray up the middle to SEA 40 for 8 yards (B.Wagner; C.McDonald).,0,10,2012 20120916_DAL@SEA,1,52,50,DAL,SEA,1,10,40,(7:50) (Shotgun) T.Romo pass short right to D.Murray pushed ob at SEA 33 for 7 yards (K.Wright).,0,10,2012 20120916_DAL@SEA,1,52,20,DAL,SEA,2,3,33,(7:20) D.Murray right tackle to SEA 24 for 9 yards (L.Hill).,0,10,2012 20120916_DAL@SEA,1,51,40,DAL,SEA,1,10,24,(6:40) T.Romo pass incomplete short middle to D.Bryant.,0,10,2012 20120916_DAL@SEA,1,51,34,DAL,SEA,2,10,24,(6:34) T.Romo pass short left intended for J.Witten INTERCEPTED by B.Browner [B.Wagner] at SEA 19. B.Browner to DAL 46 for 35 yards (D.Murray).,0,10,2012 20120916_DAL@SEA,1,51,22,SEA,DAL,1,10,46,(6:22) R.Wilson pass incomplete deep middle to G.Tate (M.Claiborne) [D.Ware].,10,0,2012 20120916_DAL@SEA,1,51,15,SEA,DAL,2,10,46,(6:15) M.Lynch up the middle to DAL 46 for no gain (J.Hatcher).,10,0,2012 20120916_DAL@SEA,1,50,33,SEA,DAL,3,10,46,(5:33) (Shotgun) PENALTY on SEA-P.McQuistan False Start 5 yards enforced at DAL 46 - No Play.,10,0,2012 20120916_DAL@SEA,1,50,26,SEA,DAL,3,15,51,(5:26) (Shotgun) R.Wilson pass short middle to R.Turbin to DAL 41 for 10 yards (A.Spencer).,10,0,2012 20120916_DAL@SEA,1,49,49,SEA,DAL,4,5,41,(4:49) J.Ryan punts 36 yards to DAL 5 Center-C.Gresham downed by SEA-B.Maxwell.,10,0,2012 20120916_DAL@SEA,1,49,40,DAL,SEA,1,10,95,(4:40) D.Murray up the middle to DAL 7 for 2 yards (C.McDonald; K.Wright).,0,10,2012 20120916_DAL@SEA,1,49,1,DAL,SEA,2,8,93,(4:01) T.Romo pass short left to M.Austin to DAL 9 for 2 yards (K.Chancellor).,0,10,2012 20120916_DAL@SEA,1,48,16,DAL,SEA,3,6,91,(3:16) (Shotgun) T.Romo pass deep middle to J.Witten to DAL 26 for 17 yards (K.Chancellor).,0,10,2012 20120916_DAL@SEA,1,47,33,DAL,SEA,1,10,74,(2:33) T.Romo pass incomplete deep right to J.Witten (K.Wright).,0,10,2012 20120916_DAL@SEA,1,47,22,DAL,SEA,2,10,74,(2:22) D.Murray left end to DAL 30 for 4 yards (L.Hill).,0,10,2012 20120916_DAL@SEA,1,46,40,DAL,SEA,3,6,70,(1:40) (Shotgun) T.Romo pass short left to J.Phillips to DAL 39 for 9 yards (L.Hill K.Chancellor).,0,10,2012 20120916_DAL@SEA,1,45,55,DAL,SEA,1,10,61,(:55) T.Romo pass incomplete short right to F.Jones.,0,10,2012 20120916_DAL@SEA,1,45,51,DAL,SEA,2,10,64,(:51) (Shotgun) T.Romo FUMBLES (Aborted) at DAL 36 and recovers at DAL 36. T.Romo to DAL 36 for no gain (B.Wagner).,0,10,2012 20120916_DAL@SEA,1,45,7,DAL,SEA,3,13,64,(:07) (Shotgun) T.Romo pass short right to M.Austin to SEA 47 for 17 yards (E.Thomas).,0,10,2012 20120916_DAL@SEA,2,45,0,DAL,SEA,1,10,47,(15:00) D.Murray right guard to SEA 45 for 2 yards (L.Hill; B.Mebane).,0,10,2012 20120916_DAL@SEA,2,44,18,DAL,SEA,2,8,45,(14:18) (Shotgun) T.Romo pass incomplete deep right to J.Witten.,0,10,2012 20120916_DAL@SEA,2,44,11,DAL,SEA,3,8,45,(14:11) (Shotgun) T.Romo pass short middle to F.Jones to SEA 36 for 9 yards (K.Wright).,0,10,2012 20120916_DAL@SEA,2,43,30,DAL,SEA,1,10,36,(13:30) T.Romo pass short left to D.Murray to SEA 29 for 7 yards (C.McDonald).,0,10,2012 20120916_DAL@SEA,2,42,53,DAL,SEA,2,3,29,(12:53) D.Murray left tackle to SEA 22 for 7 yards (B.Wagner).,0,10,2012 20120916_DAL@SEA,2,42,20,DAL,SEA,1,10,22,(12:20) T.Romo pass deep right to M.Austin for 22 yards TOUCHDOWN.,0,10,2012 20120916_DAL@SEA,2,42,20,DAL,SEA,,,22,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,10,2012 20120916_DAL@SEA,2,42,20,DAL,SEA,,,22,D.Bailey kicks 59 yards from DAL 35 to SEA 6. L.Washington to SEA 26 for 20 yards (D.Connor).,7,10,2012 20120916_DAL@SEA,2,42,4,SEA,DAL,1,10,74,(12:04) R.Wilson pass incomplete short middle to E.Moore.,10,7,2012 20120916_DAL@SEA,2,42,0,SEA,DAL,2,10,74,(12:00) R.Wilson pass short left to A.McCoy to SEA 29 for 3 yards (D.McCray).,10,7,2012 20120916_DAL@SEA,2,41,17,SEA,DAL,3,7,71,(11:17) (Shotgun) R.Wilson scrambles right end pushed ob at SEA 33 for 4 yards (O.Scandrick).,10,7,2012 20120916_DAL@SEA,2,40,59,SEA,DAL,4,3,67,(10:59) J.Ryan punts 55 yards to DAL 12 Center-C.Gresham. D.Bryant ran ob at DAL 14 for 2 yards.,10,7,2012 20120916_DAL@SEA,2,40,49,DAL,SEA,1,10,86,(10:49) D.Murray left tackle to DAL 15 for 1 yard (R.Bryant).,7,10,2012 20120916_DAL@SEA,2,40,8,DAL,SEA,2,9,85,(10:08) T.Romo pass short right to J.Witten to DAL 22 for 7 yards (B.Browner) [C.Clemons].,7,10,2012 20120916_DAL@SEA,2,39,21,DAL,SEA,3,2,78,(9:21) (Shotgun) T.Romo pass incomplete short middle to D.Bryant (E.Thomas).,7,10,2012 20120916_DAL@SEA,2,39,15,DAL,SEA,4,2,78,(9:15) C.Jones punts 44 yards to SEA 34 Center-L.Ladouceur. L.Washington to SEA 41 for 7 yards (D.McCray).,7,10,2012 20120916_DAL@SEA,2,39,2,SEA,DAL,1,10,59,(9:02) M.Lynch right guard to SEA 43 for 2 yards (K.Coleman S.Lissemore).,10,7,2012 20120916_DAL@SEA,2,38,28,SEA,DAL,2,8,57,(8:28) M.Lynch right tackle to 50 for 7 yards (S.Lissemore).,10,7,2012 20120916_DAL@SEA,2,37,51,SEA,DAL,3,1,50,(7:51) M.Robinson up the middle to DAL 46 for 4 yards (M.Spears; T.Crawford).,10,7,2012 20120916_DAL@SEA,2,37,16,SEA,DAL,1,10,46,(7:16) R.Wilson pass deep left to G.Tate ran ob at DAL 26 for 20 yards.,10,7,2012 20120916_DAL@SEA,2,36,45,SEA,DAL,1,10,26,(6:45) R.Wilson pass short right to A.McCoy pushed ob at DAL 22 for 4 yards (S.Lee).,10,7,2012 20120916_DAL@SEA,2,36,2,SEA,DAL,2,6,22,(6:02) M.Lynch left tackle to DAL 21 for 1 yard (D.Ware). Penalty on DAL-D.Ware Defensive Offside declined. PENALTY on SEA-J.Sweezy Chop Block 15 yards enforced at DAL 22 - No Play.,10,7,2012 20120916_DAL@SEA,2,35,40,SEA,DAL,2,21,37,(5:40) (Shotgun) R.Wilson pass deep middle to S.Rice to DAL 19 for 18 yards (D.McCray).,10,7,2012 20120916_DAL@SEA,2,34,55,SEA,DAL,3,3,19,(4:55) (Shotgun) R.Wilson pass short right to Z.Miller to DAL 12 for 7 yards (B.Carter; A.Spencer).,10,7,2012 20120916_DAL@SEA,2,34,12,SEA,DAL,1,10,12,(4:12) M.Lynch left tackle to DAL 14 for -2 yards (B.Carter).,10,7,2012 20120916_DAL@SEA,2,33,31,SEA,DAL,2,12,14,(3:31) (Shotgun) PENALTY on SEA-B.Giacomini False Start 5 yards enforced at DAL 14 - No Play.,10,7,2012 20120916_DAL@SEA,2,33,8,SEA,DAL,2,17,19,(3:08) (Shotgun) R.Wilson pass short left to S.Rice pushed ob at DAL 10 for 9 yards (M.Claiborne).,10,7,2012 20120916_DAL@SEA,2,32,32,SEA,DAL,3,8,10,(2:32) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at DAL 10 - No Play.,10,7,2012 20120916_DAL@SEA,2,32,12,SEA,DAL,3,13,15,(2:12) (Shotgun) R.Wilson pass short right to D.Baldwin to DAL 7 for 8 yards (B.Carr).,10,7,2012 20120916_DAL@SEA,2,32,0,SEA,DAL,4,5,7,(2:00) S.Hauschka 25 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,7,2012 20120916_DAL@SEA,2,32,0,SEA,DAL,,,7,S.Hauschka kicks 73 yards from SEA 35 to DAL -8. F.Jones to DAL 15 for 23 yards (M.Robinson).,13,7,2012 20120916_DAL@SEA,2,31,52,DAL,SEA,1,10,85,(1:52) (Shotgun) T.Romo pass short middle to D.Murray to DAL 30 for 15 yards (M.Trufant).,7,13,2012 20120916_DAL@SEA,2,31,28,DAL,SEA,1,10,70,(1:28) (No Huddle Shotgun) T.Romo pass incomplete short left to D.Bryant.,7,13,2012 20120916_DAL@SEA,2,31,23,DAL,SEA,2,10,70,(1:23) (Shotgun) T.Romo pass incomplete short right to J.Witten.,7,13,2012 20120916_DAL@SEA,2,31,20,DAL,SEA,3,10,70,(1:20) (Shotgun) T.Romo pass short right to J.Witten pushed ob at SEA 47 for 23 yards (R.Sherman).,7,13,2012 20120916_DAL@SEA,2,31,13,DAL,SEA,1,10,47,(1:13) (Shotgun) T.Romo pass incomplete short right (C.Clemons).,7,13,2012 20120916_DAL@SEA,2,31,10,DAL,SEA,2,10,47,(1:10) (Shotgun) T.Romo pass short right to M.Austin to SEA 40 for 7 yards (R.Sherman).,7,13,2012 20120916_DAL@SEA,2,30,51,DAL,SEA,3,3,40,(:51) (Shotgun) T.Romo pass incomplete short middle to M.Austin (C.Clemons) [C.Maragos].,7,13,2012 20120916_DAL@SEA,2,30,44,DAL,SEA,4,3,40,(:44) C.Jones punts 31 yards to SEA 9 Center-L.Ladouceur downed by DAL-D.McCray.,7,13,2012 20120916_DAL@SEA,2,30,35,SEA,DAL,1,10,91,(:35) L.Washington left tackle to SEA 12 for 3 yards (J.Hatcher; S.Lee).,13,7,2012 20120916_DAL@SEA,2,30,31,SEA,DAL,2,7,88,(:31) M.Lynch right tackle to SEA 17 for 5 yards (S.Lee).,13,7,2012 20120916_DAL@SEA,2,30,25,SEA,DAL,3,2,83,(:25) M.Lynch up the middle to SEA 15 for -2 yards (D.Ware).,13,7,2012 20120916_DAL@SEA,2,30,18,SEA,DAL,4,4,85,(:18) J.Ryan punts 50 yards to DAL 35 Center-C.Gresham. D.Bryant MUFFS catch and recovers at DAL 29. D.Bryant to DAL 29 for no gain (B.Obomanu).,13,7,2012 20120916_DAL@SEA,2,30,10,DAL,SEA,1,10,71,(:10) T.Romo kneels to DAL 28 for -1 yards.,7,13,2012 20120916_DAL@SEA,3,30,0,DAL,SEA,,,71,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,7,13,2012 20120916_DAL@SEA,3,30,0,SEA,DAL,1,10,80,(15:00) M.Lynch right tackle to SEA 36 for 16 yards (G.Sensabaugh).,13,7,2012 20120916_DAL@SEA,3,29,10,SEA,DAL,1,10,64,(14:10) M.Lynch left tackle to SEA 39 for 3 yards (A.Spencer; M.Spears).,13,7,2012 20120916_DAL@SEA,3,28,32,SEA,DAL,2,7,61,(13:32) (Shotgun) R.Wilson sacked at SEA 32 for -7 yards (A.Spencer).,13,7,2012 20120916_DAL@SEA,3,27,59,SEA,DAL,3,14,68,(12:59) (Shotgun) R.Wilson pass incomplete short middle to S.Rice (A.Spencer).,13,7,2012 20120916_DAL@SEA,3,27,53,SEA,DAL,4,14,68,(12:53) J.Ryan punts 68 yards to end zone Center-C.Gresham Touchback.,13,7,2012 20120916_DAL@SEA,3,27,44,DAL,SEA,1,10,80,(12:44) D.Murray up the middle to DAL 20 for no gain (A.Branch; K.Wright).,7,13,2012 20120916_DAL@SEA,3,27,6,DAL,SEA,2,10,80,(12:06) (Shotgun) T.Romo pass short left to J.Witten to DAL 31 for 11 yards (B.Browner) [A.Branch].,7,13,2012 20120916_DAL@SEA,3,26,24,DAL,SEA,1,10,69,(11:24) T.Romo pass incomplete deep middle to M.Austin (R.Sherman).,7,13,2012 20120916_DAL@SEA,3,26,15,DAL,SEA,2,10,69,(11:15) T.Romo pass short left to D.Bryant to DAL 32 for 1 yard (B.Browner). FUMBLES (B.Browner) recovered by DAL-D.Free at DAL 33. D.Free to DAL 33 for no gain (A.Branch).,7,13,2012 20120916_DAL@SEA,3,25,28,DAL,SEA,3,8,67,(10:28) T.Romo pass short left to D.Bryant to DAL 38 for 5 yards (K.Chancellor).,7,13,2012 20120916_DAL@SEA,3,24,52,DAL,SEA,4,3,62,(9:52) C.Jones punts 52 yards to SEA 10 Center-L.Ladouceur out of bounds.,7,13,2012 20120916_DAL@SEA,3,24,43,SEA,DAL,1,10,90,(9:43) M.Lynch left tackle to SEA 12 for 2 yards (B.Carter; M.Spears).,13,7,2012 20120916_DAL@SEA,3,24,3,SEA,DAL,2,8,88,(9:03) R.Wilson pass short right to G.Tate pushed ob at SEA 22 for 10 yards (B.Carr).,13,7,2012 20120916_DAL@SEA,3,23,34,SEA,DAL,1,10,78,(8:34) R.Wilson scrambles left end to SEA 30 for 8 yards (B.Carter).,13,7,2012 20120916_DAL@SEA,3,22,51,SEA,DAL,2,2,70,(7:51) R.Turbin left tackle to SEA 36 for 6 yards (S.Lee; D.McCray).,13,7,2012 20120916_DAL@SEA,3,22,13,SEA,DAL,1,10,64,(7:13) R.Turbin up the middle to SEA 39 for 3 yards (S.Lissemore; S.Lee).,13,7,2012 20120916_DAL@SEA,3,21,37,SEA,DAL,2,7,61,(6:37) M.Lynch right tackle to DAL 25 for 36 yards (G.Sensabaugh D.McCray).,13,7,2012 20120916_DAL@SEA,3,20,48,SEA,DAL,1,10,25,(5:48) L.Washington right tackle to DAL 22 for 3 yards (S.Lissemore).,13,7,2012 20120916_DAL@SEA,3,20,12,SEA,DAL,2,7,22,(5:12) R.Wilson pass deep right to A.McCoy for 22 yards TOUCHDOWN.,13,7,2012 20120916_DAL@SEA,3,20,12,SEA,DAL,,,22,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,13,7,2012 20120916_DAL@SEA,3,20,12,SEA,DAL,,,22,S.Hauschka kicks 73 yards from SEA 35 to DAL -8. F.Jones to DAL 21 for 29 yards (E.Thomas; H.Farwell).,20,7,2012 20120916_DAL@SEA,3,19,59,DAL,SEA,1,10,79,(4:59) T.Romo pass short right to J.Phillips to DAL 28 for 7 yards (R.Sherman).,7,20,2012 20120916_DAL@SEA,3,19,32,DAL,SEA,2,3,72,(4:32) D.Murray right end to DAL 30 for 2 yards (K.Chancellor).,7,20,2012 20120916_DAL@SEA,3,18,48,DAL,SEA,3,1,70,(3:48) J.Parnell reported in as eligible. D.Murray right tackle to DAL 32 for 2 yards (K.Chancellor; L.Hill).,7,20,2012 20120916_DAL@SEA,3,18,14,DAL,SEA,1,10,68,(3:14) D.Murray left guard to DAL 36 for 4 yards (B.Wagner).,7,20,2012 20120916_DAL@SEA,3,17,36,DAL,SEA,2,6,64,(2:36) (Shotgun) T.Romo pass short left to D.Bryant to DAL 47 for 11 yards (B.Browner).,7,20,2012 20120916_DAL@SEA,3,16,57,DAL,SEA,1,10,53,(1:57) T.Romo pass short right to F.Jones to DAL 42 for -5 yards (K.Wright).,7,20,2012 20120916_DAL@SEA,3,16,22,DAL,SEA,2,15,58,(1:22) (Shotgun) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 42 - No Play.,7,20,2012 20120916_DAL@SEA,3,15,54,DAL,SEA,2,20,63,(:54) (Shotgun) T.Romo pass incomplete short middle to M.Austin (K.Wright).,7,20,2012 20120916_DAL@SEA,3,15,48,DAL,SEA,3,20,63,(:48) (Shotgun) T.Romo pass incomplete deep middle to M.Austin.,7,20,2012 20120916_DAL@SEA,3,15,41,DAL,SEA,4,20,63,(:41) C.Jones punts 51 yards to SEA 12 Center-L.Ladouceur out of bounds.,7,20,2012 20120916_DAL@SEA,3,15,32,SEA,DAL,1,10,88,(:32) M.Lynch up the middle to SEA 17 for 5 yards (J.Hatcher; B.Carter).,20,7,2012 20120916_DAL@SEA,4,15,0,SEA,DAL,2,5,83,(15:00) R.Wilson pass short right to A.McCoy to SEA 24 for 7 yards (S.Lee).,20,7,2012 20120916_DAL@SEA,4,14,17,SEA,DAL,1,10,76,(14:17) M.Lynch right tackle to SEA 27 for 3 yards (B.Carter; D.Ware).,20,7,2012 20120916_DAL@SEA,4,13,35,SEA,DAL,2,7,73,(13:35) (Shotgun) PENALTY on SEA-F.Omiyale False Start 5 yards enforced at SEA 27 - No Play.,20,7,2012 20120916_DAL@SEA,4,13,18,SEA,DAL,2,12,78,(13:18) R.Wilson scrambles left end ran ob at SEA 36 for 14 yards. PENALTY on DAL-B.Carter Unnecessary Roughness 15 yards enforced at SEA 36.,20,7,2012 20120916_DAL@SEA,4,12,49,SEA,DAL,1,10,49,(12:49) M.Lynch right tackle to DAL 43 for 6 yards (M.Claiborne; D.Connor).,20,7,2012 20120916_DAL@SEA,4,12,9,SEA,DAL,2,4,43,(12:09) M.Lynch right end to DAL 36 for 7 yards (D.Connor D.McCray).,20,7,2012 20120916_DAL@SEA,4,11,25,SEA,DAL,1,10,36,(11:25) R.Turbin up the middle to DAL 31 for 5 yards (B.Carter).,20,7,2012 20120916_DAL@SEA,4,10,42,SEA,DAL,2,5,31,(10:42) R.Wilson pass short left to R.Turbin to DAL 17 for 14 yards (D.McCray).,20,7,2012 20120916_DAL@SEA,4,9,55,SEA,DAL,1,10,17,(9:55) M.Lynch right tackle to DAL 16 for 1 yard (D.Ware).,20,7,2012 20120916_DAL@SEA,4,9,14,SEA,DAL,2,9,16,(9:14) M.Lynch left tackle to DAL 11 for 5 yards (S.Lissemore; S.Lee).,20,7,2012 20120916_DAL@SEA,4,8,31,SEA,DAL,3,4,11,(8:31) R.Wilson pass short right to G.Tate pushed ob at DAL 3 for 8 yards (S.Lee).,20,7,2012 20120916_DAL@SEA,4,8,1,SEA,DAL,1,3,3,(8:01) M.Lynch left tackle for 3 yards TOUCHDOWN.,20,7,2012 20120916_DAL@SEA,4,8,1,SEA,DAL,,,3,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,20,7,2012 20120916_DAL@SEA,4,8,1,SEA,DAL,,,3,S.Hauschka kicks 68 yards from SEA 35 to DAL -3. F.Jones to DAL 19 for 22 yards (M.Robinson).,27,7,2012 20120916_DAL@SEA,4,7,51,DAL,SEA,1,10,81,(7:51) (Shotgun) T.Romo pass incomplete short right to J.Witten.,7,27,2012 20120916_DAL@SEA,4,7,46,DAL,SEA,2,10,81,(7:46) (Shotgun) T.Romo sacked at DAL 15 for -4 yards (sack split by B.Irvin and J.Jones).,7,27,2012 20120916_DAL@SEA,4,7,18,DAL,SEA,3,14,85,(7:18) (No Huddle Shotgun) T.Romo pass incomplete deep left to M.Austin.,7,27,2012 20120916_DAL@SEA,4,7,12,DAL,SEA,4,14,85,(7:12) C.Jones punts 51 yards to SEA 34 Center-L.Ladouceur fair catch by L.Washington.,7,27,2012 20120916_DAL@SEA,4,7,4,SEA,DAL,1,10,66,(7:04) M.Lynch up the middle to SEA 35 for 1 yard (J.Price-Brent; S.Lee).,27,7,2012 20120916_DAL@SEA,4,6,58,SEA,DAL,2,9,65,(6:58) M.Lynch right end to SEA 38 for 3 yards (D.Connor).,27,7,2012 20120916_DAL@SEA,4,6,46,SEA,DAL,3,6,62,(6:46) (Shotgun) R.Wilson sacked at SEA 27 for -11 yards (A.Spencer). PENALTY on DAL-A.Spencer Face Mask (15 Yards) 15 yards enforced at SEA 27.,27,7,2012 20120916_DAL@SEA,4,6,22,SEA,DAL,1,10,58,(6:22) R.Wilson pass short right to A.McCoy to SEA 47 for 5 yards (S.Lee; S.Lissemore) [J.Price-Brent].,27,7,2012 20120916_DAL@SEA,4,6,14,SEA,DAL,2,5,53,(6:14) M.Lynch left guard to DAL 49 for 4 yards (M.Spears; A.Spencer).,27,7,2012 20120916_DAL@SEA,4,5,29,SEA,DAL,3,1,49,(5:29) M.Robinson up the middle to DAL 47 for 2 yards (J.Price-Brent; S.Lee).,27,7,2012 20120916_DAL@SEA,4,4,43,SEA,DAL,1,10,47,(4:43) M.Lynch right tackle to DAL 44 for 3 yards (S.Lee; M.Spears).,27,7,2012 20120916_DAL@SEA,4,4,2,SEA,DAL,2,7,44,(4:02) M.Lynch left guard to DAL 42 for 2 yards (J.Price-Brent; B.Carter).,27,7,2012 20120916_DAL@SEA,4,3,20,SEA,DAL,3,5,42,(3:20) (Shotgun) R.Wilson pass incomplete short left to L.Washington (V.Butler).,27,7,2012 20120916_DAL@SEA,4,3,16,SEA,DAL,4,5,42,(3:16) (Punt formation) PENALTY on DAL Defensive 12 On-field 4 yards enforced at DAL 42 - No Play. 4 yard penalty because 1 yard remained for first down.,27,7,2012 20120916_DAL@SEA,4,3,8,SEA,DAL,4,1,38,(3:08) R.Wilson up the middle to DAL 36 for 2 yards (S.Lissemore; D.Ware). QB Sneak,27,7,2012 20120916_DAL@SEA,4,2,27,SEA,DAL,1,10,36,(2:27) R.Turbin up the middle to DAL 34 for 2 yards (S.Lee; D.Ware).,27,7,2012 20120916_DAL@SEA,4,2,0,SEA,DAL,2,8,34,(2:00) R.Turbin left tackle to DAL 35 for -1 yards (D.Ware; S.Lee).,27,7,2012 20120916_DAL@SEA,4,1,19,SEA,DAL,3,9,35,(1:19) L.Washington up the middle to DAL 30 for 5 yards (S.Lissemore).,27,7,2012 20120916_DAL@SEA,4,0,43,SEA,DAL,4,4,30,(:43) L.Washington left guard to DAL 30 for no gain (V.Butler S.Lissemore).,27,7,2012 20120916_DAL@SEA,4,0,36,DAL,SEA,1,10,70,(:36) (Shotgun) T.Romo pass short middle to F.Jones to DAL 43 for 13 yards (R.Sherman).,7,27,2012 20120916_DAL@SEA,4,0,13,DAL,SEA,1,10,57,(:13) (No Huddle Shotgun) T.Romo pass short left to M.Austin pushed ob at SEA 42 for 15 yards (K.Chancellor).,7,27,2012 20120916_DAL@SEA,4,0,5,DAL,SEA,1,10,42,(:05) (No Huddle Shotgun) T.Romo pass short right to F.Jones to SEA 19 for 23 yards (K.Chancellor).,7,27,2012 20120916_DAL@SEA,4,0,5,DAL,SEA,,,42,                      ,7,27,2012 20120916_WAS@STL,1,0,0,WAS,STL,,,42,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,0,0,2012 20120916_WAS@STL,1,60,0,STL,WAS,1,10,80,(15:00) S.Bradford pass short left to D.Amendola to SL 33 for 13 yards (P.Riley). FUMBLES (P.Riley) RECOVERED by WAS-J.Wilson at SL 30. J.Wilson for 30 yards TOUCHDOWN.,0,0,2012 20120916_WAS@STL,1,60,0,WAS,STL,,,80,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,0,0,2012 20120916_WAS@STL,1,60,0,WAS,STL,,,80,B.Cundiff kicks 68 yards from WAS 35 to SL -3. I.Pead to SL 9 for 12 yards (L.Alexander).,7,0,2012 20120916_WAS@STL,1,59,45,STL,WAS,1,10,91,(14:45) (Shotgun) S.Bradford pass short right to D.Amendola to SL 17 for 8 yards (D.Hall). WAS-A.Carriker was injured during the play. His return is Questionable. PENALTY on WAS-D.Hall Defensive Holding 5 yards enforced at SL 9 - No Play.,0,7,2012 20120916_WAS@STL,1,59,28,STL,WAS,1,10,86,(14:28) S.Bradford pass short right to D.Amendola pushed ob at SL 26 for 12 yards (D.Hall). PENALTY on WAS-L.Fletcher Personal Foul 15 yards enforced at SL 26.,0,7,2012 20120916_WAS@STL,1,58,56,STL,WAS,1,10,59,(13:56) S.Bradford pass short left to D.Amendola to SL 41 for no gain (B.Orakpo).,0,7,2012 20120916_WAS@STL,1,58,14,STL,WAS,2,10,59,(13:14) S.Bradford pass short middle to D.Amendola to WAS 44 for 15 yards (Mad.Williams).,0,7,2012 20120916_WAS@STL,1,57,33,STL,WAS,1,10,44,(12:33) S.Bradford pass incomplete deep right to C.Givens (D.Gomes).,0,7,2012 20120916_WAS@STL,1,57,25,STL,WAS,2,10,44,(12:25) S.Bradford pass short right to D.Amendola to WAS 37 for 7 yards (Mad.Williams).,0,7,2012 20120916_WAS@STL,1,56,38,STL,WAS,3,3,37,(11:38) (Shotgun) S.Bradford pass short left to D.Amendola to WAS 29 for 8 yards (D.Hall).,0,7,2012 20120916_WAS@STL,1,55,59,STL,WAS,1,10,29,(10:59) S.Jackson right tackle ran ob at WAS 15 for 14 yards (Mad.Williams).,0,7,2012 20120916_WAS@STL,1,55,29,STL,WAS,1,10,15,(10:29) S.Bradford pass incomplete short left to B.Gibson.,0,7,2012 20120916_WAS@STL,1,55,22,STL,WAS,2,10,15,(10:22) (Shotgun) PENALTY on SL-B.Richardson False Start 5 yards enforced at WAS 15 - No Play.,0,7,2012 20120916_WAS@STL,1,55,22,STL,WAS,2,15,20,(10:22) S.Jackson right tackle to WAS 19 for 1 yard (B.Orakpo).,0,7,2012 20120916_WAS@STL,1,54,44,STL,WAS,3,14,19,(9:44) (Shotgun) S.Bradford sacked at WAS 26 for -7 yards (B.Orakpo). FUMBLES (B.Orakpo) recovered by SL-R.Saffold at WAS 28. R.Saffold to WAS 21 for 7 yards (D.Hall). SL-R.Saffold was injured during the play. His return is Questionable.,0,7,2012 20120916_WAS@STL,1,54,11,STL,WAS,4,16,21,(9:11) G.Zuerlein 39 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,7,2012 20120916_WAS@STL,1,54,11,STL,WAS,,,21,G.Zuerlein kicks 70 yards from SL 35 to WAS -5. B.Banks to WAS 20 for 25 yards (Q.Mikell).,3,7,2012 20120916_WAS@STL,1,54,0,WAS,STL,1,10,80,(9:00) (Shotgun) A.Morris left tackle to WAS 26 for 6 yards (J.Laurinaitis).,7,3,2012 20120916_WAS@STL,1,53,25,WAS,STL,2,4,74,(8:25) (Shotgun) A.Morris left tackle to WAS 25 for -1 yards (J.Jenkins).,7,3,2012 20120916_WAS@STL,1,52,44,WAS,STL,3,5,75,(7:44) (Shotgun) R.Griffin pass short middle to A.Robinson to WAS 37 for 12 yards (J.Jenkins).,7,3,2012 20120916_WAS@STL,1,51,58,WAS,STL,1,10,63,(6:58) (Shotgun) R.Griffin right end to WAS 33 for -4 yards (J.Dunbar).,7,3,2012 20120916_WAS@STL,1,51,36,WAS,STL,2,14,67,(6:36) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 39 for 6 yards (E.Sims).,7,3,2012 20120916_WAS@STL,1,50,59,WAS,STL,3,8,61,(5:59) (Shotgun) R.Griffin sacked at WAS 30 for -9 yards (R.Quinn).,7,3,2012 20120916_WAS@STL,1,50,47,WAS,STL,4,17,70,(5:47) S.Rocca punts 54 yards to SL 16 Center-J.Snow. D.Amendola pushed ob at SL 38 for 22 yards (L.Alexander).,7,3,2012 20120916_WAS@STL,1,50,33,STL,WAS,1,10,62,(5:33) S.Bradford pass incomplete deep right to C.Givens (D.Hall).,3,7,2012 20120916_WAS@STL,1,50,27,STL,WAS,2,10,62,(5:27) (Shotgun) S.Bradford pass short left to D.Amendola to SL 46 for 8 yards (D.Gomes).,3,7,2012 20120916_WAS@STL,1,49,44,STL,WAS,3,2,54,(4:44) (Shotgun) S.Bradford pass short left to D.Richardson pushed ob at SL 47 for 1 yard (J.Wilson).,3,7,2012 20120916_WAS@STL,1,49,31,STL,WAS,4,1,53,(4:31) J.Hekker punts 53 yards to end zone Center-J.McQuaide Touchback.,3,7,2012 20120916_WAS@STL,1,49,24,WAS,STL,1,10,80,(4:24) (Shotgun) R.Griffin pass short left to J.Morgan to WAS 32 for 12 yards (R.Quinn).,7,3,2012 20120916_WAS@STL,1,48,50,WAS,STL,1,10,68,(3:50) (Shotgun) A.Morris right tackle to WAS 35 for 3 yards (C.Long).,7,3,2012 20120916_WAS@STL,1,48,14,WAS,STL,2,7,65,(3:14) (Shotgun) R.Griffin pass incomplete short right [J.Dunbar]. PENALTY on WAS-R.Griffin Intentional Grounding 11 yards enforced at WAS 35.,7,3,2012 20120916_WAS@STL,1,48,3,WAS,STL,3,18,76,(3:03) (Shotgun) R.Griffin scrambles right end pushed ob at WAS 34 for 10 yards (E.Sims). PENALTY on SL-E.Sims Personal Foul 15 yards enforced at WAS 34.,7,3,2012 20120916_WAS@STL,1,47,43,WAS,STL,1,10,51,(2:43) (Shotgun) A.Morris right tackle to SL 45 for 6 yards (J.Laurinaitis).,7,3,2012 20120916_WAS@STL,1,47,8,WAS,STL,2,4,45,(2:08) (Shotgun) A.Morris right end pushed ob at SL 18 for 27 yards (C.Dahl).,7,3,2012 20120916_WAS@STL,1,46,40,WAS,STL,1,10,18,(1:40) R.Griffin scrambles left end ran ob at SL 14 for 4 yards (J.Dunbar).,7,3,2012 20120916_WAS@STL,1,46,9,WAS,STL,2,6,14,(1:09) (Shotgun) A.Morris right tackle to SL 11 for 3 yards (W.Hayes).,7,3,2012 20120916_WAS@STL,1,45,27,WAS,STL,3,3,11,(:27) (Shotgun) R.Griffin pass incomplete short middle to L.Hankerson. PENALTY on SL-R.Quinn Personal Foul 6 yards enforced at SL 11.,7,3,2012 20120916_WAS@STL,1,45,23,WAS,STL,1,5,5,(:23) (Shotgun) R.Griffin left end for 5 yards TOUCHDOWN.,7,3,2012 20120916_WAS@STL,1,45,23,WAS,STL,,,5,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,7,3,2012 20120916_WAS@STL,1,45,23,WAS,STL,,,5,B.Cundiff kicks 74 yards from WAS 35 to SL -9. I.Pead Touchback.,14,3,2012 20120916_WAS@STL,1,45,19,STL,WAS,1,10,80,(:19) S.Jackson up the middle to SL 32 for 12 yards (L.Fletcher).,3,14,2012 20120916_WAS@STL,2,45,0,STL,WAS,1,10,68,(15:00) S.Jackson right end to SL 41 for 9 yards (L.Fletcher).,3,14,2012 20120916_WAS@STL,2,44,22,STL,WAS,2,1,59,(14:22) (No Huddle) PENALTY on SL-H.Dahl False Start 5 yards enforced at SL 41 - No Play.,3,14,2012 20120916_WAS@STL,2,44,3,STL,WAS,2,6,64,(14:03) S.Bradford pass short left to D.Amendola to SL 44 for 8 yards (D.Hall).,3,14,2012 20120916_WAS@STL,2,43,29,STL,WAS,1,10,56,(13:29) (No Huddle) S.Jackson up the middle to SL 43 for -1 yards (R.Kerrigan).,3,14,2012 20120916_WAS@STL,2,42,53,STL,WAS,2,11,57,(12:53) (No Huddle Shotgun) S.Bradford pass incomplete short right to B.Gibson [S.Bowen].,3,14,2012 20120916_WAS@STL,2,42,48,STL,WAS,3,11,57,(12:48) (Shotgun) S.Bradford pass short middle to B.Gibson to WAS 38 for 19 yards (D.Hall).,3,14,2012 20120916_WAS@STL,2,42,11,STL,WAS,1,10,38,(12:11) (No Huddle) S.Bradford pass incomplete short right to D.Amendola.,3,14,2012 20120916_WAS@STL,2,42,6,STL,WAS,2,10,38,(12:06) (No Huddle) S.Jackson right guard to WAS 18 for 20 yards (D.Hall Mad.Williams).,3,14,2012 20120916_WAS@STL,2,41,20,STL,WAS,1,10,18,(11:20) (No Huddle) S.Bradford pass incomplete short left to B.Quick.,3,14,2012 20120916_WAS@STL,2,41,16,STL,WAS,2,10,18,(11:16) (No Huddle) D.Richardson up the middle to WAS 10 for 8 yards (Mad.Williams).,3,14,2012 20120916_WAS@STL,2,40,29,STL,WAS,3,2,10,(10:29) S.Bradford pass short right to D.Amendola to WAS 4 for 6 yards (C.Griffin).,3,14,2012 20120916_WAS@STL,2,39,49,STL,WAS,1,4,4,(9:49) S.Jackson up the middle to WAS 1 for 3 yards (D.Gomes).,3,14,2012 20120916_WAS@STL,2,39,9,STL,WAS,2,1,1,(9:09) S.Jackson right guard to WAS 1 for no gain (R.Kerrigan). FUMBLES (R.Kerrigan) RECOVERED by WAS-R.Kerrigan at WAS 3. R.Kerrigan to WAS 3 for no gain (T.Nsekhe). St. Louis challenged the fumble ruling and the play was REVERSED. S.Jackson right guard to WAS 1 for no gain (R.Kerrigan).,3,14,2012 20120916_WAS@STL,2,38,57,STL,WAS,3,1,1,(8:57) S.Jackson right guard to WAS 1 for no gain (J.Jenkins). PENALTY on SL-S.Jackson Unsportsmanlike Conduct 14 yards enforced at WAS 1.,3,14,2012 20120916_WAS@STL,2,38,22,STL,WAS,4,15,15,(8:22) G.Zuerlein 33 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,14,2012 20120916_WAS@STL,2,38,22,STL,WAS,,,15,G.Zuerlein kicks 73 yards from SL 35 to WAS -8. B.Banks Touchback.,6,14,2012 20120916_WAS@STL,2,38,17,WAS,STL,1,10,80,(8:17) R.Griffin pass short left to S.Moss to WAS 23 for 3 yards (J.Jenkins).,14,6,2012 20120916_WAS@STL,2,37,39,WAS,STL,2,7,77,(7:39) (Shotgun) A.Morris right end to WAS 23 for no gain (C.Finnegan).,14,6,2012 20120916_WAS@STL,2,36,59,WAS,STL,3,7,77,(6:59) (Shotgun) R.Griffin pass short right to J.Morgan pushed ob at WAS 32 for 9 yards (J.Laurinaitis).,14,6,2012 20120916_WAS@STL,2,36,28,WAS,STL,1,10,68,(6:28) R.Griffin pass deep middle to L.Hankerson for 68 yards TOUCHDOWN.,14,6,2012 20120916_WAS@STL,2,36,28,WAS,STL,,,68,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,14,6,2012 20120916_WAS@STL,2,36,28,WAS,STL,,,68,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,21,6,2012 20120916_WAS@STL,2,36,19,STL,WAS,1,10,80,(6:19) S.Bradford pass deep middle to D.Amendola to WAS 24 for 56 yards (D.Gomes).,6,21,2012 20120916_WAS@STL,2,35,30,STL,WAS,1,10,24,(5:30) D.Richardson right tackle to WAS 24 for no gain (R.Jackson).,6,21,2012 20120916_WAS@STL,2,34,46,STL,WAS,2,10,24,(4:46) (Shotgun) S.Bradford pass short right to D.Amendola to WAS 22 for 2 yards (R.Crawford) [R.Kerrigan].,6,21,2012 20120916_WAS@STL,2,34,6,STL,WAS,3,8,22,(4:06) (Shotgun) S.Bradford pass short right to L.Kendricks to WAS 8 for 14 yards (C.Griffin).,6,21,2012 20120916_WAS@STL,2,33,26,STL,WAS,1,8,8,(3:26) (Shotgun) D.Richardson up the middle to WAS 4 for 4 yards (P.Riley).,6,21,2012 20120916_WAS@STL,2,32,43,STL,WAS,2,4,4,(2:43) (Shotgun) D.Richardson left guard to WAS 1 for 3 yards (Mad.Williams).,6,21,2012 20120916_WAS@STL,2,32,3,STL,WAS,3,1,1,(2:03) S.Bradford pass short left to D.Amendola for 1 yard TOUCHDOWN.,6,21,2012 20120916_WAS@STL,2,32,3,STL,WAS,,,1,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,6,21,2012 20120916_WAS@STL,2,32,3,,STL,,,1,G.Zuerlein kicks 75 yards from SL 30 to WAS -5. B.Banks to WAS 21 for 26 yards (B.Fletcher).,21,13,2012 20120916_WAS@STL,2,31,51,WAS,STL,1,10,79,(1:51) (Shotgun) R.Griffin pass short left to L.Hankerson pushed ob at WAS 21 for no gain (J.Jenkins).,21,13,2012 20120916_WAS@STL,2,31,47,WAS,STL,2,10,79,(1:47) (Shotgun) R.Griffin pass short left to R.Helu to WAS 21 for no gain (J.Dunbar).,21,13,2012 20120916_WAS@STL,2,31,1,WAS,STL,3,10,79,(1:01) (Shotgun) R.Griffin up the middle to WAS 36 for 15 yards (J.Laurinaitis; C.Dahl).,21,13,2012 20120916_WAS@STL,2,30,52,WAS,STL,1,10,64,(:52) (Shotgun) R.Griffin pass short middle intended for F.Davis INTERCEPTED by C.Finnegan at WAS 45. C.Finnegan to WAS 40 for 5 yards (R.Helu).,21,13,2012 20120916_WAS@STL,2,30,45,STL,WAS,1,10,40,(:45) (Shotgun) S.Bradford pass short right to S.Smith to WAS 32 for 8 yards (Mad.Williams).,13,21,2012 20120916_WAS@STL,2,30,26,STL,WAS,2,2,32,(:26) (No Huddle Shotgun) S.Bradford scrambles up the middle to WAS 20 for 12 yards (L.Fletcher).,13,21,2012 20120916_WAS@STL,2,30,18,STL,WAS,1,10,20,(:18) (Shotgun) S.Bradford pass short middle to S.Smith to WAS 14 for 6 yards (D.Gomes).,13,21,2012 20120916_WAS@STL,2,30,11,STL,WAS,2,4,14,(:11) (Shotgun) S.Bradford pass incomplete short middle to B.Gibson. PENALTY on SL-W.Hunter Offensive Holding 10 yards enforced at WAS 14 - No Play.,13,21,2012 20120916_WAS@STL,2,30,7,STL,WAS,2,14,24,(:07) G.Zuerlein 42 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,13,21,2012 20120916_WAS@STL,2,30,7,STL,WAS,,,24,G.Zuerlein kicks 51 yards from SL 35 to WAS 14. B.Banks to WAS 16 for 2 yards (I.Pead).,16,21,2012 20120916_WAS@STL,3,30,0,STL,WAS,,,24,G.Zuerlein kicks 50 yards from SL 35 to WAS 15. N.Paul to WAS 15 for no gain (C.Dahl).,16,21,2012 20120916_WAS@STL,3,29,54,WAS,STL,1,10,85,(14:54) A.Morris left tackle to WAS 18 for 3 yards (R.Quinn). Direct Snap to 46 - A. Morris,21,16,2012 20120916_WAS@STL,3,29,15,WAS,STL,2,7,82,(14:15) (Shotgun) PENALTY on WAS-K.Lichtensteiger False Start 5 yards enforced at WAS 18 - No Play.,21,16,2012 20120916_WAS@STL,3,28,50,WAS,STL,2,12,87,(13:50) (Shotgun) F.Davis left tackle to WAS 14 for 1 yard (J.Dunbar).,21,16,2012 20120916_WAS@STL,3,28,15,WAS,STL,3,11,86,(13:15) (Shotgun) R.Griffin pass short right to N.Paul to WAS 18 for 4 yards (C.Finnegan).,21,16,2012 20120916_WAS@STL,3,27,44,WAS,STL,4,7,82,(12:44) S.Rocca punts 51 yards to SL 31 Center-J.Snow. D.Amendola to SL 37 for 6 yards (R.Doughty).,21,16,2012 20120916_WAS@STL,3,27,34,STL,WAS,1,10,63,(12:34) S.Bradford pass incomplete short left to D.Richardson (S.Bowen).,16,21,2012 20120916_WAS@STL,3,27,29,STL,WAS,2,10,63,(12:29) (No Huddle Shotgun) S.Bradford pass short middle to S.Smith to 50 for 13 yards. PENALTY on WAS-B.Orakpo Defensive Offside 5 yards enforced at SL 37 - No Play.,16,21,2012 20120916_WAS@STL,3,26,58,STL,WAS,2,5,58,(11:58) (Shotgun) S.Bradford pass short left to S.Smith to WAS 33 for 25 yards (C.Griffin).,16,21,2012 20120916_WAS@STL,3,26,11,STL,WAS,1,10,33,(11:11) (No Huddle) D.Richardson right tackle to WAS 34 for -1 yards (D.Hall).,16,21,2012 20120916_WAS@STL,3,25,32,STL,WAS,2,11,34,(10:32) S.Bradford pass deep right to B.Gibson for 34 yards TOUCHDOWN.,16,21,2012 20120916_WAS@STL,3,25,32,STL,WAS,,,34,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,16,21,2012 20120916_WAS@STL,3,25,32,STL,WAS,,,34,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,23,21,2012 20120916_WAS@STL,3,25,23,WAS,STL,1,10,80,(10:23) R.Griffin pass short left to A.Robinson ran ob at WAS 48 for 28 yards (C.Dahl).,21,23,2012 20120916_WAS@STL,3,25,1,WAS,STL,1,10,52,(10:01) A.Morris left end to SL 47 for 5 yards (K.Heard).,21,23,2012 20120916_WAS@STL,3,24,21,WAS,STL,2,5,47,(9:21) A.Morris left tackle to SL 18 for 29 yards (W.Hayes).,21,23,2012 20120916_WAS@STL,3,23,36,WAS,STL,1,10,18,(8:36) (Shotgun) A.Morris left end to SL 14 for 4 yards (C.Dahl).,21,23,2012 20120916_WAS@STL,3,22,58,WAS,STL,2,6,14,(7:58) A.Morris left tackle to SL 9 for 5 yards (J.Laurinaitis; C.Long).,21,23,2012 20120916_WAS@STL,3,22,18,WAS,STL,3,1,9,(7:18) R.Griffin pass short right to F.Davis to SL 1 for 8 yards (M.Haggan).,21,23,2012 20120916_WAS@STL,3,21,33,WAS,STL,1,1,1,(6:33) PENALTY on WAS-N.Paul False Start 5 yards enforced at SL 1 - No Play.,21,23,2012 20120916_WAS@STL,3,21,13,WAS,STL,1,6,6,(6:13) A.Morris left end to SL 7 for -1 yards (J.Laurinaitis).,21,23,2012 20120916_WAS@STL,3,20,33,WAS,STL,2,7,7,(5:33) (Shotgun) R.Griffin up the middle for 7 yards TOUCHDOWN.,21,23,2012 20120916_WAS@STL,3,20,33,WAS,STL,,,7,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,21,23,2012 20120916_WAS@STL,3,20,33,WAS,STL,,,7,B.Cundiff kicks 73 yards from WAS 35 to SL -8. C.Givens Touchback.,28,23,2012 20120916_WAS@STL,3,20,27,STL,WAS,1,10,80,(5:27) S.Bradford sacked at SL 13 for -7 yards (S.Bowen). Penalty on SL-W.Hunter Offensive Holding declined.,23,28,2012 20120916_WAS@STL,3,20,8,STL,WAS,2,17,87,(5:08) (Shotgun) S.Bradford pass short right to L.Kendricks to SL 24 for 11 yards (D.Gomes).,23,28,2012 20120916_WAS@STL,3,19,27,STL,WAS,3,6,76,(4:27) (Shotgun) S.Bradford pass short right to D.Amendola pushed ob at SL 41 for 17 yards (D.Gomes).,23,28,2012 20120916_WAS@STL,3,19,11,STL,WAS,1,10,59,(4:11) D.Richardson right end to WAS 6 for 53 yards (J.Wilson). WAS-J.Wilson was injured during the play.,23,28,2012 20120916_WAS@STL,3,18,31,STL,WAS,1,6,6,(3:31) (Shotgun) S.Bradford pass short middle intended for S.Smith INTERCEPTED by L.Fletcher at WAS -5. Touchback.,23,28,2012 20120916_WAS@STL,3,18,25,WAS,STL,1,10,80,(3:25) (Shotgun) A.Morris right end to WAS 23 for 3 yards (J.Laurinaitis).,28,23,2012 20120916_WAS@STL,3,17,47,WAS,STL,2,7,77,(2:47) R.Griffin pass short right to N.Paul to WAS 24 for 1 yard (Q.Mikell).,28,23,2012 20120916_WAS@STL,3,17,4,WAS,STL,3,6,76,(2:04) (Shotgun) R.Griffin pass incomplete short right to D.Briscoe (B.Fletcher).,28,23,2012 20120916_WAS@STL,3,17,4,WAS,STL,4,6,76,(2:04) S.Rocca punt is BLOCKED by M.Mulligan Center-J.Snow RECOVERED by SL-E.Sims at WAS 24. E.Sims to WAS 24 for no gain (P.Riley).,28,23,2012 20120916_WAS@STL,3,16,51,STL,WAS,1,10,24,(1:51) D.Richardson up the middle to WAS 21 for 3 yards (D.Gomes).,23,28,2012 20120916_WAS@STL,3,16,13,STL,WAS,2,7,21,(1:13) (Shotgun) S.Bradford pass short right to D.Amendola to WAS 19 for 2 yards (D.Hall).,23,28,2012 20120916_WAS@STL,3,15,29,STL,WAS,3,5,19,(:29) (Shotgun) S.Bradford pass short right to D.Richardson to WAS 1 for 18 yards (C.Griffin).,23,28,2012 20120916_WAS@STL,4,15,0,STL,WAS,1,1,1,(15:00) S.Bradford pass short middle to M.Mulligan for 1 yard TOUCHDOWN.,23,28,2012 20120916_WAS@STL,4,15,0,STL,WAS,,,1,(Pass formation) TWO-POINT CONVERSION ATTEMPT. D.Richardson rushes up the middle. ATTEMPT SUCCEEDS. Play Challenged by Replay Assistant and Upheld.,23,28,2012 20120916_WAS@STL,4,15,0,STL,WAS,,,1,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,31,28,2012 20120916_WAS@STL,4,14,55,WAS,STL,1,10,80,(14:55) R.Griffin pass incomplete short right.,28,31,2012 20120916_WAS@STL,4,14,45,WAS,STL,2,10,80,(14:45) (Shotgun) A.Morris left tackle to WAS 21 for 1 yard (J.Laurinaitis).,28,31,2012 20120916_WAS@STL,4,14,6,WAS,STL,3,9,79,(14:06) (Shotgun) R.Griffin pass short right to J.Morgan to WAS 29 for 8 yards (B.Fletcher).,28,31,2012 20120916_WAS@STL,4,13,33,WAS,STL,4,1,71,(13:33) S.Rocca punts 55 yards to SL 16 Center-J.Snow. D.Amendola to SL 17 for 1 yard (L.Alexander). PENALTY on WAS-L.Alexander Horse Collar Tackle 15 yards enforced at SL 17.,28,31,2012 20120916_WAS@STL,4,13,25,STL,WAS,1,10,68,(13:25) D.Richardson left end to SL 32 for no gain (S.Bowen).,31,28,2012 20120916_WAS@STL,4,12,50,STL,WAS,2,10,68,(12:50) (Shotgun) S.Bradford pass incomplete short left to S.Smith (P.Riley).,31,28,2012 20120916_WAS@STL,4,12,42,STL,WAS,3,10,68,(12:42) S.Bradford pass short middle to D.Amendola to SL 40 for 8 yards (R.Crawford).,31,28,2012 20120916_WAS@STL,4,12,5,STL,WAS,4,2,60,(12:05) J.Hekker punts 44 yards to WAS 16 Center-J.McQuaide out of bounds.,31,28,2012 20120916_WAS@STL,4,12,0,WAS,STL,1,10,84,(12:00) (Shotgun) PENALTY on WAS-S.Moss False Start 5 yards enforced at WAS 16 - No Play.,28,31,2012 20120916_WAS@STL,4,12,0,WAS,STL,1,15,89,(12:00) R.Griffin pass short middle to J.Morgan to WAS 25 for 14 yards (Q.Mikell).,28,31,2012 20120916_WAS@STL,4,11,29,WAS,STL,2,1,75,(11:29) (Shotgun) R.Griffin right end to WAS 31 for 6 yards (C.Finnegan).,28,31,2012 20120916_WAS@STL,4,10,44,WAS,STL,1,10,69,(10:44) R.Griffin pass incomplete deep right to A.Robinson.,28,31,2012 20120916_WAS@STL,4,10,34,WAS,STL,2,10,69,(10:34) (Shotgun) R.Griffin up the middle to WAS 45 for 14 yards (C.Dahl).,28,31,2012 20120916_WAS@STL,4,9,56,WAS,STL,1,10,55,(9:56) R.Griffin left end ran ob at SL 46 for 9 yards (J.Jenkins).,28,31,2012 20120916_WAS@STL,4,9,23,WAS,STL,2,1,46,(9:23) (Shotgun) E.Royster up the middle to SL 42 for 4 yards (C.Long).,28,31,2012 20120916_WAS@STL,4,8,49,WAS,STL,1,10,42,(8:49) A.Morris right tackle to SL 46 for -4 yards (R.McIntosh).,28,31,2012 20120916_WAS@STL,4,8,9,WAS,STL,2,14,46,(8:09) (Shotgun) R.Griffin pass short right to E.Royster pushed ob at SL 44 for 2 yards (J.Dunbar) [W.Hayes].,28,31,2012 20120916_WAS@STL,4,7,49,WAS,STL,3,12,44,(7:49) (Shotgun) R.Griffin scrambles right end to SL 39 for 5 yards (C.Finnegan).,28,31,2012 20120916_WAS@STL,4,7,13,WAS,STL,4,7,39,(7:13) S.Rocca punts 28 yards to SL 11 Center-J.Snow fair catch by D.Amendola.,28,31,2012 20120916_WAS@STL,4,7,7,STL,WAS,1,10,89,(7:07) D.Richardson up the middle to SL 12 for 1 yard (P.Riley). SL-W.Hunter was injured during the play.,31,28,2012 20120916_WAS@STL,4,6,34,STL,WAS,2,9,88,(6:34) D.Richardson left end to SL 14 for 2 yards (P.Riley).,31,28,2012 20120916_WAS@STL,4,5,53,STL,WAS,3,7,86,(5:53) (Shotgun) D.Richardson left end to SL 10 for -4 yards (C.Griffin).,31,28,2012 20120916_WAS@STL,4,5,7,STL,WAS,4,11,90,(5:07) J.Hekker punts 66 yards to WAS 24 Center-J.McQuaide. B.Banks to WAS 21 for -3 yards (M.Haggan).,31,28,2012 20120916_WAS@STL,4,4,54,WAS,STL,1,10,79,(4:54) (Shotgun) R.Griffin pass incomplete short left to F.Davis (J.Jenkins).,28,31,2012 20120916_WAS@STL,4,4,45,WAS,STL,2,10,79,(4:45) (Shotgun) R.Griffin pass incomplete short middle to F.Davis [R.Quinn]. PENALTY on WAS-T.Williams Offensive Holding 10 yards enforced at WAS 21 - No Play.,28,31,2012 20120916_WAS@STL,4,4,40,WAS,STL,2,20,89,(4:40) (Shotgun) R.Griffin pass incomplete short middle to E.Royster [K.Langford].,28,31,2012 20120916_WAS@STL,4,4,35,WAS,STL,3,20,89,(4:35) (Shotgun) R.Griffin pass short left to N.Paul to WAS 19 for 8 yards (J.Laurinaitis).,28,31,2012 20120916_WAS@STL,4,4,5,WAS,STL,4,12,81,(4:05) S.Rocca punts 52 yards to SL 29 Center-J.Snow. D.Amendola to SL 29 for no gain (N.Paul).,28,31,2012 20120916_WAS@STL,4,3,54,STL,WAS,1,10,71,(3:54) S.Bradford pass short right to M.Mulligan pushed ob at SL 42 for 13 yards (L.Fletcher).,31,28,2012 20120916_WAS@STL,4,3,47,STL,WAS,1,10,58,(3:47) D.Richardson up the middle to SL 44 for 2 yards (Mad.Williams).,31,28,2012 20120916_WAS@STL,4,3,40,STL,WAS,2,8,56,(3:40) PENALTY on WAS-S.Bowen Defensive Offside 5 yards enforced at SL 44 - No Play.,31,28,2012 20120916_WAS@STL,4,3,40,STL,WAS,2,3,51,(3:40) D.Richardson right guard to WAS 46 for 5 yards (L.Fletcher).,31,28,2012 20120916_WAS@STL,4,3,33,STL,WAS,1,10,46,(3:33) D.Richardson left tackle to WAS 41 for 5 yards (P.Riley).,31,28,2012 20120916_WAS@STL,4,2,50,STL,WAS,2,5,41,(2:50) D.Richardson right tackle to WAS 39 for 2 yards (L.Fletcher). FUMBLES (L.Fletcher) RECOVERED by WAS-D.Hall at WAS 37. D.Hall to WAS 37 for no gain (L.Kendricks).,31,28,2012 20120916_WAS@STL,4,2,40,WAS,STL,1,10,63,(2:40) (Shotgun) R.Griffin pass short left to E.Royster to WAS 42 for 5 yards (J.Dunbar).,28,31,2012 20120916_WAS@STL,4,2,13,WAS,STL,2,5,58,(2:13) (Shotgun) R.Griffin pass short middle to S.Moss to SL 49 for 9 yards (J.Laurinaitis).,28,31,2012 20120916_WAS@STL,4,2,0,WAS,STL,1,10,49,(2:00) (Shotgun) R.Griffin right end pushed ob at SL 38 for 11 yards (C.Dahl).,28,31,2012 20120916_WAS@STL,4,1,53,WAS,STL,1,10,38,(1:53) (Shotgun) R.Griffin pass incomplete short left to F.Davis.,28,31,2012 20120916_WAS@STL,4,1,50,WAS,STL,2,10,38,(1:50) (Shotgun) R.Griffin pass short middle to S.Moss to SL 36 for 2 yards (J.Dunbar).,28,31,2012 20120916_WAS@STL,4,1,27,WAS,STL,3,8,36,(1:27) (Shotgun) R.Griffin pass short right to J.Morgan to SL 29 for 7 yards (C.Finnegan). PENALTY on WAS-J.Morgan Unsportsmanlike Conduct 15 yards enforced at SL 29.,28,31,2012 20120916_WAS@STL,4,1,18,WAS,STL,4,16,44,(1:18) B.Cundiff 62 yard field goal is No Good Short Center-J.Snow Holder-S.Rocca.,28,31,2012 20120916_WAS@STL,4,1,13,STL,WAS,1,10,48,(1:13) S.Bradford kneels to WAS 49 for -1 yards.,31,28,2012 20120916_WAS@STL,4,0,35,STL,WAS,2,11,49,(:35) S.Bradford kneels to 50 for -1 yards.,31,28,2012 20120916_WAS@STL,4,0,35,STL,WAS,,,49,                      ,31,28,2012 20120916_NYJ@PIT,1,0,0,NYJ,PIT,,,49,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,0,0,2012 20120916_NYJ@PIT,1,60,0,PIT,NYJ,1,10,80,(15:00) B.Roethlisberger pass short right to A.Brown to PIT 28 for 8 yards (Y.Bell; D.Harris).,0,0,2012 20120916_NYJ@PIT,1,59,28,PIT,NYJ,2,2,72,(14:28) I.Redman left end to PIT 21 for -7 yards (B.Scott; D.Harris).,0,0,2012 20120916_NYJ@PIT,1,58,43,PIT,NYJ,3,9,79,(13:43) (Shotgun) A.Brown right end to PIT 30 for 9 yards (Y.Bell).,0,0,2012 20120916_NYJ@PIT,1,58,9,PIT,NYJ,1,10,70,(13:09) I.Redman right guard to PIT 31 for 1 yard (M.Wilkerson S.Pouha).,0,0,2012 20120916_NYJ@PIT,1,57,27,PIT,NYJ,2,9,69,(12:27) B.Roethlisberger pass deep left to M.Wallace to PIT 49 for 18 yards (L.Landry; A.Cromartie).,0,0,2012 20120916_NYJ@PIT,1,56,40,PIT,NYJ,1,10,51,(11:40) B.Roethlisberger pass short left to W.Johnson to NYJ 25 for 26 yards (G.McIntyre).,0,0,2012 20120916_NYJ@PIT,1,56,3,PIT,NYJ,1,10,25,(11:03) (Shotgun) B.Roethlisberger pass short right to M.Wallace to NYJ 19 for 6 yards (A.Cromartie).,0,0,2012 20120916_NYJ@PIT,1,55,28,PIT,NYJ,2,4,19,(10:28) I.Redman up the middle to NYJ 22 for -3 yards (G.McIntyre; K.Ellis).,0,0,2012 20120916_NYJ@PIT,1,54,44,PIT,NYJ,3,7,22,(9:44) (Shotgun) B.Roethlisberger sacked at NYJ 27 for -5 yards (G.McIntyre).,0,0,2012 20120916_NYJ@PIT,1,54,12,PIT,NYJ,4,12,27,(9:12) (Field Goal formation) S.Suisham 45 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 20120916_NYJ@PIT,1,54,12,PIT,NYJ,,,27,S.Suisham kicks 66 yards from PIT 35 to NYJ -1. J.McKnight to NYJ 23 for 24 yards (K.Lewis). PENALTY on NYJ-B.Powell Offensive Holding 10 yards enforced at NYJ 20.,3,0,2012 20120916_NYJ@PIT,1,54,1,NYJ,PIT,1,10,90,(9:01) S.Greene left guard to NYJ 15 for 5 yards (C.Hampton; R.Mundy).,0,3,2012 20120916_NYJ@PIT,1,53,23,NYJ,PIT,2,5,85,(8:23) S.Greene left end to NYJ 16 for 1 yard (R.Clark L.Foote).,0,3,2012 20120916_NYJ@PIT,1,52,49,NYJ,PIT,3,4,84,(7:49) PENALTY on NYJ Illegal Substitution 5 yards enforced at NYJ 16 - No Play.,0,3,2012 20120916_NYJ@PIT,1,52,27,NYJ,PIT,3,9,89,(7:27) (Shotgun) M.Sanchez pass short right to S.Holmes to NYJ 22 for 11 yards (C.Allen).,0,3,2012 20120916_NYJ@PIT,1,51,39,NYJ,PIT,1,10,78,(6:39) M.Sanchez pass incomplete deep left to S.Holmes. Pressure by #23 Lewis #99 Keisel.,0,3,2012 20120916_NYJ@PIT,1,51,32,NYJ,PIT,2,10,78,(6:32) M.Sanchez pass incomplete short right to S.Holmes. PENALTY on PIT-I.Taylor Defensive Pass Interference 12 yards enforced at NYJ 22 - No Play. Pressure by #54 Carter Coverage by #24 Taylor.,0,3,2012 20120916_NYJ@PIT,1,51,27,NYJ,PIT,1,10,66,(6:27) M.Sanchez pass deep left to J.Kerley to PIT 21 for 45 yards (K.Lewis).,0,3,2012 20120916_NYJ@PIT,1,50,46,NYJ,PIT,1,10,21,(5:46) S.Greene right guard to PIT 24 for -3 yards (L.Timmons).,0,3,2012 20120916_NYJ@PIT,1,50,2,NYJ,PIT,2,13,24,(5:02) (Shotgun) M.Sanchez pass short right to E.Gates to PIT 14 for 10 yards (K.Lewis).,0,3,2012 20120916_NYJ@PIT,1,49,24,NYJ,PIT,3,3,14,(4:24) M.Sanchez pass short right to S.Holmes for 14 yards TOUCHDOWN.,0,3,2012 20120916_NYJ@PIT,1,49,24,NYJ,PIT,,,14,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,3,2012 20120916_NYJ@PIT,1,49,24,NYJ,PIT,,,14,N.Folk kicks 62 yards from NYJ 35 to PIT 3. C.Rainey to PIT 25 for 22 yards (J.McKnight I.Trufant).,7,3,2012 20120916_NYJ@PIT,1,49,14,PIT,NYJ,1,10,75,(4:14) (Shotgun) B.Roethlisberger pass short left to A.Brown to PIT 35 for 10 yards (E.Lankster).,3,7,2012 20120916_NYJ@PIT,1,48,31,PIT,NYJ,1,10,65,(3:31) I.Redman left tackle to PIT 48 for 13 yards (Y.Bell).,3,7,2012 20120916_NYJ@PIT,1,47,56,PIT,NYJ,1,10,52,(2:56) I.Redman up the middle to PIT 50 for 2 yards (B.Scott; M.Devito).,3,7,2012 20120916_NYJ@PIT,1,47,19,PIT,NYJ,2,8,50,(2:19) B.Roethlisberger pass incomplete short middle to E.Sanders (S.Pouha).,3,7,2012 20120916_NYJ@PIT,1,47,14,PIT,NYJ,3,8,50,(2:14) (Shotgun) B.Roethlisberger pass short right to A.Brown to NYJ 32 for 18 yards (E.Lankster).,3,7,2012 20120916_NYJ@PIT,1,46,42,PIT,NYJ,1,10,32,(1:42) I.Redman right tackle to NYJ 33 for -1 yards (G.McIntyre).,3,7,2012 20120916_NYJ@PIT,1,45,57,PIT,NYJ,2,11,33,(:57) B.Roethlisberger pass short right to M.Wallace to NYJ 26 for 7 yards (A.Cromartie).,3,7,2012 20120916_NYJ@PIT,1,45,15,PIT,NYJ,3,4,26,(:15) (Shotgun) C.Rainey left guard to NYJ 27 for -1 yards (Q.Coples; J.Bush).,3,7,2012 20120916_NYJ@PIT,2,45,0,PIT,NYJ,4,5,27,(15:00) (Field Goal formation) S.Suisham 45 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,3,7,2012 20120916_NYJ@PIT,2,45,0,PIT,NYJ,,,27,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,6,7,2012 20120916_NYJ@PIT,2,44,55,NYJ,PIT,1,10,80,(14:55) S.Greene right tackle to NYJ 26 for 6 yards (L.Foote).,7,6,2012 20120916_NYJ@PIT,2,44,25,NYJ,PIT,2,4,74,(14:25) S.Greene left guard to NYJ 27 for 1 yard (L.Foote).,7,6,2012 20120916_NYJ@PIT,2,43,51,NYJ,PIT,3,3,73,(13:51) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley [L.Timmons]. PENALTY on PIT-L.Timmons Personal Foul 15 yards enforced at NYJ 27 - No Play.,7,6,2012 20120916_NYJ@PIT,2,43,44,NYJ,PIT,1,10,58,(13:44) S.Greene up the middle to NYJ 46 for 4 yards (S.McLendon).,7,6,2012 20120916_NYJ@PIT,2,43,9,NYJ,PIT,2,6,54,(13:09) M.Sanchez pass incomplete deep left to S.Holmes. PENALTY on PIT-I.Taylor Defensive Holding 5 yards enforced at NYJ 46 - No Play.,7,6,2012 20120916_NYJ@PIT,2,43,4,NYJ,PIT,1,10,49,(13:04) M.Sanchez pass incomplete deep right to S.Hill (R.Clark).,7,6,2012 20120916_NYJ@PIT,2,42,56,NYJ,PIT,2,10,49,(12:56) S.Greene up the middle to PIT 40 for 9 yards (R.Mundy).,7,6,2012 20120916_NYJ@PIT,2,42,19,NYJ,PIT,3,1,40,(12:19) B.Powell right guard to PIT 38 for 2 yards (B.Keisel).,7,6,2012 20120916_NYJ@PIT,2,41,39,NYJ,PIT,1,10,38,(11:39) B.Powell left tackle to PIT 34 for 4 yards (L.Foote).,7,6,2012 20120916_NYJ@PIT,2,41,7,NYJ,PIT,2,6,34,(11:07) B.Powell left guard to PIT 24 for 10 yards (R.Mundy).,7,6,2012 20120916_NYJ@PIT,2,40,30,NYJ,PIT,1,10,24,(10:30) M.Sanchez pass incomplete deep middle to S.Holmes. Coverage by #24 Taylor.,7,6,2012 20120916_NYJ@PIT,2,40,25,NYJ,PIT,2,10,24,(10:25) B.Powell up the middle to PIT 19 for 5 yards (R.Clark L.Foote).,7,6,2012 20120916_NYJ@PIT,2,39,43,NYJ,PIT,3,5,19,(9:43) (Shotgun) M.Sanchez pass incomplete short middle to J.Cumberland. Coverage by #29 Mundy.,7,6,2012 20120916_NYJ@PIT,2,39,38,NYJ,PIT,4,5,19,(9:38) (Field Goal formation) N.Folk 38 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,7,6,2012 20120916_NYJ@PIT,2,39,38,NYJ,PIT,,,19,N.Folk kicks 69 yards from NYJ 35 to PIT -4. C.Rainey to PIT 19 for 23 yards (J.Bush).,10,6,2012 20120916_NYJ@PIT,2,39,29,PIT,NYJ,1,10,81,(9:29) J.Dwyer up the middle to PIT 21 for 2 yards (B.Scott).,6,10,2012 20120916_NYJ@PIT,2,38,48,PIT,NYJ,2,8,79,(8:48) B.Roethlisberger sacked at PIT 19 for -2 yards (S.Pouha).,6,10,2012 20120916_NYJ@PIT,2,38,3,PIT,NYJ,3,10,81,(8:03) (Shotgun) B.Roethlisberger pass incomplete deep right to A.Brown (E.Lankster).,6,10,2012 20120916_NYJ@PIT,2,37,54,PIT,NYJ,4,10,81,(7:54) (Punt formation) D.Butler punts 42 yards to NYJ 39 Center-G.Warren. J.Kerley to NYJ 42 for 3 yards (D.Paulson).,6,10,2012 20120916_NYJ@PIT,2,37,47,NYJ,PIT,1,10,58,(7:47) J.Smith reported in as eligible. M.Sanchez pass incomplete short right to B.Powell. Pressure by #94 Timmons #56 Woodley.,10,6,2012 20120916_NYJ@PIT,2,37,40,NYJ,PIT,2,10,58,(7:40) B.Powell up the middle to NYJ 42 for no gain (C.Hampton B.Keisel).,10,6,2012 20120916_NYJ@PIT,2,37,0,NYJ,PIT,3,10,58,(7:00) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes. Coverage by #24 Taylor.,10,6,2012 20120916_NYJ@PIT,2,36,55,NYJ,PIT,4,10,58,(6:55) (Punt formation) R.Malone punts 58 yards to end zone Center-T.Purdum Touchback.,10,6,2012 20120916_NYJ@PIT,2,36,43,PIT,NYJ,1,10,80,(6:43) B.Roethlisberger pass short right to L.Pope to PIT 27 for 7 yards (C.Pace).,6,10,2012 20120916_NYJ@PIT,2,35,58,PIT,NYJ,2,3,73,(5:58) B.Roethlisberger pass short middle to J.Dwyer to PIT 39 for 12 yards (D.Harris).,6,10,2012 20120916_NYJ@PIT,2,35,13,PIT,NYJ,1,10,61,(5:13) J.Dwyer right tackle to PIT 40 for 1 yard (D.Harris).,6,10,2012 20120916_NYJ@PIT,2,34,29,PIT,NYJ,2,9,60,(4:29) (Shotgun) B.Roethlisberger pass incomplete short left to A.Brown. Coverage by #30 Landry.,6,10,2012 20120916_NYJ@PIT,2,34,23,PIT,NYJ,3,9,60,(4:23) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to 50 for 10 yards (K.Wilson).,6,10,2012 20120916_NYJ@PIT,2,33,40,PIT,NYJ,1,10,50,(3:40) J.Dwyer right guard to NYJ 46 for 4 yards (M.Devito; C.Pace).,6,10,2012 20120916_NYJ@PIT,2,32,58,PIT,NYJ,2,6,46,(2:58) B.Roethlisberger pass short left to E.Sanders to NYJ 27 for 19 yards (D.Harris; L.Landry). PENALTY on NYJ-L.Landry Personal Foul 13 yards enforced at NYJ 27.,6,10,2012 20120916_NYJ@PIT,2,32,29,PIT,NYJ,1,10,14,(2:29) J.Dwyer right guard to NYJ 8 for 6 yards (K.Wilson).,6,10,2012 20120916_NYJ@PIT,2,32,0,PIT,NYJ,2,4,8,(2:00) (Shotgun) J.Dwyer right guard to NYJ 7 for 1 yard (M.Wilkerson; K.Ellis).,6,10,2012 20120916_NYJ@PIT,2,31,52,PIT,NYJ,3,3,7,(1:52) (Shotgun) B.Roethlisberger pass short middle to J.Cotchery to NYJ 1 for 6 yards (Y.Bell B.Scott).,6,10,2012 20120916_NYJ@PIT,2,31,8,PIT,NYJ,1,1,1,(1:08) B.Roethlisberger pass short left to H.Miller for 1 yard TOUCHDOWN.,6,10,2012 20120916_NYJ@PIT,2,31,8,PIT,NYJ,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,6,10,2012 20120916_NYJ@PIT,2,31,8,PIT,NYJ,,,1,S.Suisham kicks 67 yards from PIT 35 to NYJ -2. J.McKnight to NYJ 31 for 33 yards (B.Johnson).,13,10,2012 20120916_NYJ@PIT,2,30,57,NYJ,PIT,1,10,69,(:57) B.Powell right guard to NYJ 33 for 2 yards (R.Clark).,10,13,2012 20120916_NYJ@PIT,2,30,15,NYJ,PIT,2,8,67,(:15) B.Powell up the middle to NYJ 35 for 2 yards (L.Timmons).,10,13,2012 20120916_NYJ@PIT,3,30,0,PIT,NYJ,,,67,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,13,10,2012 20120916_NYJ@PIT,3,30,0,NYJ,PIT,1,10,80,(15:00) M.Sanchez pass short right to K.Reuland to NYJ 27 for 7 yards (L.Woodley).,10,13,2012 20120916_NYJ@PIT,3,29,21,NYJ,PIT,2,3,73,(14:21) S.Greene right guard to NYJ 29 for 2 yards (R.Clark).,10,13,2012 20120916_NYJ@PIT,3,28,45,NYJ,PIT,3,1,71,(13:45) J.Smith reported in as eligible. S.Greene up the middle to NYJ 31 for 2 yards (E.Hood).,10,13,2012 20120916_NYJ@PIT,3,28,3,NYJ,PIT,1,10,69,(13:03) J.Smith reported in as eligible. M.Sanchez pass incomplete short right to S.Holmes. PENALTY on NYJ-S.Greene Offensive Holding 10 yards enforced at NYJ 31 - No Play.,10,13,2012 20120916_NYJ@PIT,3,27,34,NYJ,PIT,1,20,79,(12:34) S.Greene up the middle to NYJ 23 for 2 yards (B.Keisel; S.McLendon).,10,13,2012 20120916_NYJ@PIT,3,26,58,NYJ,PIT,2,18,77,(11:58) M.Sanchez pass short right to J.Cumberland to NYJ 25 for 2 yards (R.Clark B.Johnson).,10,13,2012 20120916_NYJ@PIT,3,26,15,NYJ,PIT,3,16,75,(11:15) (Shotgun) M.Sanchez sacked at NYJ 19 for -6 yards (L.Woodley).,10,13,2012 20120916_NYJ@PIT,3,26,9,NYJ,PIT,4,22,81,(11:09) (Punt formation) R.Malone punts 53 yards to PIT 28 Center-T.Purdum. C.Rainey to PIT 41 for 13 yards (G.McIntyre).,10,13,2012 20120916_NYJ@PIT,3,25,58,PIT,NYJ,1,10,59,(10:58) J.Dwyer right guard to PIT 43 for 2 yards (B.Scott C.Pace).,13,10,2012 20120916_NYJ@PIT,3,25,15,PIT,NYJ,2,8,57,(10:15) B.Roethlisberger pass short left to A.Brown to NYJ 46 for 11 yards (L.Landry). PENALTY on NYJ-L.Landry Horse Collar Tackle 15 yards enforced at NYJ 46.,13,10,2012 20120916_NYJ@PIT,3,24,45,PIT,NYJ,1,10,31,(9:45) B.Roethlisberger pass incomplete short right to J.Cotchery (D.Harris).,13,10,2012 20120916_NYJ@PIT,3,24,40,PIT,NYJ,2,10,31,(9:40) J.Dwyer left tackle to NYJ 37 for -6 yards (M.Wilkerson).,13,10,2012 20120916_NYJ@PIT,3,23,53,PIT,NYJ,3,16,37,(8:53) (Shotgun) B.Roethlisberger pass deep right to M.Wallace for 37 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,10,2012 20120916_NYJ@PIT,3,23,53,PIT,NYJ,,,37,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,13,10,2012 20120916_NYJ@PIT,3,23,53,PIT,NYJ,,,37,S.Suisham kicks 70 yards from PIT 35 to NYJ -5. J.McKnight to NYJ 27 for 32 yards (J.Worilds). NYJ-J.Conner was injured during the play.,20,10,2012 20120916_NYJ@PIT,3,23,39,NYJ,PIT,1,10,73,(8:39) (Shotgun) T.Tebow left guard to NYJ 49 for 22 yards (R.Clark).,10,20,2012 20120916_NYJ@PIT,3,22,57,NYJ,PIT,1,10,51,(7:57) (Shotgun) J.McKnight right end to PIT 39 for 12 yards (R.Mundy B.Keisel).,10,20,2012 20120916_NYJ@PIT,3,22,2,NYJ,PIT,1,10,39,(7:02) (Shotgun) S.Greene right tackle to PIT 45 for -6 yards (R.Clark).,10,20,2012 20120916_NYJ@PIT,3,21,23,NYJ,PIT,2,16,45,(6:23) M.Sanchez pass incomplete short left to S.Hill. Pressure by #94 Timmons #56 Woodley Coverage by #23 Lewis.,10,20,2012 20120916_NYJ@PIT,3,21,16,NYJ,PIT,3,16,45,(6:16) M.Sanchez pass incomplete short left to S.Holmes (I.Taylor).,10,20,2012 20120916_NYJ@PIT,3,21,10,NYJ,PIT,4,16,45,(6:10) (Punt formation) R.Malone punts 41 yards to PIT 4 Center-T.Purdum downed by NYJ-E.Lankster.,10,20,2012 20120916_NYJ@PIT,3,20,58,PIT,NYJ,1,10,96,(5:58) B.Roethlisberger pass short right to C.Rainey pushed ob at PIT 9 for 5 yards (C.Pace).,20,10,2012 20120916_NYJ@PIT,3,20,26,PIT,NYJ,2,5,91,(5:26) J.Dwyer right guard to PIT 9 for no gain (B.Scott; D.Harris).,20,10,2012 20120916_NYJ@PIT,3,19,41,PIT,NYJ,3,5,91,(4:41) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 14 for 5 yards (D.Harris; B.Scott). Official Measurement. New York Jets challenged the first down ruling and the play was REVERSED. (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 13 for 4 yards (D.Harris; B.Scott). Official Measurement.,20,10,2012 20120916_NYJ@PIT,3,19,37,PIT,NYJ,4,1,87,(4:37) (Punt formation) D.Butler punts 49 yards to NYJ 38 Center-G.Warren. J.Kerley MUFFS catch RECOVERED by PIT-R.Mundy at NYJ 42. R.Mundy to NYJ 42 for no gain (J.Kerley). Penalty on NYJ-K.Wilson Illegal Block Above the Waist declined.,20,10,2012 20120916_NYJ@PIT,3,19,27,PIT,NYJ,1,10,42,(4:27) C.Rainey up the middle to NYJ 38 for 4 yards (B.Scott).,20,10,2012 20120916_NYJ@PIT,3,18,44,PIT,NYJ,2,6,38,(3:44) B.Roethlisberger pass incomplete deep right to J.Dwyer.,20,10,2012 20120916_NYJ@PIT,3,18,35,PIT,NYJ,3,6,38,(3:35) (Shotgun) B.Roethlisberger pass incomplete short left to C.Rainey.,20,10,2012 20120916_NYJ@PIT,3,18,31,PIT,NYJ,4,6,38,(3:31) (Shotgun) PENALTY on PIT-B.Roethlisberger Delay of Game 5 yards enforced at NYJ 38 - No Play.,20,10,2012 20120916_NYJ@PIT,3,18,31,PIT,NYJ,4,11,43,(3:31) (Punt formation) D.Butler punts 37 yards to NYJ 6 Center-G.Warren downed by PIT-C.Carter.,20,10,2012 20120916_NYJ@PIT,3,18,19,NYJ,PIT,1,10,94,(3:19) M.Sanchez pass short middle to K.Reuland to NYJ 19 for 13 yards (L.Foote R.Clark).,10,20,2012 20120916_NYJ@PIT,3,17,43,NYJ,PIT,1,10,81,(2:43) J.Smith reported in as eligible. B.Powell right guard to NYJ 24 for 5 yards (L.Timmons; C.Hampton).,10,20,2012 20120916_NYJ@PIT,3,17,3,NYJ,PIT,2,5,76,(2:03) (Shotgun) J.Smith reported in as eligible. M.Sanchez pass incomplete short right to S.Holmes. Coverage by #24 Taylor.,10,20,2012 20120916_NYJ@PIT,3,16,57,NYJ,PIT,3,5,76,(1:57) (Shotgun) M.Sanchez pass incomplete short middle to J.Kerley. Coverage by #29 Mundy.,10,20,2012 20120916_NYJ@PIT,3,16,52,NYJ,PIT,4,5,76,(1:52) (Punt formation) R.Malone punts 32 yards to PIT 44 Center-T.Purdum downed by NYJ-I.Trufant. PENALTY on NYJ-I.Trufant Illegal Touch Kick 5 yards enforced at PIT 44.,10,20,2012 20120916_NYJ@PIT,3,16,42,PIT,NYJ,1,10,51,(1:42) J.Dwyer right guard to NYJ 44 for 7 yards (D.Harris). PENALTY on PIT-M.Gilbert Offensive Holding 10 yards enforced at PIT 49 - No Play.,20,10,2012 20120916_NYJ@PIT,3,16,8,PIT,NYJ,1,20,61,(1:08) B.Roethlisberger pass incomplete deep right to A.Brown. PENALTY on PIT-B.Roethlisberger Intentional Grounding 10 yards enforced at PIT 39.,20,10,2012 20120916_NYJ@PIT,3,16,1,PIT,NYJ,2,30,71,(1:01) B.Roethlisberger pass short left to A.Brown to PIT 27 for -2 yards (E.Lankster).,20,10,2012 20120916_NYJ@PIT,3,15,16,PIT,NYJ,3,32,73,(:16) (Shotgun) B.Roethlisberger pass deep middle to A.Brown to NYJ 48 for 25 yards (K.Wilson).,20,10,2012 20120916_NYJ@PIT,4,15,0,PIT,NYJ,4,7,48,(15:00) (Punt formation) D.Butler punts 38 yards to NYJ 10 Center-G.Warren fair catch by J.Kerley. PENALTY on PIT-W.Allen Defensive Holding 10 yards enforced at NYJ 10.,20,10,2012 20120916_NYJ@PIT,4,14,53,NYJ,PIT,1,10,80,(14:53) M.Sanchez pass incomplete deep left to S.Holmes (R.Clark). PENALTY on PIT-I.Taylor Defensive Pass Interference 19 yards enforced at NYJ 20 - No Play.,10,20,2012 20120916_NYJ@PIT,4,14,46,NYJ,PIT,1,10,61,(14:46) B.Powell up the middle to NYJ 42 for 3 yards (L.Foote B.Keisel).,10,20,2012 20120916_NYJ@PIT,4,14,8,NYJ,PIT,2,7,58,(14:08) M.Sanchez pass incomplete short right to S.Holmes (I.Taylor).,10,20,2012 20120916_NYJ@PIT,4,14,2,NYJ,PIT,3,7,58,(14:02) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley (C.Allen). Pressure by #56 Woodley.,10,20,2012 20120916_NYJ@PIT,4,13,56,NYJ,PIT,4,7,58,(13:56) (Punt formation) R.Malone punts 33 yards to PIT 25 Center-T.Purdum out of bounds.,10,20,2012 20120916_NYJ@PIT,4,13,47,PIT,NYJ,1,10,75,(13:47) I.Redman up the middle to PIT 28 for 3 yards (M.Wilkerson; L.Landry).,20,10,2012 20120916_NYJ@PIT,4,13,4,PIT,NYJ,2,7,72,(13:04) (Shotgun) B.Roethlisberger pass short right to M.Wallace to PIT 34 for 6 yards (K.Wilson).,20,10,2012 20120916_NYJ@PIT,4,12,23,PIT,NYJ,3,1,66,(12:23) I.Redman left guard to PIT 44 for 10 yards (Y.Bell K.Wilson).,20,10,2012 20120916_NYJ@PIT,4,11,38,PIT,NYJ,1,10,56,(11:38) (Shotgun) I.Redman up the middle to PIT 42 for -2 yards (G.McIntyre).,20,10,2012 20120916_NYJ@PIT,4,10,54,PIT,NYJ,2,12,58,(10:54) (Shotgun) B.Roethlisberger pass short left to H.Miller to PIT 50 for 8 yards (D.Harris L.Landry).,20,10,2012 20120916_NYJ@PIT,4,10,10,PIT,NYJ,3,4,50,(10:10) (Shotgun) B.Roethlisberger pass short left to H.Miller to PIT 50 for no gain (Y.Bell). PENALTY on NYJ-Y.Bell Defensive Holding 5 yards enforced at PIT 50 - No Play.,20,10,2012 20120916_NYJ@PIT,4,9,39,PIT,NYJ,1,10,45,(9:39) B.Roethlisberger sacked at NYJ 48 for -3 yards (G.McIntyre).,20,10,2012 20120916_NYJ@PIT,4,8,58,PIT,NYJ,2,13,48,(8:58) (Shotgun) PENALTY on PIT-M.Pouncey False Start 5 yards enforced at NYJ 48 - No Play.,20,10,2012 20120916_NYJ@PIT,4,8,35,PIT,NYJ,2,18,53,(8:35) B.Roethlisberger pass short left to I.Redman to NYJ 39 for 14 yards (M.Devito).,20,10,2012 20120916_NYJ@PIT,4,7,48,PIT,NYJ,3,4,39,(7:48) (Shotgun) B.Roethlisberger pass short right to A.Brown to NYJ 30 for 9 yards (L.Landry).,20,10,2012 20120916_NYJ@PIT,4,7,8,PIT,NYJ,1,10,30,(7:08) I.Redman left tackle to NYJ 24 for 6 yards (M.Devito Y.Bell). New York Jets challenged the fumble ruling and the play was Upheld. (Timeout #1.),20,10,2012 20120916_NYJ@PIT,4,6,27,PIT,NYJ,2,4,24,(6:27) I.Redman right tackle to NYJ 23 for 1 yard (K.Wilson).,20,10,2012 20120916_NYJ@PIT,4,5,43,PIT,NYJ,3,3,23,(5:43) B.Roethlisberger pass short right to H.Miller to NYJ 13 for 10 yards (Y.Bell).,20,10,2012 20120916_NYJ@PIT,4,5,8,PIT,NYJ,1,10,13,(5:08) J.Dwyer left tackle to NYJ 9 for 4 yards (K.Wilson).,20,10,2012 20120916_NYJ@PIT,4,4,29,PIT,NYJ,2,6,9,(4:29) J.Dwyer right end to NYJ 2 for 7 yards (Y.Bell L.Landry).,20,10,2012 20120916_NYJ@PIT,4,3,41,PIT,NYJ,1,2,2,(3:41) I.Redman right tackle for 2 yards TOUCHDOWN.,20,10,2012 20120916_NYJ@PIT,4,3,41,PIT,NYJ,,,2,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,20,10,2012 20120916_NYJ@PIT,4,3,41,PIT,NYJ,,,2,S.Suisham kicks 74 yards from PIT 35 to NYJ -9. J.McKnight to NYJ 17 for 26 yards (B.Johnson; C.Carter).,27,10,2012 20120916_NYJ@PIT,4,3,30,NYJ,PIT,1,10,83,(3:30) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes. Coverage by #24 Taylor Pressure by #25 Clark.,10,27,2012 20120916_NYJ@PIT,4,3,26,NYJ,PIT,2,10,83,(3:26) (Shotgun) M.Sanchez pass incomplete short right to S.Holmes. Coverage by #28 Allen.,10,27,2012 20120916_NYJ@PIT,4,3,21,NYJ,PIT,3,10,83,(3:21) (Shotgun) M.Sanchez pass incomplete short middle to J.Cumberland (L.Timmons) [L.Woodley].,10,27,2012 20120916_NYJ@PIT,4,3,15,NYJ,PIT,4,10,83,(3:15) (Punt formation) R.Malone punts 55 yards to PIT 28 Center-T.Purdum. A.Brown to PIT 38 for 10 yards (E.Lankster).,10,27,2012 20120916_NYJ@PIT,4,3,4,PIT,NYJ,1,10,62,(3:04) J.Dwyer up the middle to PIT 41 for 3 yards (M.Devito D.Harris).,27,10,2012 20120916_NYJ@PIT,4,2,18,PIT,NYJ,2,7,59,(2:18) J.Dwyer up the middle to PIT 45 for 4 yards (Y.Bell).,27,10,2012 20120916_NYJ@PIT,4,2,0,PIT,NYJ,3,3,55,(2:00) B.Batch right guard to PIT 46 for 1 yard (Y.Bell; D.Harris).,27,10,2012 20120916_NYJ@PIT,4,1,18,PIT,NYJ,4,2,54,(1:18) (Punt formation) D.Butler punts 39 yards to NYJ 15 Center-G.Warren. J.Kerley to NYJ 18 for 3 yards (G.Warren).,27,10,2012 20120916_NYJ@PIT,4,1,7,NYJ,PIT,1,10,82,(1:07) (Shotgun) M.Sanchez pass short left to J.Cumberland to NYJ 29 for 11 yards (R.Mundy C.Carter).,10,27,2012 20120916_NYJ@PIT,4,0,42,NYJ,PIT,1,10,71,(:42) (No Huddle Shotgun) M.Sanchez pass incomplete short middle to B.Powell.,10,27,2012 20120916_NYJ@PIT,4,0,36,NYJ,PIT,2,10,71,(:36) (Shotgun) M.Sanchez pass incomplete short middle to S.Holmes (K.Lewis). PENALTY on PIT-K.Lewis Defensive Pass Interference 16 yards enforced at NYJ 29 - No Play.,10,27,2012 20120916_NYJ@PIT,4,0,28,NYJ,PIT,1,10,55,(:28) (No Huddle Shotgun) M.Sanchez pass deep middle to J.Kerley to PIT 33 for 22 yards (L.Timmons). Penalty on PIT Defensive Holding declined.,10,27,2012 20120916_NYJ@PIT,4,0,21,NYJ,PIT,1,10,33,(:21) (Shotgun) M.Sanchez pass incomplete deep middle to J.Cumberland. Coverage by #94 Timmons.,10,27,2012 20120916_NYJ@PIT,4,0,16,NYJ,PIT,2,10,33,(:16) (Shotgun) M.Sanchez pass short left to S.Holmes to PIT 30 for 3 yards (K.Lewis).,10,27,2012 20120916_NYJ@PIT,4,0,10,NYJ,PIT,3,7,30,(:10) (Shotgun) M.Sanchez sacked at PIT 33 for -3 yards (C.Heyward).,10,27,2012 20120916_NYJ@PIT,4,0,10,NYJ,PIT,,,30,                      ,10,27,2012 20120916_TEN@SD,1,0,0,TEN,SD,,,30,R.Bironas kicks 73 yards from TEN 35 to SD -8. R.Goodman to SD 29 for 37 yards (J.Babineaux).,0,0,2012 20120916_TEN@SD,1,59,55,SD,TEN,1,10,71,(14:55) C.Brinkley up the middle to SD 32 for 3 yards (M.Martin W.Witherspoon).,0,0,2012 20120916_TEN@SD,1,59,15,SD,TEN,2,7,68,(14:15) (Shotgun) P.Rivers pass incomplete short left to E.Royal.,0,0,2012 20120916_TEN@SD,1,59,10,SD,TEN,3,7,68,(14:10) (Shotgun) P.Rivers pass short right to R.Brown to SD 39 for 7 yards (J.McCourty J.Babineaux).,0,0,2012 20120916_TEN@SD,1,58,23,SD,TEN,1,10,61,(13:23) P.Rivers pass deep right to M.Floyd to TEN 34 for 27 yards (J.McCourty). Penalty on TEN-J.McCourty Defensive Holding declined.,0,0,2012 20120916_TEN@SD,1,57,57,SD,TEN,1,10,34,(12:57) P.Rivers pass incomplete deep right to R.Meachem.,0,0,2012 20120916_TEN@SD,1,57,49,SD,TEN,2,10,34,(12:49) (Shotgun) R.Brown up the middle to TEN 32 for 2 yards (Z.Brown).,0,0,2012 20120916_TEN@SD,1,57,9,SD,TEN,3,8,32,(12:09) (Shotgun) P.Rivers pass short left to M.Floyd pushed ob at TEN 18 for 14 yards (M.Griffin). Penalty on TEN-S.Hutchinson Defensive Offside declined.,0,0,2012 20120916_TEN@SD,1,56,38,SD,TEN,1,10,18,(11:38) P.Rivers pass short right to C.Brinkley to TEN 11 for 7 yards (J.Casey). PENALTY on TEN-M.Martin Neutral Zone Infraction 5 yards enforced at TEN 18 - No Play.,0,0,2012 20120916_TEN@SD,1,56,11,SD,TEN,1,5,13,(11:11) C.Brinkley right tackle to TEN 9 for 4 yards (D.Morgan).,0,0,2012 20120916_TEN@SD,1,55,32,SD,TEN,2,1,9,(10:32) C.Brinkley left tackle to TEN 7 for 2 yards (W.Witherspoon M.Martin).,0,0,2012 20120916_TEN@SD,1,54,47,SD,TEN,1,7,7,(9:47) P.Rivers pass incomplete short middle to M.Floyd. San Diego challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),0,0,2012 20120916_TEN@SD,1,54,41,SD,TEN,2,7,7,(9:41) P.Rivers pass short middle to C.Brinkley to TEN 11 for -4 yards (R.Johnson).,0,0,2012 20120916_TEN@SD,1,53,59,SD,TEN,3,11,11,(8:59) (Shotgun) P.Rivers pass short left to D.Rosario for 11 yards TOUCHDOWN.,0,0,2012 20120916_TEN@SD,1,53,59,SD,TEN,,,11,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 20120916_TEN@SD,1,53,59,SD,TEN,,,11,N.Kaeding kicks 62 yards from SD 35 to TEN 3. D.Reynaud to TEN 21 for 18 yards (A.Gachkar M.Gilchrist).,7,0,2012 20120916_TEN@SD,1,53,44,TEN,SD,1,10,79,(8:44) C.Johnson up the middle to TEN 23 for 2 yards (E.Weddle D.Butler).,0,7,2012 20120916_TEN@SD,1,53,9,TEN,SD,2,8,77,(8:09) (Shotgun) J.Locker pass deep right intended for J.Cook INTERCEPTED by E.Weddle [S.Phillips] at TEN 39. E.Weddle to TEN 31 for 8 yards (J.Cook).,0,7,2012 20120916_TEN@SD,1,52,58,SD,TEN,1,10,31,(7:58) C.Brinkley right end to TEN 34 for -3 yards (R.Johnson D.Morgan).,7,0,2012 20120916_TEN@SD,1,52,17,SD,TEN,2,13,34,(7:17) (Shotgun) P.Rivers pass short left to C.Brinkley to TEN 26 for 8 yards (A.Ayers Z.Brown).,7,0,2012 20120916_TEN@SD,1,51,29,SD,TEN,3,5,26,(6:29) (Shotgun) P.Rivers pass short middle to E.Royal to TEN 6 for 20 yards (M.Griffin R.Mouton).,7,0,2012 20120916_TEN@SD,1,50,45,SD,TEN,1,6,6,(5:45) C.Brinkley right end to TEN 5 for 1 yard (Z.Brown W.Witherspoon).,7,0,2012 20120916_TEN@SD,1,50,4,SD,TEN,2,5,5,(5:04) (Shotgun) R.Brown right tackle to TEN 4 for 1 yard (A.Ayers).,7,0,2012 20120916_TEN@SD,1,49,20,SD,TEN,3,4,4,(4:20) (Shotgun) P.Rivers pass short middle to D.Rosario for 4 yards TOUCHDOWN.,7,0,2012 20120916_TEN@SD,1,49,20,SD,TEN,,,4,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,7,0,2012 20120916_TEN@SD,1,49,20,SD,TEN,,,4,N.Kaeding kicks 70 yards from SD 35 to TEN -5. D.Reynaud to TEN 11 for 16 yards (J.Battle D.Stuckey).,14,0,2012 20120916_TEN@SD,1,49,10,TEN,SD,1,10,89,(4:10) C.Johnson right tackle to TEN 12 for 1 yard (S.Phillips).,0,14,2012 20120916_TEN@SD,1,48,35,TEN,SD,2,9,88,(3:35) C.Johnson right end to TEN 12 for no gain (A.Franklin).,0,14,2012 20120916_TEN@SD,1,47,54,TEN,SD,3,9,88,(2:54) (Shotgun) J.Locker pass incomplete short right.,0,14,2012 20120916_TEN@SD,1,47,48,TEN,SD,4,9,88,(2:48) B.Kern punts 46 yards to SD 42 Center-B.Brinkley out of bounds.,0,14,2012 20120916_TEN@SD,1,47,39,SD,TEN,1,10,58,(2:39) (Shotgun) C.Brinkley up the middle to SD 44 for 2 yards (A.Ayers M.Griffin).,14,0,2012 20120916_TEN@SD,1,47,0,SD,TEN,2,8,56,(2:00) P.Rivers sacked at SD 42 for -2 yards (W.Witherspoon). FUMBLES (W.Witherspoon) recovered by SD-R.McMichael at SD 42. R.McMichael to SD 42 for no gain (R.Johnson).,14,0,2012 20120916_TEN@SD,1,46,17,SD,TEN,3,10,58,(1:17) (Shotgun) P.Rivers pass incomplete short right to E.Royal [K.Wimbley]. PENALTY on TEN-K.Wimbley Roughing the Passer 15 yards enforced at SD 42 - No Play.,14,0,2012 20120916_TEN@SD,1,46,11,SD,TEN,1,10,43,(1:11) C.Brinkley left guard to TEN 45 for -2 yards (A.Verner).,14,0,2012 20120916_TEN@SD,1,45,29,SD,TEN,2,12,45,(:29) (Shotgun) P.Rivers pass short right to R.Brown to TEN 39 for 6 yards (J.McCourty).,14,0,2012 20120916_TEN@SD,2,45,0,SD,TEN,3,6,39,(15:00) (Shotgun) P.Rivers pass short left to L.Green to TEN 8 for 31 yards (A.Verner).,14,0,2012 20120916_TEN@SD,2,44,9,SD,TEN,1,8,8,(14:09) C.Brinkley left end to TEN 7 for 1 yard (K.Wimbley Z.Brown).,14,0,2012 20120916_TEN@SD,2,43,31,SD,TEN,2,7,7,(13:31) C.Brinkley right tackle to TEN 4 for 3 yards (J.McCourty).,14,0,2012 20120916_TEN@SD,2,42,49,SD,TEN,3,4,4,(12:49) (Shotgun) P.Rivers sacked at TEN 8 for -4 yards (M.Martin).,14,0,2012 20120916_TEN@SD,2,42,19,SD,TEN,4,8,8,(12:19) N.Kaeding 26 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,14,0,2012 20120916_TEN@SD,2,42,19,SD,TEN,,,8,N.Kaeding kicks 69 yards from SD 35 to TEN -4. D.Reynaud to TEN 21 for 25 yards (A.Gachkar). PENALTY on TEN-Q.Johnson Illegal Block Above the Waist 4 yards enforced at TEN 9.,17,0,2012 20120916_TEN@SD,2,42,9,TEN,SD,1,10,95,(12:09) J.Locker pass short left to C.Johnson to TEN 17 for 12 yards (Q.Jammer) [C.Thomas].,0,17,2012 20120916_TEN@SD,2,41,28,TEN,SD,1,10,83,(11:28) PENALTY on TEN-F.Velasco False Start 5 yards enforced at TEN 17 - No Play.,0,17,2012 20120916_TEN@SD,2,41,11,TEN,SD,1,15,88,(11:11) J.Locker pass incomplete deep left to K.Wright [C.Thomas].,0,17,2012 20120916_TEN@SD,2,41,5,TEN,SD,2,15,88,(11:05) (Shotgun) J.Locker pass incomplete short right to K.Wright.,0,17,2012 20120916_TEN@SD,2,41,1,TEN,SD,3,15,88,(11:01) (Shotgun) J.Locker pass incomplete short right to K.Wright.,0,17,2012 20120916_TEN@SD,2,40,54,TEN,SD,4,15,88,(10:54) B.Kern punts 63 yards to SD 25 Center-B.Brinkley. E.Royal pushed ob at SD 26 for 1 yard (T.Campbell).,0,17,2012 20120916_TEN@SD,2,40,44,SD,TEN,1,10,74,(10:44) P.Rivers pass short left to R.McMichael ran ob at SD 39 for 13 yards (M.Griffin).,17,0,2012 20120916_TEN@SD,2,40,8,SD,TEN,1,10,61,(10:08) P.Rivers pass incomplete deep left to L.Green. PENALTY on SD-R.McMichael Offensive Holding 10 yards enforced at SD 39 - No Play.,17,0,2012 20120916_TEN@SD,2,40,2,SD,TEN,1,20,71,(10:02) C.Brinkley left end to SD 41 for 12 yards (M.Griffin).,17,0,2012 20120916_TEN@SD,2,39,17,SD,TEN,2,8,59,(9:17) (Shotgun) P.Rivers pass short right to E.Royal to SD 39 for -2 yards (D.Morgan). Penalty on SD-D.Rosario Offensive Holding declined.,17,0,2012 20120916_TEN@SD,2,38,47,SD,TEN,3,10,61,(8:47) (Shotgun) P.Rivers pass short right to R.Brown to SD 47 for 8 yards (M.Griffin W.Witherspoon).,17,0,2012 20120916_TEN@SD,2,38,11,SD,TEN,4,2,53,(8:11) M.Scifres punts 39 yards to TEN 14 Center-M.Windt fair catch by D.Reynaud.,17,0,2012 20120916_TEN@SD,2,38,3,TEN,SD,1,10,86,(8:03) (Shotgun) J.Locker pass short left to J.Cook to TEN 20 for 6 yards (D.Butler).,0,17,2012 20120916_TEN@SD,2,37,32,TEN,SD,2,4,80,(7:32) (Shotgun) J.Locker pass incomplete short middle to J.Cook.,0,17,2012 20120916_TEN@SD,2,37,32,TEN,SD,3,4,80,(7:32) (Shotgun) PENALTY on TEN-M.Roos False Start 5 yards enforced at TEN 20 - No Play.,0,17,2012 20120916_TEN@SD,2,37,27,TEN,SD,3,9,85,(7:27) (Shotgun) J.Locker scrambles left end to TEN 35 for 20 yards (S.Phillips). PENALTY on SD-V.Martin Personal Foul 15 yards enforced at TEN 35.,0,17,2012 20120916_TEN@SD,2,36,55,TEN,SD,1,10,50,(6:55) (Shotgun) J.Locker pass short left to D.Williams to SD 34 for 16 yards (E.Weddle).,0,17,2012 20120916_TEN@SD,2,36,28,TEN,SD,1,10,34,(6:28) (Shotgun) C.Johnson up the middle to SD 27 for 7 yards (A.Bigby M.Ingram).,0,17,2012 20120916_TEN@SD,2,36,1,TEN,SD,2,3,27,(6:01) (Shotgun) J.Locker pass short right to N.Washington pushed ob at SD 11 for 16 yards (Q.Jammer).,0,17,2012 20120916_TEN@SD,2,35,34,TEN,SD,1,10,11,(5:34) (Shotgun) J.Locker pass incomplete short middle to K.Britt.,0,17,2012 20120916_TEN@SD,2,35,30,TEN,SD,2,10,11,(5:30) (Shotgun) J.Locker pass incomplete short middle to C.Johnson (M.Ingram).,0,17,2012 20120916_TEN@SD,2,35,26,TEN,SD,3,10,11,(5:26) (Shotgun) J.Locker pass short left to D.Williams to SD 5 for 6 yards (A.Cason).,0,17,2012 20120916_TEN@SD,2,34,45,TEN,SD,4,4,5,(4:45) R.Bironas 23 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,17,2012 20120916_TEN@SD,2,34,45,TEN,SD,,,5,R.Bironas kicks 71 yards from TEN 35 to SD -6. R.Goodman to SD 31 for 37 yards (A.Verner).,3,17,2012 20120916_TEN@SD,2,34,35,SD,TEN,1,10,69,(4:35) P.Rivers pass incomplete short right to R.Meachem.,17,3,2012 20120916_TEN@SD,2,34,29,SD,TEN,2,10,69,(4:29) P.Rivers pass incomplete deep left to R.Meachem (A.Verner).,17,3,2012 20120916_TEN@SD,2,34,23,SD,TEN,3,10,69,(4:23) (Shotgun) P.Rivers pass deep left intended for M.Floyd INTERCEPTED by A.Verner at TEN 28. A.Verner to TEN 39 for 11 yards (D.Rosario). PENALTY on TEN-M.Griffin Offensive Holding 10 yards enforced at TEN 39.,17,3,2012 20120916_TEN@SD,2,34,13,TEN,SD,1,10,71,(4:13) J.Locker pass short right to K.Wright to TEN 38 for 9 yards (Q.Jammer).,3,17,2012 20120916_TEN@SD,2,33,42,TEN,SD,2,1,62,(3:42) (Shotgun) C.Johnson up the middle to TEN 38 for no gain (D.Butler).,3,17,2012 20120916_TEN@SD,2,33,7,TEN,SD,3,1,62,(3:07) (Shotgun) J.Locker pass incomplete deep right to K.Wright.,3,17,2012 20120916_TEN@SD,2,33,2,TEN,SD,4,1,62,(3:02) B.Kern punts 49 yards to SD 13 Center-B.Brinkley fair catch by M.Spurlock.,3,17,2012 20120916_TEN@SD,2,32,54,SD,TEN,1,10,87,(2:54) C.Brinkley left end to SD 14 for 1 yard (A.Ayers D.Morgan).,17,3,2012 20120916_TEN@SD,2,32,47,SD,TEN,2,9,86,(2:47) (Shotgun) P.Rivers pass short left to R.McMichael to SD 19 for 5 yards (A.Verner).,17,3,2012 20120916_TEN@SD,2,32,31,SD,TEN,3,4,81,(2:31) P.Rivers sacked at SD 14 for -5 yards (D.Morgan).,17,3,2012 20120916_TEN@SD,2,32,31,SD,TEN,4,9,86,(2:31) M.Scifres punts 52 yards to TEN 34 Center-M.Windt. D.Reynaud to 50 for 16 yards (M.Windt). PENALTY on TEN-J.McCourty Offensive Holding 10 yards enforced at 50.,17,3,2012 20120916_TEN@SD,2,32,16,TEN,SD,1,10,60,(2:16) (Shotgun) J.Locker pass short left to D.Williams pushed ob at TEN 45 for 5 yards (A.Cason).,3,17,2012 20120916_TEN@SD,2,32,1,TEN,SD,2,5,55,(2:01) (Shotgun) J.Locker pass incomplete short left to D.Williams (A.Cason).,3,17,2012 20120916_TEN@SD,2,31,58,TEN,SD,3,5,55,(1:58) (Shotgun) J.Locker pass incomplete short left to K.Wright (D.Butler).,3,17,2012 20120916_TEN@SD,2,31,51,TEN,SD,4,5,55,(1:51) B.Kern punts 55 yards to end zone Center-B.Brinkley Touchback.,3,17,2012 20120916_TEN@SD,2,31,43,SD,TEN,1,10,80,(1:43) (Shotgun) P.Rivers pass incomplete short right to R.McMichael (A.Ayers).,17,3,2012 20120916_TEN@SD,2,31,38,SD,TEN,2,10,80,(1:38) (Shotgun) R.Brown up the middle to SD 23 for 3 yards (D.Morgan).,17,3,2012 20120916_TEN@SD,2,30,59,SD,TEN,3,7,77,(:59) (Shotgun) P.Rivers pass short middle to M.Floyd to SD 35 for 12 yards (R.Johnson). PENALTY on SD-M.Harris Offensive Holding 10 yards enforced at SD 23 - No Play.,17,3,2012 20120916_TEN@SD,2,30,54,SD,TEN,3,17,87,(:54) (Shotgun) R.Brown right end to SD 15 for 2 yards (J.Babineaux D.Morgan).,17,3,2012 20120916_TEN@SD,2,30,8,SD,TEN,4,15,85,(:08) M.Scifres punts 62 yards to TEN 23 Center-M.Windt. D.Reynaud to TEN 36 for 13 yards (D.Stuckey).,17,3,2012 20120916_TEN@SD,3,30,0,SD,TEN,,,85,N.Kaeding kicks 60 yards from SD 35 to TEN 5. L.Hawkins to TEN 29 for 24 yards (D.Williams).,17,3,2012 20120916_TEN@SD,3,29,53,TEN,SD,1,10,71,(14:53) J.Locker scrambles right end ran ob at TEN 30 for 1 yard (J.Johnson).,3,17,2012 20120916_TEN@SD,3,29,23,TEN,SD,2,9,70,(14:23) C.Johnson left end to TEN 31 for 1 yard (T.Spikes).,3,17,2012 20120916_TEN@SD,3,28,41,TEN,SD,3,8,69,(13:41) (Shotgun) J.Locker pass short right to C.Johnson to TEN 30 for -1 yards (M.Gilchrist A.Barnes).,3,17,2012 20120916_TEN@SD,3,28,2,TEN,SD,4,9,70,(13:02) B.Kern punts 54 yards to SD 16 Center-B.Brinkley out of bounds.,3,17,2012 20120916_TEN@SD,3,27,53,SD,TEN,1,10,84,(12:53) P.Rivers pass short right to M.Floyd to SD 27 for 11 yards (A.Verner).,17,3,2012 20120916_TEN@SD,3,27,8,SD,TEN,1,10,73,(12:08) P.Rivers sacked at SD 22 for -5 yards (Z.Brown). FUMBLES (Z.Brown) recovered by SD-R.McMichael at SD 22.,17,3,2012 20120916_TEN@SD,3,26,20,SD,TEN,2,15,78,(11:20) C.Brinkley right end to SD 25 for 3 yards (Z.Brown). TEN-W.Witherspoon was injured during the play.,17,3,2012 20120916_TEN@SD,3,25,50,SD,TEN,3,12,75,(10:50) (Shotgun) P.Rivers pass incomplete deep left to R.Meachem.,17,3,2012 20120916_TEN@SD,3,25,43,SD,TEN,4,12,75,(10:43) M.Scifres punts 44 yards to TEN 31 Center-M.Windt. D.Reynaud to TEN 32 for 1 yard (D.Williams R.McMichael).,17,3,2012 20120916_TEN@SD,3,25,33,TEN,SD,1,10,68,(10:33) J.Locker pass short left to K.Britt to TEN 37 for 5 yards (A.Cason) [S.Phillips].,3,17,2012 20120916_TEN@SD,3,24,49,TEN,SD,2,5,63,(9:49) J.Locker pass incomplete deep right to T.Thompson.,3,17,2012 20120916_TEN@SD,3,24,38,TEN,SD,3,5,63,(9:38) (Shotgun) J.Locker pass short left to N.Washington to TEN 41 for 4 yards (A.Cason S.Phillips).,3,17,2012 20120916_TEN@SD,3,23,54,TEN,SD,4,1,59,(8:54) B.Kern punts 47 yards to SD 12 Center-B.Brinkley fair catch by M.Spurlock.,3,17,2012 20120916_TEN@SD,3,23,46,SD,TEN,1,10,88,(8:46) C.Brinkley left end to SD 12 for no gain (M.Griffin). PENALTY on SD-M.Harris Offensive Holding 6 yards enforced at SD 12 - No Play.,17,3,2012 20120916_TEN@SD,3,23,21,SD,TEN,1,16,94,(8:21) L.McClain up the middle to SD 23 for 17 yards (M.Griffin Z.Brown).,17,3,2012 20120916_TEN@SD,3,22,37,SD,TEN,1,10,77,(7:37) P.Rivers pass short right to C.Brinkley to SD 34 for 11 yards (Z.Brown).,17,3,2012 20120916_TEN@SD,3,22,6,SD,TEN,1,10,66,(7:06) L.McClain up the middle to SD 36 for 2 yards (K.Dawson D.Harris).,17,3,2012 20120916_TEN@SD,3,21,23,SD,TEN,2,8,64,(6:23) P.Rivers pass deep left to M.Floyd to TEN 42 for 22 yards (A.Ayers).,17,3,2012 20120916_TEN@SD,3,20,34,SD,TEN,1,10,42,(5:34) P.Rivers scrambles right end ran ob at TEN 33 for 9 yards (A.Ayers).,17,3,2012 20120916_TEN@SD,3,20,0,SD,TEN,2,1,33,(5:00) C.Brinkley right end to TEN 31 for 2 yards (W.Witherspoon).,17,3,2012 20120916_TEN@SD,3,19,14,SD,TEN,1,10,31,(4:14) (Shotgun) P.Rivers pass deep middle to M.Floyd to TEN 15 for 16 yards (W.Witherspoon).,17,3,2012 20120916_TEN@SD,3,18,34,SD,TEN,1,10,15,(3:34) P.Rivers pass short middle to D.Rosario for 15 yards TOUCHDOWN.,17,3,2012 20120916_TEN@SD,3,18,34,SD,TEN,,,15,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,17,3,2012 20120916_TEN@SD,3,18,34,SD,TEN,,,15,N.Kaeding kicks 68 yards from SD 35 to TEN -3. L.Hawkins to SD 32 for 71 yards (C.Lynch).,24,3,2012 20120916_TEN@SD,3,18,19,TEN,SD,1,10,32,(3:19) (Shotgun) J.Locker pass short middle to J.Cook to SD 19 for 13 yards (A.Bigby).,3,24,2012 20120916_TEN@SD,3,18,4,TEN,SD,1,10,19,(3:04) (Shotgun) C.Johnson up the middle to SD 15 for 4 yards (K.Reyes).,3,24,2012 20120916_TEN@SD,3,17,24,TEN,SD,2,6,15,(2:24) (Shotgun) J.Locker pass short left to K.Wright for 15 yards TOUCHDOWN.,3,24,2012 20120916_TEN@SD,3,17,24,TEN,SD,,,15,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,24,2012 20120916_TEN@SD,3,17,24,TEN,SD,,,15,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,10,24,2012 20120916_TEN@SD,3,17,20,SD,TEN,1,10,80,(2:20) P.Rivers pass short right to C.Brinkley pushed ob at SD 28 for 8 yards (M.Griffin).,24,10,2012 20120916_TEN@SD,3,16,50,SD,TEN,2,2,72,(1:50) C.Brinkley left guard to SD 29 for 1 yard (Z.Brown).,24,10,2012 20120916_TEN@SD,3,16,10,SD,TEN,3,1,71,(1:10) J.Battle up the middle to SD 39 for 10 yards (M.Griffin).,24,10,2012 20120916_TEN@SD,3,15,26,SD,TEN,1,10,61,(:26) C.Brinkley left end to SD 39 for no gain (M.Griffin W.Witherspoon). FUMBLES (M.Griffin) ball out of bounds at SD 39.,24,10,2012 20120916_TEN@SD,4,15,0,SD,TEN,2,10,61,(15:00) (Shotgun) P.Rivers pass short right to R.McMichael to 50 for 11 yards (A.Ayers M.Griffin).,24,10,2012 20120916_TEN@SD,4,14,16,SD,TEN,1,10,50,(14:16) J.Battle up the middle to TEN 46 for 4 yards (M.Griffin).,24,10,2012 20120916_TEN@SD,4,13,38,SD,TEN,2,6,46,(13:38) P.Rivers pass short right to M.Floyd to TEN 27 for 19 yards (A.Verner).,24,10,2012 20120916_TEN@SD,4,12,51,SD,TEN,1,10,27,(12:51) J.Battle left tackle to TEN 27 for no gain (K.Wimbley W.Witherspoon). PENALTY on TEN-M.Martin Neutral Zone Infraction 5 yards enforced at TEN 27 - No Play.,24,10,2012 20120916_TEN@SD,4,12,28,SD,TEN,1,5,22,(12:28) J.Battle right guard to TEN 7 for 15 yards (M.Griffin C.Sensabaugh).,24,10,2012 20120916_TEN@SD,4,11,40,SD,TEN,1,7,7,(11:40) J.Battle left tackle to TEN 6 for 1 yard (A.Ayers Z.Diles).,24,10,2012 20120916_TEN@SD,4,10,57,SD,TEN,2,6,6,(10:57) P.Rivers pass short left to R.Brown for 6 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. P.Rivers pass short left to R.Brown to TEN 1 for 5 yards (C.Sensabaugh Z.Brown).,24,10,2012 20120916_TEN@SD,4,10,37,SD,TEN,3,1,1,(10:37) J.Battle up the middle for 1 yard TOUCHDOWN.,24,10,2012 20120916_TEN@SD,4,10,37,SD,TEN,,,1,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,24,10,2012 20120916_TEN@SD,4,10,37,SD,TEN,,,1,N.Kaeding kicks 65 yards from SD 35 to TEN 0. L.Hawkins to TEN 18 for 18 yards (A.Bigby).,31,10,2012 20120916_TEN@SD,4,10,27,TEN,SD,1,10,82,(10:27) (Shotgun) J.Locker pass incomplete short left to D.Williams.,10,31,2012 20120916_TEN@SD,4,10,23,TEN,SD,2,10,82,(10:23) (Shotgun) J.Locker pass short left to J.Cook to TEN 22 for 4 yards (D.Williams).,10,31,2012 20120916_TEN@SD,4,9,54,TEN,SD,3,6,78,(9:54) (Shotgun) J.Locker pass incomplete short left to J.Cook.,10,31,2012 20120916_TEN@SD,4,9,50,TEN,SD,4,6,78,(9:50) B.Kern punts 47 yards to SD 31 Center-B.Brinkley out of bounds.,10,31,2012 20120916_TEN@SD,4,9,42,SD,TEN,1,10,69,(9:42) (Shotgun) P.Rivers pass short left to D.Rosario to SD 49 for 18 yards (K.Dawson).,31,10,2012 20120916_TEN@SD,4,8,55,SD,TEN,1,10,51,(8:55) J.Battle left tackle to TEN 47 for 4 yards (M.Griffin K.Dawson).,31,10,2012 20120916_TEN@SD,4,8,13,SD,TEN,2,6,47,(8:13) C.Brinkley up the middle to TEN 40 for 7 yards (M.Griffin W.Witherspoon).,31,10,2012 20120916_TEN@SD,4,7,28,SD,TEN,1,10,40,(7:28) J.Battle up the middle to TEN 37 for 3 yards (J.Casey M.Martin).,31,10,2012 20120916_TEN@SD,4,6,47,SD,TEN,2,7,37,(6:47) C.Brinkley right tackle to TEN 32 for 5 yards (M.Griffin A.Ayers).,31,10,2012 20120916_TEN@SD,4,6,2,SD,TEN,3,2,32,(6:02) J.Battle up the middle to TEN 24 for 8 yards (M.Griffin K.Wimbley).,31,10,2012 20120916_TEN@SD,4,5,19,SD,TEN,1,10,24,(5:19) J.Battle up the middle to TEN 20 for 4 yards (J.Casey).,31,10,2012 20120916_TEN@SD,4,4,35,SD,TEN,2,6,20,(4:35) C.Brinkley right tackle to TEN 19 for 1 yard (W.Witherspoon K.Klug).,31,10,2012 20120916_TEN@SD,4,3,50,SD,TEN,3,5,19,(3:50) J.Battle left guard to TEN 3 for 16 yards (R.Johnson).,31,10,2012 20120916_TEN@SD,4,3,3,SD,TEN,1,3,3,(3:03) J.Battle right tackle to TEN 1 for 2 yards (T.Shaw).,31,10,2012 20120916_TEN@SD,4,2,21,SD,TEN,2,1,1,(2:21) J.Battle right guard to TEN 3 for -2 yards (M.Griffin S.Solomon).,31,10,2012 20120916_TEN@SD,4,2,0,SD,TEN,3,3,3,(2:00) J.Battle left tackle to TEN 1 for 2 yards (W.Witherspoon J.McCourty).,31,10,2012 20120916_TEN@SD,4,1,17,SD,TEN,4,1,1,(1:17) J.Battle left guard for 1 yard TOUCHDOWN.,31,10,2012 20120916_TEN@SD,4,1,17,SD,TEN,,,1,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,31,10,2012 20120916_TEN@SD,4,1,17,SD,TEN,,,1,N.Kaeding kicks 61 yards from SD 35 to TEN 4. L.Hawkins to TEN 21 for 17 yards (D.Stuckey).,38,10,2012 20120916_TEN@SD,4,1,8,TEN,SD,1,10,79,(1:08) (Shotgun) J.Locker pass incomplete short left to K.Wright (C.Liuget).,10,38,2012 20120916_TEN@SD,4,1,4,TEN,SD,2,10,79,(1:04) (Shotgun) J.Locker pass deep right to D.Williams to TEN 39 for 18 yards (A.Bigby).,10,38,2012 20120916_TEN@SD,4,0,34,TEN,SD,1,10,61,(:34) (Shotgun) C.Johnson up the middle to TEN 41 for 2 yards (D.Williams).,10,38,2012 20120916_TEN@SD,4,0,7,TEN,SD,2,8,59,(:07) (Shotgun) J.Locker pass deep middle to C.Stevens to SD 13 for 46 yards (E.Weddle).,10,38,2012 20120916_TEN@SD,4,0,7,TEN,SD,,,59,                      ,10,38,2012 20120916_DET@SF,1,0,0,SF,DET,,,59,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,0,0,2012 20120916_DET@SF,1,60,0,DET,SF,1,10,80,(15:00) (Shotgun) K.Smith left tackle to DET 21 for 1 yard (Ald.Smith).,0,0,2012 20120916_DET@SF,1,59,27,DET,SF,2,9,79,(14:27) (Shotgun) N.Burleson right end to DET 24 for 3 yards (J.Smith).,0,0,2012 20120916_DET@SF,1,58,48,DET,SF,3,6,76,(13:48) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson.,0,0,2012 20120916_DET@SF,1,58,43,DET,SF,4,6,76,(13:43) B.Graham punts 43 yards to SF 33 Center-D.Muhlbach out of bounds.,0,0,2012 20120916_DET@SF,1,58,37,SF,DET,1,10,67,(13:37) A.Smith pass incomplete short middle to V.Davis.,0,0,2012 20120916_DET@SF,1,58,32,SF,DET,2,10,67,(13:32) M.Manningham right end pushed ob at DET 38 for 29 yards (D.Florence).,0,0,2012 20120916_DET@SF,1,58,4,SF,DET,1,10,38,(13:04) A.Smith pass short left to M.Crabtree pushed ob at DET 21 for 17 yards (J.Wendling). Caught at DET 25. 4-yds YAC,0,0,2012 20120916_DET@SF,1,57,29,SF,DET,1,10,21,(12:29) A.Smith pass deep left to V.Davis for 21 yards TOUCHDOWN.,0,0,2012 20120916_DET@SF,1,57,29,SF,DET,,,21,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 20120916_DET@SF,1,57,29,SF,DET,,,21,D.Akers kicks 62 yards from SF 35 to DET 3. S.Logan to DET 27 for 24 yards (T.Brock). PENALTY on SF-D.Dobbs Offensive Offside 5 yards enforced at DET 27.,7,0,2012 20120916_DET@SF,1,57,18,DET,SF,1,10,68,(12:18) K.Smith up the middle to DET 33 for 1 yard (I.Sopoaga).,0,7,2012 20120916_DET@SF,1,56,34,DET,SF,2,9,67,(11:34) K.Smith up the middle to DET 36 for 3 yards (P.Willis).,0,7,2012 20120916_DET@SF,1,56,3,DET,SF,3,6,64,(11:03) (Shotgun) M.Stafford pass short right to C.Johnson to DET 44 for 8 yards (D.Whitner). Caught at DET 37. 7-yds YAC,0,7,2012 20120916_DET@SF,1,55,28,DET,SF,1,10,56,(10:28) M.Stafford pass short left to W.Heller to SF 49 for 7 yards (I.Sopoaga). Caught at 50. 1-yd YAC,0,7,2012 20120916_DET@SF,1,54,46,DET,SF,2,3,49,(9:46) K.Smith left end to SF 48 for 1 yard (D.Goldson). PENALTY on DET-J.Backus Offensive Holding 10 yards enforced at SF 49 - No Play.,0,7,2012 20120916_DET@SF,1,54,26,DET,SF,2,13,59,(9:26) (Shotgun) M.Stafford pass incomplete short right to T.Young (C.Culliver). PENALTY on SF-C.Culliver Defensive Pass Interference 33 yards enforced at DET 41 - No Play.,0,7,2012 20120916_DET@SF,1,54,20,DET,SF,1,10,26,(9:20) (Shotgun) M.Stafford pass incomplete deep left to T.Scheffler (C.Rogers).,0,7,2012 20120916_DET@SF,1,54,15,DET,SF,2,10,26,(9:15) N.Burleson right end to SF 24 for 2 yards (C.Culliver).,0,7,2012 20120916_DET@SF,1,53,32,DET,SF,3,8,24,(8:32) (Shotgun) M.Stafford pass short right to B.Pettigrew to SF 20 for 4 yards (D.Whitner).,0,7,2012 20120916_DET@SF,1,52,51,DET,SF,4,4,20,(7:51) J.Hanson 38 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,0,7,2012 20120916_DET@SF,1,52,37,DET,SF,1,10,25,(7:37) (Shotgun) J.Bell to SF 23 for 2 yards (P.Willis).,3,7,2012 20120916_DET@SF,1,51,56,DET,SF,2,8,23,(6:56) (Shotgun) M.Stafford pass incomplete short right to N.Burleson.,3,7,2012 20120916_DET@SF,1,51,51,DET,SF,3,8,23,(6:51) (Shotgun) M.Stafford pass incomplete short middle to T.Young (A.Brooks).,3,7,2012 20120916_DET@SF,1,51,47,DET,SF,4,8,23,(6:47) J.Hanson 41 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,3,7,2012 20120916_DET@SF,1,51,47,DET,SF,,,23,J.Hanson kicks 65 yards from DET 35 to SF 0. K.Hunter to SF 18 for 18 yards (D.Hogue). PENALTY on SF-D.Kilgore Offensive Holding 9 yards enforced at SF 18.,6,7,2012 20120916_DET@SF,1,51,37,SF,DET,1,10,91,(6:37) F.Gore up the middle to SF 23 for 14 yards (E.Coleman).,7,6,2012 20120916_DET@SF,1,50,58,SF,DET,1,10,77,(5:58) (Shotgun) F.Gore up the middle to SF 27 for 4 yards (J.Durant).,7,6,2012 20120916_DET@SF,1,50,16,SF,DET,2,6,73,(5:16) F.Gore left end pushed ob at SF 32 for 5 yards (D.Florence).,7,6,2012 20120916_DET@SF,1,49,46,SF,DET,3,1,68,(4:46) W.Tukuafu and L.Davis reported in as eligible. F.Gore left guard to SF 32 for no gain (S.Tulloch).,7,6,2012 20120916_DET@SF,1,48,38,SF,DET,4,1,68,(3:38) A.Lee punts 52 yards to DET 16 Center-B.Jennings. S.Logan to DET 26 for 10 yards (B.Miller). PENALTY on DET-T.Whitehead Illegal Block Above the Waist 10 yards enforced at DET 26.,7,6,2012 20120916_DET@SF,1,48,24,DET,SF,1,10,84,(3:24) M.Stafford pass incomplete deep right to N.Burleson.,6,7,2012 20120916_DET@SF,1,48,17,DET,SF,2,10,84,(3:17) J.Bell up the middle to DET 20 for 4 yards (D.Goldson).,6,7,2012 20120916_DET@SF,1,47,33,DET,SF,3,6,80,(2:33) (Shotgun) M.Stafford pass deep middle intended for T.Young INTERCEPTED by D.Goldson at DET 43. D.Goldson to DET 23 for 20 yards (J.Backus).,6,7,2012 20120916_DET@SF,1,47,21,SF,DET,1,10,23,(2:21) W.Tukuafu reported in as eligible. F.Gore up the middle to DET 20 for 3 yards (J.Wendling).,7,6,2012 20120916_DET@SF,1,46,36,SF,DET,2,7,20,(1:36) F.Gore up the middle to DET 17 for 3 yards (N.Suh).,7,6,2012 20120916_DET@SF,1,45,53,SF,DET,3,4,34,(:53) (Shotgun) A.Smith FUMBLES (Aborted) at DET 17 and recovers at DET 34. A.Smith pass incomplete short left to K.Williams.,7,6,2012 20120916_DET@SF,1,45,47,SF,DET,4,4,17,(:47) D.Akers 35 yard field goal is GOOD NULLIFIED by Penalty Center-B.Jennings Holder-A.Lee. PENALTY on DET-D.Florence Running Into the Kicker 5 yards enforced at DET 17 - No Play.,7,6,2012 20120916_DET@SF,1,45,42,SF,DET,1,10,12,(:42) F.Gore up the middle to DET 8 for 4 yards (D.Levy).,7,6,2012 20120916_DET@SF,1,45,0,SF,DET,2,6,8,(:00) A.Smith pass incomplete short right to R.Moss. PENALTY on DET-J.Lacey Defensive Pass Interference 7 yards enforced at DET 8 - No Play.,7,6,2012 20120916_DET@SF,2,45,0,SF,DET,1,1,1,(15:00) L.Davis and W.Tukuafu reported in as eligible. F.Gore left guard for 1 yard TOUCHDOWN.,7,6,2012 20120916_DET@SF,2,45,0,SF,DET,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,7,6,2012 20120916_DET@SF,2,45,0,SF,DET,,,1,D.Akers kicks 73 yards from SF 35 to DET -8. S.Logan Touchback.,14,6,2012 20120916_DET@SF,2,44,57,DET,SF,1,10,80,(14:57) J.Bell left guard to DET 23 for 3 yards (D.Goldson).,6,14,2012 20120916_DET@SF,2,44,22,DET,SF,2,7,77,(14:22) (Shotgun) M.Stafford pass short left to J.Bell pushed ob at DET 32 for 9 yards (T.Brown). Caught at DET 22. 10-yds YAC,6,14,2012 20120916_DET@SF,2,43,57,DET,SF,1,10,68,(13:57) J.Bell left end to DET 33 for 1 yard (Ald.Smith).,6,14,2012 20120916_DET@SF,2,43,15,DET,SF,2,9,67,(13:15) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 37 for 4 yards (P.Willis). Caught at DET 35. 2-yds YAC,6,14,2012 20120916_DET@SF,2,42,29,DET,SF,3,5,63,(12:29) (Shotgun) M.Stafford pass incomplete short left to C.Johnson (C.Culliver).,6,14,2012 20120916_DET@SF,2,42,24,DET,SF,4,5,63,(12:24) B.Graham punts 46 yards to SF 17 Center-D.Muhlbach. K.Williams to SF 25 for 8 yards (D.Levy).,6,14,2012 20120916_DET@SF,2,42,14,SF,DET,1,10,75,(12:14) (Shotgun) A.Smith pass short right to D.Walker to SF 32 for 7 yards (D.Levy). Caught at SF 30. 2-yds YAC,14,6,2012 20120916_DET@SF,2,41,36,SF,DET,2,3,68,(11:36) A.Smith pass short left to M.Manningham pushed ob at SF 42 for 10 yards (D.Levy). Caught at SF 36. 6-yds YAC,14,6,2012 20120916_DET@SF,2,41,7,SF,DET,1,10,58,(11:07) A.Smith pass short right to R.Moss to DET 44 for 14 yards (J.Durant). Caught at DET 45. 1-yd YAC,14,6,2012 20120916_DET@SF,2,40,41,SF,DET,1,10,44,(10:41) PENALTY on DET-N.Suh Encroachment 5 yards enforced at DET 44 - No Play.,14,6,2012 20120916_DET@SF,2,40,4,SF,DET,1,5,39,(10:04) A.Smith sacked at SF 49 for -12 yards (N.Suh).,14,6,2012 20120916_DET@SF,2,39,24,SF,DET,2,17,51,(9:24) F.Gore up the middle to DET 39 for 12 yards (J.Wendling).,14,6,2012 20120916_DET@SF,2,38,41,SF,DET,3,5,39,(8:41) (Shotgun) A.Smith pass incomplete short middle to M.Crabtree.,14,6,2012 20120916_DET@SF,2,38,36,SF,DET,4,5,39,(8:36) A.Lee punts 25 yards to DET 14 Center-B.Jennings fair catch by S.Logan.,14,6,2012 20120916_DET@SF,2,38,30,DET,SF,1,10,86,(8:30) K.Smith left guard to DET 20 for 6 yards (P.Willis).,6,14,2012 20120916_DET@SF,2,37,52,DET,SF,2,4,80,(7:52) K.Smith left guard to DET 25 for 5 yards (R.McDonald).,6,14,2012 20120916_DET@SF,2,37,11,DET,SF,1,10,75,(7:11) M.Stafford pass short left to N.Burleson pushed ob at DET 36 for 11 yards (P.Willis). Caught at DET 21. 15-yds YAC,6,14,2012 20120916_DET@SF,2,36,40,DET,SF,1,10,64,(6:40) K.Smith left end to DET 38 for 2 yards (J.Smith).,6,14,2012 20120916_DET@SF,2,36,1,DET,SF,2,8,62,(6:01) K.Smith right guard to DET 40 for 2 yards (P.Willis).,6,14,2012 20120916_DET@SF,2,35,17,DET,SF,3,6,60,(5:17) (Shotgun) M.Stafford pass deep left to C.Johnson to SF 36 for 24 yards (D.Whitner). Caught at SF 43. 7-yds YAC,6,14,2012 20120916_DET@SF,2,34,38,DET,SF,1,10,36,(4:38) (Shotgun) K.Smith up the middle to SF 33 for 3 yards (J.Smith).,6,14,2012 20120916_DET@SF,2,33,54,DET,SF,2,7,33,(3:54) (Shotgun) M.Stafford pass incomplete deep middle to T.Young. PENALTY on SF-C.Rogers Defensive Holding 5 yards enforced at SF 33 - No Play.,6,14,2012 20120916_DET@SF,2,33,48,DET,SF,1,10,28,(3:48) (Shotgun) K.Smith right guard to SF 21 for 7 yards (N.Bowman).,6,14,2012 20120916_DET@SF,2,33,8,DET,SF,2,3,21,(3:08) (Shotgun) M.Stafford pass incomplete short left to C.Johnson (N.Bowman).,6,14,2012 20120916_DET@SF,2,33,2,DET,SF,3,3,21,(3:02) (Shotgun) M.Stafford pass incomplete short left to C.Johnson [A.Brooks].,6,14,2012 20120916_DET@SF,2,32,58,DET,SF,4,3,21,(2:58) J.Hanson 40 yard field goal is No Good Hit Right Upright Center-D.Muhlbach Holder-B.Graham.,6,14,2012 20120916_DET@SF,2,32,53,SF,DET,1,10,70,(2:53) A.Smith pass incomplete deep left to V.Davis (D.Florence).,14,6,2012 20120916_DET@SF,2,32,45,SF,DET,2,10,70,(2:45) F.Gore up the middle to SF 46 for 16 yards (E.Coleman).,14,6,2012 20120916_DET@SF,2,32,10,SF,DET,1,10,54,(2:10) A.Smith pass incomplete short middle to K.Hunter (S.Tulloch).,14,6,2012 20120916_DET@SF,2,32,5,SF,DET,2,10,54,(2:05) (Shotgun) K.Hunter left tackle to SF 46 for no gain (D.Levy).,14,6,2012 20120916_DET@SF,2,31,59,SF,DET,3,10,54,(1:59) (Shotgun) A.Smith pass short right to V.Davis to DET 42 for 12 yards (J.Lacey).,14,6,2012 20120916_DET@SF,2,31,33,SF,DET,1,10,42,(1:33) (No Huddle Shotgun) A.Smith pass incomplete short right to F.Gore.,14,6,2012 20120916_DET@SF,2,31,29,SF,DET,2,10,42,(1:29) (Shotgun) A.Smith pass incomplete short middle to K.Williams (S.Tulloch).,14,6,2012 20120916_DET@SF,2,31,25,SF,DET,3,10,42,(1:25) (Shotgun) A.Smith pass short middle to F.Gore to DET 41 for 1 yard (D.Levy).,14,6,2012 20120916_DET@SF,2,31,12,SF,DET,4,9,41,(1:12) A.Lee punts 32 yards to DET 9 Center-B.Jennings fair catch by S.Logan.,14,6,2012 20120916_DET@SF,2,31,5,DET,SF,1,10,91,(1:05) (Shotgun) K.Smith right guard to DET 10 for 1 yard (N.Bowman).,6,14,2012 20120916_DET@SF,2,30,24,DET,SF,2,9,90,(:24) M.Stafford kneels to DET 9 for -1 yards.,6,14,2012 20120916_DET@SF,3,30,0,DET,SF,,,90,J.Hanson kicks 74 yards from DET 35 to SF -9. K.Hunter Touchback.,6,14,2012 20120916_DET@SF,3,30,0,SF,DET,1,10,80,(15:00) A.Smith sacked at SF 17 for -3 yards (K.Vanden Bosch). A.Smith handed off to K.Hunter who pitched ball back to A.Smith. PENALTY on DET-K.Vanden Bosch Face Mask (15 Yards) 15 yards enforced at SF 17.,14,6,2012 20120916_DET@SF,3,29,33,SF,DET,1,10,68,(14:33) F.Gore left tackle to SF 34 for 2 yards (S.Tulloch).,14,6,2012 20120916_DET@SF,3,28,53,SF,DET,2,8,66,(13:53) A.Smith pass short left to M.Manningham pushed ob at SF 47 for 13 yards (J.Wendling). Caught at SF 32. 15-yds YAC,14,6,2012 20120916_DET@SF,3,28,28,SF,DET,1,10,53,(13:28) F.Gore up the middle to DET 42 for 11 yards (E.Coleman).,14,6,2012 20120916_DET@SF,3,27,43,SF,DET,1,10,42,(12:43) A.Smith pass short right to M.Manningham to DET 37 for 5 yards (J.Durant J.Lacey).,14,6,2012 20120916_DET@SF,3,27,4,SF,DET,2,5,37,(12:04) K.Hunter left end to DET 24 for 13 yards (J.Wendling).,14,6,2012 20120916_DET@SF,3,26,38,SF,DET,1,10,24,(11:38) A.Smith sacked at DET 34 for -10 yards (sack split by N.Suh and C.Williams).,14,6,2012 20120916_DET@SF,3,26,1,SF,DET,2,20,34,(11:01) A.Smith pass short left to V.Davis pushed ob at DET 21 for 13 yards (S.Tulloch) [N.Suh]. Caught at DET 31. 10-yds YAC,14,6,2012 20120916_DET@SF,3,25,27,SF,DET,3,7,21,(10:27) (Shotgun) A.Smith pass short right to M.Crabtree to DET 18 for 3 yards (E.Coleman). Caught at DET 19. 1-yd YAC,14,6,2012 20120916_DET@SF,3,24,46,SF,DET,4,4,18,(9:46) D.Akers 36 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,14,6,2012 20120916_DET@SF,3,24,46,SF,DET,,,18,D.Akers kicks 66 yards from SF 35 to DET -1. S.Logan pushed ob at DET 39 for 40 yards (C.Culliver).,17,6,2012 20120916_DET@SF,3,24,36,DET,SF,1,10,61,(9:36) K.Smith left tackle to DET 43 for 4 yards (N.Bowman Ald.Smith).,6,17,2012 20120916_DET@SF,3,23,56,DET,SF,2,6,57,(8:56) (Shotgun) M.Stafford pass short left to C.Johnson to DET 48 for 5 yards (C.Rogers).,6,17,2012 20120916_DET@SF,3,23,15,DET,SF,3,1,52,(8:15) (Shotgun) M.Stafford pass short left to K.Smith pushed ob at SF 40 for 12 yards (N.Bowman). Caught at SF 40. 15-yds YAC,6,17,2012 20120916_DET@SF,3,22,45,DET,SF,1,10,40,(7:45) K.Smith right tackle to SF 40 for no gain (J.Smith).,6,17,2012 20120916_DET@SF,3,22,2,DET,SF,2,10,40,(7:02) K.Smith right tackle to SF 31 for 9 yards (D.Goldson).,6,17,2012 20120916_DET@SF,3,21,21,DET,SF,3,1,31,(6:21) J.Bell up the middle to SF 27 for 4 yards (J.Smith).,6,17,2012 20120916_DET@SF,3,20,46,DET,SF,1,10,27,(5:46) (Shotgun) M.Stafford pass short left to C.Johnson to SF 22 for 5 yards (T.Brown). Caught at SF 24. 2-yds YAC,6,17,2012 20120916_DET@SF,3,20,8,DET,SF,2,5,22,(5:08) J.Bell left end to SF 22 for no gain (Ald.Smith).,6,17,2012 20120916_DET@SF,3,19,25,DET,SF,3,5,22,(4:25) (Shotgun) M.Stafford pass short left to C.Johnson to SF 22 for no gain (T.Brown N.Bowman). Caught at SF 23. 1-yd YAC,6,17,2012 20120916_DET@SF,3,18,44,DET,SF,4,5,22,(3:44) J.Hanson 40 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,6,17,2012 20120916_DET@SF,3,18,44,DET,SF,,,22,J.Hanson kicks 70 yards from DET 35 to SF -5. K.Hunter to SF 15 for 20 yards (R.Lewis).,9,17,2012 20120916_DET@SF,3,18,30,SF,DET,1,10,85,(3:30) A.Smith pass short right to K.Hunter to SF 24 for 9 yards (J.Durant). Caught at SF 11. 13-yds YAC,17,9,2012 20120916_DET@SF,3,17,49,SF,DET,2,1,76,(2:49) K.Hunter left end to SF 27 for 3 yards (J.Wendling).,17,9,2012 20120916_DET@SF,3,17,2,SF,DET,1,10,73,(2:02) W.Tukuafu reported in as eligible. F.Gore left tackle to SF 33 for 6 yards (D.Levy).,17,9,2012 20120916_DET@SF,3,16,20,SF,DET,2,4,67,(1:20) A.Smith pass short right to M.Crabtree to SF 46 for 13 yards (J.Lacey). Caught at SF 39. 7-yds YAC,17,9,2012 20120916_DET@SF,3,15,40,SF,DET,1,10,54,(:40) A.Smith pass short left to K.Hunter to DET 42 for 12 yards (S.Tulloch). Caught at SF 42. 9-yds YAC,17,9,2012 20120916_DET@SF,3,15,7,SF,DET,1,10,42,(:07) F.Gore right tackle to DET 30 for 12 yards (J.Wendling).,17,9,2012 20120916_DET@SF,4,15,0,SF,DET,1,10,30,(15:00) D.Kilgore reported in as eligible. A.Smith pass incomplete short right to B.Miller.,17,9,2012 20120916_DET@SF,4,14,56,SF,DET,2,10,30,(14:56) A.Smith pass incomplete short right to D.Walker.,17,9,2012 20120916_DET@SF,4,14,51,SF,DET,3,10,30,(14:51) (Shotgun) A.Smith pass incomplete short middle to M.Manningham.,17,9,2012 20120916_DET@SF,4,14,47,SF,DET,4,10,30,(14:47) D.Akers 48 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,17,9,2012 20120916_DET@SF,4,14,47,SF,DET,,,30,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,20,9,2012 20120916_DET@SF,4,14,42,DET,SF,1,10,80,(14:42) (Shotgun) K.Smith right tackle to DET 24 for 4 yards (N.Bowman).,9,20,2012 20120916_DET@SF,4,14,0,DET,SF,2,6,76,(14:00) (Shotgun) M.Stafford pass deep middle to C.Johnson to 50 for 26 yards (D.Goldson). Caught at DET 40. 10-yds YAC,9,20,2012 20120916_DET@SF,4,13,21,DET,SF,1,10,50,(13:21) K.Smith up the middle to SF 47 for 3 yards (N.Bowman P.Willis).,9,20,2012 20120916_DET@SF,4,12,45,DET,SF,2,7,47,(12:45) (Shotgun) M.Stafford pass short middle to T.Scheffler to SF 34 for 13 yards (C.Rogers D.Goldson). Caught at SF 40. 6-yds YAC,9,20,2012 20120916_DET@SF,4,12,2,DET,SF,1,10,34,(12:02) (Shotgun) M.Stafford up the middle to SF 23 for 11 yards (P.Willis).,9,20,2012 20120916_DET@SF,4,11,23,DET,SF,1,10,23,(11:23) K.Smith left guard to SF 21 for 2 yards (N.Bowman).,9,20,2012 20120916_DET@SF,4,10,41,DET,SF,2,8,21,(10:41) (Shotgun) M.Stafford sacked at SF 36 for -15 yards (A.Brooks). Detroit challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) M.Stafford sacked at SF 30 for -9 yards (R.McDonald).,9,20,2012 20120916_DET@SF,4,10,22,DET,SF,3,17,30,(10:22) (Shotgun) PENALTY on DET-N.Burleson False Start 5 yards enforced at SF 30 - No Play.,9,20,2012 20120916_DET@SF,4,10,2,DET,SF,3,22,35,(10:02) (Shotgun) M.Stafford pass short left to K.Smith to SF 30 for 5 yards (P.Cox). Caught at SF 38. 8-yds YAC,9,20,2012 20120916_DET@SF,4,9,21,DET,SF,4,17,30,(9:21) J.Hanson 48 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,9,20,2012 20120916_DET@SF,4,9,21,DET,SF,,,30,J.Hanson kicks 65 yards from DET 35 to SF 0. K.Hunter to SF 21 for 21 yards (D.Hogue).,12,20,2012 20120916_DET@SF,4,9,10,SF,DET,1,10,79,(9:10) F.Gore left end to SF 20 for -1 yards (D.Levy).,20,12,2012 20120916_DET@SF,4,8,32,SF,DET,2,11,80,(8:32) (Shotgun) A.Smith pass short right to V.Davis to SF 24 for 4 yards (S.Tulloch J.Durant). Caught at SF 18. 6-yds YAC,20,12,2012 20120916_DET@SF,4,7,51,SF,DET,3,7,76,(7:51) (Shotgun) A.Smith pass short right to M.Crabtree pushed ob at SF 31 for 7 yards (E.Coleman). Caught at SF 30. 1-yd YAC,20,12,2012 20120916_DET@SF,4,7,30,SF,DET,1,10,69,(7:30) W.Tukuafu and L.Davis reported in as eligible. F.Gore left tackle to SF 27 for -4 yards (D.Levy).,20,12,2012 20120916_DET@SF,4,6,44,SF,DET,2,14,73,(6:44) (Shotgun) A.Smith pass incomplete short left to F.Gore.,20,12,2012 20120916_DET@SF,4,6,41,SF,DET,3,14,73,(6:41) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 43 for 16 yards (D.Florence J.Wendling). Caught at SF 30. 13-yds YAC,20,12,2012 20120916_DET@SF,4,5,53,SF,DET,1,10,57,(5:53) W.Tukuafu reported in as eligible. A.Smith pass short right to F.Gore to DET 42 for 15 yards (D.Levy). Caught at SF 38. 12-yds YAC,20,12,2012 20120916_DET@SF,4,5,6,SF,DET,1,10,42,(5:06) K.Hunter left guard to DET 42 for no gain (A.Spievey).,20,12,2012 20120916_DET@SF,4,4,23,SF,DET,2,10,42,(4:23) A.Smith scrambles right end to DET 22 for 20 yards (J.Wendling). PENALTY on SF-D.Walker Offensive Holding 10 yards enforced at DET 32.,20,12,2012 20120916_DET@SF,4,4,9,SF,DET,2,10,42,(4:09) (Shotgun) F.Gore up the middle to DET 41 for 1 yard (J.Durant).,20,12,2012 20120916_DET@SF,4,3,33,SF,DET,3,9,41,(3:33) (Shotgun) A.Smith pass short right to M.Crabtree to DET 30 for 11 yards (J.Durant). Caught at DET 35. 5-yds YAC,20,12,2012 20120916_DET@SF,4,3,23,SF,DET,1,10,30,(3:23) K.Hunter left end to DET 23 for 7 yards (A.Palmer).,20,12,2012 20120916_DET@SF,4,3,11,SF,DET,2,3,23,(3:11) W.Tukuafu reported in as eligible. A.Smith pass short right to V.Davis for 23 yards TOUCHDOWN. Caught at DET 17. 17-yds YAC,20,12,2012 20120916_DET@SF,4,3,11,SF,DET,,,23,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,20,12,2012 20120916_DET@SF,4,3,11,SF,DET,,,23,D.Akers kicks 71 yards from SF 35 to DET -6. S.Logan Touchback.,27,12,2012 20120916_DET@SF,4,3,4,DET,SF,1,10,80,(3:04) (Shotgun) M.Stafford sacked at DET 13 for -7 yards (Ald.Smith).,12,27,2012 20120916_DET@SF,4,2,38,DET,SF,2,17,87,(2:38) (No Huddle Shotgun) M.Stafford pass incomplete short middle to K.Smith.,12,27,2012 20120916_DET@SF,4,2,32,DET,SF,3,17,87,(2:32) (Shotgun) M.Stafford pass short right to J.Bell pushed ob at SF 37 for 50 yards (T.Brown). Caught at DET 10. 53-yards YAC,12,27,2012 20120916_DET@SF,4,2,20,DET,SF,1,10,37,(2:20) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to SF 32 for 5 yards (P.Willis).,12,27,2012 20120916_DET@SF,4,2,14,DET,SF,2,5,32,(2:14) (Shotgun) M.Stafford pass incomplete deep middle to T.Young (D.Goldson) [Ald.Smith]. PENALTY on DET-T.Young Offensive Pass Interference 10 yards enforced at SF 32 - No Play.,12,27,2012 20120916_DET@SF,4,2,6,DET,SF,2,15,42,(2:06) (Shotgun) M.Stafford pass short left to T.Young to SF 31 for 11 yards (D.Goldson). Caught at SF 36. 5-yds YAC,12,27,2012 20120916_DET@SF,4,1,58,DET,SF,3,4,31,(1:58) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (P.Willis).,12,27,2012 20120916_DET@SF,4,1,54,DET,SF,4,4,31,(1:54) (Shotgun) M.Stafford pass short middle to C.Johnson to SF 9 for 22 yards (C.Culliver). Caught at SF27. 18-yds YAC,12,27,2012 20120916_DET@SF,4,1,45,DET,SF,1,9,9,(1:45) (Shotgun) M.Stafford pass incomplete short right to J.Bell.,12,27,2012 20120916_DET@SF,4,1,40,DET,SF,2,9,9,(1:40) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler.,12,27,2012 20120916_DET@SF,4,1,35,DET,SF,3,9,9,(1:35) (Shotgun) M.Stafford pass short middle to B.Pettigrew for 9 yards TOUCHDOWN.,12,27,2012 20120916_DET@SF,4,1,35,DET,SF,,,9,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,12,27,2012 20120916_DET@SF,4,1,35,DET,SF,,,9,J.Hanson kicks 40 yards from DET 35 to SF 25. K.Williams (didn't try to advance) to SF 25 for no gain (J.Bell).,19,27,2012 20120916_DET@SF,4,1,28,SF,DET,1,10,75,(1:28) A.Smith kneels to SF 24 for -1 yards.,27,19,2012 20120916_DET@SF,4,0,46,SF,DET,2,11,76,(:46) A.Smith kneels to SF 23 for -1 yards.,27,19,2012 20120916_DET@SF,4,0,23,SF,DET,3,12,77,(:23) A.Smith kneels to SF 22 for -1 yards.,27,19,2012 20120916_DET@SF,4,0,23,SF,DET,,,77,                      ,27,19,2012 20120917_DEN@ATL,1,0,0,ATL,DEN,,,77,M.Bosher kicks 68 yards from ATL 35 to DEN -3. O.Bolden to DEN 14 for 17 yards (K.Cone).,0,0,2012 20120917_DEN@ATL,1,59,55,DEN,ATL,1,10,86,(14:55) P.Manning pass incomplete short left to D.Thomas (D.Robinson).,0,0,2012 20120917_DEN@ATL,1,59,49,DEN,ATL,2,10,86,(14:49) W.McGahee right tackle to DEN 12 for -2 yards (P.Jerry).,0,0,2012 20120917_DEN@ATL,1,59,24,DEN,ATL,3,12,88,(14:24) P.Manning pass deep right intended for J.Tamme INTERCEPTED by W.Moore at DEN 34. W.Moore to DEN 1 for 33 yards (O.Franklin).,0,0,2012 20120917_DEN@ATL,1,59,13,ATL,DEN,1,1,1,(14:13) M.Turner left guard to DEN 1 for no gain (K.Vickerson).,0,0,2012 20120917_DEN@ATL,1,58,42,ATL,DEN,2,1,1,(13:42) M.Turner left tackle for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. M.Turner left tackle to DEN 1 for no gain (K.Brooking; M.Adams). FUMBLES (K.Brooking) and recovers at DEN 1. M.Turner to DEN 1 for no gain (K.Brooking; M.Adams).,0,0,2012 20120917_DEN@ATL,1,58,27,ATL,DEN,3,1,1,(13:27) M.Turner up the middle for 1 yard TOUCHDOWN.,0,0,2012 20120917_DEN@ATL,1,58,27,ATL,DEN,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 20120917_DEN@ATL,1,58,27,ATL,DEN,,,1,M.Bosher kicks 67 yards from ATL 35 to DEN -2. O.Bolden to DEN 28 for 30 yards (C.Hope).,7,0,2012 20120917_DEN@ATL,1,58,14,DEN,ATL,1,10,72,(13:14) PENALTY on ATL-J.Abraham Defensive Offside 5 yards enforced at DEN 28 - No Play.,0,7,2012 20120917_DEN@ATL,1,57,52,DEN,ATL,1,5,67,(12:52) (Shotgun) P.Manning pass short middle to B.Stokley to DEN 38 for 5 yards (C.Owens).,0,7,2012 20120917_DEN@ATL,1,57,27,DEN,ATL,1,10,62,(12:27) P.Manning left guard to DEN 37 for -1 yards (S.Weatherspoon).,0,7,2012 20120917_DEN@ATL,1,56,56,DEN,ATL,2,11,63,(11:56) P.Manning pass deep right intended for J.Tamme INTERCEPTED by T.DeCoud at ATL 42. T.DeCoud ran ob at DEN 43 for 15 yards (E.Decker).,0,7,2012 20120917_DEN@ATL,1,56,50,ATL,DEN,1,10,43,(11:50) M.Ryan pass short right to J.Snelling to DEN 37 for 6 yards (C.Bailey).,7,0,2012 20120917_DEN@ATL,1,56,22,ATL,DEN,2,4,37,(11:22) M.Turner left end to DEN 30 for 7 yards (R.Moore). PENALTY on ATL-J.Blalock Offensive Holding 10 yards enforced at DEN 37 - No Play.,7,0,2012 20120917_DEN@ATL,1,55,52,ATL,DEN,2,14,47,(10:52) (Shotgun) M.Ryan pass short middle to T.Gonzalez to DEN 32 for 15 yards (M.Adams; R.Moore). PENALTY on DEN-R.Moore Face Mask (15 Yards) 15 yards enforced at DEN 32.,7,0,2012 20120917_DEN@ATL,1,55,36,ATL,DEN,1,10,17,(10:36) M.Ryan pass short left to J.Jones to DEN 19 for -2 yards (T.Porter; E.Dumervil).,7,0,2012 20120917_DEN@ATL,1,55,0,ATL,DEN,2,12,19,(10:00) M.Ryan pass incomplete short right to R.White.,7,0,2012 20120917_DEN@ATL,1,54,58,ATL,DEN,3,12,19,(9:58) M.Ryan pass incomplete deep left to J.Jones.,7,0,2012 20120917_DEN@ATL,1,54,51,ATL,DEN,4,12,19,(9:51) M.Bryant 37 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,0,2012 20120917_DEN@ATL,1,54,51,ATL,DEN,,,19,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,10,0,2012 20120917_DEN@ATL,1,54,46,DEN,ATL,1,10,80,(9:46) W.McGahee right tackle to DEN 20 for no gain (W.Moore).,0,10,2012 20120917_DEN@ATL,1,54,13,DEN,ATL,2,10,80,(9:13) (Shotgun) P.Manning pass short left to J.Tamme to DEN 29 for 9 yards (D.Robinson).,0,10,2012 20120917_DEN@ATL,1,53,38,DEN,ATL,3,1,71,(8:38) PENALTY on DEN-J.Walton False Start 4 yards enforced at DEN 29 - No Play.,0,10,2012 20120917_DEN@ATL,1,53,23,DEN,ATL,3,5,75,(8:23) (Shotgun) P.Manning pass short right to B.Stokley to DEN 31 for 6 yards (C.Owens).,0,10,2012 20120917_DEN@ATL,1,52,45,DEN,ATL,1,10,69,(7:45) W.McGahee right end ran ob at DEN 46 for 15 yards (W.Moore). ATL-A.Samuel was injured during the play. His return is Probable.,0,10,2012 20120917_DEN@ATL,1,52,38,DEN,ATL,1,10,54,(7:38) (Shotgun) P.Manning pass short left to D.Thomas pushed ob at ATL 40 for 14 yards (D.Robinson).,0,10,2012 20120917_DEN@ATL,1,52,9,DEN,ATL,1,10,40,(7:09) (Shotgun) P.Manning pass deep right intended for B.Stokley INTERCEPTED by R.McClain at ATL 15. R.McClain ran ob at ATL 47 for 32 yards (W.McGahee). Penalty on DEN-O.Franklin Offensive Holding declined.,0,10,2012 20120917_DEN@ATL,1,51,55,ATL,DEN,1,10,53,(6:55) J.Jones left end to ATL 48 for 1 yard (T.Porter).,10,0,2012 20120917_DEN@ATL,1,51,19,ATL,DEN,2,9,52,(6:19) M.Ryan pass short middle to M.Turner to ATL 48 for no gain (V.Miller).,10,0,2012 20120917_DEN@ATL,1,50,39,ATL,DEN,3,9,52,(5:39) (Shotgun) M.Ryan pass incomplete short left to R.White (M.Adams). PENALTY on DEN-T.Carter Defensive Pass Interference 14 yards enforced at ATL 48 - No Play. Denver challenged the tipped pass ruling and the play was REVERSED. (Shotgun) M.Ryan pass incomplete short left to R.White (M.Adams).,10,0,2012 20120917_DEN@ATL,1,50,35,ATL,DEN,4,9,52,(5:35) M.Bosher punts 42 yards to DEN 10 Center-J.Harris fair catch by J.Leonhard.,10,0,2012 20120917_DEN@ATL,1,50,27,DEN,ATL,1,10,90,(5:27) W.McGahee right end ran ob at DEN 41 for 31 yards (W.Moore).,0,10,2012 20120917_DEN@ATL,1,49,57,DEN,ATL,1,10,59,(4:57) K.Moreno left end to DEN 39 for -2 yards (S.Nicholas).,0,10,2012 20120917_DEN@ATL,1,49,21,DEN,ATL,2,12,61,(4:21) P.Manning pass short left to J.Dreessen to DEN 46 for 7 yards (S.Nicholas).,0,10,2012 20120917_DEN@ATL,1,48,42,DEN,ATL,3,5,54,(3:42) (Shotgun) P.Manning pass short right to J.Tamme to 50 for 4 yards (A.Samuel).,0,10,2012 20120917_DEN@ATL,1,47,57,DEN,ATL,4,1,50,(2:57) B.Colquitt punts 39 yards to ATL 11 Center-A.Brewer fair catch by D.Franks.,0,10,2012 20120917_DEN@ATL,1,47,49,ATL,DEN,1,10,89,(2:49) M.Turner left guard to ATL 13 for 2 yards (K.Brooking).,10,0,2012 20120917_DEN@ATL,1,47,12,ATL,DEN,2,8,87,(2:12) M.Turner left end to ATL 18 for 5 yards (R.Moore).,10,0,2012 20120917_DEN@ATL,1,46,34,ATL,DEN,3,3,82,(1:34) (Shotgun) M.Ryan pass incomplete short left to T.Gonzalez.,10,0,2012 20120917_DEN@ATL,1,46,31,ATL,DEN,4,3,82,(1:31) M.Bosher punts 39 yards to DEN 43 Center-J.Harris fair catch by J.Leonhard.,10,0,2012 20120917_DEN@ATL,1,46,23,DEN,ATL,1,10,57,(1:23) W.McGahee left end to DEN 45 for 2 yards (W.Moore; S.Weatherspoon).,0,10,2012 20120917_DEN@ATL,1,45,48,DEN,ATL,2,8,55,(:48) (Shotgun) W.McGahee right guard to ATL 45 for 10 yards (D.Franks).,0,10,2012 20120917_DEN@ATL,1,45,13,DEN,ATL,1,10,45,(:13) (Shotgun) K.Moreno right end to ATL 41 for 4 yards (S.Nicholas). FUMBLES (S.Nicholas) RECOVERED by ATL-S.Weatherspoon at ATL 32. PENALTY on ATL-R.Edwards Unnecessary Roughness 15 yards enforced at ATL 32.,0,10,2012 20120917_DEN@ATL,1,45,2,ATL,DEN,1,10,83,(:02) M.Turner left tackle to ATL 20 for 3 yards (M.Adams).,10,0,2012 20120917_DEN@ATL,2,45,0,ATL,DEN,2,7,80,(15:00) M.Ryan pass incomplete short left to J.Jones.,10,0,2012 20120917_DEN@ATL,2,44,57,ATL,DEN,3,7,80,(14:57) (Shotgun) M.Ryan scrambles left guard to ATL 27 for 7 yards. PENALTY on DEN-J.Mays Unnecessary Roughness 15 yards enforced at ATL 27.,10,0,2012 20120917_DEN@ATL,2,44,27,ATL,DEN,1,10,58,(14:27) M.Ryan pass short left to R.White ran ob at 50 for 8 yards.,10,0,2012 20120917_DEN@ATL,2,44,2,ATL,DEN,2,2,50,(14:02) M.Ryan pass short right to R.White ran ob at DEN 43 for 7 yards [M.Adams].,10,0,2012 20120917_DEN@ATL,2,43,29,ATL,DEN,1,10,43,(13:29) PENALTY on ATL-G.Reynolds False Start 5 yards enforced at DEN 43 - No Play.,10,0,2012 20120917_DEN@ATL,2,43,8,ATL,DEN,1,15,48,(13:08) (Shotgun) M.Ryan pass incomplete short left to T.Gonzalez [M.Unrein].,10,0,2012 20120917_DEN@ATL,2,43,3,ATL,DEN,2,15,48,(13:03) (Shotgun) M.Ryan pass short middle to T.Gonzalez to DEN 32 for 16 yards (M.Adams).,10,0,2012 20120917_DEN@ATL,2,42,57,ATL,DEN,1,10,32,(12:57) (Shotgun) PENALTY on DEN Defensive 12 On-field 5 yards enforced at DEN 32 - No Play. Denver challenged the too many players on field ruling and the play was Upheld. (Timeout #1.),10,0,2012 20120917_DEN@ATL,2,42,7,ATL,DEN,1,5,27,(12:07) (Shotgun) Jz. Rodgers right end to DEN 26 for 1 yard (W.Woodyard; M.Adams).,10,0,2012 20120917_DEN@ATL,2,41,38,ATL,DEN,2,4,26,(11:38) (Shotgun) M.Ryan pass short right to T.Gonzalez to DEN 24 for 2 yards (W.Woodyard) [V.Miller].,10,0,2012 20120917_DEN@ATL,2,40,52,ATL,DEN,3,2,24,(10:52) (Shotgun) Jz. Rodgers right tackle to DEN 24 for no gain (C.Bailey).,10,0,2012 20120917_DEN@ATL,2,40,10,ATL,DEN,4,2,24,(10:10) M.Bryant 42 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,10,0,2012 20120917_DEN@ATL,2,40,10,ATL,DEN,,,24,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,13,0,2012 20120917_DEN@ATL,2,40,5,DEN,ATL,1,10,80,(10:05) (Shotgun) P.Manning pass short left to D.Thomas ran ob at DEN 24 for 4 yards (D.Franks).,0,13,2012 20120917_DEN@ATL,2,39,49,DEN,ATL,2,6,76,(9:49) (Shotgun) W.McGahee right guard to DEN 28 for 4 yards (V.Walker).,0,13,2012 20120917_DEN@ATL,2,39,9,DEN,ATL,3,2,72,(9:09) W.McGahee left tackle to DEN 28 for no gain (K.Biermann). Penalty on DEN-M.Ramirez Offensive Holding declined.,0,13,2012 20120917_DEN@ATL,2,38,51,DEN,ATL,4,2,72,(8:51) B.Colquitt punts 45 yards to ATL 27 Center-A.Brewer fair catch by D.Franks.,0,13,2012 20120917_DEN@ATL,2,38,43,ATL,DEN,1,10,73,(8:43) M.Turner right end to ATL 30 for 3 yards (W.Woodyard).,13,0,2012 20120917_DEN@ATL,2,38,13,ATL,DEN,2,7,70,(8:13) M.Ryan pass incomplete deep left to J.Jones. PENALTY on DEN-T.Carter Defensive Pass Interference 18 yards enforced at ATL 30 - No Play.,13,0,2012 20120917_DEN@ATL,2,38,6,ATL,DEN,1,10,52,(8:06) M.Ryan pass short right to H.Douglas to DEN 43 for 9 yards (M.Adams).,13,0,2012 20120917_DEN@ATL,2,37,24,ATL,DEN,2,1,43,(7:24) (No Huddle) M.Ryan pass deep right to R.White pushed ob at DEN 27 for 16 yards (C.Bailey).,13,0,2012 20120917_DEN@ATL,2,36,49,ATL,DEN,1,10,27,(6:49) (No Huddle Shotgun) M.Ryan pass short middle to T.Gonzalez to DEN 12 for 15 yards (R.Moore).,13,0,2012 20120917_DEN@ATL,2,36,5,ATL,DEN,1,10,12,(6:05) (No Huddle) M.Turner left end to DEN 11 for 1 yard (R.Moore).,13,0,2012 20120917_DEN@ATL,2,35,22,ATL,DEN,2,9,11,(5:22) (No Huddle Shotgun) M.Ryan pass short middle to H.Douglas to DEN 1 for 10 yards (K.Vickerson).,13,0,2012 20120917_DEN@ATL,2,34,45,ATL,DEN,1,1,1,(4:45) M.Ryan pass short middle to T.Gonzalez for 1 yard TOUCHDOWN.,13,0,2012 20120917_DEN@ATL,2,34,45,ATL,DEN,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,13,0,2012 20120917_DEN@ATL,2,34,45,ATL,DEN,,,1,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,0,2012 20120917_DEN@ATL,2,34,39,DEN,ATL,1,10,80,(4:39) P.Manning pass short right to E.Decker pushed ob at DEN 25 for 5 yards (A.Samuel).,0,20,2012 20120917_DEN@ATL,2,34,34,DEN,ATL,2,5,75,(4:34) (Shotgun) P.Manning pass short right to E.Decker to DEN 43 for 18 yards (T.DeCoud).,0,20,2012 20120917_DEN@ATL,2,34,7,DEN,ATL,1,10,57,(4:07) (No Huddle Shotgun) P.Manning pass short right to E.Decker to ATL 47 for 10 yards (A.Samuel). FUMBLES (A.Samuel) and recovers at 50. E.Decker to 50 for no gain (A.Samuel). PENALTY on ATL-D.Franks Illegal Contact 5 yards enforced at DEN 43 - No Play.,0,20,2012 20120917_DEN@ATL,2,33,45,DEN,ATL,1,10,52,(3:45) W.McGahee up the middle to ATL 45 for 7 yards (T.DeCoud).,0,20,2012 20120917_DEN@ATL,2,33,28,DEN,ATL,2,3,45,(3:28) K.Moreno to ATL 45 for no gain (S.Nicholas; J.Abraham). PENALTY on DEN-J.Dreessen Offensive Holding 10 yards enforced at ATL 45 - No Play.,0,20,2012 20120917_DEN@ATL,2,33,18,DEN,ATL,2,13,55,(3:18) (Shotgun) P.Manning pass short right to E.Decker to ATL 43 for 12 yards (A.Samuel).,0,20,2012 20120917_DEN@ATL,2,32,53,DEN,ATL,3,1,43,(2:53) P.Manning pass incomplete short right to E.Decker (W.Moore).,0,20,2012 20120917_DEN@ATL,2,32,50,DEN,ATL,4,1,43,(2:50) (No Huddle Shotgun) P.Manning pass incomplete short left to B.Stokley. PENALTY on ATL-D.Franks Defensive Holding 11 yards enforced at ATL 43 - No Play.,0,20,2012 20120917_DEN@ATL,2,32,45,DEN,ATL,1,10,32,(2:45) W.McGahee left guard to ATL 26 for 6 yards (S.Weatherspoon). DEN-O.Franklin was injured during the play. His return is Questionable.,0,20,2012 20120917_DEN@ATL,2,32,24,DEN,ATL,2,4,26,(2:24) (No Huddle Shotgun) W.McGahee right end to ATL 22 for 4 yards (S.Weatherspoon; A.Samuel).,0,20,2012 20120917_DEN@ATL,2,32,0,DEN,ATL,1,10,22,(2:00) (Shotgun) P.Manning pass incomplete deep middle to D.Thomas (W.Moore). PENALTY on DEN-R.Clady Offensive Holding 10 yards enforced at ATL 22 - No Play.,0,20,2012 20120917_DEN@ATL,2,31,53,DEN,ATL,1,20,32,(1:53) (Shotgun) P.Manning pass short right to W.McGahee to ATL 22 for 10 yards (S.Nicholas).,0,20,2012 20120917_DEN@ATL,2,31,14,DEN,ATL,2,10,22,(1:14) (Shotgun) P.Manning pass short middle to J.Dreessen to ATL 13 for 9 yards (S.Weatherspoon; K.Biermann).,0,20,2012 20120917_DEN@ATL,2,30,49,DEN,ATL,3,1,13,(:49) (Shotgun) L.Ball right tackle to ATL 9 for 4 yards (D.Franks).,0,20,2012 20120917_DEN@ATL,2,30,26,DEN,ATL,1,9,9,(:26) P.Manning pass incomplete short left to B.Stokley (D.Robinson).,0,20,2012 20120917_DEN@ATL,2,30,21,DEN,ATL,2,9,9,(:21) (Shotgun) P.Manning sacked at ATL 17 for -8 yards (V.Walker).,0,20,2012 20120917_DEN@ATL,2,30,14,DEN,ATL,3,17,17,(:14) (Shotgun) P.Manning pass incomplete deep left to D.Thomas. The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) P.Manning pass deep left to D.Thomas for 17 yards TOUCHDOWN.,0,20,2012 20120917_DEN@ATL,2,30,14,DEN,ATL,,,17,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,20,2012 20120917_DEN@ATL,2,30,14,DEN,ATL,,,17,M.Prater kicks 53 yards from DEN 35 to ATL 12. Jz. Rodgers to ATL 35 for 23 yards (N.Irving).,7,20,2012 20120917_DEN@ATL,3,30,0,DEN,ATL,,,17,M.Prater kicks 59 yards from DEN 35 to ATL 6. L.Polite to ATL 30 for 24 yards (C.Gronkowski).,7,20,2012 20120917_DEN@ATL,3,29,54,ATL,DEN,1,10,70,(14:54) M.Turner right end to ATL 28 for -2 yards (V.Miller).,20,7,2012 20120917_DEN@ATL,3,29,12,ATL,DEN,2,12,72,(14:12) (Shotgun) M.Ryan pass short left to J.Jones to ATL 33 for 5 yards (T.Carter).,20,7,2012 20120917_DEN@ATL,3,28,40,ATL,DEN,3,7,67,(13:40) (Shotgun) M.Ryan pass short right to T.Gonzalez ran ob at ATL 42 for 9 yards.,20,7,2012 20120917_DEN@ATL,3,28,8,ATL,DEN,1,10,58,(13:08) M.Ryan pass short right to T.Gonzalez to DEN 46 for 12 yards (W.Woodyard).,20,7,2012 20120917_DEN@ATL,3,27,37,ATL,DEN,1,10,46,(12:37) M.Turner right guard to DEN 45 for 1 yard (J.Bannan).,20,7,2012 20120917_DEN@ATL,3,27,2,ATL,DEN,2,9,45,(12:02) (Shotgun) M.Ryan pass short left to J.Jones to DEN 40 for 5 yards (T.Carter).,20,7,2012 20120917_DEN@ATL,3,26,30,ATL,DEN,3,4,40,(11:30) (Shotgun) M.Ryan pass incomplete short left to Jz. Rodgers.,20,7,2012 20120917_DEN@ATL,3,26,23,ATL,DEN,4,4,40,(11:23) M.Bosher punts 27 yards to DEN 13 Center-J.Harris fair catch by J.Leonhard.,20,7,2012 20120917_DEN@ATL,3,26,14,DEN,ATL,1,10,87,(11:14) P.Manning pass short right to D.Thomas to DEN 14 for 1 yard (A.Samuel).,7,20,2012 20120917_DEN@ATL,3,25,48,DEN,ATL,2,9,86,(10:48) (Shotgun) P.Manning pass incomplete short left to E.Decker [D.Franks].,7,20,2012 20120917_DEN@ATL,3,25,44,DEN,ATL,3,9,86,(10:44) (Shotgun) P.Manning pass incomplete short left to B.Stokley [J.Abraham].,7,20,2012 20120917_DEN@ATL,3,25,38,DEN,ATL,4,9,86,(10:38) B.Colquitt punts 48 yards to ATL 38 Center-A.Brewer. D.Franks to ATL 36 for -2 yards (N.Irving).,7,20,2012 20120917_DEN@ATL,3,25,25,ATL,DEN,1,10,64,(10:25) M.Ryan pass short left to H.Douglas to ATL 44 for 8 yards (J.Mays).,20,7,2012 20120917_DEN@ATL,3,24,48,ATL,DEN,2,2,56,(9:48) M.Ryan pass short left to R.White to DEN 35 for 21 yards (J.Mays).,20,7,2012 20120917_DEN@ATL,3,24,11,ATL,DEN,1,10,35,(9:11) M.Ryan pass deep left to R.White to DEN 15 for 20 yards (R.Moore).,20,7,2012 20120917_DEN@ATL,3,23,27,ATL,DEN,1,10,15,(8:27) (Shotgun) M.Ryan scrambles right end to DEN 11 for 4 yards (K.Vickerson). PENALTY on DEN-C.Bailey Defensive Holding 5 yards enforced at DEN 11.,20,7,2012 20120917_DEN@ATL,3,22,50,ATL,DEN,1,6,6,(7:50) M.Turner right tackle to DEN 4 for 2 yards (C.Bailey; K.Brooking).,20,7,2012 20120917_DEN@ATL,3,22,13,ATL,DEN,2,4,4,(7:13) (Shotgun) M.Ryan pass short left to R.White for 4 yards TOUCHDOWN.,20,7,2012 20120917_DEN@ATL,3,22,13,ATL,DEN,,,4,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,7,2012 20120917_DEN@ATL,3,22,13,ATL,DEN,,,4,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,27,7,2012 20120917_DEN@ATL,3,22,8,DEN,ATL,1,10,80,(7:08) W.McGahee right end to DEN 24 for 4 yards (S.Nicholas).,7,27,2012 20120917_DEN@ATL,3,21,43,DEN,ATL,2,6,76,(6:43) (Shotgun) P.Manning pass incomplete short left to D.Thomas [S.Nicholas].,7,27,2012 20120917_DEN@ATL,3,21,38,DEN,ATL,3,6,76,(6:38) (Shotgun) PENALTY on ATL-P.Jerry Encroachment 5 yards enforced at DEN 24 - No Play.,7,27,2012 20120917_DEN@ATL,3,21,38,DEN,ATL,3,1,71,(6:38) W.McGahee right tackle to DEN 29 for no gain (S.Weatherspoon).,7,27,2012 20120917_DEN@ATL,3,20,57,DEN,ATL,4,1,71,(5:57) B.Colquitt punts 67 yards to ATL 4 Center-A.Brewer downed by DEN-O.Bolden.,7,27,2012 20120917_DEN@ATL,3,20,42,ATL,DEN,1,10,96,(5:42) Jz. Rodgers left guard to ATL 6 for 2 yards (W.Woodyard). DEN-J.Mays was injured during the play. His return is Questionable.,27,7,2012 20120917_DEN@ATL,3,20,2,ATL,DEN,2,8,94,(5:02) M.Ryan pass incomplete short left to T.Gonzalez (T.Porter).,27,7,2012 20120917_DEN@ATL,3,19,58,ATL,DEN,3,8,94,(4:58) (Shotgun) M.Ryan pass short left to R.White to ATL 21 for 15 yards (T.Porter).,27,7,2012 20120917_DEN@ATL,3,19,15,ATL,DEN,1,10,79,(4:15) M.Ryan pass incomplete deep left to R.White (T.Carter) [E.Dumervil].,27,7,2012 20120917_DEN@ATL,3,19,7,ATL,DEN,2,10,79,(4:07) M.Ryan pass short left to R.White to ATL 32 for 11 yards (W.Woodyard).,27,7,2012 20120917_DEN@ATL,3,18,29,ATL,DEN,1,10,68,(3:29) M.Ryan pass incomplete short left [K.Vickerson].,27,7,2012 20120917_DEN@ATL,3,18,22,ATL,DEN,2,10,68,(3:22) J.Snelling left end to ATL 34 for 2 yards (E.Dumervil).,27,7,2012 20120917_DEN@ATL,3,17,46,ATL,DEN,3,8,66,(2:46) (Shotgun) M.Ryan scrambles up the middle to ATL 41 for 7 yards (J.Leonhard).,27,7,2012 20120917_DEN@ATL,3,16,59,ATL,DEN,4,1,59,(1:59) M.Bosher punts 47 yards to DEN 12 Center-J.Harris. J.Leonhard to DEN 12 for no gain (DJ.Davis).,27,7,2012 20120917_DEN@ATL,3,16,50,DEN,ATL,1,10,88,(1:50) W.McGahee up the middle to DEN 15 for 3 yards (K.Biermann).,7,27,2012 20120917_DEN@ATL,3,16,26,DEN,ATL,2,7,85,(1:26) (Shotgun) P.Manning pass deep left to B.Stokley to DEN 31 for 16 yards (T.DeCoud).,7,27,2012 20120917_DEN@ATL,3,15,51,DEN,ATL,1,10,69,(:51) (No Huddle Shotgun) P.Manning pass short left to W.McGahee to DEN 32 for 1 yard (D.Robinson).,7,27,2012 20120917_DEN@ATL,3,15,21,DEN,ATL,2,9,68,(:21) (No Huddle Shotgun) P.Manning pass short left to M.Willis to DEN 46 for 14 yards (T.DeCoud).,7,27,2012 20120917_DEN@ATL,4,15,0,DEN,ATL,1,10,54,(15:00) W.McGahee right guard to ATL 47 for 7 yards (A.Samuel).,7,27,2012 20120917_DEN@ATL,4,14,33,DEN,ATL,2,3,47,(14:33) (No Huddle Shotgun) P.Manning pass short left to L.Ball pushed ob at ATL 30 for 17 yards (T.DeCoud).,7,27,2012 20120917_DEN@ATL,4,14,9,DEN,ATL,1,10,30,(14:09) (Shotgun) P.Manning pass incomplete short right to L.Ball (S.Weatherspoon).,7,27,2012 20120917_DEN@ATL,4,14,4,DEN,ATL,2,10,30,(14:04) (Shotgun) P.Manning pass incomplete short left to J.Dreessen. PENALTY on DEN-M.Ramirez Illegal Use of Hands 10 yards enforced at ATL 30 - No Play.,7,27,2012 20120917_DEN@ATL,4,14,0,DEN,ATL,2,20,40,(14:00) (Shotgun) P.Manning pass incomplete deep right to D.Thomas. PENALTY on ATL-A.Samuel Defensive Pass Interference 16 yards enforced at ATL 40 - No Play.,7,27,2012 20120917_DEN@ATL,4,13,53,DEN,ATL,1,10,24,(13:53) (Shotgun) P.Manning pass short right to D.Thomas pushed ob at ATL 12 for 12 yards (A.Samuel).,7,27,2012 20120917_DEN@ATL,4,13,26,DEN,ATL,1,10,12,(13:26) (Shotgun) W.McGahee right guard to ATL 7 for 5 yards (S.Nicholas; K.Biermann).,7,27,2012 20120917_DEN@ATL,4,13,1,DEN,ATL,2,5,7,(13:01) (Shotgun) W.McGahee right tackle to ATL 1 for 6 yards (W.Moore; D.Franks).,7,27,2012 20120917_DEN@ATL,4,12,40,DEN,ATL,1,1,1,(12:40) PENALTY on DEN-D.Thomas False Start 4 yards enforced at ATL 1 - No Play.,7,27,2012 20120917_DEN@ATL,4,12,38,DEN,ATL,1,5,5,(12:38) (Shotgun) W.McGahee right guard to ATL 2 for 3 yards (W.Moore; S.Weatherspoon).,7,27,2012 20120917_DEN@ATL,4,11,55,DEN,ATL,2,2,2,(11:55) (No Huddle) W.McGahee left tackle for 2 yards TOUCHDOWN.,7,27,2012 20120917_DEN@ATL,4,11,55,DEN,ATL,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,27,2012 20120917_DEN@ATL,4,11,55,DEN,ATL,,,2,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,27,2012 20120917_DEN@ATL,4,11,48,ATL,DEN,1,10,80,(11:48) M.Turner right guard to ATL 21 for 1 yard (J.Mays; K.Brooking).,27,14,2012 20120917_DEN@ATL,4,11,7,ATL,DEN,2,9,79,(11:07) M.Ryan scrambles right tackle to ATL 25 for 4 yards.,27,14,2012 20120917_DEN@ATL,4,10,20,ATL,DEN,3,5,75,(10:20) (Shotgun) M.Ryan sacked at ATL 14 for -11 yards (V.Miller).,27,14,2012 20120917_DEN@ATL,4,9,47,ATL,DEN,4,16,86,(9:47) M.Bosher punts 49 yards to DEN 37 Center-J.Harris. J.Leonhard to DEN 39 for 2 yards (A.Dent; DJ.Davis).,27,14,2012 20120917_DEN@ATL,4,9,35,DEN,ATL,1,10,61,(9:35) (Shotgun) K.Moreno right tackle to DEN 39 for no gain (S.Nicholas).,14,27,2012 20120917_DEN@ATL,4,9,18,DEN,ATL,2,10,61,(9:18) (Shotgun) P.Manning pass short left to D.Thomas to ATL 46 for 15 yards (D.Franks).,14,27,2012 20120917_DEN@ATL,4,8,47,DEN,ATL,1,10,46,(8:47) (Shotgun) P.Manning pass incomplete deep middle to E.Decker.,14,27,2012 20120917_DEN@ATL,4,8,40,DEN,ATL,2,10,46,(8:40) (Shotgun) P.Manning pass short right to D.Thomas to ATL 42 for 4 yards (D.Franks).,14,27,2012 20120917_DEN@ATL,4,8,6,DEN,ATL,3,6,42,(8:06) (Shotgun) P.Manning sacked at DEN 45 for -13 yards (W.Moore).,14,27,2012 20120917_DEN@ATL,4,7,32,DEN,ATL,4,19,55,(7:32) B.Colquitt punts 52 yards to ATL 3 Center-A.Brewer downed by DEN-M.Willis.,14,27,2012 20120917_DEN@ATL,4,7,22,ATL,DEN,1,10,97,(7:22) M.Turner left guard to ATL 6 for 3 yards (J.Mays).,27,14,2012 20120917_DEN@ATL,4,6,36,ATL,DEN,2,7,94,(6:36) M.Ryan pass incomplete short right to L.Polite.,27,14,2012 20120917_DEN@ATL,4,6,30,ATL,DEN,3,7,94,(6:30) (Shotgun) M.Ryan pass incomplete deep left to J.Jones.,27,14,2012 20120917_DEN@ATL,4,6,25,ATL,DEN,4,7,94,(6:25) M.Bosher punts 48 yards to DEN 46 Center-J.Harris. E.Decker pushed ob at ATL 45 for 9 yards (J.Snelling).,27,14,2012 20120917_DEN@ATL,4,6,13,DEN,ATL,1,10,45,(6:13) (Shotgun) P.Manning pass deep right to E.Decker to ATL 27 for 18 yards (S.Weatherspoon).,14,27,2012 20120917_DEN@ATL,4,5,34,DEN,ATL,1,10,27,(5:34) (No Huddle Shotgun) P.Manning sacked at ATL 29 for -2 yards (J.Babineaux).,14,27,2012 20120917_DEN@ATL,4,5,9,DEN,ATL,2,12,29,(5:09) (No Huddle Shotgun) P.Manning pass short right to D.Thomas to ATL 18 for 11 yards (S.Weatherspoon).,14,27,2012 20120917_DEN@ATL,4,4,45,DEN,ATL,3,1,18,(4:45) (Shotgun) W.McGahee left guard to ATL 15 for 3 yards (S.Weatherspoon; S.Nicholas).,14,27,2012 20120917_DEN@ATL,4,4,19,DEN,ATL,1,10,15,(4:19) (Shotgun) P.Manning pass short right to K.Moreno pushed ob at ATL 3 for 12 yards (W.Moore).,14,27,2012 20120917_DEN@ATL,4,4,10,DEN,ATL,1,3,3,(4:10) (Shotgun) P.Manning pass incomplete short left to E.Decker.,14,27,2012 20120917_DEN@ATL,4,4,5,DEN,ATL,2,3,3,(4:05) (Shotgun) W.McGahee left guard to ATL 2 for 1 yard (K.Biermann).,14,27,2012 20120917_DEN@ATL,4,3,34,DEN,ATL,3,2,2,(3:34) (Shotgun) P.Manning pass incomplete short middle to D.Thomas.,14,27,2012 20120917_DEN@ATL,4,3,29,DEN,ATL,4,2,2,(3:29) W.McGahee right guard for 2 yards TOUCHDOWN.,14,27,2012 20120917_DEN@ATL,4,3,29,DEN,ATL,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,27,2012 20120917_DEN@ATL,4,3,29,DEN,ATL,,,2,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,21,27,2012 20120917_DEN@ATL,4,3,25,ATL,DEN,1,10,80,(3:25) M.Turner left guard to ATL 24 for 4 yards (J.Bannan).,27,21,2012 20120917_DEN@ATL,4,2,40,ATL,DEN,2,6,76,(2:40) M.Turner left tackle to ATL 25 for 1 yard (J.Mays; K.Vickerson).,27,21,2012 20120917_DEN@ATL,4,2,35,ATL,DEN,3,5,75,(2:35) (Shotgun) M.Ryan pass short right to J.Jones to ATL 31 for 6 yards (R.Moore).,27,21,2012 20120917_DEN@ATL,4,2,0,ATL,DEN,1,10,69,(2:00) M.Turner left end to ATL 33 for 2 yards (E.Dumervil).,27,21,2012 20120917_DEN@ATL,4,1,54,ATL,DEN,2,8,67,(1:54) M.Turner right end to ATL 48 for 15 yards (M.Adams).,27,21,2012 20120917_DEN@ATL,4,0,57,ATL,DEN,1,10,52,(:57) M.Ryan kneels to ATL 47 for -1 yards.,27,21,2012 20120917_DEN@ATL,4,0,17,ATL,DEN,2,11,53,(:17) M.Ryan kneels to ATL 45 for -2 yards.,27,21,2012 20120917_DEN@ATL,4,0,17,ATL,DEN,,,53,                      ,27,21,2012 20120920_NYG@CAR,1,0,0,CAR,NYG,,,53,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 20120920_NYG@CAR,1,60,0,NYG,CAR,1,10,80,(15:00) E.Manning pass short right to V.Cruz to NYG 32 for 12 yards (C.Godfrey; J.Anderson).,0,0,2012 20120920_NYG@CAR,1,59,26,NYG,CAR,1,10,68,(14:26) E.Manning pass short right to R.Barden to NYG 40 for 8 yards (L.Kuechly).,0,0,2012 20120920_NYG@CAR,1,58,47,NYG,CAR,2,2,60,(13:47) A.Brown left end to NYG 47 for 7 yards (J.Norman; L.Kuechly). Penalty on CAR-C.Johnson Defensive Offside declined.,0,0,2012 20120920_NYG@CAR,1,58,25,NYG,CAR,1,10,53,(13:25) E.Manning pass incomplete short left to A.Brown [D.Edwards].,0,0,2012 20120920_NYG@CAR,1,58,21,NYG,CAR,2,10,53,(13:21) A.Brown right tackle pushed ob at CAR 22 for 31 yards (H.Nakamura).,0,0,2012 20120920_NYG@CAR,1,57,52,NYG,CAR,1,10,22,(12:52) A.Brown left guard to CAR 22 for no gain (C.Godfrey).,0,0,2012 20120920_NYG@CAR,1,57,13,NYG,CAR,2,10,22,(12:13) E.Manning pass short left to H.Hynoski to CAR 14 for 8 yards (J.Anderson).,0,0,2012 20120920_NYG@CAR,1,56,42,NYG,CAR,3,2,14,(11:42) (Shotgun) E.Manning pass short left to M.Bennett for 14 yards TOUCHDOWN.,0,0,2012 20120920_NYG@CAR,1,56,42,NYG,CAR,,,14,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 20120920_NYG@CAR,1,56,42,NYG,CAR,,,14,L.Tynes kicks 62 yards from NYG 35 to CAR 3. J.Adams to CAR 18 for 15 yards (K.Rivers).,7,0,2012 20120920_NYG@CAR,1,56,33,CAR,NYG,1,10,82,(11:33) D.Williams left guard to CAR 23 for 5 yards (M.Kiwanuka).,0,7,2012 20120920_NYG@CAR,1,55,53,CAR,NYG,2,6,77,(10:53) (Shotgun) C.Newton pass incomplete deep left to L.Murphy.,0,7,2012 20120920_NYG@CAR,1,55,48,CAR,NYG,3,6,77,(10:48) (Shotgun) C.Newton pass incomplete short left to S.Smith. PENALTY on NYG-C.Webster Defensive Pass Interference 3 yards enforced at CAR 23 - No Play.,0,7,2012 20120920_NYG@CAR,1,55,44,CAR,NYG,1,10,74,(10:44) (Shotgun) C.Newton pass deep left to G.Olsen to CAR 49 for 23 yards (A.Rolle).,0,7,2012 20120920_NYG@CAR,1,55,17,CAR,NYG,1,10,51,(10:17) (No Huddle Shotgun) C.Newton left end to CAR 49 for no gain. Lateral to D.Williams to NYG 44 for 7 yards (C.Webster).,0,7,2012 20120920_NYG@CAR,1,54,52,CAR,NYG,2,3,44,(9:52) (No Huddle Shotgun) D.Williams up the middle to NYG 44 for no gain (J.Tuck).,0,7,2012 20120920_NYG@CAR,1,54,13,CAR,NYG,3,3,44,(9:13) (Shotgun) C.Newton left end to NYG 44 for no gain (J.Pierre-Paul).,0,7,2012 20120920_NYG@CAR,1,53,36,CAR,NYG,4,3,44,(8:36) B.Nortman punts 44 yards to end zone Center-J.Jansen Touchback.,0,7,2012 20120920_NYG@CAR,1,53,30,NYG,CAR,1,10,80,(8:30) A.Brown right guard to NYG 36 for 16 yards (J.Norman).,7,0,2012 20120920_NYG@CAR,1,52,54,NYG,CAR,1,10,64,(7:54) E.Manning pass short right to R.Barden to CAR 43 for 21 yards (L.Kuechly).,7,0,2012 20120920_NYG@CAR,1,52,9,NYG,CAR,1,10,43,(7:09) A.Brown up the middle to CAR 40 for 3 yards (L.Kuechly).,7,0,2012 20120920_NYG@CAR,1,51,32,NYG,CAR,2,7,40,(6:32) (Shotgun) E.Manning pass short left to D.Wilson to CAR 37 for 3 yards (J.Norman).,7,0,2012 20120920_NYG@CAR,1,50,52,NYG,CAR,3,4,37,(5:52) (Shotgun) E.Manning pass short left to V.Cruz to CAR 31 for 6 yards (J.Norman).,7,0,2012 20120920_NYG@CAR,1,50,13,NYG,CAR,1,10,31,(5:13) E.Manning pass short right to A.Brown to CAR 33 for -2 yards (L.Kuechly).,7,0,2012 20120920_NYG@CAR,1,49,36,NYG,CAR,2,12,33,(4:36) (Shotgun) E.Manning pass short right to R.Randle to CAR 29 for 4 yards (C.Gamble).,7,0,2012 20120920_NYG@CAR,1,48,54,NYG,CAR,3,8,29,(3:54) (Shotgun) E.Manning pass incomplete short left to V.Cruz (C.Munnerlyn).,7,0,2012 20120920_NYG@CAR,1,48,50,NYG,CAR,4,8,29,(3:50) L.Tynes 47 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,0,2012 20120920_NYG@CAR,1,48,50,NYG,CAR,,,29,L.Tynes kicks 61 yards from NYG 35 to CAR 4. J.Adams to CAR 18 for 14 yards (W.Hill).,10,0,2012 20120920_NYG@CAR,1,48,40,CAR,NYG,1,10,82,(3:40) (Shotgun) C.Newton pass incomplete short right to G.Olsen (J.Pierre-Paul).,0,10,2012 20120920_NYG@CAR,1,48,34,CAR,NYG,2,10,82,(3:34) (Shotgun) D.Williams left end to CAR 34 for 16 yards (A.Rolle).,0,10,2012 20120920_NYG@CAR,1,47,58,CAR,NYG,1,10,66,(2:58) D.Williams left end to CAR 39 for 5 yards (C.Blackburn).,0,10,2012 20120920_NYG@CAR,1,47,31,CAR,NYG,2,5,61,(2:31) (Shotgun) C.Newton up the middle to CAR 39 for no gain (J.Tuck).,0,10,2012 20120920_NYG@CAR,1,47,0,CAR,NYG,3,5,61,(2:00) (Shotgun) C.Newton pass incomplete short left to B.LaFell (J.Hosley).,0,10,2012 20120920_NYG@CAR,1,46,44,CAR,NYG,4,5,61,(1:44) B.Nortman punts 39 yards to NYG 22 Center-J.Jansen. R.Randle to NYG 28 for 6 yards (C.Munnerlyn).,0,10,2012 20120920_NYG@CAR,1,46,42,NYG,CAR,1,10,72,(1:42) A.Brown left tackle to NYG 29 for 1 yard.,10,0,2012 20120920_NYG@CAR,1,46,9,NYG,CAR,2,9,71,(1:09) A.Brown up the middle to NYG 48 for 19 yards (H.Nakamura; J.Norman).,10,0,2012 20120920_NYG@CAR,1,45,25,NYG,CAR,1,10,52,(:25) E.Manning pass short left to H.Hynoski to CAR 45 for 7 yards (J.Norman; J.Anderson).,10,0,2012 20120920_NYG@CAR,2,45,0,NYG,CAR,2,3,45,(15:00) E.Manning pass deep left to R.Barden to CAR 25 for 20 yards (J.Norman).,10,0,2012 20120920_NYG@CAR,2,44,27,NYG,CAR,1,10,25,(14:27) A.Brown left guard to CAR 23 for 2 yards (D.Edwards; J.Beason).,10,0,2012 20120920_NYG@CAR,2,43,50,NYG,CAR,2,8,23,(13:50) (Shotgun) E.Manning pass short left to R.Barden to CAR 9 for 14 yards (C.Gamble).,10,0,2012 20120920_NYG@CAR,2,43,15,NYG,CAR,1,9,9,(13:15) (Shotgun) A.Brown left tackle to CAR 2 for 7 yards (J.Norman).,10,0,2012 20120920_NYG@CAR,2,42,48,NYG,CAR,2,2,2,(12:48) A.Brown up the middle to CAR 1 for 1 yard (J.Anderson; J.Beason).,10,0,2012 20120920_NYG@CAR,2,42,8,NYG,CAR,3,1,1,(12:08) A.Brown left guard for 1 yard TOUCHDOWN.,10,0,2012 20120920_NYG@CAR,2,42,8,NYG,CAR,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,0,2012 20120920_NYG@CAR,2,42,8,NYG,CAR,,,1,L.Tynes kicks 70 yards from NYG 35 to CAR -5. J.Adams to CAR 21 for 26 yards (D.Scott).,17,0,2012 20120920_NYG@CAR,2,41,57,CAR,NYG,1,10,79,(11:57) (Shotgun) C.Newton pass incomplete short right to G.Olsen (J.Pierre-Paul).,0,17,2012 20120920_NYG@CAR,2,41,54,CAR,NYG,2,10,79,(11:54) (Shotgun) C.Newton pass incomplete short right to M.Tolbert.,0,17,2012 20120920_NYG@CAR,2,41,49,CAR,NYG,3,10,79,(11:49) (Shotgun) C.Newton pass deep right to B.LaFell to CAR 48 for 27 yards (K.Phillips).,0,17,2012 20120920_NYG@CAR,2,41,7,CAR,NYG,1,10,52,(11:07) (Shotgun) D.Williams left guard to NYG 45 for 7 yards (K.Phillips; M.Kuhn).,0,17,2012 20120920_NYG@CAR,2,40,31,CAR,NYG,2,3,45,(10:31) D.Williams up the middle to NYG 45 for no gain (J.Williams).,0,17,2012 20120920_NYG@CAR,2,39,49,CAR,NYG,3,3,45,(9:49) (Shotgun) C.Newton sacked at CAR 46 for -9 yards (O.Umenyiora).,0,17,2012 20120920_NYG@CAR,2,39,20,CAR,NYG,4,12,54,(9:20) B.Nortman punts 42 yards to NYG 12 Center-J.Jansen fair catch by R.Randle.,0,17,2012 20120920_NYG@CAR,2,39,12,NYG,CAR,1,10,88,(9:12) E.Manning pass short left to V.Cruz to NYG 20 for 8 yards (J.Beason).,17,0,2012 20120920_NYG@CAR,2,38,38,NYG,CAR,2,2,80,(8:38) A.Brown left guard to NYG 23 for 3 yards (L.Kuechly; C.Johnson).,17,0,2012 20120920_NYG@CAR,2,37,55,NYG,CAR,1,10,77,(7:55) E.Manning pass deep left to R.Barden to NYG 44 for 21 yards (J.Norman).,17,0,2012 20120920_NYG@CAR,2,37,12,NYG,CAR,1,10,56,(7:12) (Shotgun) E.Manning pass incomplete short middle to B.Pascoe.,17,0,2012 20120920_NYG@CAR,2,37,6,NYG,CAR,2,10,56,(7:06) A.Brown right guard to NYG 47 for 3 yards (C.Godfrey). PENALTY on NYG-M.Bennett Offensive Holding 10 yards enforced at NYG 44 - No Play.,17,0,2012 20120920_NYG@CAR,2,36,45,NYG,CAR,2,20,66,(6:45) (Shotgun) E.Manning pass deep right to R.Barden to CAR 43 for 23 yards (H.Nakamura).,17,0,2012 20120920_NYG@CAR,2,36,1,NYG,CAR,1,10,43,(6:01) (Shotgun) A.Brown up the middle to CAR 38 for 5 yards (C.Munnerlyn; J.Anderson).,17,0,2012 20120920_NYG@CAR,2,35,15,NYG,CAR,2,5,38,(5:15) (Shotgun) E.Manning pass short right to M.Bennett to CAR 32 for 6 yards (C.Gamble; J.Anderson).,17,0,2012 20120920_NYG@CAR,2,34,39,NYG,CAR,1,10,32,(4:39) D.Wilson up the middle to CAR 34 for -2 yards (J.Anderson).,17,0,2012 20120920_NYG@CAR,2,34,1,NYG,CAR,2,12,34,(4:01) (Shotgun) E.Manning pass short left to V.Cruz to CAR 31 for 3 yards (J.Anderson).,17,0,2012 20120920_NYG@CAR,2,33,19,NYG,CAR,3,9,31,(3:19) (Shotgun) E.Manning pass incomplete short left to R.Randle.,17,0,2012 20120920_NYG@CAR,2,33,17,NYG,CAR,4,9,31,(3:17) L.Tynes 49 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,17,0,2012 20120920_NYG@CAR,2,33,17,NYG,CAR,,,31,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,20,0,2012 20120920_NYG@CAR,2,33,13,CAR,NYG,1,10,80,(3:13) (Shotgun) C.Newton pass short right to S.Smith to CAR 33 for 13 yards (C.Webster).,0,20,2012 20120920_NYG@CAR,2,33,13,CAR,NYG,1,10,67,(3:13) (Shotgun) C.Newton pass short left to G.Olsen to NYG 49 for 18 yards (K.Phillips).,0,20,2012 20120920_NYG@CAR,2,32,15,CAR,NYG,1,10,49,(2:15) (Shotgun) C.Newton pass short right to G.Olsen to NYG 40 for 9 yards (P.Amukamara).,0,20,2012 20120920_NYG@CAR,2,32,0,CAR,NYG,2,1,40,(2:00) (Shotgun) M.Tolbert right guard to NYG 39 for 1 yard (J.Tuck; J.Williams).,0,20,2012 20120920_NYG@CAR,2,31,30,CAR,NYG,1,10,39,(1:30) (No Huddle Shotgun) C.Newton pass incomplete short right to G.Olsen.,0,20,2012 20120920_NYG@CAR,2,31,29,CAR,NYG,2,10,39,(1:29) (Shotgun) PENALTY on CAR-S.Smith False Start 5 yards enforced at NYG 39 - No Play.,0,20,2012 20120920_NYG@CAR,2,31,29,CAR,NYG,2,15,44,(1:29) (Shotgun) C.Newton pass short right intended for B.LaFell INTERCEPTED by J.Hosley at NYG 39. J.Hosley to NYG 41 for 2 yards (B.LaFell). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) C.Newton pass short right intended for B.LaFell INTERCEPTED by J.Hosley at NYG 41. J.Hosley to NYG 41 for no gain (B.LaFell).,0,20,2012 20120920_NYG@CAR,2,31,18,NYG,CAR,1,10,43,(1:18) E.Manning scrambles right end to CAR 42 for 1 yard (C.Munnerlyn).,20,0,2012 20120920_NYG@CAR,2,31,18,NYG,CAR,1,10,59,(1:18) E.Manning pass left to R.Barden to CAR 43 for 16 yards (C.Godfrey).,20,0,2012 20120920_NYG@CAR,2,31,18,NYG,CAR,1,10,59,(1:18) (Shotgun) E.Manning pass deep left to R.Barden to CAR 43 for 16 yards (C.Godfrey).,20,0,2012 20120920_NYG@CAR,2,31,2,NYG,CAR,1,10,43,(1:02) (Shotgun) E.Manning scrambles right end ran ob at CAR 42 for 1 yard (F.Alexander).,20,0,2012 20120920_NYG@CAR,2,30,50,NYG,CAR,2,9,42,(:50) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,20,0,2012 20120920_NYG@CAR,2,30,48,NYG,CAR,3,9,42,(:48) (Shotgun) E.Manning pass incomplete middle to M.Bennett.,20,0,2012 20120920_NYG@CAR,2,30,50,NYG,CAR,3,9,42,(:50) S.Weatherford punts 35 yards to CAR 7 downed by NYG-C.Blackburn.,20,0,2012 20120920_NYG@CAR,2,30,37,CAR,NYG,1,10,92,(:37) (Shotgun) M.Tolbert right guard to CAR 11 for 3 yards (K.Phillips).,0,20,2012 20120920_NYG@CAR,3,30,0,NYG,CAR,,,92,L.Tynes kicks 68 yards from NYG 35 to CAR -3. J.Adams to CAR 20 for 23 yards (S.Paysinger). FUMBLES (S.Paysinger) RECOVERED by NYG-S.Paysinger at CAR 19. S.Paysinger to CAR 19 for no gain (J.Byers).,20,0,2012 20120920_NYG@CAR,3,29,52,NYG,CAR,1,10,19,(14:52) A.Brown left guard to CAR 16 for 3 yards (C.Godfrey).,20,0,2012 20120920_NYG@CAR,3,29,11,NYG,CAR,2,7,16,(14:11) A.Brown right tackle to CAR 16 for no gain (L.Kuechly; C.Johnson).,20,0,2012 20120920_NYG@CAR,3,29,11,NYG,CAR,3,7,16,(14:11) (Shotgun) E.Manning scrambles right guard to CAR 12 for 4 yards (C.Godfrey).,20,0,2012 20120920_NYG@CAR,3,29,11,NYG,CAR,4,3,12,(14:11) L.Tynes 30 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,20,0,2012 20120920_NYG@CAR,3,29,11,NYG,CAR,,,12,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,23,0,2012 20120920_NYG@CAR,3,27,49,CAR,NYG,1,10,80,(12:49) C.Newton pass short left to M.Tolbert to CAR 34 for 14 yards (J.Hosley; R.Bernard).,0,23,2012 20120920_NYG@CAR,3,27,7,CAR,NYG,1,10,66,(12:07) C.Newton pass incomplete short right to B.LaFell.,0,23,2012 20120920_NYG@CAR,3,27,2,CAR,NYG,2,10,66,(12:02) (Shotgun) D.Williams up the middle to CAR 36 for 2 yards (L.Joseph).,0,23,2012 20120920_NYG@CAR,3,26,26,CAR,NYG,3,8,64,(11:26) (Shotgun) C.Newton pass deep middle to S.Smith to NYG 47 for 17 yards (J.Hosley).,0,23,2012 20120920_NYG@CAR,3,25,51,CAR,NYG,1,10,47,(10:51) M.Tolbert left tackle to NYG 47 for no gain (J.Pierre-Paul; J.Hosley).,0,23,2012 20120920_NYG@CAR,3,25,17,CAR,NYG,2,10,47,(10:17) (Shotgun) C.Newton pass short middle to G.Olsen to NYG 31 for 16 yards (M.Boley).,0,23,2012 20120920_NYG@CAR,3,24,47,CAR,NYG,1,10,31,(9:47) (Shotgun) C.Newton pass short left to L.Murphy to NYG 24 for 7 yards (A.Rolle).,0,23,2012 20120920_NYG@CAR,3,24,17,CAR,NYG,2,3,24,(9:17) (Shotgun) D.Williams left guard to NYG 22 for 2 yards (A.Rolle).,0,23,2012 20120920_NYG@CAR,3,23,54,CAR,NYG,3,1,22,(8:54) (Shotgun) C.Newton up the middle to NYG 20 for 2 yards (K.Phillips).,0,23,2012 20120920_NYG@CAR,3,23,12,CAR,NYG,1,10,20,(8:12) C.Newton pass short left to G.Olsen to NYG 9 for 11 yards (M.Boley).,0,23,2012 20120920_NYG@CAR,3,22,38,CAR,NYG,1,9,9,(7:38) (Shotgun) D.Williams left guard to NYG 1 for 8 yards (M.Boley).,0,23,2012 20120920_NYG@CAR,3,22,12,CAR,NYG,2,1,1,(7:12) (Shotgun) C.Newton up the middle to NYG 1 for no gain (L.Joseph).,0,23,2012 20120920_NYG@CAR,3,21,28,CAR,NYG,3,1,1,(6:28) (Shotgun) C.Newton up the middle for 1 yard TOUCHDOWN.,0,23,2012 20120920_NYG@CAR,3,21,28,CAR,NYG,,,1,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,23,2012 20120920_NYG@CAR,3,21,28,CAR,NYG,,,1,J.Medlock kicks 65 yards from CAR 35 to NYG 0. D.Wilson to NYG 19 for 19 yards (K.Onatolu; J.Senn).,7,23,2012 20120920_NYG@CAR,3,21,19,NYG,CAR,1,10,81,(6:19) E.Manning pass deep middle to M.Bennett to NYG 48 for 29 yards (J.Anderson).,23,7,2012 20120920_NYG@CAR,3,20,36,NYG,CAR,1,10,52,(5:36) E.Manning pass short right to V.Cruz to CAR 46 for 6 yards (J.Anderson; C.Gamble).,23,7,2012 20120920_NYG@CAR,3,19,54,NYG,CAR,2,4,46,(4:54) A.Brown up the middle to CAR 44 for 2 yards (R.Edwards).,23,7,2012 20120920_NYG@CAR,3,19,14,NYG,CAR,3,2,44,(4:14) E.Manning pass short middle to V.Cruz to CAR 37 for 7 yards (J.Anderson).,23,7,2012 20120920_NYG@CAR,3,18,35,NYG,CAR,1,10,37,(3:35) A.Brown left tackle to CAR 34 for 3 yards (T.Keiser; J.Beason).,23,7,2012 20120920_NYG@CAR,3,17,56,NYG,CAR,2,7,34,(2:56) (Shotgun) E.Manning pass short middle to M.Bennett to CAR 26 for 8 yards (C.Munnerlyn).,23,7,2012 20120920_NYG@CAR,3,17,18,NYG,CAR,1,10,26,(2:18) E.Manning pass incomplete short right to A.Brown (L.Kuechly).,23,7,2012 20120920_NYG@CAR,3,17,12,NYG,CAR,2,10,26,(2:12) (Shotgun) E.Manning sacked at CAR 32 for -6 yards (F.Alexander).,23,7,2012 20120920_NYG@CAR,3,16,37,NYG,CAR,3,16,32,(1:37) (Shotgun) E.Manning pass short left to A.Brown to CAR 18 for 14 yards (J.Norman).,23,7,2012 20120920_NYG@CAR,3,15,53,NYG,CAR,4,2,18,(:53) L.Tynes 36 yard field goal is GOOD Center-J.Pierre-Paul Holder-S.Weatherford.,23,7,2012 20120920_NYG@CAR,3,15,53,NYG,CAR,,,18,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,26,7,2012 20120920_NYG@CAR,3,15,49,CAR,NYG,1,10,80,(:49) C.Newton pass short right to M.Tolbert to CAR 32 for 12 yards (C.Webster).,7,26,2012 20120920_NYG@CAR,3,15,12,CAR,NYG,1,10,68,(:12) (Shotgun) D.Williams left end to CAR 30 for -2 yards (R.Bernard). PENALTY on NYG-P.Amukamara Unnecessary Roughness 15 yards enforced at CAR 30.,7,26,2012 20120920_NYG@CAR,4,15,0,CAR,NYG,1,10,55,(15:00) (Shotgun) C.Newton pass short left to G.Olsen to NYG 39 for 16 yards (A.Rolle).,7,26,2012 20120920_NYG@CAR,4,14,22,CAR,NYG,1,10,39,(14:22) (Shotgun) C.Newton sacked at CAR 49 for -12 yards (sack split by J.Pierre-Paul and M.Boley).,7,26,2012 20120920_NYG@CAR,4,13,47,CAR,NYG,2,22,51,(13:47) (Shotgun) C.Newton pass incomplete deep middle to L.Murphy (P.Amukamara).,7,26,2012 20120920_NYG@CAR,4,13,42,CAR,NYG,3,23,51,(13:42) (Shotgun) C.Newton pass deep middle intended for G.Olsen INTERCEPTED by M.Boley at NYG 35. M.Boley to CAR 48 for 17 yards (R.Kalil; K.Pilares).,7,26,2012 20120920_NYG@CAR,4,13,31,NYG,CAR,1,10,48,(13:31) A.Brown left tackle to CAR 41 for 7 yards (C.Godfrey; L.Kuechly).,26,7,2012 20120920_NYG@CAR,4,12,45,NYG,CAR,2,3,41,(12:45) E.Manning pass short left to R.Barden to CAR 31 for 10 yards (J.Norman).,26,7,2012 20120920_NYG@CAR,4,12,5,NYG,CAR,1,10,31,(12:05) (Shotgun) A.Brown left end pushed ob at CAR 30 for 1 yard (J.Anderson).,26,7,2012 20120920_NYG@CAR,4,11,40,NYG,CAR,2,9,30,(11:40) (Shotgun) E.Manning pass short right to R.Barden to CAR 25 for 5 yards (F.Alexander).,26,7,2012 20120920_NYG@CAR,4,10,56,NYG,CAR,3,4,25,(10:56) (Shotgun) E.Manning pass short right to M.Bennett to CAR 13 for 12 yards (C.Gamble; C.Godfrey). PENALTY on CAR-C.Godfrey Face Mask (15 Yards) 7 yards enforced at CAR 13.,26,7,2012 20120920_NYG@CAR,4,10,25,NYG,CAR,1,6,6,(10:25) (Shotgun) E.Manning pass incomplete short left to R.Barden (J.Norman).,26,7,2012 20120920_NYG@CAR,4,10,20,NYG,CAR,2,6,6,(10:20) (Shotgun) E.Manning pass short right to A.Brown to CAR 1 for 5 yards (C.Godfrey; L.Kuechly).,26,7,2012 20120920_NYG@CAR,4,9,42,NYG,CAR,3,1,1,(9:42) A.Brown left guard for 1 yard TOUCHDOWN.,26,7,2012 20120920_NYG@CAR,4,9,42,NYG,CAR,,,1,L.Tynes extra point is GOOD Center-J.Pierre-Paul Holder-S.Weatherford.,26,7,2012 20120920_NYG@CAR,4,9,42,NYG,CAR,,,1,L.Tynes kicks 68 yards from NYG 35 to CAR -3. J.Adams to CAR 25 for 28 yards (D.Scott).,33,7,2012 20120920_NYG@CAR,4,9,34,CAR,NYG,1,10,75,(9:34) (Shotgun) C.Newton pass short left to S.Smith to NYG 42 for 33 yards (A.Rolle).,7,33,2012 20120920_NYG@CAR,4,9,3,CAR,NYG,1,10,42,(9:03) (Shotgun) C.Newton scrambles right end pushed ob at NYG 39 for 3 yards (M.Boley).,7,33,2012 20120920_NYG@CAR,4,8,34,CAR,NYG,2,7,39,(8:34) (Shotgun) C.Newton pass short middle to G.Olsen to NYG 34 for 5 yards (A.Rolle).,7,33,2012 20120920_NYG@CAR,4,8,4,CAR,NYG,3,2,34,(8:04) (No Huddle Shotgun) C.Newton pass incomplete deep left to S.Smith. PENALTY on NYG-C.Webster Illegal Contact 5 yards enforced at NYG 34 - No Play.,7,33,2012 20120920_NYG@CAR,4,8,0,CAR,NYG,1,10,29,(8:00) (Shotgun) C.Newton pass short left to M.Tolbert to NYG 25 for 4 yards (C.Webster).,7,33,2012 20120920_NYG@CAR,4,7,33,CAR,NYG,2,6,25,(7:33) (No Huddle Shotgun) C.Newton pass short left to M.Tolbert to NYG 8 for 17 yards (M.Boley).,7,33,2012 20120920_NYG@CAR,4,6,53,CAR,NYG,1,8,8,(6:53) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,7,33,2012 20120920_NYG@CAR,4,6,46,CAR,NYG,2,8,8,(6:46) (Shotgun) C.Newton pass incomplete short left to G.Olsen. NYG-A.Rolle was injured during the play. His return is Doubtful.,7,33,2012 20120920_NYG@CAR,4,6,40,CAR,NYG,3,8,8,(6:40) (Shotgun) C.Newton pass incomplete short middle to G.Olsen.,7,33,2012 20120920_NYG@CAR,4,6,36,CAR,NYG,4,8,8,(6:36) (Shotgun) C.Newton pass short middle intended for B.LaFell INTERCEPTED by S.Brown at NYG -1. S.Brown to NYG 43 for 44 yards (K.Pilares).,7,33,2012 20120920_NYG@CAR,4,6,25,NYG,CAR,1,10,57,(6:25) D.Carr pass short left to M.Bennett to NYG 47 for 4 yards (C.Godfrey).,33,7,2012 20120920_NYG@CAR,4,5,48,NYG,CAR,2,6,53,(5:48) D.Scott right guard to NYG 46 for -1 yards (L.Kuechly).,33,7,2012 20120920_NYG@CAR,4,5,10,NYG,CAR,3,7,54,(5:10) (Shotgun) D.Carr sacked at NYG 40 for -6 yards (D.Edwards). FUMBLES (D.Edwards) and recovers at NYG 40. D.Carr to NYG 40 for no gain (D.Edwards). Penalty on NYG-J.Cordle Offensive Holding declined.,33,7,2012 20120920_NYG@CAR,4,4,39,NYG,CAR,4,13,60,(4:39) S.Weatherford punts 41 yards to CAR 19 Center-Z.DeOssie. J.Adams MUFFS catch RECOVERED by NYG-J.Tryon at CAR 19.,33,7,2012 20120920_NYG@CAR,4,4,26,NYG,CAR,1,10,19,(4:26) D.Scott right tackle to CAR 15 for 4 yards (J.Anderson).,33,7,2012 20120920_NYG@CAR,4,3,50,NYG,CAR,2,6,15,(3:50) D.Scott left guard to CAR 10 for 5 yards (H.Nakamura).,33,7,2012 20120920_NYG@CAR,4,3,8,NYG,CAR,3,1,10,(3:08) D.Scott left guard to CAR 8 for 2 yards (C.Johnson).,33,7,2012 20120920_NYG@CAR,4,2,30,NYG,CAR,1,8,8,(2:30) D.Carr pass incomplete short left to R.Randle.,33,7,2012 20120920_NYG@CAR,4,2,25,NYG,CAR,2,8,8,(2:25) D.Scott left guard to CAR 9 for -1 yards (L.Kuechly).,33,7,2012 20120920_NYG@CAR,4,2,0,NYG,CAR,3,9,9,(2:00) (Shotgun) D.Scott left tackle to CAR 9 for no gain (L.Kuechly; J.Anderson).,33,7,2012 20120920_NYG@CAR,4,1,13,NYG,CAR,4,9,9,(1:13) L.Tynes 27 yard field goal is GOOD Center-J.Pierre-Paul Holder-S.Weatherford.,33,7,2012 20120920_NYG@CAR,4,1,13,NYG,CAR,,,9,L.Tynes kicks 64 yards from NYG 35 to CAR 1. A.Edwards to CAR 28 for 27 yards (J.Jernigan). PENALTY on CAR-K.Pilares Offensive Holding 10 yards enforced at CAR 22.,36,7,2012 20120920_NYG@CAR,4,1,4,CAR,NYG,1,10,88,(1:04) D.Anderson pass short right to S.Smith to CAR 20 for 8 yards (J.Tryon). PENALTY on NYG-J.Tryon Defensive Holding 5 yards enforced at CAR 12 - No Play.,7,36,2012 20120920_NYG@CAR,4,0,59,CAR,NYG,1,10,83,(:59) (Shotgun) D.Anderson pass short left to S.Smith to CAR 40 for 23 yards (W.Hill).,7,36,2012 20120920_NYG@CAR,4,0,32,CAR,NYG,1,10,60,(:32) (No Huddle Shotgun) D.Anderson pass short middle to D.Williams to CAR 49 for 9 yards (S.Paysinger).,7,36,2012 20120920_NYG@CAR,4,0,12,CAR,NYG,2,1,51,(:12) (No Huddle Shotgun) D.Anderson pass short middle to D.Williams to NYG 37 for 14 yards (M.Herzlich).,7,36,2012 20120920_NYG@CAR,4,0,12,CAR,NYG,,,51,                      ,7,36,2012 20120923_STL@CHI,1,0,0,STL,CHI,,,51,G.Zuerlein kicks 68 yards from SL 35 to CHI -3. D.Hester to CHI 27 for 30 yards (Q.Mikell).,0,0,2012 20120923_STL@CHI,1,59,54,CHI,STL,1,10,73,(14:54) M.Bush right tackle to CHI 39 for 12 yards (C.Dahl).,0,0,2012 20120923_STL@CHI,1,59,20,CHI,STL,1,10,61,(14:20) J.Cutler pass incomplete short right to D.Hester.,0,0,2012 20120923_STL@CHI,1,59,16,CHI,STL,2,10,61,(14:16) J.Cutler pass short right to B.Marshall pushed ob at CHI 48 for 9 yards (J.Jenkins) [J.Dunbar].,0,0,2012 20120923_STL@CHI,1,58,39,CHI,STL,3,1,52,(13:39) C.Williams reported in as eligible. M.Bush left tackle to SL 49 for 3 yards (J.Laurinaitis).,0,0,2012 20120923_STL@CHI,1,58,18,CHI,STL,1,10,49,(13:18) PENALTY on CHI-C.Rachal False Start 5 yards enforced at SL 49 - No Play.,0,0,2012 20120923_STL@CHI,1,58,5,CHI,STL,1,15,54,(13:05) (Shotgun) J.Cutler pass short middle to K.Davis to SL 46 for 8 yards (J.Laurinaitis).,0,0,2012 20120923_STL@CHI,1,57,31,CHI,STL,2,7,46,(12:31) M.Bush right tackle to SL 44 for 2 yards (J.Cudjo).,0,0,2012 20120923_STL@CHI,1,56,55,CHI,STL,3,5,44,(11:55) (Shotgun) J.Cutler pass incomplete short left to E.Bennett (J.Jenkins).,0,0,2012 20120923_STL@CHI,1,56,51,CHI,STL,4,5,44,(11:51) (Punt formation) A.Podlesh punts 36 yards to SL 8 Center-P.Mannelly fair catch by D.Amendola. PENALTY on CHI-G.Hayes Offensive Holding 10 yards enforced at SL 44 - No Play.,0,0,2012 20120923_STL@CHI,1,56,35,CHI,STL,4,15,54,(11:35) (Punt formation) A.Podlesh punts 54 yards to end zone Center-P.Mannelly Touchback. PENALTY on SL-J.Dunbar Roughing the Kicker 15 yards enforced at CHI 46 - No Play.,0,0,2012 20120923_STL@CHI,1,56,32,CHI,STL,1,10,39,(11:32) J.Cutler pass short left to B.Marshall to SL 36 for 3 yards (B.Fletcher).,0,0,2012 20120923_STL@CHI,1,55,56,CHI,STL,2,7,36,(10:56) J.Cutler pass incomplete deep right to A.Jeffery (C.Finnegan) [C.Long].,0,0,2012 20120923_STL@CHI,1,55,50,CHI,STL,3,7,36,(10:50) (Shotgun) J.Cutler pass incomplete short left to B.Marshall [R.Quinn].,0,0,2012 20120923_STL@CHI,1,55,46,CHI,STL,4,7,36,(10:46) (Field Goal formation) R.Gould 54 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 20120923_STL@CHI,1,55,46,CHI,STL,,,36,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,3,0,2012 20120923_STL@CHI,1,55,41,STL,CHI,1,10,80,(10:41) S.Bradford pass short left to B.Gibson to SL 28 for 8 yards (T.Jennings).,0,3,2012 20120923_STL@CHI,1,55,8,STL,CHI,2,2,72,(10:08) S.Bradford scrambles right end pushed ob at SL 32 for 4 yards (C.Tillman).,0,3,2012 20120923_STL@CHI,1,54,42,STL,CHI,1,10,68,(9:42) S.Jackson left guard to SL 36 for 4 yards (H.Melton).,0,3,2012 20120923_STL@CHI,1,53,55,STL,CHI,2,6,64,(8:55) (Shotgun) S.Bradford pass short left to L.Kendricks to SL 41 for 5 yards (B.Urlacher).,0,3,2012 20120923_STL@CHI,1,53,16,STL,CHI,3,1,59,(8:16) S.Jackson left end to SL 43 for 2 yards (J.Peppers).,0,3,2012 20120923_STL@CHI,1,52,39,STL,CHI,1,10,57,(7:39) S.Jackson left end to SL 41 for -2 yards (A.Okoye).,0,3,2012 20120923_STL@CHI,1,51,54,STL,CHI,2,12,59,(6:54) (Shotgun) PENALTY on CHI-S.Paea Neutral Zone Infraction 5 yards enforced at SL 41 - No Play.,0,3,2012 20120923_STL@CHI,1,51,34,STL,CHI,2,7,54,(6:34) (Shotgun) S.Bradford pass short right to L.Kendricks to CHI 49 for 5 yards (L.Briggs).,0,3,2012 20120923_STL@CHI,1,50,54,STL,CHI,3,2,49,(5:54) S.Bradford sacked at SL 38 for -13 yards (A.Okoye).,0,3,2012 20120923_STL@CHI,1,50,36,STL,CHI,4,15,62,(5:36) (Punt formation) J.Hekker punts 41 yards to CHI 21 Center-J.McQuaide. D.Hester to CHI 35 for 14 yards (L.Kendricks).,0,3,2012 20120923_STL@CHI,1,50,23,CHI,STL,1,10,65,(5:23) PENALTY on CHI-L.Louis False Start 5 yards enforced at CHI 35 - No Play.,3,0,2012 20120923_STL@CHI,1,50,23,CHI,STL,1,15,70,(5:23) J.Cutler pass incomplete short left to K.Davis.,3,0,2012 20120923_STL@CHI,1,50,17,CHI,STL,2,15,70,(5:17) (Shotgun) J.Cutler sacked at CHI 28 for -2 yards (C.Long).,3,0,2012 20120923_STL@CHI,1,49,56,CHI,STL,3,17,72,(4:56) (Shotgun) J.Cutler pass short right to M.Bush to CHI 46 for 18 yards (B.Fletcher).,3,0,2012 20120923_STL@CHI,1,49,14,CHI,STL,1,10,54,(4:14) J.Cutler pass incomplete deep right to A.Jeffery (C.Finnegan).,3,0,2012 20120923_STL@CHI,1,49,9,CHI,STL,2,10,54,(4:09) M.Bush left guard to SL 41 for 13 yards (C.Dahl).,3,0,2012 20120923_STL@CHI,1,48,33,CHI,STL,1,10,41,(3:33) D.Hester left end pushed ob at SL 33 for 8 yards (C.Finnegan).,3,0,2012 20120923_STL@CHI,1,48,15,CHI,STL,2,2,33,(3:15) M.Bush right guard to SL 32 for 1 yard (Q.Mikell).,3,0,2012 20120923_STL@CHI,1,47,33,CHI,STL,3,1,32,(2:33) C.Williams reported in as eligible. M.Bush left guard to SL 32 for no gain (J.Cudjo).,3,0,2012 20120923_STL@CHI,1,46,48,CHI,STL,4,1,32,(1:48) M.Bush right tackle to SL 30 for 2 yards (J.Laurinaitis).,3,0,2012 20120923_STL@CHI,1,46,6,CHI,STL,1,10,30,(1:06) K.Bell left end to SL 30 for no gain (E.Sims; J.Dunbar).,3,0,2012 20120923_STL@CHI,1,45,27,CHI,STL,2,10,30,(:27) (Shotgun) J.Cutler pass short left intended for B.Marshall INTERCEPTED by C.Finnegan at SL 22. C.Finnegan to CHI 45 for 33 yards (J.Cutler). FUMBLES (J.Cutler) RECOVERED by CHI-D.Hester at CHI 43. D.Hester to SL 26 for 31 yards (J.Laurinaitis). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Cutler pass short left intended for B.Marshall INTERCEPTED by C.Finnegan at SL 22. C.Finnegan to CHI 46 for 32 yards (J.Cutler).,3,0,2012 20120923_STL@CHI,1,45,16,STL,CHI,1,10,46,(:16) S.Bradford pass incomplete short right to C.Givens.,0,3,2012 20120923_STL@CHI,1,45,10,STL,CHI,2,10,46,(:10) (Shotgun) S.Bradford pass incomplete deep left to B.Gibson.,0,3,2012 20120923_STL@CHI,1,45,4,STL,CHI,3,10,46,(:04) (Shotgun) S.Bradford sacked at SL 44 for -10 yards (S.Paea).,0,3,2012 20120923_STL@CHI,2,45,0,STL,CHI,4,20,56,(15:00) (Punt formation) J.Hekker punts 56 yards to end zone Center-J.McQuaide Touchback.,0,3,2012 20120923_STL@CHI,2,44,51,CHI,STL,1,10,80,(14:51) M.Bush left end to CHI 21 for 1 yard (J.Dunbar).,3,0,2012 20120923_STL@CHI,2,44,14,CHI,STL,2,9,79,(14:14) (Shotgun) M.Bush left tackle to CHI 33 for 12 yards (Q.Mikell).,3,0,2012 20120923_STL@CHI,2,43,28,CHI,STL,1,10,67,(13:28) M.Bush left guard to CHI 29 for -4 yards (K.Heard).,3,0,2012 20120923_STL@CHI,2,42,49,CHI,STL,2,14,71,(12:49) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall.,3,0,2012 20120923_STL@CHI,2,42,45,CHI,STL,3,14,71,(12:45) (Shotgun) J.Cutler pass short middle to E.Bennett to CHI 40 for 11 yards (J.Laurinaitis).,3,0,2012 20120923_STL@CHI,2,42,10,CHI,STL,4,3,60,(12:10) (Punt formation) A.Podlesh punts 46 yards to SL 14 Center-P.Mannelly. D.Amendola to SL 17 for 3 yards (C.Steltz).,3,0,2012 20120923_STL@CHI,2,41,59,STL,CHI,1,10,83,(11:59) D.Richardson left end to SL 29 for 12 yards (M.Wright).,0,3,2012 20120923_STL@CHI,2,41,19,STL,CHI,1,10,71,(11:19) D.Richardson right tackle to SL 30 for 1 yard (H.Melton).,0,3,2012 20120923_STL@CHI,2,40,39,STL,CHI,2,9,70,(10:39) S.Bradford sacked at SL 25 for -5 yards (I.Idonije).,0,3,2012 20120923_STL@CHI,2,39,44,STL,CHI,3,14,75,(9:44) (Shotgun) S.Bradford pass short right to D.Richardson to SL 29 for 4 yards (L.Briggs).,0,3,2012 20120923_STL@CHI,2,39,4,STL,CHI,4,10,71,(9:04) (Punt formation) J.Hekker punts 52 yards to CHI 19 Center-J.McQuaide out of bounds.,0,3,2012 20120923_STL@CHI,2,38,57,CHI,STL,1,10,81,(8:57) J.Cutler pass incomplete short left to E.Bennett.,3,0,2012 20120923_STL@CHI,2,38,54,CHI,STL,2,10,81,(8:54) (Shotgun) J.Cutler pass short left to A.Jeffery to CHI 29 for 10 yards (J.Jenkins).,3,0,2012 20120923_STL@CHI,2,38,9,CHI,STL,1,10,71,(8:09) K.Bell left tackle to CHI 29 for no gain (R.McIntosh).,3,0,2012 20120923_STL@CHI,2,37,28,CHI,STL,2,10,71,(7:28) (Shotgun) J.Cutler pass short left to K.Bell to CHI 40 for 11 yards (J.Jenkins).,3,0,2012 20120923_STL@CHI,2,36,49,CHI,STL,1,10,60,(6:49) PENALTY on CHI-C.Rachal False Start 5 yards enforced at CHI 40 - No Play.,3,0,2012 20120923_STL@CHI,2,36,31,CHI,STL,1,15,65,(6:31) K.Bell left tackle pushed ob at SL 47 for 18 yards (C.Dahl).,3,0,2012 20120923_STL@CHI,2,36,13,CHI,STL,1,10,47,(6:13) M.Bush left guard to SL 45 for 2 yards (J.Cudjo).,3,0,2012 20120923_STL@CHI,2,35,37,CHI,STL,2,8,45,(5:37) (Shotgun) J.Cutler pass short left to M.Bush to SL 45 for no gain (J.Jenkins).,3,0,2012 20120923_STL@CHI,2,34,58,CHI,STL,3,8,45,(4:58) (Shotgun) J.Cutler pass incomplete short right to B.Marshall [D.Stewart]. PENALTY on SL-D.Stewart Roughing the Passer 15 yards enforced at SL 45 - No Play.,3,0,2012 20120923_STL@CHI,2,34,54,CHI,STL,1,10,30,(4:54) J.Cutler pass short middle to B.Marshall to SL 17 for 13 yards (J.Dunbar).,3,0,2012 20120923_STL@CHI,2,34,14,CHI,STL,1,10,17,(4:14) C.Williams and C.Spencer reported in as eligible. M.Bush right guard to SL 19 for -2 yards (W.Hayes).,3,0,2012 20120923_STL@CHI,2,33,28,CHI,STL,2,12,19,(3:28) M.Bush right end to SL 15 for 4 yards (J.Laurinaitis).,3,0,2012 20120923_STL@CHI,2,32,47,CHI,STL,3,8,15,(2:47) (Shotgun) J.Cutler pass short middle to B.Marshall to SL 3 for 12 yards (B.Fletcher).,3,0,2012 20120923_STL@CHI,2,32,0,CHI,STL,1,3,3,(2:00) M.Bush right end for 3 yards TOUCHDOWN.,3,0,2012 20120923_STL@CHI,2,32,0,CHI,STL,,,3,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,0,2012 20120923_STL@CHI,2,32,0,CHI,STL,,,3,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,10,0,2012 20120923_STL@CHI,2,31,56,STL,CHI,1,10,80,(1:56) (Shotgun) S.Bradford pass short left to S.Jackson to SL 25 for 5 yards (C.Tillman) [A.Okoye].,0,10,2012 20120923_STL@CHI,2,31,32,STL,CHI,2,5,75,(1:32) (No Huddle Shotgun) S.Bradford pass short right to S.Smith to SL 40 for 15 yards (T.Jennings).,0,10,2012 20120923_STL@CHI,2,31,11,STL,CHI,1,10,60,(1:11) (No Huddle Shotgun) S.Bradford pass incomplete short right to L.Kendricks (L.Briggs).,0,10,2012 20120923_STL@CHI,2,31,7,STL,CHI,2,10,60,(1:07) (Shotgun) S.Bradford scrambles right end pushed ob at 50 for 10 yards (C.Tillman).,0,10,2012 20120923_STL@CHI,2,31,1,STL,CHI,1,10,50,(1:01) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola.,0,10,2012 20120923_STL@CHI,2,30,56,STL,CHI,2,10,50,(:56) (Shotgun) S.Jackson right guard to CHI 47 for 3 yards (I.Idonije).,0,10,2012 20120923_STL@CHI,2,30,51,STL,CHI,3,7,47,(:51) (Shotgun) S.Bradford pass short middle to D.Amendola to CHI 37 for 10 yards (L.Briggs).,0,10,2012 20120923_STL@CHI,2,30,37,STL,CHI,1,10,37,(:37) S.Bradford spiked the ball to stop the clock.,0,10,2012 20120923_STL@CHI,2,30,36,STL,CHI,2,10,37,(:36) (Shotgun) S.Bradford pass incomplete short right to S.Smith.,0,10,2012 20120923_STL@CHI,2,30,32,STL,CHI,3,10,37,(:32) (Shotgun) S.Bradford pass incomplete short right to B.Gibson.,0,10,2012 20120923_STL@CHI,2,30,27,STL,CHI,4,10,37,(:27) (Field Goal formation) G.Zuerlein 56 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,10,2012 20120923_STL@CHI,2,30,27,STL,CHI,,,37,G.Zuerlein kicks 69 yards from SL 35 to CHI -4. D.Hester to CHI 33 for 37 yards (Q.Mikell).,3,10,2012 20120923_STL@CHI,2,30,16,CHI,STL,1,10,67,(:16) A.Allen right guard to CHI 35 for 2 yards (J.Laurinaitis).,10,3,2012 20120923_STL@CHI,3,30,0,CHI,STL,,,67,R.Gould kicks 71 yards from CHI 35 to SL -6. I.Pead to SL 18 for 24 yards (J.Thomas).,10,3,2012 20120923_STL@CHI,3,29,56,STL,CHI,1,10,82,(14:56) S.Bradford pass incomplete short left to D.Amendola.,3,10,2012 20120923_STL@CHI,3,29,52,STL,CHI,2,10,82,(14:52) (Shotgun) S.Bradford pass deep middle to D.Amendola to SL 48 for 30 yards (C.Conte).,3,10,2012 20120923_STL@CHI,3,29,24,STL,CHI,1,10,52,(14:24) S.Jackson left guard to CHI 49 for 3 yards (I.Idonije).,3,10,2012 20120923_STL@CHI,3,28,35,STL,CHI,2,7,49,(13:35) PENALTY on SL-L.Kendricks False Start 5 yards enforced at CHI 49 - No Play.,3,10,2012 20120923_STL@CHI,3,28,10,STL,CHI,2,12,54,(13:10) T.Nsekhe reported in as eligible. S.Bradford pass short left to B.Gibson to CHI 43 for 11 yards (C.Tillman).,3,10,2012 20120923_STL@CHI,3,27,30,STL,CHI,3,1,43,(12:30) S.Bradford pass incomplete short right to C.Givens.,3,10,2012 20120923_STL@CHI,3,27,25,STL,CHI,4,1,43,(12:25) S.Bradford pass incomplete short left to B.Gibson (T.Jennings).,3,10,2012 20120923_STL@CHI,3,27,23,CHI,STL,1,10,57,(12:23) J.Cutler pass incomplete short left to B.Marshall.,10,3,2012 20120923_STL@CHI,3,27,18,CHI,STL,2,10,57,(12:18) M.Bush right guard to CHI 45 for 2 yards (R.McIntosh; J.Dunbar).,10,3,2012 20120923_STL@CHI,3,26,32,CHI,STL,3,8,55,(11:32) (Shotgun) J.Cutler sacked at CHI 35 for -10 yards (C.Long).,10,3,2012 20120923_STL@CHI,3,26,14,CHI,STL,4,18,65,(11:14) (Punt formation) A.Podlesh punts 32 yards to SL 33 Center-P.Mannelly out of bounds.,10,3,2012 20120923_STL@CHI,3,26,9,STL,CHI,1,10,67,(11:09) S.Jackson left tackle to SL 36 for 3 yards (S.Paea; B.Urlacher).,3,10,2012 20120923_STL@CHI,3,25,38,STL,CHI,2,7,64,(10:38) S.Jackson right tackle to SL 35 for -1 yards (B.Urlacher).,3,10,2012 20120923_STL@CHI,3,24,53,STL,CHI,3,8,65,(9:53) (Shotgun) S.Bradford pass short right to C.Givens to SL 44 for 9 yards (M.Wright).,3,10,2012 20120923_STL@CHI,3,24,19,STL,CHI,1,10,56,(9:19) (No Huddle) S.Jackson left end to CHI 43 for 13 yards (C.Conte).,3,10,2012 20120923_STL@CHI,3,23,40,STL,CHI,1,10,43,(8:40) (No Huddle) S.Jackson right end to CHI 41 for 2 yards (B.Urlacher).,3,10,2012 20120923_STL@CHI,3,22,58,STL,CHI,2,8,41,(7:58) S.Bradford pass short right to M.Mulligan to CHI 29 for 12 yards (C.Conte).,3,10,2012 20120923_STL@CHI,3,22,12,STL,CHI,1,10,29,(7:12) (No Huddle) S.Bradford pass incomplete short left to D.Amendola.,3,10,2012 20120923_STL@CHI,3,22,9,STL,CHI,2,10,29,(7:09) (Shotgun) S.Bradford pass short right to D.Amendola to CHI 28 for 1 yard (D.Moore).,3,10,2012 20120923_STL@CHI,3,21,24,STL,CHI,3,9,28,(6:24) (No Huddle Shotgun) S.Bradford pass incomplete short middle to L.Kendricks (B.Urlacher).,3,10,2012 20120923_STL@CHI,3,21,19,STL,CHI,4,9,28,(6:19) (Field Goal formation) G.Zuerlein 46 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,10,2012 20120923_STL@CHI,3,21,19,STL,CHI,,,28,G.Zuerlein kicks 60 yards from SL 35 to CHI 5. D.Hester to CHI 23 for 18 yards (J.Hull; R.McLeod).,6,10,2012 20120923_STL@CHI,3,21,8,CHI,STL,1,10,77,(6:08) M.Bush right guard to CHI 24 for 1 yard (R.McIntosh).,10,6,2012 20120923_STL@CHI,3,20,27,CHI,STL,2,9,76,(5:27) M.Bush left end to CHI 25 for 1 yard (W.Hayes).,10,6,2012 20120923_STL@CHI,3,19,46,CHI,STL,3,8,75,(4:46) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,10,6,2012 20120923_STL@CHI,3,19,41,CHI,STL,4,8,75,(4:41) (Punt formation) A.Podlesh punts 55 yards to SL 20 Center-P.Mannelly. D.Amendola to SL 37 for 17 yards (C.Steltz; P.Mannelly).,10,6,2012 20120923_STL@CHI,3,19,27,STL,CHI,1,10,63,(4:27) S.Bradford sacked at SL 28 for -9 yards (N.Roach).,6,10,2012 20120923_STL@CHI,3,18,54,STL,CHI,2,19,72,(3:54) (Shotgun) PENALTY on SL-D.Amendola False Start 5 yards enforced at SL 28 - No Play.,6,10,2012 20120923_STL@CHI,3,18,27,STL,CHI,2,24,77,(3:27) (Shotgun) S.Bradford pass short right to C.Givens to SL 23 for no gain (D.Moore).,6,10,2012 20120923_STL@CHI,3,17,42,STL,CHI,3,24,77,(2:42) (Shotgun) D.Richardson right tackle to SL 27 for 4 yards (L.Briggs). PENALTY on CHI-J.Peppers Personal Foul 15 yards enforced at SL 27.,6,10,2012 20120923_STL@CHI,3,17,17,STL,CHI,1,10,58,(2:17) S.Jackson left end to SL 45 for 3 yards (L.Briggs).,6,10,2012 20120923_STL@CHI,3,16,42,STL,CHI,2,7,55,(1:42) D.Richardson left end to SL 44 for -1 yards (L.Briggs).,6,10,2012 20120923_STL@CHI,3,15,56,STL,CHI,3,8,56,(:56) (Shotgun) S.Bradford sacked at SL 37 for -7 yards (sack split by J.Peppers and I.Idonije).,6,10,2012 20120923_STL@CHI,3,15,36,STL,CHI,4,15,63,(:36) (Punt formation) J.Hekker punts 38 yards to CHI 25 Center-J.McQuaide out of bounds.,6,10,2012 20120923_STL@CHI,3,15,29,CHI,STL,1,10,75,(:29) J.Cutler pass short right to A.Jeffery to CHI 35 for 10 yards (J.Dunbar).,10,6,2012 20120923_STL@CHI,4,15,0,CHI,STL,1,10,65,(15:00) J.Cutler pass short left to A.Jeffery to CHI 45 for 10 yards (J.Jenkins; Q.Mikell).,10,6,2012 20120923_STL@CHI,4,14,26,CHI,STL,1,10,55,(14:26) K.Bell right guard to CHI 45 for no gain (Q.Mikell).,10,6,2012 20120923_STL@CHI,4,13,45,CHI,STL,2,10,55,(13:45) (Shotgun) J.Cutler pass incomplete short middle to E.Bennett.,10,6,2012 20120923_STL@CHI,4,13,42,CHI,STL,3,10,55,(13:42) (Shotgun) J.Cutler pass short left to K.Davis to SL 43 for 12 yards (J.Laurinaitis).,10,6,2012 20120923_STL@CHI,4,13,9,CHI,STL,1,10,43,(13:09) J.Cutler pass short right to A.Jeffery to SL 35 for 8 yards (C.Finnegan; Q.Mikell).,10,6,2012 20120923_STL@CHI,4,12,26,CHI,STL,2,2,35,(12:26) J.Cutler pass short right to K.Adams pushed ob at SL 28 for 7 yards (R.McIntosh).,10,6,2012 20120923_STL@CHI,4,12,6,CHI,STL,1,10,28,(12:06) K.Bell right tackle to SL 27 for 1 yard (J.Laurinaitis).,10,6,2012 20120923_STL@CHI,4,11,22,CHI,STL,2,9,27,(11:22) J.Cutler scrambles right guard to SL 6 for 21 yards (C.Dahl).,10,6,2012 20120923_STL@CHI,4,10,40,CHI,STL,1,6,6,(10:40) M.Bush left guard to SL 4 for 2 yards (Q.Mikell).,10,6,2012 20120923_STL@CHI,4,9,58,CHI,STL,2,4,4,(9:58) J.Cutler pass incomplete short right to D.Hester.,10,6,2012 20120923_STL@CHI,4,9,54,CHI,STL,3,4,4,(9:54) (Shotgun) J.Cutler pass incomplete short left to B.Marshall (B.Fletcher) [W.Hayes].,10,6,2012 20120923_STL@CHI,4,9,49,CHI,STL,4,4,4,(9:49) (Field Goal formation) R.Gould 22 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,10,6,2012 20120923_STL@CHI,4,9,49,CHI,STL,,,4,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,13,6,2012 20120923_STL@CHI,4,9,45,STL,CHI,1,10,80,(9:45) S.Bradford pass incomplete short left to L.Kendricks.,6,13,2012 20120923_STL@CHI,4,9,41,STL,CHI,2,10,80,(9:41) (Shotgun) S.Bradford pass short right to D.Amendola to SL 39 for 19 yards (D.Moore). Penalty on CHI-C.Wootton Defensive Offside declined.,6,13,2012 20120923_STL@CHI,4,9,22,STL,CHI,1,10,61,(9:22) S.Bradford pass incomplete short middle to L.Kendricks [I.Idonije].,6,13,2012 20120923_STL@CHI,4,9,17,STL,CHI,2,10,61,(9:17) S.Bradford pass short left intended for D.Amendola INTERCEPTED by M.Wright (T.Jennings) at SL 45. M.Wright for 45 yards TOUCHDOWN.,6,13,2012 20120923_STL@CHI,4,9,17,CHI,STL,,,61,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,13,6,2012 20120923_STL@CHI,4,9,17,CHI,STL,,,61,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,20,6,2012 20120923_STL@CHI,4,9,6,STL,CHI,1,10,80,(9:06) S.Bradford pass short left to S.Jackson to SL 20 for no gain (A.Okoye).,6,20,2012 20120923_STL@CHI,4,8,26,STL,CHI,2,10,80,(8:26) (No Huddle Shotgun) S.Bradford pass short right to L.Kendricks to SL 28 for 8 yards (N.Roach).,6,20,2012 20120923_STL@CHI,4,7,50,STL,CHI,3,2,72,(7:50) (No Huddle) S.Jackson left tackle to SL 27 for -1 yards (J.Peppers).,6,20,2012 20120923_STL@CHI,4,7,9,STL,CHI,4,3,73,(7:09) (Punt formation) J.Hekker punts 40 yards to CHI 33 Center-J.McQuaide. D.Hester to SL 48 for 19 yards (L.Kendricks).,6,20,2012 20120923_STL@CHI,4,6,57,CHI,STL,1,10,48,(6:57) J.Cutler pass short left to A.Jeffery to SL 41 for 7 yards (J.Jenkins).,20,6,2012 20120923_STL@CHI,4,6,11,CHI,STL,2,3,41,(6:11) K.Bell right guard to SL 39 for 2 yards (W.Hayes).,20,6,2012 20120923_STL@CHI,4,5,25,CHI,STL,3,1,39,(5:25) C.Williams reported in as eligible. K.Bell left tackle to SL 40 for -1 yards (J.Laurinaitis).,20,6,2012 20120923_STL@CHI,4,5,20,CHI,STL,4,2,40,(5:20) (Punt formation) A.Podlesh punts 32 yards to SL 8 Center-P.Mannelly fair catch by D.Amendola.,20,6,2012 20120923_STL@CHI,4,5,13,STL,CHI,1,10,92,(5:13) (Shotgun) S.Bradford pass incomplete short middle to S.Smith (L.Briggs).,6,20,2012 20120923_STL@CHI,4,5,8,STL,CHI,2,10,92,(5:08) (Shotgun) S.Bradford pass short left to D.Amendola to SL 14 for 6 yards (D.Moore).,6,20,2012 20120923_STL@CHI,4,4,40,STL,CHI,3,4,86,(4:40) (No Huddle Shotgun) S.Bradford sacked at SL 7 for -7 yards (I.Idonije).,6,20,2012 20120923_STL@CHI,4,4,21,STL,CHI,4,11,93,(4:21) (Punt formation) J.Hekker punts 52 yards to CHI 41 Center-J.McQuaide. D.Hester ran ob at CHI 47 for 6 yards (Team).,6,20,2012 20120923_STL@CHI,4,4,11,CHI,STL,1,10,53,(4:11) J.Cutler pass deep right to B.Marshall to SL 19 for 34 yards (C.Finnegan).,20,6,2012 20120923_STL@CHI,4,3,22,CHI,STL,1,10,19,(3:22) K.Bell right guard to SL 23 for -4 yards (J.Dunbar; K.Heard).,20,6,2012 20120923_STL@CHI,4,3,14,CHI,STL,2,14,23,(3:14) K.Bell right tackle to SL 21 for 2 yards (J.Laurinaitis).,20,6,2012 20120923_STL@CHI,4,3,9,CHI,STL,3,12,21,(3:09) K.Bell left tackle to SL 19 for 2 yards (J.Laurinaitis).,20,6,2012 20120923_STL@CHI,4,2,23,CHI,STL,4,10,19,(2:23) (Field Goal formation) R.Gould 37 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,20,6,2012 20120923_STL@CHI,4,2,23,CHI,STL,,,19,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,23,6,2012 20120923_STL@CHI,4,2,18,STL,CHI,1,10,80,(2:18) (Shotgun) S.Bradford pass short middle to I.Pead to SL 24 for 4 yards (L.Briggs).,6,23,2012 20120923_STL@CHI,4,2,0,STL,CHI,2,6,76,(2:00) (Shotgun) S.Bradford pass deep left intended for B.Gibson INTERCEPTED by T.Jennings at SL 48. T.Jennings to CHI 41 for -11 yards (D.Amendola).,6,23,2012 20120923_STL@CHI,4,1,53,CHI,STL,1,10,59,(1:53) J.Cutler kneels to CHI 40 for -1 yards.,23,6,2012 20120923_STL@CHI,4,1,10,CHI,STL,2,11,60,(1:10) J.Cutler kneels to CHI 39 for -1 yards.,23,6,2012 20120923_STL@CHI,4,0,36,CHI,STL,3,12,61,(:36) J.Cutler kneels to CHI 38 for -1 yards.,23,6,2012 20120923_STL@CHI,4,0,36,CHI,STL,,,61,                      ,23,6,2012 20120923_BUF@CLE,1,0,0,BUF,CLE,,,61,J.Potter kicks 73 yards from BUF 35 to CLV -8. J.Cribbs to CLV 26 for 34 yards (D.Howell).,0,0,2012 20120923_BUF@CLE,1,59,55,CLE,BUF,1,10,74,(14:55) (Shotgun) B.Weeden pass to B.Watson to CLV 32 for 6 yards. FUMBLES recovered by CLV-M.Massaquoi at CLV 28. M.Massaquoi to CLV 28 for no gain (M.Williams).,0,0,2012 20120923_BUF@CLE,1,59,0,CLE,BUF,2,8,72,(14:00) T.Richardson to CLV 26 for -2 yards (A.Moats).,0,0,2012 20120923_BUF@CLE,1,58,39,CLE,BUF,3,10,74,(13:39) (Shotgun) B.Weeden pass incomplete to J.Gordon.,0,0,2012 20120923_BUF@CLE,1,58,32,CLE,BUF,4,10,74,(13:32) R.Hodges punts 52 yards to BUF 22 Center-C.Yount. L.McKelvin to BUF 42 for 20 yards (T.Gipson).,0,0,2012 20120923_BUF@CLE,1,58,25,BUF,CLE,1,10,58,(13:25) (Shotgun) C.Spiller right guard to BUF 43 for 1 yard (U.Young).,0,0,2012 20120923_BUF@CLE,1,57,48,BUF,CLE,2,9,57,(12:48) (Shotgun) R.Fitzpatrick pass deep left to D.Jones to CLV 40 for 17 yards (U.Young).,0,0,2012 20120923_BUF@CLE,1,57,6,BUF,CLE,1,10,40,(12:06) (Shotgun) R.Fitzpatrick pass incomplete short right to D.Jones (A.Rubin).,0,0,2012 20120923_BUF@CLE,1,57,6,BUF,CLE,2,10,40,(12:06) PENALTY on BUF-C.Glenn False Start 5 yards enforced at CLV 40 - No Play.,0,0,2012 20120923_BUF@CLE,1,56,46,BUF,CLE,2,15,45,(11:46) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 38 for 7 yards (S.Brown).,0,0,2012 20120923_BUF@CLE,1,56,5,BUF,CLE,3,8,38,(11:05) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 20 for 18 yards (S.Brown).,0,0,2012 20120923_BUF@CLE,1,55,34,BUF,CLE,1,10,20,(10:34) (Shotgun) C.Spiller left tackle to CLV 18 for 2 yards (T.Ward).,0,0,2012 20120923_BUF@CLE,1,54,51,BUF,CLE,2,8,18,(9:51) R.Fitzpatrick pass short right to D.Jones to CLV 9 for 9 yards (U.Young).,0,0,2012 20120923_BUF@CLE,1,54,8,BUF,CLE,1,9,9,(9:08) (Shotgun) R.Fitzpatrick pass short middle to T.Graham for 9 yards TOUCHDOWN.,0,0,2012 20120923_BUF@CLE,1,54,8,BUF,CLE,,,9,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,0,2012 20120923_BUF@CLE,1,54,8,BUF,CLE,,,9,J.Potter kicks 71 yards from BUF 35 to CLV -6. J.Cribbs to CLV 28 for 34 yards (D.Searcy).,7,0,2012 20120923_BUF@CLE,1,53,59,CLE,BUF,1,10,72,(8:59) (Shotgun) T.Richardson left guard to CLV 26 for -2 yards (K.Williams).,0,7,2012 20120923_BUF@CLE,1,53,24,CLE,BUF,2,12,74,(8:24) (Shotgun) B.Weeden sacked at CLV 23 for -3 yards (K.Williams).,0,7,2012 20120923_BUF@CLE,1,52,47,CLE,BUF,3,15,77,(7:47) (Shotgun) B.Weeden pass short right to B.Watson to CLV 32 for 9 yards (J.Rogers).,0,7,2012 20120923_BUF@CLE,1,52,12,CLE,BUF,4,6,68,(7:12) R.Hodges punts 50 yards to BUF 18 Center-C.Yount. L.McKelvin to CLV 49 for 33 yards (R.Hodges; C.Yount).,0,7,2012 20120923_BUF@CLE,1,51,59,BUF,CLE,1,10,49,(6:59) C.Spiller left guard to CLV 41 for 8 yards (F.Rucker).,7,0,2012 20120923_BUF@CLE,1,51,18,BUF,CLE,2,2,41,(6:18) C.Spiller right guard to CLV 36 for 5 yards (F.Rucker; T.Gipson).,7,0,2012 20120923_BUF@CLE,1,50,43,BUF,CLE,1,10,36,(5:43) (Shotgun) B.Smith to CLV 32 for 4 yards (T.Gipson).,7,0,2012 20120923_BUF@CLE,1,50,15,BUF,CLE,2,6,32,(5:15) (Shotgun) R.Fitzpatrick pass short left to C.Spiller for 32 yards TOUCHDOWN.,7,0,2012 20120923_BUF@CLE,1,50,15,BUF,CLE,,,32,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,0,2012 20120923_BUF@CLE,1,50,15,BUF,CLE,,,32,J.Potter kicks 73 yards from BUF 35 to CLV -8. J.Cribbs to CLV 9 for 17 yards (N.Bradham).,14,0,2012 20120923_BUF@CLE,1,50,0,CLE,BUF,1,10,91,(5:00) T.Richardson right guard to CLV 12 for 3 yards (N.Barnett).,0,14,2012 20120923_BUF@CLE,1,49,29,CLE,BUF,2,7,88,(4:29) B.Weeden pass short left to T.Richardson to CLV 18 for 6 yards (N.Barnett; N.Bradham).,0,14,2012 20120923_BUF@CLE,1,48,55,CLE,BUF,3,1,82,(3:55) T.Richardson right guard to CLV 18 for no gain (A.Moats).,0,14,2012 20120923_BUF@CLE,1,48,13,CLE,BUF,4,1,82,(3:13) R.Hodges punts 45 yards to BUF 37 Center-C.Yount fair catch by L.McKelvin.,0,14,2012 20120923_BUF@CLE,1,48,5,BUF,CLE,1,10,63,(3:05) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to CLV 38 for 25 yards (U.Young). BUF-C.Spiller was injured during the play. His return is Doubtful. PENALTY on BUF-St.Johnson Offensive Holding 10 yards enforced at BUF 47.,14,0,2012 20120923_BUF@CLE,1,47,33,BUF,CLE,1,10,63,(2:33) T.Choice right guard to BUF 41 for 4 yards (D.Jackson).,14,0,2012 20120923_BUF@CLE,1,46,58,BUF,CLE,2,6,59,(1:58) (Shotgun) R.Fitzpatrick pass incomplete deep middle to St.Johnson.,14,0,2012 20120923_BUF@CLE,1,46,54,BUF,CLE,3,6,59,(1:54) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to CLV 47 for 12 yards (T.Ward).,14,0,2012 20120923_BUF@CLE,1,46,14,BUF,CLE,1,10,47,(1:14) (Shotgun) B.Smith right guard to CLV 45 for 2 yards (C.Robertson).,14,0,2012 20120923_BUF@CLE,1,45,32,BUF,CLE,2,8,45,(:32) R.Fitzpatrick pass short right to S.Chandler to CLV 35 for 10 yards (T.Ward).,14,0,2012 20120923_BUF@CLE,2,45,0,BUF,CLE,1,10,35,(15:00) T.Choice right tackle ran ob at CLV 36 for -1 yards.,14,0,2012 20120923_BUF@CLE,2,44,31,BUF,CLE,2,11,36,(14:31) T.Choice left guard to CLV 26 for 10 yards (C.Robertson).,14,0,2012 20120923_BUF@CLE,2,43,52,BUF,CLE,3,1,26,(13:52) T.Choice right guard to CLV 23 for 3 yards (A.Rubin).,14,0,2012 20120923_BUF@CLE,2,43,10,BUF,CLE,1,10,23,(13:10) (Shotgun) R.Fitzpatrick pass incomplete short right to C.McIntyre.,14,0,2012 20120923_BUF@CLE,2,43,4,BUF,CLE,2,10,23,(13:04) R.Fitzpatrick scrambles right end to CLV 18 for 5 yards (B.Skrine).,14,0,2012 20120923_BUF@CLE,2,42,20,BUF,CLE,3,5,18,(12:20) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Cleveland challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) R.Fitzpatrick sacked at CLV 25 for -7 yards. FUMBLES RECOVERED by CLV-J.Parker at CLV 20.,14,0,2012 20120923_BUF@CLE,2,42,14,CLE,BUF,1,10,80,(12:14) (Shotgun) B.Weeden pass short left to J.Cameron to CLV 32 for 12 yards (G.Wilson).,0,14,2012 20120923_BUF@CLE,2,41,43,CLE,BUF,1,10,68,(11:43) B.Weeden pass short right to T.Benjamin to BUF 46 for 22 yards (G.Wilson).,0,14,2012 20120923_BUF@CLE,2,41,11,CLE,BUF,1,10,46,(11:11) T.Richardson left guard to BUF 46 for no gain (N.Barnett).,0,14,2012 20120923_BUF@CLE,2,40,43,CLE,BUF,2,10,46,(10:43) T.Richardson right guard to BUF 44 for 2 yards (J.Rogers).,0,14,2012 20120923_BUF@CLE,2,40,0,CLE,BUF,3,8,44,(10:00) (Shotgun) B.Weeden pass incomplete short right to M.Massaquoi.,0,14,2012 20120923_BUF@CLE,2,39,55,CLE,BUF,4,8,44,(9:55) R.Hodges punts 33 yards to BUF 11 Center-C.Yount fair catch by L.McKelvin.,0,14,2012 20120923_BUF@CLE,2,39,47,BUF,CLE,1,10,89,(9:47) (Shotgun) T.Choice left guard to BUF 12 for 1 yard (J.Parker).,14,0,2012 20120923_BUF@CLE,2,39,13,BUF,CLE,2,9,88,(9:13) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 23 for 11 yards (S.Brown).,14,0,2012 20120923_BUF@CLE,2,38,32,BUF,CLE,1,10,77,(8:32) (Shotgun) T.Choice left guard to BUF 25 for 2 yards (F.Rucker).,14,0,2012 20120923_BUF@CLE,2,37,51,BUF,CLE,2,8,75,(7:51) (Shotgun) R.Fitzpatrick pass short middle to T.Choice to BUF 30 for 5 yards (T.Ward).,14,0,2012 20120923_BUF@CLE,2,37,10,BUF,CLE,3,3,70,(7:10) (Shotgun) R.Fitzpatrick pass incomplete short middle to T.Graham [J.Sheard].,14,0,2012 20120923_BUF@CLE,2,37,5,BUF,CLE,4,3,70,(7:05) B.Moorman punts 49 yards to CLV 21 Center-G.Sanborn. J.Cribbs to CLV 33 for 12 yards (N.Bradham).,14,0,2012 20120923_BUF@CLE,2,36,53,CLE,BUF,1,10,67,(6:53) (Shotgun) B.Weeden pass short left to J.Cribbs to BUF 43 for 24 yards (N.Barnett).,0,14,2012 20120923_BUF@CLE,2,36,9,CLE,BUF,1,10,43,(6:09) B.Weeden pass short right to C.Ogbonnaya to BUF 40 for 3 yards (J.Rogers).,0,14,2012 20120923_BUF@CLE,2,35,42,CLE,BUF,2,7,40,(5:42) T.Richardson right tackle to BUF 37 for 3 yards (A.Williams; M.Williams).,0,14,2012 20120923_BUF@CLE,2,35,1,CLE,BUF,3,4,37,(5:01) (Shotgun) B.Weeden pass deep right intended for J.Gordon INTERCEPTED by J.Byrd at BUF 20. J.Byrd to BUF 25 for 5 yards (J.Gordon). PENALTY on BUF-A.Williams Illegal Contact 5 yards enforced at BUF 37 - No Play.,0,14,2012 20120923_BUF@CLE,2,34,50,CLE,BUF,1,10,32,(4:50) B.Weeden pass incomplete deep right to M.Massaquoi (A.Williams).,0,14,2012 20120923_BUF@CLE,2,34,45,CLE,BUF,2,10,32,(4:45) PENALTY on CLV-G.Little False Start 5 yards enforced at BUF 32 - No Play.,0,14,2012 20120923_BUF@CLE,2,34,45,CLE,BUF,2,15,37,(4:45) B.Weeden pass deep middle to J.Cameron to BUF 19 for 18 yards (G.Wilson).,0,14,2012 20120923_BUF@CLE,2,34,10,CLE,BUF,1,10,19,(4:10) B.Weeden sacked at BUF 25 for -6 yards (M.Williams).,0,14,2012 20120923_BUF@CLE,2,34,10,CLE,BUF,2,16,25,(4:10) PENALTY on BUF-M.Anderson Encroachment 5 yards enforced at BUF 25 - No Play.,0,14,2012 20120923_BUF@CLE,2,33,7,CLE,BUF,2,11,20,(3:07) (Shotgun) B.Weeden pass short right to M.Massaquoi to BUF 6 for 14 yards (S.Gilmore).,0,14,2012 20120923_BUF@CLE,2,32,23,CLE,BUF,1,6,6,(2:23) B.Weeden pass incomplete short right to J.Cameron.,0,14,2012 20120923_BUF@CLE,2,32,17,CLE,BUF,2,6,6,(2:17) T.Richardson right guard for 6 yards TOUCHDOWN.,0,14,2012 20120923_BUF@CLE,2,32,17,CLE,BUF,,,6,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,14,2012 20120923_BUF@CLE,2,32,17,CLE,BUF,,,6,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,7,14,2012 20120923_BUF@CLE,2,32,12,BUF,CLE,1,10,80,(2:12) (Shotgun) R.Fitzpatrick pass incomplete short middle to T.Choice (B.Winn).,14,7,2012 20120923_BUF@CLE,2,32,8,BUF,CLE,2,10,80,(2:08) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler (B.Winn).,14,7,2012 20120923_BUF@CLE,2,32,2,BUF,CLE,3,10,80,(2:02) (Shotgun) R.Fitzpatrick pass short left to T.Graham pushed ob at BUF 26 for 6 yards (T.Ward). PENALTY on CLV-D.Jackson Unnecessary Roughness 15 yards enforced at BUF 26.,14,7,2012 20120923_BUF@CLE,2,31,57,BUF,CLE,1,10,59,(1:57) (Shotgun) R.Fitzpatrick pass short right to D.Jones to BUF 47 for 6 yards (D.Patterson; C.Robertson).,14,7,2012 20120923_BUF@CLE,2,31,32,BUF,CLE,2,4,53,(1:32) (No Huddle Shotgun) R.Fitzpatrick pass short left to D.Jones to CLV 33 for 20 yards (D.Patterson). PENALTY on BUF-D.Jones Offensive Pass Interference 10 yards enforced at BUF 47 - No Play.,14,7,2012 20120923_BUF@CLE,2,31,27,BUF,CLE,2,14,63,(1:27) (Shotgun) R.Fitzpatrick pass short right to T.Choice to BUF 40 for 3 yards (U.Young). PENALTY on BUF-St.Johnson Offensive Holding 10 yards enforced at BUF 40.,14,7,2012 20120923_BUF@CLE,2,31,20,BUF,CLE,2,21,70,(1:20) (Shotgun) R.Fitzpatrick pass short left to D.Jones to BUF 33 for 3 yards (S.Brown).,14,7,2012 20120923_BUF@CLE,2,31,9,BUF,CLE,3,18,67,(1:09) (Shotgun) T.Choice left guard to BUF 44 for 11 yards (D.Jackson).,14,7,2012 20120923_BUF@CLE,2,31,3,BUF,CLE,4,7,56,(1:03) PENALTY on BUF-K.Sheppard False Start 5 yards enforced at BUF 44 - No Play.,14,7,2012 20120923_BUF@CLE,2,31,3,BUF,CLE,4,12,61,(1:03) B.Moorman punts 27 yards to CLV 34 Center-G.Sanborn out of bounds.,14,7,2012 20120923_BUF@CLE,2,30,58,CLE,BUF,1,10,66,(:58) (Shotgun) C.Ogbonnaya right guard to CLV 40 for 6 yards (N.Bradham).,7,14,2012 20120923_BUF@CLE,2,30,36,CLE,BUF,2,4,60,(:36) (No Huddle Shotgun) B.Weeden pass incomplete short right to G.Little (J.Rogers).,7,14,2012 20120923_BUF@CLE,2,30,30,CLE,BUF,3,4,60,(:30) (Shotgun) B.Weeden pass incomplete short right to G.Little.,7,14,2012 20120923_BUF@CLE,2,30,26,CLE,BUF,4,4,60,(:26) R.Hodges punts 42 yards to BUF 18 Center-C.Yount fair catch by L.McKelvin.,7,14,2012 20120923_BUF@CLE,2,30,20,BUF,CLE,1,10,82,(:20) R.Fitzpatrick kneels to BUF 18 for no gain.,14,7,2012 20120923_BUF@CLE,3,30,0,CLE,BUF,,,82,P.Dawson kicks 69 yards from CLV 35 to BUF -4. L.McKelvin to BUF 30 for 34 yards (J.Bademosi; T.Gipson).,7,14,2012 20120923_BUF@CLE,3,29,55,BUF,CLE,1,10,70,(14:55) T.Choice left guard to BUF 35 for 5 yards (D.Patterson; D.Jackson).,14,7,2012 20120923_BUF@CLE,3,29,16,BUF,CLE,2,5,65,(14:16) R.Fitzpatrick pass incomplete to St.Johnson (S.Brown). PENALTY on CLV-S.Brown Defensive Pass Interference 12 yards enforced at BUF 35 - No Play.,14,7,2012 20120923_BUF@CLE,3,29,11,BUF,CLE,1,10,53,(14:11) T.Choice left tackle to CLV 44 for 9 yards (T.Gipson).,14,7,2012 20120923_BUF@CLE,3,28,35,BUF,CLE,2,1,44,(13:35) (Shotgun) T.Choice right guard to CLV 36 for 8 yards (T.Gipson).,14,7,2012 20120923_BUF@CLE,3,27,57,BUF,CLE,1,10,36,(12:57) J.White left tackle to CLV 27 for 9 yards (C.Robertson).,14,7,2012 20120923_BUF@CLE,3,27,11,BUF,CLE,2,1,27,(12:11) R.Fitzpatrick pass to St.Johnson to CLV 20 for 7 yards (B.Skrine).,14,7,2012 20120923_BUF@CLE,3,26,34,BUF,CLE,1,10,20,(11:34) (Shotgun) T.Choice right guard to CLV 19 for 1 yard (T.Ward).,14,7,2012 20120923_BUF@CLE,3,25,53,BUF,CLE,2,9,19,(10:53) (Shotgun) R.Fitzpatrick pass incomplete to St.Johnson (S.Brown).,14,7,2012 20120923_BUF@CLE,3,25,47,BUF,CLE,3,9,19,(10:47) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson (B.Skrine).,14,7,2012 20120923_BUF@CLE,3,25,42,BUF,CLE,4,9,19,(10:42) (Field Goal formation) R.Lindell 37 yard field goal is GOOD Center-G.Sanborn Holder-B.Moorman.,14,7,2012 20120923_BUF@CLE,3,25,42,BUF,CLE,,,19,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,17,7,2012 20120923_BUF@CLE,3,25,38,CLE,BUF,1,10,80,(10:38) T.Richardson left tackle to CLV 33 for 13 yards (G.Wilson). PENALTY on CLV-J.Thomas Offensive Holding 10 yards enforced at CLV 23.,7,17,2012 20120923_BUF@CLE,3,25,17,CLE,BUF,1,17,87,(10:17) B.Weeden pass short right to T.Richardson to CLV 23 for 10 yards (G.Wilson).,7,17,2012 20120923_BUF@CLE,3,25,17,CLE,BUF,2,7,77,(10:17) PENALTY on BUF-K.Williams Neutral Zone Infraction 5 yards enforced at CLV 23 - No Play.,7,17,2012 20120923_BUF@CLE,3,24,35,CLE,BUF,2,2,72,(9:35) T.Richardson right tackle to CLV 32 for 4 yards (A.Moats).,7,17,2012 20120923_BUF@CLE,3,23,57,CLE,BUF,1,10,68,(8:57) B.Weeden pass incomplete deep right to T.Benjamin (A.Williams).,7,17,2012 20120923_BUF@CLE,3,23,50,CLE,BUF,2,10,68,(8:50) (Shotgun) PENALTY on CLV-T.Richardson False Start 5 yards enforced at CLV 32 - No Play.,7,17,2012 20120923_BUF@CLE,3,23,50,CLE,BUF,2,15,73,(8:50) B.Weeden pass short left to B.Watson to CLV 23 for -4 yards (K.Sheppard).,7,17,2012 20120923_BUF@CLE,3,23,6,CLE,BUF,3,19,77,(8:06) B.Weeden pass incomplete short left to T.Benjamin.,7,17,2012 20120923_BUF@CLE,3,23,2,CLE,BUF,4,19,77,(8:02) R.Hodges punts 40 yards to BUF 37 Center-C.Yount out of bounds.,7,17,2012 20120923_BUF@CLE,3,22,55,BUF,CLE,1,10,63,(7:55) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 44 for 7 yards (C.Robertson).,17,7,2012 20120923_BUF@CLE,3,22,19,BUF,CLE,2,3,56,(7:19) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler.,17,7,2012 20120923_BUF@CLE,3,22,15,BUF,CLE,3,3,56,(7:15) (Shotgun) R.Fitzpatrick pass incomplete short right to T.Choice.,17,7,2012 20120923_BUF@CLE,3,22,12,BUF,CLE,4,3,56,(7:12) (Punt formation) B.Moorman punts 36 yards to CLV 20 Center-G.Sanborn out of bounds.,17,7,2012 20120923_BUF@CLE,3,22,5,CLE,BUF,1,10,80,(7:05) (Shotgun) B.Weeden pass short right to B.Watson to CLV 28 for 8 yards (N.Barnett).,7,17,2012 20120923_BUF@CLE,3,21,35,CLE,BUF,2,2,72,(6:35) T.Richardson right tackle to CLV 33 for 5 yards (A.Moats).,7,17,2012 20120923_BUF@CLE,3,21,35,CLE,BUF,1,10,67,(6:35) B.Weeden pass short left to J.Cameron to CLV 37 for 4 yards (J.Byrd).,7,17,2012 20120923_BUF@CLE,3,20,26,CLE,BUF,2,6,63,(5:26) B.Weeden pass incomplete deep middle to J.Gordon (T.McGee).,7,17,2012 20120923_BUF@CLE,3,20,18,CLE,BUF,3,6,63,(5:18) (Shotgun) B.Weeden pass short right to J.Gordon to BUF 48 for 15 yards (T.McGee).,7,17,2012 20120923_BUF@CLE,3,19,47,CLE,BUF,1,10,48,(4:47) B.Weeden pass short right to J.Cameron to BUF 45 for 3 yards (K.Sheppard).,7,17,2012 20120923_BUF@CLE,3,19,14,CLE,BUF,2,7,45,(4:14) (Shotgun) B.Weeden pass short middle to T.Richardson to BUF 35 for 10 yards (M.Anderson).,7,17,2012 20120923_BUF@CLE,3,18,42,CLE,BUF,1,10,35,(3:42) B.Weeden pass incomplete deep right to J.Cameron.,7,17,2012 20120923_BUF@CLE,3,18,36,CLE,BUF,2,10,35,(3:36) (Shotgun) B.Weeden pass short right to J.Gordon to BUF 27 for 8 yards (J.Byrd). BUF-J.Byrd was injured during the play. His return is Questionable.,7,17,2012 20120923_BUF@CLE,3,18,8,CLE,BUF,3,2,27,(3:08) B.Weeden pass short right to G.Little to BUF 22 for 5 yards (J.Rogers).,7,17,2012 20120923_BUF@CLE,3,17,41,CLE,BUF,1,10,22,(2:41) B.Weeden pass incomplete short left to B.Watson.,7,17,2012 20120923_BUF@CLE,3,17,37,CLE,BUF,2,10,22,(2:37) B.Weeden pass incomplete short right to T.Richardson.,7,17,2012 20120923_BUF@CLE,3,17,33,CLE,BUF,3,10,22,(2:33) (Shotgun) B.Weeden pass deep left to T.Benjamin for 22 yards TOUCHDOWN.,7,17,2012 20120923_BUF@CLE,3,17,33,CLE,BUF,,,22,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,7,17,2012 20120923_BUF@CLE,3,17,33,CLE,BUF,,,22,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,14,17,2012 20120923_BUF@CLE,3,17,27,BUF,CLE,1,10,80,(2:27) T.Choice left tackle to BUF 21 for 1 yard (J.Sheard).,17,14,2012 20120923_BUF@CLE,3,16,44,BUF,CLE,2,9,79,(1:44) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson.,17,14,2012 20120923_BUF@CLE,3,16,38,BUF,CLE,3,9,79,(1:38) (Shotgun) R.Fitzpatrick pass incomplete to T.Graham.,17,14,2012 20120923_BUF@CLE,3,16,34,BUF,CLE,4,9,79,(1:34) (Punt formation) B.Moorman punts 66 yards to CLV 13 Center-G.Sanborn. J.Cribbs to CLV 40 for 27 yards (G.Wilson).,17,14,2012 20120923_BUF@CLE,3,16,21,CLE,BUF,1,10,60,(1:21) B.Weeden pass short right to J.Cameron to CLV 48 for 8 yards (A.Moats).,14,17,2012 20120923_BUF@CLE,3,15,57,CLE,BUF,2,2,52,(:57) T.Richardson right guard to BUF 47 for 5 yards (K.Williams; A.Moats).,14,17,2012 20120923_BUF@CLE,3,15,19,CLE,BUF,1,10,47,(:19) B.Weeden pass short right to T.Richardson to BUF 49 for -2 yards (J.Byrd).,14,17,2012 20120923_BUF@CLE,4,15,0,CLE,BUF,2,12,49,(15:00) B.Weeden pass incomplete short middle to B.Watson (Sp.Johnson).,14,17,2012 20120923_BUF@CLE,4,14,57,CLE,BUF,3,12,49,(14:57) (Shotgun) B.Weeden sacked at CLV 40 for -11 yards (M.Anderson). Penalty on CLV-M.Schwartz Offensive Holding declined.,14,17,2012 20120923_BUF@CLE,4,14,42,CLE,BUF,4,23,60,(14:42) R.Hodges punts 28 yards to BUF 32 Center-C.Yount out of bounds.,14,17,2012 20120923_BUF@CLE,4,14,35,BUF,CLE,1,10,68,(14:35) (Shotgun) T.Choice left guard to CLV 46 for 22 yards (U.Young).,17,14,2012 20120923_BUF@CLE,4,13,49,BUF,CLE,1,10,46,(13:49) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 38 for 8 yards (S.Brown).,17,14,2012 20120923_BUF@CLE,4,13,13,BUF,CLE,2,2,38,(13:13) J.White right guard to CLV 32 for 6 yards (F.Rucker; T.Ward).,17,14,2012 20120923_BUF@CLE,4,12,32,BUF,CLE,1,10,32,(12:32) R.Fitzpatrick pass short left to C.McIntyre to CLV 23 for 9 yards (D.Jackson). CLV-B.Skrine was injured during the play. His return is Probable.,17,14,2012 20120923_BUF@CLE,4,11,55,BUF,CLE,2,1,23,(11:55) T.Choice right guard to CLV 21 for 2 yards (C.Robertson).,17,14,2012 20120923_BUF@CLE,4,11,14,BUF,CLE,1,10,21,(11:14) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 20 for 1 yard (S.Brown).,17,14,2012 20120923_BUF@CLE,4,10,35,BUF,CLE,2,9,20,(10:35) (Shotgun) R.Fitzpatrick pass incomplete short left to T.Choice.,17,14,2012 20120923_BUF@CLE,4,9,49,BUF,CLE,3,9,20,(9:49) (Shotgun) R.Fitzpatrick pass short right to T.Graham to CLV 11 for 9 yards (B.Skrine).,17,14,2012 20120923_BUF@CLE,4,9,39,BUF,CLE,1,10,11,(9:39) T.Choice up the middle to CLV 9 for 2 yards (C.Robertson).,17,14,2012 20120923_BUF@CLE,4,9,12,BUF,CLE,2,8,9,(9:12) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson for 9 yards TOUCHDOWN.,17,14,2012 20120923_BUF@CLE,4,9,12,BUF,CLE,,,9,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,17,14,2012 20120923_BUF@CLE,4,9,12,BUF,CLE,,,9,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,24,14,2012 20120923_BUF@CLE,4,9,8,CLE,BUF,1,10,80,(9:08) (Shotgun) B.Weeden pass incomplete short left to T.Richardson [M.Williams]. PENALTY on BUF-M.Williams Illegal Use of Hands 5 yards enforced at CLV 20 - No Play.,14,24,2012 20120923_BUF@CLE,4,9,2,CLE,BUF,1,10,75,(9:02) (Shotgun) B.Weeden pass short right to C.Ogbonnaya to CLV 34 for 9 yards (A.Williams).,14,24,2012 20120923_BUF@CLE,4,8,35,CLE,BUF,2,1,66,(8:35) B.Weeden pass short right to T.Richardson to CLV 35 for 1 yard (B.Scott).,14,24,2012 20120923_BUF@CLE,4,8,0,CLE,BUF,1,10,65,(8:00) B.Weeden pass short right to T.Richardson to CLV 34 for -1 yards (N.Barnett).,14,24,2012 20120923_BUF@CLE,4,7,23,CLE,BUF,2,11,66,(7:23) B.Weeden pass incomplete short left to B.Watson.,14,24,2012 20120923_BUF@CLE,4,7,19,CLE,BUF,3,11,66,(7:19) (Shotgun) B.Weeden pass deep left to G.Little to BUF 49 for 17 yards (J.Rogers). PENALTY on CLV-A.Mack Offensive Holding 10 yards enforced at CLV 34 - No Play.,14,24,2012 20120923_BUF@CLE,4,6,48,CLE,BUF,3,21,76,(6:48) (Shotgun) B.Weeden pass short right to G.Little to CLV 36 for 12 yards (N.Barnett).,14,24,2012 20120923_BUF@CLE,4,6,11,CLE,BUF,4,9,64,(6:11) R.Hodges punts 46 yards to BUF 18 Center-C.Yount out of bounds.,14,24,2012 20120923_BUF@CLE,4,6,3,BUF,CLE,1,10,82,(6:03) (Shotgun) T.Choice right guard to BUF 21 for 3 yards (C.Robertson).,24,14,2012 20120923_BUF@CLE,4,5,20,BUF,CLE,2,7,79,(5:20) T.Choice right guard to BUF 24 for 3 yards (D.Jackson).,24,14,2012 20120923_BUF@CLE,4,5,14,BUF,CLE,3,4,76,(5:14) (Shotgun) T.Choice right tackle to BUF 27 for 3 yards (A.Rubin).,24,14,2012 20120923_BUF@CLE,4,5,5,BUF,CLE,4,1,73,(5:05) B.Moorman punts 30 yards to CLV 43 Center-G.Sanborn out of bounds. PENALTY on BUF-N.Bradham Unnecessary Roughness 15 yards enforced at CLV 43.,24,14,2012 20120923_BUF@CLE,4,4,59,CLE,BUF,1,10,42,(4:59) B.Weeden sacked at CLV 48 for -10 yards (sack split by M.Dareus and M.Williams).,14,24,2012 20120923_BUF@CLE,4,4,29,CLE,BUF,2,20,52,(4:29) B.Weeden pass deep right intended for J.Gordon INTERCEPTED by L.McKelvin at BUF 31. L.McKelvin to BUF 40 for 9 yards (C.Ogbonnaya).,14,24,2012 20120923_BUF@CLE,4,4,21,BUF,CLE,1,10,60,(4:21) T.Choice right tackle to BUF 38 for -2 yards (J.Sheard).,24,14,2012 20120923_BUF@CLE,4,4,17,BUF,CLE,2,12,62,(4:17) T.Choice right guard to BUF 42 for 4 yards (D.Jackson; J.Sheard).,24,14,2012 20120923_BUF@CLE,4,3,33,BUF,CLE,3,8,58,(3:33) (Shotgun) R.Fitzpatrick scrambles to BUF 49 for 7 yards (A.Rubin; R.Hodges).,24,14,2012 20120923_BUF@CLE,4,2,46,BUF,CLE,4,1,51,(2:46) B.Moorman punts 44 yards to CLV 7 Center-G.Sanborn. J.Cribbs MUFFS catch and recovers at CLV 9. J.Cribbs to CLV 13 for 4 yards (D.Searcy).,24,14,2012 20120923_BUF@CLE,4,2,37,CLE,BUF,1,10,87,(2:37) (Shotgun) B.Weeden pass short right to J.Gordon to CLV 30 for 17 yards (G.Wilson).,14,24,2012 20120923_BUF@CLE,4,2,15,CLE,BUF,1,10,70,(2:15) (No Huddle Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CLV 32 for 2 yards (N.Barnett).,14,24,2012 20120923_BUF@CLE,4,2,0,CLE,BUF,2,8,68,(2:00) (Shotgun) B.Weeden pass short middle intended for B.Watson INTERCEPTED by B.Scott at CLV 33. B.Scott to CLV 1 for 32 yards (G.Little).,14,24,2012 20120923_BUF@CLE,4,1,50,BUF,CLE,1,1,1,(1:50) R.Fitzpatrick kneels to CLV 2 for -1 yards.,24,14,2012 20120923_BUF@CLE,4,1,9,BUF,CLE,2,2,2,(1:09) R.Fitzpatrick kneels to CLV 2 for no gain.,24,14,2012 20120923_BUF@CLE,4,0,32,BUF,CLE,3,2,2,(:32) R.Fitzpatrick kneels to CLV 3 for -1 yards.,24,14,2012 20120923_BUF@CLE,4,0,32,BUF,CLE,,,2,                      ,24,14,2012 20120923_TB@DAL,1,0,0,TB,DAL,,,2,M.Koenen kicks 73 yards from TB 35 to DAL -8. F.Jones Touchback.,0,0,2012 20120923_TB@DAL,1,60,0,DAL,TB,1,10,80,(15:00) T.Romo pass incomplete short left to D.Murray (M.Bennett). Pass incomplete in the flat.,0,0,2012 20120923_TB@DAL,1,59,33,DAL,TB,2,10,80,(14:33) (No Huddle Shotgun) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 20 - No Play.,0,0,2012 20120923_TB@DAL,1,59,21,DAL,TB,2,15,85,(14:21) (Shotgun) T.Romo pass incomplete short middle to J.Witten. Pass incomplete on a turnaround at the Dallas 28.,0,0,2012 20120923_TB@DAL,1,59,15,DAL,TB,3,15,85,(14:15) (Shotgun) T.Romo pass short left intended for M.Austin INTERCEPTED by A.Talib at DAL 29. A.Talib to DAL 29 for no gain (M.Austin). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,0,0,2012 20120923_TB@DAL,1,59,11,TB,DAL,1,10,29,(14:11) (Shotgun) D.Martin up the middle to DAL 27 for 2 yards (D.Ware; B.Carter).,0,0,2012 20120923_TB@DAL,1,58,31,TB,DAL,2,8,27,(13:31) (Shotgun) J.Freeman pass incomplete deep right to A.Benn. PENALTY on DAL-M.Claiborne Defensive Pass Interference 15 yards enforced at DAL 27 - No Play. Penalty on DAL-D.Ware Defensive Offside declined.,0,0,2012 20120923_TB@DAL,1,58,24,TB,DAL,1,10,12,(13:24) J.Freeman pass incomplete short right to V.Jackson. Pass incomplete right corner of the end zone.,0,0,2012 20120923_TB@DAL,1,58,20,TB,DAL,2,10,12,(13:20) (Shotgun) D.Martin up the middle to DAL 5 for 7 yards (S.Lee). PENALTY on DAL-D.Ware Defensive Offside 5 yards enforced at DAL 12 - No Play.,0,0,2012 20120923_TB@DAL,1,58,5,TB,DAL,2,5,7,(13:05) D.Martin up the middle to DAL 3 for 4 yards (B.Church).,0,0,2012 20120923_TB@DAL,1,57,20,TB,DAL,3,1,3,(12:20) D.Martin up the middle to DAL 3 for no gain (M.Spears).,0,0,2012 20120923_TB@DAL,1,56,34,TB,DAL,4,1,3,(11:34) D.Martin left tackle to DAL 1 for 2 yards (S.Lissemore).,0,0,2012 20120923_TB@DAL,1,55,56,TB,DAL,1,1,1,(10:56) J.Freeman pass short left to L.Stocker for 1 yard TOUCHDOWN. Freeman pass complete to left corner off play action.,0,0,2012 20120923_TB@DAL,1,55,56,TB,DAL,,,1,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 20120923_TB@DAL,1,55,56,TB,DAL,,,1,M.Koenen kicks 67 yards from TB 35 to DAL -2. F.Jones to DAL 16 for 18 yards (A.Benn). Return up the middle. Injury update: Dallas' Nate Livings has a hand injury; return questionable.,7,0,2012 20120923_TB@DAL,1,55,42,DAL,TB,1,10,84,(10:42) D.Murray up the middle to DAL 20 for 4 yards (R.Barber).,0,7,2012 20120923_TB@DAL,1,55,17,DAL,TB,2,6,80,(10:17) (No Huddle) D.Murray left end to DAL 23 for 3 yards (L.David).,0,7,2012 20120923_TB@DAL,1,54,33,DAL,TB,3,3,77,(9:33) (No Huddle Shotgun) T.Romo pass short right to M.Austin to DAL 28 for 5 yards (B.McDonald).,0,7,2012 20120923_TB@DAL,1,53,58,DAL,TB,1,10,72,(8:58) (No Huddle) D.Murray up the middle to DAL 25 for -3 yards (G.McCoy).,0,7,2012 20120923_TB@DAL,1,53,13,DAL,TB,2,13,75,(8:13) (No Huddle Shotgun) T.Romo pass short middle to D.Bryant to DAL 34 for 9 yards (L.David).,0,7,2012 20120923_TB@DAL,1,52,26,DAL,TB,3,4,66,(7:26) (No Huddle Shotgun) T.Romo pass short left to J.Witten to DAL 39 for 5 yards (M.Barron).,0,7,2012 20120923_TB@DAL,1,52,26,DAL,TB,1,10,61,(7:26) (No Huddle) PENALTY on DAL-J.Witten False Start 5 yards enforced at DAL 39 - No Play.,0,7,2012 20120923_TB@DAL,1,51,39,DAL,TB,1,15,66,(6:39) (Shotgun) D.Murray left tackle to DAL 37 for 3 yards (M.Foster).,0,7,2012 20120923_TB@DAL,1,51,8,DAL,TB,2,12,63,(6:08) D.Murray left tackle to DAL 36 for -1 yards (A.Clayborn).,0,7,2012 20120923_TB@DAL,1,50,21,DAL,TB,3,13,64,(5:21) (No Huddle Shotgun) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 36 - No Play.,0,7,2012 20120923_TB@DAL,1,50,1,DAL,TB,3,18,69,(5:01) (Shotgun) T.Romo pass incomplete deep left to D.Bryant. Pass incomplete sideline at the Tampa Bay 40.,0,7,2012 20120923_TB@DAL,1,49,54,DAL,TB,4,18,69,(4:54) (Punt formation) C.Jones punts 49 yards to TB 20 Center-L.Ladouceur. J.Shipley to TB 21 for 1 yard (J.Phillips).,0,7,2012 20120923_TB@DAL,1,49,42,TB,DAL,1,10,79,(4:42) J.Freeman pass incomplete deep left to L.Stocker [A.Spencer]. Pass incomplete left sideline on crossing pattern; Church closest defender.,7,0,2012 20120923_TB@DAL,1,49,36,TB,DAL,2,10,79,(4:36) D.Martin up the middle to TB 22 for 1 yard (B.Carter).,7,0,2012 20120923_TB@DAL,1,48,52,TB,DAL,3,9,78,(3:52) (Shotgun) PENALTY on TB-J.Zuttah False Start 5 yards enforced at TB 22 - No Play.,7,0,2012 20120923_TB@DAL,1,48,32,TB,DAL,3,14,83,(3:32) (Shotgun) J.Freeman pass short right intended for D.Ware INTERCEPTED by S.Lee at TB 23. S.Lee to TB 23 for no gain (D.Ware).,7,0,2012 20120923_TB@DAL,1,48,23,DAL,TB,1,10,23,(3:23) D.Murray right tackle to TB 25 for -2 yards (M.Bennett).,0,7,2012 20120923_TB@DAL,1,47,43,DAL,TB,2,12,25,(2:43) (Shotgun) T.Romo pass short right to D.Murray pushed ob at TB 11 for 14 yards (A.Talib). Pass caught in the flat before turning upfield.,0,7,2012 20120923_TB@DAL,1,47,11,DAL,TB,1,10,11,(2:11) T.Romo pass short middle to D.Murray to TB 11 for no gain (M.Foster).,0,7,2012 20120923_TB@DAL,1,46,31,DAL,TB,2,10,11,(1:31) D.Murray left end for 11 yards TOUCHDOWN.,0,7,2012 20120923_TB@DAL,1,46,31,DAL,TB,,,11,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,7,2012 20120923_TB@DAL,1,46,31,DAL,TB,,,11,D.Bailey kicks 70 yards from DAL 35 to TB -5. A.Benn Touchback.,7,7,2012 20120923_TB@DAL,1,46,22,TB,DAL,1,10,80,(1:22) J.Freeman pass short left to D.Martin to TB 29 for 9 yards (B.Church). Screen pass.,7,7,2012 20120923_TB@DAL,1,45,40,TB,DAL,2,1,71,(:40) J.Freeman pass incomplete short right to M.Williams. Quick out sideline.,7,7,2012 20120923_TB@DAL,1,45,35,TB,DAL,3,1,71,(:35) J.Freeman up the middle to TB 30 for 1 yard (A.Spencer; D.Ware).,7,7,2012 20120923_TB@DAL,2,45,0,TB,DAL,1,10,70,(15:00) D.Martin left tackle to TB 47 for 17 yards (M.Jenkins).,7,7,2012 20120923_TB@DAL,2,44,9,TB,DAL,1,10,53,(14:09) J.Freeman sacked at TB 42 for -5 yards (D.Ware). FUMBLES (D.Ware) recovered by TB-T.Larsen at TB 42.,7,7,2012 20120923_TB@DAL,2,43,25,TB,DAL,2,15,58,(13:25) D.Martin right guard to TB 42 for no gain (J.Hatcher).,7,7,2012 20120923_TB@DAL,2,42,41,TB,DAL,3,15,58,(12:41) (Shotgun) J.Freeman pass short middle to M.Williams to DAL 48 for 10 yards (S.Lee).,7,7,2012 20120923_TB@DAL,2,42,8,TB,DAL,4,5,48,(12:08) (Punt formation) M.Koenen punts 37 yards to DAL 11 Center-A.Economos downed by TB-D.Ware.,7,7,2012 20120923_TB@DAL,2,41,54,DAL,TB,1,10,89,(11:54) D.Murray left guard to DAL 10 for -1 yards (C.Irvin; M.Bennett).,7,7,2012 20120923_TB@DAL,2,41,54,DAL,TB,2,11,90,(11:54) (Shotgun) PENALTY on DAL-J.Witten False Start 5 yards enforced at DAL 10 - No Play.,7,7,2012 20120923_TB@DAL,2,40,56,DAL,TB,2,16,95,(10:56) (Shotgun) T.Romo pass incomplete short left to K.Ogletree. Pass incomplete on a curl at the 15; Wright closest defender.,7,7,2012 20120923_TB@DAL,2,40,50,DAL,TB,3,16,95,(10:50) (Shotgun) T.Romo pass short left to F.Jones to DAL 20 for 15 yards (A.Talib).,7,7,2012 20120923_TB@DAL,2,40,24,DAL,TB,4,1,80,(10:24) (Punt formation) C.Jones punts 54 yards to TB 26 Center-L.Ladouceur. J.Shipley pushed ob at TB 35 for 9 yards (D.Connor).,7,7,2012 20120923_TB@DAL,2,40,18,TB,DAL,1,10,65,(10:18) J.Freeman pass incomplete short left to D.Clark [A.Spencer]. PENALTY on TB-D.Penn Offensive Holding 10 yards enforced at TB 35 - No Play.,7,7,2012 20120923_TB@DAL,2,40,11,TB,DAL,1,20,75,(10:11) D.Martin right tackle to TB 31 for 6 yards (S.Lissemore). PENALTY on DAL-S.Lissemore Face Mask (15 Yards) 15 yards enforced at TB 31.,7,7,2012 20120923_TB@DAL,2,39,42,TB,DAL,1,10,54,(9:42) D.Martin up the middle to TB 45 for -1 yards (A.Spencer D.Ware).,7,7,2012 20120923_TB@DAL,2,38,59,TB,DAL,2,11,55,(8:59) (Shotgun) J.Freeman pass short right to A.Benn to DAL 47 for 8 yards (B.Carter). Bubble Screen.,7,7,2012 20120923_TB@DAL,2,38,14,TB,DAL,3,3,47,(8:14) (Shotgun) J.Freeman pass short right to D.Clark to DAL 47 for no gain (B.Carter). Pass complete right side.,7,7,2012 20120923_TB@DAL,2,37,30,TB,DAL,4,3,47,(7:30) (Punt formation) M.Koenen punts 29 yards to DAL 18 Center-A.Economos fair catch by D.Harris.,7,7,2012 20120923_TB@DAL,2,37,22,DAL,TB,1,10,82,(7:22) T.Romo pass incomplete short right to J.Witten. Pass incomplete at the Dallas 33 on crossing pattern; Wright closest defender.,7,7,2012 20120923_TB@DAL,2,37,16,DAL,TB,2,10,82,(7:16) T.Romo pass incomplete deep left to D.Bryant. Penalty on DAL-N.Livings Offensive Holding declined.,7,7,2012 20120923_TB@DAL,2,37,9,DAL,TB,3,10,82,(7:09) (Shotgun) T.Romo pass short right to J.Witten to DAL 21 for 3 yards (R.Barber).,7,7,2012 20120923_TB@DAL,2,36,28,DAL,TB,4,7,79,(6:28) (Punt formation) C.Jones punts 41 yards to TB 38 Center-L.Ladouceur. J.Shipley MUFFS catch RECOVERED by DAL-O.Lemon at TB 39. PENALTY on TB-D.Watson Roughing the Kicker 15 yards enforced at TB 39.,7,7,2012 20120923_TB@DAL,2,36,16,DAL,TB,1,10,24,(6:16) D.Murray left end to TB 25 for -1 yards (M.Foster).,7,7,2012 20120923_TB@DAL,2,35,34,DAL,TB,2,11,25,(5:34) (Shotgun) PENALTY on DAL-D.Free False Start 5 yards enforced at TB 25 - No Play.,7,7,2012 20120923_TB@DAL,2,35,19,DAL,TB,2,16,30,(5:19) (Shotgun) T.Romo pass short middle to K.Ogletree to TB 21 for 9 yards (B.McDonald).,7,7,2012 20120923_TB@DAL,2,34,36,DAL,TB,3,7,21,(4:36) (No Huddle Shotgun) T.Romo scrambles up the middle to TB 12 for 9 yards (M.Barron).,7,7,2012 20120923_TB@DAL,2,33,58,DAL,TB,1,10,12,(3:58) D.Murray right guard to TB 13 for -1 yards (R.Miller).,7,7,2012 20120923_TB@DAL,2,33,13,DAL,TB,2,11,13,(3:13) (Shotgun) T.Romo pass incomplete short right to M.Austin. Pass thrown right corner of the end zone.,7,7,2012 20120923_TB@DAL,2,33,8,DAL,TB,3,11,13,(3:08) (Shotgun) T.Romo pass incomplete short left to K.Ogletree. Pass thrown back right corner of the end zone; Wright closest defender.,7,7,2012 20120923_TB@DAL,2,32,53,DAL,TB,4,11,13,(2:53) (Field Goal formation) D.Bailey 32 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,7,7,2012 20120923_TB@DAL,2,32,53,DAL,TB,,,13,D.Bailey kicks onside 16 yards from DAL 35 to TB 49. M.Foster (didn't try to advance) to TB 49 for no gain (P.Tanner).,10,7,2012 20120923_TB@DAL,2,32,51,TB,DAL,1,10,51,(2:51) J.Freeman pass short left to A.Benn to DAL 42 for 9 yards (B.Church). PENALTY on TB Illegal Shift 5 yards enforced at TB 49 - No Play.,7,10,2012 20120923_TB@DAL,2,32,51,TB,DAL,1,15,56,(2:51) PENALTY on TB-L.Stocker False Start 5 yards enforced at TB 44 - No Play.,7,10,2012 20120923_TB@DAL,2,32,2,TB,DAL,1,20,61,(2:02) L.Blount left end to DAL 50 for 11 yards (B.Church).,7,10,2012 20120923_TB@DAL,2,31,54,TB,DAL,2,9,50,(1:54) L.Blount left guard to DAL 46 for 4 yards (S.Lee).,7,10,2012 20120923_TB@DAL,2,31,13,TB,DAL,3,5,46,(1:13) (Shotgun) PENALTY on TB-D.Martin False Start 5 yards enforced at DAL 46 - No Play.,7,10,2012 20120923_TB@DAL,2,31,10,TB,DAL,3,10,51,(1:10) (Shotgun) J.Freeman pass incomplete short left to V.Jackson [J.Hatcher]. Pass incomplete on crossing pattern at the Dallas 45; Carter closest defender.,7,10,2012 20120923_TB@DAL,2,31,5,TB,DAL,4,10,51,(1:05) (Punt formation) PENALTY on TB-M.Koenen Delay of Game 5 yards enforced at TB 49 - No Play.,7,10,2012 20120923_TB@DAL,2,31,0,TB,DAL,4,15,56,(1:00) (Punt formation) M.Koenen punts 56 yards to end zone Center-A.Economos Touchback.,7,10,2012 20120923_TB@DAL,2,30,57,DAL,TB,1,10,80,(:57) (Shotgun) T.Romo pass short left to D.Bryant to DAL 18 for -2 yards (A.Talib).,10,7,2012 20120923_TB@DAL,2,30,35,DAL,TB,2,12,82,(:35) (No Huddle Shotgun) T.Romo pass short right to M.Austin to DAL 33 for 15 yards (E.Wright).,10,7,2012 20120923_TB@DAL,2,30,27,DAL,TB,1,10,67,(:27) (Shotgun) T.Romo pass deep right to K.Ogletree pushed ob at TB 48 for 19 yards (M.Barron).,10,7,2012 20120923_TB@DAL,2,30,21,DAL,TB,1,10,48,(:21) (No Huddle Shotgun) T.Romo pass short left to D.Bryant to TB 40 for 8 yards (A.Talib).,10,7,2012 20120923_TB@DAL,2,30,16,DAL,TB,2,2,40,(:16) (Shotgun) T.Romo sacked at TB 46 for -6 yards (M.Bennett).,10,7,2012 20120923_TB@DAL,2,30,10,DAL,TB,3,8,46,(:10) (Shotgun) T.Romo pass incomplete deep right. Pass was thrown out of bounds right sideline.,10,7,2012 20120923_TB@DAL,2,30,2,DAL,TB,4,8,46,(:02) (Shotgun) T.Romo pass incomplete deep middle to J.Witten (M.Barron).,10,7,2012 20120923_TB@DAL,3,30,0,DAL,TB,,,46,D.Bailey kicks 71 yards from DAL 35 to TB -6. A.Benn Touchback.,10,7,2012 20120923_TB@DAL,3,30,0,TB,DAL,1,10,80,(15:00) D.Martin right tackle to TB 22 for 2 yards (S.Lissemore; A.Spencer).,7,10,2012 20120923_TB@DAL,3,29,19,TB,DAL,2,8,78,(14:19) J.Freeman pass incomplete deep left to L.Stocker [S.Lissemore]. Pass was thrown out of bounds around the Tampa Bay 40.,7,10,2012 20120923_TB@DAL,3,29,12,TB,DAL,3,8,78,"(14:12) (Shotgun) J.Freeman pass incomplete deep left to D.Clark. Pass incomplete on a ""seam"" route; Carter closest defender.",7,10,2012 20120923_TB@DAL,3,29,7,TB,DAL,4,8,78,(14:07) (Punt formation) M.Koenen punts 45 yards to DAL 33 Center-A.Economos. D.Bryant ran ob at DAL 32 for -1 yards (A.Economos).,7,10,2012 20120923_TB@DAL,3,28,54,DAL,TB,1,10,68,(13:54) D.Murray right guard to DAL 36 for 4 yards (M.Foster; G.McCoy).,10,7,2012 20120923_TB@DAL,3,28,10,DAL,TB,2,6,64,(13:10) T.Romo pass incomplete short middle to M.Austin. Pass incomplete on a slant; Barber closest defender.,10,7,2012 20120923_TB@DAL,3,28,6,DAL,TB,3,6,64,(13:06) (Shotgun) T.Romo pass short middle to K.Ogletree to DAL 43 for 7 yards (E.Wright). Pass complete on a slant.,10,7,2012 20120923_TB@DAL,3,27,33,DAL,TB,1,10,57,(12:33) T.Romo pass short middle to D.Bryant to TB 39 for 18 yards (A.Talib). Pass complete on a post pattern.,10,7,2012 20120923_TB@DAL,3,27,2,DAL,TB,1,10,39,(12:02) D.Murray right tackle to TB 38 for 1 yard (M.Foster).,10,7,2012 20120923_TB@DAL,3,26,23,DAL,TB,2,9,38,(11:23) (Shotgun) T.Romo pass short middle to M.Austin to TB 17 for 21 yards (E.Wright). Pass complete on a slant.,10,7,2012 20120923_TB@DAL,3,25,42,DAL,TB,1,10,17,(10:42) T.Romo pass incomplete deep middle to M.Austin. Pass incomplete back right side of the end zone.,10,7,2012 20120923_TB@DAL,3,25,35,DAL,TB,2,10,17,(10:35) (Shotgun) T.Romo pass incomplete to D.Murray [G.McCoy]. Shuffle pass. Tampa Bay challenged the fumble ruling and the play was REVERSED. (Shotgun) T.Romo sacked at TB 23 for -6 yards (G.McCoy). FUMBLES (G.McCoy) [G.McCoy] RECOVERED by TB-G.Gibson at TB 19.,10,7,2012 20120923_TB@DAL,3,25,26,TB,DAL,1,10,81,(10:26) (Shotgun) D.Martin up the middle to TB 22 for 3 yards (S.Lee).,7,10,2012 20120923_TB@DAL,3,24,49,TB,DAL,2,7,78,(9:49) J.Freeman pass incomplete short left to V.Jackson (B.Carr).,7,10,2012 20120923_TB@DAL,3,24,43,TB,DAL,3,7,78,(9:43) (Shotgun) J.Freeman pass short left to D.Ware to TB 33 for 11 yards (A.Spencer). Screen pass,7,10,2012 20120923_TB@DAL,3,24,5,TB,DAL,1,10,67,(9:05) D.Martin right guard to TB 38 for 5 yards (S.Lee).,7,10,2012 20120923_TB@DAL,3,23,23,TB,DAL,2,5,62,(8:23) D.Martin left tackle to TB 41 for 3 yards (T.Crawford).,7,10,2012 20120923_TB@DAL,3,22,49,TB,DAL,3,2,59,(7:49) D.Ware left guard to TB 43 for 2 yards (V.Butler). DAL-B.Church was injured during the play. His return is Questionable.,7,10,2012 20120923_TB@DAL,3,22,20,TB,DAL,1,10,57,(7:20) D.Martin up the middle to TB 44 for 1 yard (J.Price-Brent).,7,10,2012 20120923_TB@DAL,3,21,41,TB,DAL,2,9,56,(6:41) J.Freeman pass incomplete short right to D.Clark. PENALTY on DAL-M.Silva Defensive Pass Interference 10 yards enforced at TB 44 - No Play.,7,10,2012 20120923_TB@DAL,3,21,35,TB,DAL,1,10,46,(6:35) L.Blount right guard to DAL 42 for 4 yards (V.Butler).,7,10,2012 20120923_TB@DAL,3,20,49,TB,DAL,2,6,42,(5:49) L.Blount left guard to DAL 42 for no gain (V.Butler; S.Lee).,7,10,2012 20120923_TB@DAL,3,20,2,TB,DAL,3,6,42,(5:02) (Shotgun) J.Freeman pass incomplete short left to M.Williams [T.Crawford]. Pass thrown short on comeback pattern.,7,10,2012 20120923_TB@DAL,3,19,56,TB,DAL,4,6,42,(4:56) (Punt formation) M.Koenen punts 31 yards to DAL 11 Center-A.Economos fair catch by D.Harris.,7,10,2012 20120923_TB@DAL,3,19,48,DAL,TB,1,10,89,(4:48) T.Romo pass short left to L.Vickers to DAL 16 for 5 yards (R.Miller). Pass complete on check off in the flat.,10,7,2012 20120923_TB@DAL,3,19,6,DAL,TB,2,5,84,"(4:06) T.Romo pass short middle to D.Bryant to DAL 34 for 18 yards (A.Talib). Pass complete on a ""post"" pattern.",10,7,2012 20120923_TB@DAL,3,18,24,DAL,TB,1,10,66,(3:24) (Shotgun) D.Murray right end to DAL 41 for 7 yards (M.Barron).,10,7,2012 20120923_TB@DAL,3,17,46,DAL,TB,2,3,59,(2:46) (Shotgun) F.Jones right tackle to DAL 40 for -1 yards (M.Foster). Injury update: Barry Church has a right leg injury and will not return to the game.,10,7,2012 20120923_TB@DAL,3,17,7,DAL,TB,3,4,60,(2:07) (No Huddle Shotgun) T.Romo sacked at DAL 32 for -8 yards (M.Bennett). Tampa Bay challenged the loose ball recovery ruling and the play was REVERSED. (No Huddle Shotgun) T.Romo sacked at DAL 32 for -8 yards (M.Bennett). FUMBLES (M.Bennett) RECOVERED by TB-E.Wright at DAL 31.,10,7,2012 20120923_TB@DAL,3,17,3,TB,DAL,1,10,31,(2:03) (Shotgun) J.Freeman pass incomplete short left. PENALTY on TB-J.Freeman Intentional Grounding 10 yards enforced at DAL 31. Heavy pressure by Sean Lee,7,10,2012 20120923_TB@DAL,3,16,59,TB,DAL,2,20,41,"(1:59) (Shotgun) J.Freeman pass incomplete deep left to V.Jackson (M.Jenkins). Pass incomplete on a ""fly"" pattern at the Dallas 12 sideline.",7,10,2012 20120923_TB@DAL,3,16,51,TB,DAL,3,20,41,(1:51) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson. Pass incomplete at the Dallas 20.,7,10,2012 20120923_TB@DAL,3,16,44,TB,DAL,4,20,41,(1:44) (Punt formation) M.Koenen punts 41 yards to end zone Center-A.Economos Touchback.,7,10,2012 20120923_TB@DAL,3,16,36,DAL,TB,1,10,80,(1:36) D.Murray up the middle to DAL 21 for 1 yard (M.Foster).,10,7,2012 20120923_TB@DAL,3,16,3,DAL,TB,2,9,79,"(1:03) T.Romo pass deep right to M.Austin to TB 30 for 49 yards (E.Wright) [G.McCoy]. Pass complete on ""Deep Post"" pattern.",10,7,2012 20120923_TB@DAL,3,15,11,DAL,TB,1,10,30,(:11) T.Romo pass incomplete short left to J.Witten. PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at TB 30 - No Play.,10,7,2012 20120923_TB@DAL,3,15,5,DAL,TB,1,20,40,"(:05) (Shotgun) T.Romo pass incomplete deep middle to J.Witten. Pass incomplete on a ""Seam"" route.",10,7,2012 20120923_TB@DAL,4,15,0,DAL,TB,2,20,40,"(15:00) (Shotgun) T.Romo pass short middle to K.Ogletree to TB 23 for 17 yards (L.David). Pass complete on a ""Slant"" pattern.",10,7,2012 20120923_TB@DAL,4,14,17,DAL,TB,3,3,23,"(14:17) (Shotgun) T.Romo pass short left to D.Bryant to TB 12 for 11 yards (M.Barron). Pass complete on a ""quick"" out.",10,7,2012 20120923_TB@DAL,4,13,30,DAL,TB,1,10,12,"(13:30) (No Huddle) T.Romo pass short right to D.Murray pushed ob at TB 9 for 3 yards (E.Wright). Pass complete off a ""naked"" bootleg. Injury update: Miles Austin has a rib injury. He may return to the game.",10,7,2012 20120923_TB@DAL,4,13,30,DAL,TB,2,7,9,(13:30) PENALTY on DAL-T.Smith False Start 5 yards enforced at TB 9 - No Play.,10,7,2012 20120923_TB@DAL,4,12,34,DAL,TB,2,12,14,(12:34) (Shotgun) T.Romo sacked at TB 21 for -7 yards (G.McCoy). TB-A.Clayborn was injured during the play. His return is Probable.,10,7,2012 20120923_TB@DAL,4,11,55,DAL,TB,3,19,21,(11:55) (Shotgun) T.Romo pass short left to F.Jones to TB 8 for 13 yards (A.Talib).,10,7,2012 20120923_TB@DAL,4,11,14,DAL,TB,4,6,8,(11:14) (Field Goal formation) D.Bailey 26 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,10,7,2012 20120923_TB@DAL,4,11,14,DAL,TB,,,8,D.Bailey kicks 68 yards from DAL 35 to TB -3. A.Benn to TB 12 for 15 yards (J.Hanna; P.Tanner). Return middle of the field.,13,7,2012 20120923_TB@DAL,4,11,6,TB,DAL,1,10,88,(11:06) D.Martin up the middle to TB 15 for 3 yards (A.Spencer).,7,13,2012 20120923_TB@DAL,4,10,32,TB,DAL,2,7,85,(10:32) J.Freeman pass incomplete short left to V.Jackson.,7,13,2012 20120923_TB@DAL,4,10,26,TB,DAL,3,7,85,"(10:26) (Shotgun) J.Freeman pass incomplete short middle to D.Clark. Pass incomplete on a ""skinny"" post; McCray closest defender.",7,13,2012 20120923_TB@DAL,4,10,22,TB,DAL,4,7,85,(10:22) (Punt formation) M.Koenen punts 43 yards to DAL 42 Center-A.Economos. D.Bryant to DAL 41 for -1 yards (Q.Black). PENALTY on DAL-P.Tanner Illegal Block Above the Waist 10 yards enforced at DAL 41. Injury update: Adrian Clayborn has a knee injury and will not return to the game.,7,13,2012 20120923_TB@DAL,4,10,9,DAL,TB,1,10,69,"(10:09) T.Romo pass deep middle to M.Austin to DAL 48 for 17 yards (R.Barber). Pass complete on a ""Crossing"" pattern.",13,7,2012 20120923_TB@DAL,4,9,31,DAL,TB,1,10,52,(9:31) D.Murray up the middle to DAL 46 for -2 yards (L.David).,13,7,2012 20120923_TB@DAL,4,8,49,DAL,TB,2,12,54,(8:49) D.Murray up the middle to DAL 48 for 2 yards (L.David).,13,7,2012 20120923_TB@DAL,4,8,9,DAL,TB,3,10,52,(8:09) (Shotgun) T.Romo pass short middle to K.Ogletree to TB 47 for 5 yards (R.Barber).,13,7,2012 20120923_TB@DAL,4,7,36,DAL,TB,4,5,47,(7:36) (Punt formation) C.Jones punts 29 yards to TB 18 Center-L.Ladouceur fair catch by J.Shipley. PENALTY on TB-M.Lewis Unnecessary Roughness 9 yards enforced at TB 18.,13,7,2012 20120923_TB@DAL,4,7,28,TB,DAL,1,10,91,(7:28) D.Martin right tackle to TB 13 for 4 yards (A.Spencer).,7,13,2012 20120923_TB@DAL,4,6,48,TB,DAL,2,6,87,(6:48) D.Martin left tackle to TB 15 for 2 yards (T.Crawford).,7,13,2012 20120923_TB@DAL,4,6,2,TB,DAL,3,4,85,(6:02) (Shotgun) J.Freeman sacked at TB 7 for -8 yards (D.Ware). FUMBLES (D.Ware) recovered by TB-D.Penn at TB 1. D.Penn to TB 1 for no gain (S.Lee).,7,13,2012 20120923_TB@DAL,4,5,11,TB,DAL,4,18,99,(5:11) (Punt formation) PENALTY on TB-C.Grimm False Start 0 yards enforced at TB 1 - No Play.,7,13,2012 20120923_TB@DAL,4,4,59,TB,DAL,4,18,99,(4:59) (Punt formation) M.Koenen punts 49 yards to TB 50 Center-A.Economos. D.Bryant to TB 6 for 44 yards (M.Foster).,7,13,2012 20120923_TB@DAL,4,4,44,DAL,TB,1,6,6,(4:44) T.Romo pass short middle to T.Romo to TB 7 for -1 yards (B.McDonald). Ball tipped at the line of scrimmage by Michael Bennett,13,7,2012 20120923_TB@DAL,4,3,53,DAL,TB,2,7,7,(3:53) D.Murray left end pushed ob at TB 1 for 6 yards (M.Barron). PENALTY on DAL-L.Vickers Offensive Holding 10 yards enforced at TB 7 - No Play.,13,7,2012 20120923_TB@DAL,4,3,41,DAL,TB,2,17,17,(3:41) D.Murray right end pushed ob at TB 6 for 11 yards (M.Barron).,13,7,2012 20120923_TB@DAL,4,3,34,DAL,TB,3,6,6,(3:34) D.Murray up the middle to TB 4 for 2 yards (R.Miller).,13,7,2012 20120923_TB@DAL,4,2,47,DAL,TB,4,4,4,(2:47) (Field Goal formation) D.Bailey 22 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,13,7,2012 20120923_TB@DAL,4,2,47,DAL,TB,,,4,D.Bailey kicks 74 yards from DAL 35 to TB -9. A.Benn Touchback. Ball was kicked out of the end zone.,16,7,2012 20120923_TB@DAL,4,2,43,TB,DAL,1,10,80,(2:43) (Shotgun) D.Martin up the middle to TB 21 for 1 yard (A.Spencer).,7,16,2012 20120923_TB@DAL,4,2,19,TB,DAL,2,9,79,(2:19) (No Huddle Shotgun) J.Freeman pass incomplete short middle to D.Martin. Pass thrown middle; Carter closest defender.,7,16,2012 20120923_TB@DAL,4,2,13,TB,DAL,3,9,79,(2:13) (Shotgun) D.Martin right end to TB 19 for -2 yards (B.Carter). DAL-B.Carter was injured during the play. His return is Probable.,7,16,2012 20120923_TB@DAL,4,2,0,TB,DAL,4,11,81,(2:00) (Shotgun) J.Freeman pass deep left to V.Jackson to TB 48 for 29 yards (O.Scandrick).,7,16,2012 20120923_TB@DAL,4,1,33,TB,DAL,1,10,52,(1:33) (No Huddle Shotgun) J.Freeman pass short left to D.Martin to DAL 40 for 12 yards (O.Scandrick; D.Connor).,7,16,2012 20120923_TB@DAL,4,1,26,TB,DAL,1,10,40,"(1:26) (Shotgun) J.Freeman pass incomplete short middle to M.Williams (L.Lewis). Pass incomplete on a ""Crossing"" pattern.",7,16,2012 20120923_TB@DAL,4,1,22,TB,DAL,2,10,40,"(1:22) (Shotgun) J.Freeman pass deep left to M.Williams pushed ob at DAL 17 for 23 yards (L.Lewis). Pass complete on a ""fly"" pattern.",7,16,2012 20120923_TB@DAL,4,1,16,TB,DAL,1,10,17,(1:16) (Shotgun) J.Freeman pass short left to T.Underwood to DAL 10 for 7 yards (M.Claiborne).,7,16,2012 20120923_TB@DAL,4,0,56,TB,DAL,2,3,10,(:56) (No Huddle) J.Freeman pass incomplete short left to M.Williams [D.Ware].,7,16,2012 20120923_TB@DAL,4,0,49,TB,DAL,3,3,10,"(:49) (Shotgun) J.Freeman pass incomplete short middle to D.Clark. DAL-M.Claiborne was injured during the play. His return is Probable. Pass incomplete on a ""Crossing"" pattern; McCray closest defender.",7,16,2012 20120923_TB@DAL,4,0,44,TB,DAL,4,3,10,(:44) (Field Goal formation) C.Barth 28 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,16,2012 20120923_TB@DAL,4,0,44,TB,DAL,,,10,M.Koenen kicks onside 7 yards from TB 35 to TB 42. J.Hanna to TB 42 for no gain.,10,16,2012 20120923_TB@DAL,4,0,40,DAL,TB,1,10,42,(:40) T.Romo kneels to TB 46 for -4 yards.,16,10,2012 20120923_TB@DAL,4,0,14,DAL,TB,2,14,46,(:14) T.Romo kneels to TB 48 for -2 yards.,16,10,2012 20120923_TB@DAL,4,0,7,DAL,TB,3,16,48,(:07) T.Romo kneels to TB 50 for -2 yards. Penalty on TB Defensive Offside declined.,16,10,2012 20120923_TB@DAL,4,0,7,DAL,TB,,,48,                      ,16,10,2012 20120923_JAC@IND,1,0,0,IND,JAC,,,48,P.McAfee kicks 71 yards from IND 35 to JAX -6. J.Parmele Touchback.,0,0,2012 20120923_JAC@IND,1,60,0,JAC,IND,1,10,80,(15:00) (Run formation) M.Jones-Drew up the middle to JAX 26 for 6 yards (K.Conner).,0,0,2012 20120923_JAC@IND,1,59,29,JAC,IND,2,4,74,(14:29) (Run formation) M.Jones-Drew right end to JAX 25 for -1 yards (J.Hughes).,0,0,2012 20120923_JAC@IND,1,58,54,JAC,IND,3,5,75,(13:54) (Shotgun) B.Gabbert pass short middle to M.Thomas to JAX 33 for 8 yards (M.Fokou; J.King).,0,0,2012 20120923_JAC@IND,1,58,15,JAC,IND,1,10,67,(13:15) B.Gabbert pass short right to J.Blackmon to JAX 40 for 7 yards (J.Powers). Penalty on IND-J.Hughes Defensive Offside declined.,0,0,2012 20120923_JAC@IND,1,57,54,JAC,IND,2,3,60,(12:54) (Run formation) M.Jones-Drew right end pushed ob at JAX 49 for 9 yards (K.Conner).,0,0,2012 20120923_JAC@IND,1,57,11,JAC,IND,1,10,51,(12:11) (Run formation) B.Gabbert pass incomplete short right to L.Robinson.,0,0,2012 20120923_JAC@IND,1,57,6,JAC,IND,2,10,51,(12:06) (Run formation) B.Gabbert scrambles right end pushed ob at IND 42 for 9 yards (J.Freeman).,0,0,2012 20120923_JAC@IND,1,56,32,JAC,IND,3,1,42,(11:32) (Run formation) B.Gabbert up the middle to IND 40 for 2 yards (K.Conner; A.Johnson).,0,0,2012 20120923_JAC@IND,1,55,42,JAC,IND,1,10,40,(10:42) (Run formation) M.Jones-Drew up the middle to IND 34 for 6 yards (J.Hughes).,0,0,2012 20120923_JAC@IND,1,55,7,JAC,IND,2,4,34,(10:07) (Run formation) M.Jones-Drew up the middle to IND 26 for 8 yards (T.Zbikowski; J.Freeman).,0,0,2012 20120923_JAC@IND,1,54,29,JAC,IND,1,10,26,(9:29) (Run formation) C.Shorts left end to IND 30 for -4 yards (F.Moala).,0,0,2012 20120923_JAC@IND,1,53,41,JAC,IND,2,14,30,(8:41) B.Gabbert pass short left to M.Jones-Drew to IND 19 for 11 yards (J.Freeman).,0,0,2012 20120923_JAC@IND,1,53,5,JAC,IND,3,3,19,(8:05) (Shotgun) B.Gabbert sacked at IND 26 for -7 yards (R.Mathis). FUMBLES (R.Mathis) recovered by JAX-G.Whimper at IND 26. G.Whimper to IND 26 for no gain (D.Nevis).,0,0,2012 20120923_JAC@IND,1,52,19,JAC,IND,4,10,26,(7:19) J.Scobee 44 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 20120923_JAC@IND,1,52,19,JAC,IND,,,26,J.Scobee kicks 65 yards from JAX 35 to IND 0. T.Hilton to IND 17 for 17 yards (M.Owens). PENALTY on JAX-A.Blake Offside on Free Kick 5 yards enforced at JAX 35 - No Play.,3,0,2012 20120923_JAC@IND,1,52,19,JAC,IND,,,26,J.Scobee kicks 70 yards from JAX 30 to IND 0. T.Hilton to IND 26 for 26 yards (J.Parmele).,3,0,2012 20120923_JAC@IND,1,52,1,IND,JAC,1,10,74,(7:01) (Run formation) A.Luck pass incomplete short right to C.Fleener [K.Bosworth].,0,3,2012 20120923_JAC@IND,1,51,54,IND,JAC,2,10,74,(6:54) A.Luck pass short left to R.Wayne to IND 30 for 4 yards (P.Posluszny).,0,3,2012 20120923_JAC@IND,1,51,10,IND,JAC,3,6,70,(6:10) (Shotgun) A.Luck pass short right intended for A.Collie INTERCEPTED by R.Mathis at IND 38. R.Mathis to IND 29 for 9 yards (S.Olsen). PENALTY on JAX-R.Mathis Defensive Pass Interference 12 yards enforced at IND 30 - No Play.,0,3,2012 20120923_JAC@IND,1,50,57,IND,JAC,1,10,58,(5:57) D.Brown right guard to IND 44 for 2 yards (P.Posluszny; K.Bosworth).,0,3,2012 20120923_JAC@IND,1,50,18,IND,JAC,2,8,56,(5:18) (Run formation) V.Ballard left tackle to IND 48 for 4 yards (K.Bosworth).,0,3,2012 20120923_JAC@IND,1,49,36,IND,JAC,3,4,52,(4:36) (Shotgun) A.Luck pass short middle to R.Wayne to JAX 40 for 12 yards (R.Mathis).,0,3,2012 20120923_JAC@IND,1,48,48,IND,JAC,1,10,40,(3:48) (Shotgun) A.Luck pass deep right to T.Hilton for 40 yards TOUCHDOWN.,0,3,2012 20120923_JAC@IND,1,48,48,IND,JAC,,,40,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,3,2012 20120923_JAC@IND,1,48,48,IND,JAC,,,40,P.McAfee kicks 74 yards from IND 35 to JAX -9. J.Parmele Touchback.,7,3,2012 20120923_JAC@IND,1,48,42,JAC,IND,1,10,80,(3:42) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon.,3,7,2012 20120923_JAC@IND,1,48,39,JAC,IND,2,10,80,(3:39) (Run formation) M.Jones-Drew up the middle to JAX 22 for 2 yards (C.Redding; V.Davis).,3,7,2012 20120923_JAC@IND,1,48,0,JAC,IND,3,8,78,(3:00) (Shotgun) B.Gabbert pass short right to M.Jones-Drew to JAX 27 for 5 yards (J.Freeman).,3,7,2012 20120923_JAC@IND,1,47,22,JAC,IND,4,3,73,(2:22) B.Anger punts 42 yards to IND 31 Center-J.Cain. T.Hilton pushed ob at JAX 37 for 32 yards (B.Anger). PENALTY on IND-M.Fokou Illegal Block Above the Waist 10 yards enforced at IND 37.,3,7,2012 20120923_JAC@IND,1,47,5,IND,JAC,1,10,73,(2:05) (Run formation) D.Brown left tackle to IND 30 for 3 yards (K.Bosworth; P.Posluszny).,7,3,2012 20120923_JAC@IND,1,46,19,IND,JAC,2,7,70,(1:19) (Run formation) A.Luck pass short middle to D.Allen to IND 35 for 5 yards (K.Bosworth).,7,3,2012 20120923_JAC@IND,1,45,37,IND,JAC,3,2,65,(:37) (Shotgun) M.Moore up the middle to IND 32 for -3 yards (R.Allen; D.Landry).,7,3,2012 20120923_JAC@IND,1,45,3,IND,JAC,4,5,68,(:03) P.McAfee punts 49 yards to JAX 19 Center-M.Overton. M.Thomas to JAX 21 for 2 yards (J.Lefeged; S.Brown).,7,3,2012 20120923_JAC@IND,2,45,0,JAC,IND,1,10,79,(15:00) (Run formation) M.Jones-Drew left end to JAX 30 for 9 yards (J.Freeman).,3,7,2012 20120923_JAC@IND,2,44,27,JAC,IND,2,1,70,(14:27) (Run formation) M.Jones-Drew up the middle to JAX 33 for 3 yards (K.Conner).,3,7,2012 20120923_JAC@IND,2,43,47,JAC,IND,1,10,67,(13:47) B.Gabbert pass incomplete short right to J.Blackmon.,3,7,2012 20120923_JAC@IND,2,43,43,JAC,IND,2,10,67,(13:43) B.Gabbert pass incomplete deep right to J.Blackmon [R.Mathews].,3,7,2012 20120923_JAC@IND,2,43,38,JAC,IND,3,10,67,(13:38) (Shotgun) B.Gabbert pass incomplete short left to M.Thomas.,3,7,2012 20120923_JAC@IND,2,43,33,JAC,IND,4,10,67,(13:33) B.Anger punts 52 yards to IND 15 Center-J.Cain fair catch by T.Hilton.,3,7,2012 20120923_JAC@IND,2,43,25,IND,JAC,1,10,85,(13:25) (Shotgun) A.Luck pass incomplete short left to D.Avery.,7,3,2012 20120923_JAC@IND,2,43,21,IND,JAC,2,10,85,(13:21) (Run formation) A.Luck pass incomplete short middle to R.Wayne.,7,3,2012 20120923_JAC@IND,2,43,9,IND,JAC,3,10,85,(13:09) (Shotgun) A.Luck scrambles right end to IND 34 for 19 yards (W.Middleton).,7,3,2012 20120923_JAC@IND,2,42,24,IND,JAC,1,10,66,(12:24) (Run formation) V.Ballard right tackle to IND 34 for no gain (DA.Smith).,7,3,2012 20120923_JAC@IND,2,41,42,IND,JAC,2,10,66,(11:42) (Shotgun) A.Luck pass incomplete short middle to R.Wayne.,7,3,2012 20120923_JAC@IND,2,41,39,IND,JAC,3,10,66,(11:39) (Shotgun) A.Luck scrambles left end to IND 47 for 13 yards (D.Lowery).,7,3,2012 20120923_JAC@IND,2,40,52,IND,JAC,1,10,53,(10:52) A.Luck pass incomplete deep right to D.Avery (D.Lowery) [DA.Smith].,7,3,2012 20120923_JAC@IND,2,40,44,IND,JAC,2,10,53,(10:44) (Run formation) V.Ballard up the middle to IND 46 for -1 yards (K.Bosworth; T.Alualu).,7,3,2012 20120923_JAC@IND,2,40,1,IND,JAC,3,11,54,(10:01) (Shotgun) A.Luck pass short right to D.Allen to JAX 49 for 5 yards (R.Mathis).,7,3,2012 20120923_JAC@IND,2,39,22,IND,JAC,4,6,49,(9:22) P.McAfee punts 37 yards to JAX 12 Center-M.Overton fair catch by M.Thomas.,7,3,2012 20120923_JAC@IND,2,39,14,JAC,IND,1,10,88,(9:14) (Run formation) M.Jones-Drew up the middle to JAX 12 for no gain (M.Tevaseu).,3,7,2012 20120923_JAC@IND,2,38,34,JAC,IND,2,10,88,(8:34) M.Jones-Drew up the middle to JAX 31 for 19 yards (T.Zbikowski).,3,7,2012 20120923_JAC@IND,2,37,55,JAC,IND,1,10,69,(7:55) (Run formation) M.Jones-Drew right end to JAX 32 for 1 yard (A.Johnson).,3,7,2012 20120923_JAC@IND,2,37,16,JAC,IND,2,9,68,(7:16) B.Gabbert sacked at JAX 28 for -4 yards (A.Johnson). Penalty on IND-A.Johnson Defensive Offside declined. PENALTY on JAX-M.Brewster Unnecessary Roughness 15 yards enforced at JAX 32 - No Play.,3,7,2012 20120923_JAC@IND,2,36,56,JAC,IND,2,24,83,(6:56) B.Gabbert pass short left to G.Jones to JAX 26 for 9 yards (J.Hickman; F.Moala).,3,7,2012 20120923_JAC@IND,2,36,14,JAC,IND,3,15,74,(6:14) (Shotgun) B.Gabbert pass short left to M.Lewis to JAX 34 for 8 yards (M.Fokou).,3,7,2012 20120923_JAC@IND,2,35,35,JAC,IND,4,7,66,(5:35) B.Anger punts 66 yards to IND 0 Center-J.Cain. T.Hilton Touchback.,3,7,2012 20120923_JAC@IND,2,35,30,IND,JAC,1,10,80,(5:30) (Run formation) D.Brown up the middle to IND 29 for 9 yards (D.Cox).,7,3,2012 20120923_JAC@IND,2,34,55,IND,JAC,2,1,71,(4:55) (Run formation) D.Brown up the middle to IND 27 for -2 yards (J.Stanford).,7,3,2012 20120923_JAC@IND,2,34,9,IND,JAC,3,3,73,(4:09) (Shotgun) A.Luck pass short middle to R.Wayne to IND 40 for 13 yards (R.Allen).,7,3,2012 20120923_JAC@IND,2,33,31,IND,JAC,1,10,60,(3:31) (Run formation) D.Brown up the middle to IND 44 for 4 yards (J.Stanford; R.Allen).,7,3,2012 20120923_JAC@IND,2,32,52,IND,JAC,2,6,56,(2:52) (Shotgun) A.Luck pass short right to D.Avery ran ob at JAX 43 for 13 yards.,7,3,2012 20120923_JAC@IND,2,32,24,IND,JAC,1,10,43,(2:24) (Shotgun) PENALTY on IND-M.McGlynn False Start 5 yards enforced at JAX 43 - No Play.,7,3,2012 20120923_JAC@IND,2,32,4,IND,JAC,1,15,48,(2:04) (Shotgun) A.Luck pass incomplete short right to T.Hilton.,7,3,2012 20120923_JAC@IND,2,31,59,IND,JAC,2,15,48,(1:59) (Shotgun) A.Luck pass short right to R.Wayne pushed ob at JAX 35 for 13 yards (D.Lowery).,7,3,2012 20120923_JAC@IND,2,31,54,IND,JAC,3,2,35,(1:54) (Run formation) M.Moore left tackle to JAX 32 for 3 yards (P.Posluszny).,7,3,2012 20120923_JAC@IND,2,31,19,IND,JAC,1,10,32,(1:19) (Shotgun) A.Luck pass short middle to R.Wayne to JAX 20 for 12 yards (D.Landry) [R.Allen].,7,3,2012 20120923_JAC@IND,2,31,11,IND,JAC,1,10,20,(1:11) (Shotgun) A.Luck pass incomplete short left to T.Hilton.,7,3,2012 20120923_JAC@IND,2,31,7,IND,JAC,2,10,20,(1:07) (Shotgun) A.Luck pass incomplete deep right to T.Hilton (D.Lowery).,7,3,2012 20120923_JAC@IND,2,31,1,IND,JAC,3,10,20,(1:01) (Shotgun) A.Luck pass short left to R.Wayne to JAX 4 for 16 yards (D.Cox).,7,3,2012 20120923_JAC@IND,2,30,43,IND,JAC,1,4,4,(:43) A.Luck spiked the ball to stop the clock.,7,3,2012 20120923_JAC@IND,2,30,42,IND,JAC,2,4,4,(:42) (Shotgun) A.Luck pass short middle to M.Moore for 4 yards TOUCHDOWN [A.Branch].,7,3,2012 20120923_JAC@IND,2,30,42,IND,JAC,,,4,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,3,2012 20120923_JAC@IND,2,30,42,IND,JAC,,,4,P.McAfee kicks 71 yards from IND 35 to JAX -6. M.Thomas to JAX 14 for 20 yards (L.Brazill).,14,3,2012 20120923_JAC@IND,2,30,33,JAC,IND,1,10,86,(:33) (Shotgun) M.Jones-Drew up the middle to JAX 22 for 8 yards (M.Fokou).,3,14,2012 20120923_JAC@IND,3,30,0,JAC,IND,,,86,J.Scobee kicks 70 yards from JAX 35 to IND -5. C.Vaughn to IND 17 for 22 yards (C.Prosinski).,3,14,2012 20120923_JAC@IND,3,29,55,IND,JAC,1,10,83,(14:55) (Run formation) A.Luck pass short left to R.Wayne to IND 30 for 13 yards (D.Cox).,14,3,2012 20120923_JAC@IND,3,29,19,IND,JAC,1,10,70,(14:19) (Run formation) D.Brown up the middle to IND 30 for no gain (T.Alualu).,14,3,2012 20120923_JAC@IND,3,28,42,IND,JAC,2,10,70,(13:42) (Shotgun) D.Brown right tackle to IND 40 for 10 yards (D.Lowery). PENALTY on IND-S.Olsen Offensive Holding 10 yards enforced at IND 30 - No Play.,14,3,2012 20120923_JAC@IND,3,28,15,IND,JAC,2,20,80,(13:15) (Shotgun) A.Luck pass short right to T.Hilton to IND 25 for 5 yards (R.Allen).,14,3,2012 20120923_JAC@IND,3,27,33,IND,JAC,3,15,75,(12:33) (Shotgun) A.Luck pass incomplete short left to D.Avery [T.Knighton].,14,3,2012 20120923_JAC@IND,3,27,28,IND,JAC,4,15,75,(12:28) P.McAfee punts 53 yards to JAX 22 Center-M.Overton. M.Thomas to JAX 26 for 4 yards (M.Overton). PENALTY on IND-D.Jones Face Mask (15 Yards) 15 yards enforced at JAX 26.,14,3,2012 20120923_JAC@IND,3,27,16,JAC,IND,1,10,59,(12:16) (Run formation) M.Jones-Drew up the middle for 59 yards TOUCHDOWN.,3,14,2012 20120923_JAC@IND,3,27,16,JAC,IND,,,59,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,3,14,2012 20120923_JAC@IND,3,27,16,JAC,IND,,,59,J.Scobee kicks 72 yards from JAX 35 to IND -7. C.Vaughn Touchback.,10,14,2012 20120923_JAC@IND,3,27,5,IND,JAC,1,10,80,(12:05) (Run formation) D.Brown left end to IND 28 for 8 yards (K.Bosworth).,14,10,2012 20120923_JAC@IND,3,26,22,IND,JAC,2,2,72,(11:22) (Run formation) D.Brown right tackle to IND 28 for no gain (D.Landry).,14,10,2012 20120923_JAC@IND,3,25,38,IND,JAC,3,2,72,(10:38) (Shotgun) A.Luck pass short right to R.Wayne ran ob at IND 33 for 5 yards (A.Ross).,14,10,2012 20120923_JAC@IND,3,25,5,IND,JAC,1,10,67,(10:05) (Run formation) A.Luck pass incomplete deep left to D.Allen.,14,10,2012 20120923_JAC@IND,3,24,56,IND,JAC,2,10,67,(9:56) (Run formation) A.Luck pass short middle to A.Collie to IND 39 for 6 yards (P.Posluszny). IND-A.Collie was injured during the play. He is Out.,14,10,2012 20120923_JAC@IND,3,24,35,IND,JAC,3,4,61,(9:35) (Shotgun) A.Luck pass incomplete short left to C.Fleener (R.Allen).,14,10,2012 20120923_JAC@IND,3,24,30,IND,JAC,4,4,61,(9:30) P.McAfee punts 38 yards to JAX 23 Center-M.Overton. M.Thomas to JAX 25 for 2 yards (J.Lefeged).,14,10,2012 20120923_JAC@IND,3,24,20,JAC,IND,1,10,75,(9:20) (Run formation) B.Gabbert pass incomplete short right to G.Jones.,10,14,2012 20120923_JAC@IND,3,24,16,JAC,IND,2,10,75,(9:16) (Run formation) M.Jones-Drew left tackle to JAX 28 for 3 yards (K.Conner).,10,14,2012 20120923_JAC@IND,3,23,36,JAC,IND,3,7,72,(8:36) (Shotgun) B.Gabbert pass incomplete short right to M.Thomas (V.Davis).,10,14,2012 20120923_JAC@IND,3,23,30,JAC,IND,4,7,72,(8:30) B.Anger punts 46 yards to IND 26 Center-J.Cain. T.Hilton to IND 26 for no gain (K.Elliott). PENALTY on JAX-Z.Potter Offensive Holding 10 yards enforced at IND 26.,10,14,2012 20120923_JAC@IND,3,23,20,IND,JAC,1,10,64,(8:20) V.Ballard left tackle to IND 41 for 5 yards (P.Posluszny).,14,10,2012 20120923_JAC@IND,3,22,46,IND,JAC,2,5,59,(7:46) V.Ballard up the middle to IND 45 for 4 yards (R.Allen).,14,10,2012 20120923_JAC@IND,3,22,4,IND,JAC,3,1,55,(7:04) (Run formation) A.Luck pass short right to D.Allen to IND 49 for 4 yards (R.Mathis).,14,10,2012 20120923_JAC@IND,3,21,29,IND,JAC,1,10,51,(6:29) (Run formation) A.Luck pass deep middle intended for R.Wayne INTERCEPTED by P.Posluszny at JAX 33. P.Posluszny to JAX 46 for 13 yards. Lateral to D.Landry to IND 45 for 9 yards (A.Luck).,14,10,2012 20120923_JAC@IND,3,21,18,JAC,IND,1,10,45,(6:18) (Run formation) M.Jones-Drew up the middle to IND 40 for 5 yards (J.Freeman).,10,14,2012 20120923_JAC@IND,3,20,44,JAC,IND,2,5,40,(5:44) (Run formation) M.Jones-Drew up the middle to IND 36 for 4 yards (M.Tevaseu).,10,14,2012 20120923_JAC@IND,3,20,6,JAC,IND,3,1,36,(5:06) (Run formation) G.Jones up the middle to IND 35 for 1 yard (R.Mathis).,10,14,2012 20120923_JAC@IND,3,19,23,JAC,IND,1,10,35,(4:23) (Run formation) B.Gabbert pass short right to G.Jones to IND 32 for 3 yards (K.Conner; J.Freeman).,10,14,2012 20120923_JAC@IND,3,18,47,JAC,IND,2,7,32,(3:47) (Run formation) M.Jones-Drew up the middle to IND 29 for 3 yards (F.Moala).,10,14,2012 20120923_JAC@IND,3,18,7,JAC,IND,3,4,29,(3:07) (Shotgun) B.Gabbert pass incomplete short middle to C.Shorts [D.Nevis].,10,14,2012 20120923_JAC@IND,3,18,0,JAC,IND,4,4,29,(3:00) J.Scobee 47 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,10,14,2012 20120923_JAC@IND,3,18,0,JAC,IND,,,29,J.Scobee kicks 70 yards from JAX 35 to IND -5. C.Vaughn pushed ob at IND 26 for 31 yards (M.Harris).,13,14,2012 20120923_JAC@IND,3,17,49,IND,JAC,1,10,74,(2:49) A.Luck pass short right to D.Avery ran ob at IND 41 for 15 yards.,14,13,2012 20120923_JAC@IND,3,17,24,IND,JAC,1,10,59,(2:24) D.Brown left tackle to IND 45 for 4 yards (R.Allen).,14,13,2012 20120923_JAC@IND,3,16,44,IND,JAC,2,6,55,(1:44) (Shotgun) A.Luck pass incomplete short middle to D.Avery (R.Mathis).,14,13,2012 20120923_JAC@IND,3,16,39,IND,JAC,3,6,55,(1:39) (Shotgun) A.Luck pass incomplete short left to D.Avery (W.Middleton).,14,13,2012 20120923_JAC@IND,3,16,36,IND,JAC,4,6,55,(1:36) P.McAfee punts 40 yards to JAX 15 Center-M.Overton out of bounds.,14,13,2012 20120923_JAC@IND,3,16,27,JAC,IND,1,10,85,(1:27) (Run formation) M.Jones-Drew up the middle to JAX 18 for 3 yards (T.Zbikowski). PENALTY on IND-R.Mathis Defensive Offside 5 yards enforced at JAX 15 - No Play.,13,14,2012 20120923_JAC@IND,3,16,4,JAC,IND,1,5,80,(1:04) (Run formation) M.Jones-Drew left guard to JAX 26 for 6 yards (J.Freeman).,13,14,2012 20120923_JAC@IND,3,15,26,JAC,IND,1,10,74,(:26) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott (T.Zbikowski). PENALTY on IND-V.Davis Defensive Pass Interference 14 yards enforced at JAX 26 - No Play.,13,14,2012 20120923_JAC@IND,3,15,21,JAC,IND,1,10,60,(:21) (Run formation) M.Jones-Drew left end to JAX 40 for no gain (V.Davis). PENALTY on JAX-B.Meester Offensive Holding 10 yards enforced at JAX 40 - No Play.,13,14,2012 20120923_JAC@IND,3,15,4,JAC,IND,1,20,70,(:04) (Shotgun) B.Gabbert pass deep middle to K.Elliott to IND 48 for 22 yards (T.Zbikowski).,13,14,2012 20120923_JAC@IND,4,15,0,JAC,IND,1,10,48,(15:00) (Run formation) M.Jones-Drew up the middle to IND 40 for 8 yards (J.Hughes). IND-R.Mathis was injured during the play.,13,14,2012 20120923_JAC@IND,4,14,42,JAC,IND,2,2,40,(14:42) (Run formation) M.Jones-Drew up the middle to IND 35 for 5 yards (K.Conner).,13,14,2012 20120923_JAC@IND,4,14,7,JAC,IND,1,10,35,(14:07) (Run formation) M.Jones-Drew up the middle to IND 29 for 6 yards (J.Hickman).,13,14,2012 20120923_JAC@IND,4,13,27,JAC,IND,2,4,29,(13:27) B.Gabbert pass short left to K.Elliott to IND 27 for 2 yards (V.Davis).,13,14,2012 20120923_JAC@IND,4,12,46,JAC,IND,3,2,27,(12:46) (Shotgun) M.Jones-Drew left tackle to IND 24 for 3 yards (M.Fokou).,13,14,2012 20120923_JAC@IND,4,12,4,JAC,IND,1,10,24,(12:04) (Shotgun) B.Gabbert pass incomplete deep left to K.Elliott [K.Conner]. PENALTY on IND-V.Davis Defensive Pass Interference 15 yards enforced at IND 24 - No Play.,13,14,2012 20120923_JAC@IND,4,11,59,JAC,IND,1,9,9,(11:59) (Run formation) M.Jones-Drew right end to IND 8 for 1 yard (M.Tevaseu).,13,14,2012 20120923_JAC@IND,4,11,16,JAC,IND,2,8,8,(11:16) (Run formation) B.Gabbert pass incomplete short middle to J.Blackmon (J.Powers). Indianapolis challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),13,14,2012 20120923_JAC@IND,4,11,9,JAC,IND,3,8,8,(11:09) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott [F.Moala].,13,14,2012 20120923_JAC@IND,4,11,5,JAC,IND,4,8,8,(11:05) J.Scobee 26 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,13,14,2012 20120923_JAC@IND,4,11,5,JAC,IND,,,8,J.Scobee kicks 70 yards from JAX 35 to IND -5. C.Vaughn to IND 20 for 25 yards (M.Harris). PENALTY on IND-M.Harvey Offensive Holding 7 yards enforced at IND 15.,16,14,2012 20120923_JAC@IND,4,10,55,IND,JAC,1,10,92,(10:55) (Run formation) D.Brown left end to IND 12 for 4 yards (A.Ross).,14,16,2012 20120923_JAC@IND,4,10,18,IND,JAC,2,6,88,(10:18) (Run formation) A.Luck pass short middle to D.Allen to IND 29 for 17 yards (R.Allen).,14,16,2012 20120923_JAC@IND,4,9,45,IND,JAC,1,10,71,(9:45) (Run formation) D.Brown left end pushed ob at IND 35 for 6 yards (W.Middleton).,14,16,2012 20120923_JAC@IND,4,9,15,IND,JAC,2,4,65,(9:15) (Run formation) A.Luck pass incomplete short right to R.Wayne (P.Posluszny).,14,16,2012 20120923_JAC@IND,4,9,11,IND,JAC,3,4,65,(9:11) (Shotgun) A.Luck scrambles right end to IND 43 for 8 yards (R.Allen).,14,16,2012 20120923_JAC@IND,4,8,24,IND,JAC,1,10,57,(8:24) D.Brown right end pushed ob at JAX 48 for 9 yards (D.Landry; W.Middleton).,14,16,2012 20120923_JAC@IND,4,7,44,IND,JAC,2,1,48,(7:44) (Run formation) D.Brown up the middle to JAX 47 for 1 yard (R.Allen).,14,16,2012 20120923_JAC@IND,4,7,2,IND,JAC,1,10,47,(7:02) (Run formation) A.Luck scrambles left end ran ob at JAX 37 for 10 yards. PENALTY on JAX-R.Allen Unnecessary Roughness 15 yards enforced at JAX 37.,14,16,2012 20120923_JAC@IND,4,6,43,IND,JAC,1,10,22,(6:43) (Run formation) D.Brown left end ran ob at JAX 19 for 3 yards.,14,16,2012 20120923_JAC@IND,4,6,13,IND,JAC,2,7,19,(6:13) (Run formation) D.Brown left end pushed ob at JAX 17 for 2 yards (D.Landry).,14,16,2012 20120923_JAC@IND,4,5,37,IND,JAC,3,5,17,(5:37) (Shotgun) A.Luck pass short middle to D.Allen to JAX 13 for 4 yards (M.Harris).,14,16,2012 20120923_JAC@IND,4,4,45,IND,JAC,4,1,13,(4:45) (Field Goal formation) PENALTY on IND-A.Vinatieri Delay of Game 5 yards enforced at JAX 13 - No Play.,14,16,2012 20120923_JAC@IND,4,4,45,IND,JAC,4,6,18,(4:45) A.Vinatieri 36 yard field goal is No Good Wide Left Center-M.Overton Holder-P.McAfee.,14,16,2012 20120923_JAC@IND,4,4,40,JAC,IND,1,10,74,(4:40) (Run formation) M.Jones-Drew up the middle to JAX 29 for 3 yards (R.Mathews).,16,14,2012 20120923_JAC@IND,4,3,57,JAC,IND,2,7,71,(3:57) M.Jones-Drew up the middle to JAX 29 for no gain (R.Mathis; V.Davis). IND-V.Davis was injured during the play.,16,14,2012 20120923_JAC@IND,4,3,20,JAC,IND,3,7,71,(3:20) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott (A.Bethea).,16,14,2012 20120923_JAC@IND,4,3,15,JAC,IND,4,7,71,(3:15) B.Anger punts 55 yards to IND 16 Center-J.Cain. T.Hilton to IND 25 for 9 yards (A.Blake; J.Cain).,16,14,2012 20120923_JAC@IND,4,3,2,IND,JAC,1,10,75,(3:02) (Shotgun) A.Luck scrambles left end ran ob at IND 31 for 6 yards. PENALTY on IND-D.Allen Offensive Holding 10 yards enforced at IND 25 - No Play.,14,16,2012 20120923_JAC@IND,4,2,56,IND,JAC,1,20,85,(2:56) (Shotgun) A.Luck pass deep left to T.Hilton to IND 47 for 32 yards (W.Middleton).,14,16,2012 20120923_JAC@IND,4,2,32,IND,JAC,1,10,53,(2:32) (No Huddle Shotgun) A.Luck pass incomplete short right to D.Avery.,14,16,2012 20120923_JAC@IND,4,2,28,IND,JAC,2,10,53,(2:28) (Shotgun) A.Luck pass incomplete short right to R.Wayne.,14,16,2012 20120923_JAC@IND,4,2,23,IND,JAC,3,10,53,(2:23) (Shotgun) A.Luck pass incomplete deep middle to R.Wayne. PENALTY on IND-M.Moore Offensive Holding 10 yards enforced at IND 47 - No Play.,14,16,2012 20120923_JAC@IND,4,2,17,IND,JAC,3,20,63,(2:17) (Shotgun) A.Luck pass incomplete deep middle to D.Avery.,14,16,2012 20120923_JAC@IND,4,2,10,IND,JAC,4,20,63,(2:10) P.McAfee punts 63 yards to JAX 0 Center-M.Overton. M.Thomas Touchback.,14,16,2012 20120923_JAC@IND,4,2,1,JAC,IND,1,10,80,(2:01) (Run formation) M.Jones-Drew right tackle to JAX 24 for 4 yards (J.Freeman).,16,14,2012 20120923_JAC@IND,4,1,56,JAC,IND,2,6,76,(1:56) (Run formation) M.Jones-Drew up the middle to JAX 23 for -1 yards. FUMBLES and recovers at JAX 21. M.Jones-Drew to JAX 21 for no gain (J.Powers).,16,14,2012 20120923_JAC@IND,4,1,50,JAC,IND,3,9,79,(1:50) (Shotgun) M.Jones-Drew up the middle to JAX 21 for no gain (S.Brown).,16,14,2012 20120923_JAC@IND,4,1,46,JAC,IND,4,9,79,(1:46) B.Anger punts 60 yards to IND 19 Center-J.Cain. T.Hilton to IND 33 for 14 yards (K.Bosworth; J.Stanford).,16,14,2012 20120923_JAC@IND,4,1,33,IND,JAC,1,10,67,(1:33) (Shotgun) A.Luck pass short left to D.Brown pushed ob at JAX 28 for 39 yards (A.Ross).,14,16,2012 20120923_JAC@IND,4,1,23,IND,JAC,1,10,28,(1:23) (Run formation) D.Brown left tackle to JAX 27 for 1 yard (R.Allen).,14,16,2012 20120923_JAC@IND,4,1,18,IND,JAC,2,9,27,(1:18) (Run formation) D.Brown up the middle to JAX 26 for 1 yard (P.Posluszny).,14,16,2012 20120923_JAC@IND,4,1,15,IND,JAC,3,8,26,(1:15) (Run formation) D.Brown up the middle to JAX 19 for 7 yards (R.Allen).,14,16,2012 20120923_JAC@IND,4,1,1,IND,JAC,4,1,19,(1:01) A.Vinatieri 37 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,14,16,2012 20120923_JAC@IND,4,1,1,IND,JAC,,,19,P.McAfee kicks 74 yards from IND 35 to JAX -9. M.Thomas Touchback.,17,16,2012 20120923_JAC@IND,4,0,56,JAC,IND,1,10,80,(:56) (Shotgun) B.Gabbert pass short right to C.Shorts for 80 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,16,17,2012 20120923_JAC@IND,4,0,56,JAC,IND,,,80,(Run formation) TWO-POINT CONVERSION ATTEMPT. M.Jones-Drew rushes left end. ATTEMPT FAILS.,16,17,2012 20120923_JAC@IND,4,0,56,JAC,IND,,,80,J.Scobee kicks 67 yards from JAX 35 to IND -2. C.Vaughn to IND 38 for 40 yards (M.Harris).,22,17,2012 20120923_JAC@IND,4,0,35,IND,JAC,1,10,62,(:35) (Shotgun) A.Luck pass incomplete short right to T.Hilton [T.Knighton].,17,22,2012 20120923_JAC@IND,4,0,31,IND,JAC,2,10,62,(:31) (Shotgun) A.Luck pass incomplete deep left to K.Adams.,17,22,2012 20120923_JAC@IND,4,0,26,IND,JAC,3,10,62,(:26) (Shotgun) A.Luck pass deep left to T.Hilton to JAX 26 for 36 yards (C.Prosinski).,17,22,2012 20120923_JAC@IND,4,0,7,IND,JAC,1,10,26,(:07) A.Luck spiked the ball to stop the clock.,17,22,2012 20120923_JAC@IND,4,0,7,IND,JAC,2,10,26,(:07) (Shotgun) A.Luck pass incomplete short right to R.Wayne (J.Mincey).,17,22,2012 20120923_JAC@IND,4,0,2,IND,JAC,3,10,26,(:02) (Shotgun) A.Luck pass incomplete deep right to R.Wayne (A.Ross).,17,22,2012 20120923_JAC@IND,4,0,2,IND,JAC,,,26,                      ,17,22,2012 20120923_NYJ@MIA,1,0,0,MIA,NYJ,,,26,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,0,0,2012 20120923_NYJ@MIA,1,60,0,NYJ,MIA,1,10,80,(15:00) M.Sanchez pass incomplete short right to S.Hill.,0,0,2012 20120923_NYJ@MIA,1,59,56,NYJ,MIA,2,10,80,(14:56) J.Smith reported in as eligible. S.Greene right tackle to NYJ 22 for 2 yards (K.Dansby).,0,0,2012 20120923_NYJ@MIA,1,59,16,NYJ,MIA,3,8,78,(14:16) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes. PENALTY on MIA-N.Carroll Defensive Pass Interference 14 yards enforced at NYJ 22 - No Play.,0,0,2012 20120923_NYJ@MIA,1,59,8,NYJ,MIA,1,10,64,(14:08) M.Sanchez pass short middle to S.Greene to NYJ 39 for 3 yards (K.Dansby).,0,0,2012 20120923_NYJ@MIA,1,58,32,NYJ,MIA,2,7,61,(13:32) (Shotgun) M.Sanchez pass short middle intended for E.Gates INTERCEPTED by R.Marshall at MIA 46. R.Marshall to NYJ 47 for 7 yards (E.Gates).,0,0,2012 20120923_NYJ@MIA,1,58,20,MIA,NYJ,1,10,47,(13:20) R.Tannehill pass short middle to A.Fasano to NYJ 44 for 3 yards (C.Pace).,0,0,2012 20120923_NYJ@MIA,1,58,20,MIA,NYJ,2,7,44,(13:20) R.Bush left guard to NYJ 38 for 6 yards (M.Devito; B.Scott).,0,0,2012 20120923_NYJ@MIA,1,57,13,MIA,NYJ,3,1,38,(12:13) J.Lane right guard to NYJ 35 for 3 yards (S.Pouha).,0,0,2012 20120923_NYJ@MIA,1,56,44,MIA,NYJ,1,10,35,(11:44) (Shotgun) R.Tannehill pass short left to A.Fasano to NYJ 26 for 9 yards (D.Harris).,0,0,2012 20120923_NYJ@MIA,1,56,44,MIA,NYJ,2,11,36,(11:44) R.Bush left end to NYJ 10 for 26 yards (D.Revis).,0,0,2012 20120923_NYJ@MIA,1,55,44,MIA,NYJ,1,10,10,(10:44) R.Bush up the middle to NYJ 3 for 7 yards (D.Revis).,0,0,2012 20120923_NYJ@MIA,1,55,5,MIA,NYJ,2,3,3,(10:05) R.Bush right tackle to NYJ 1 for 2 yards (M.Wilkerson).,0,0,2012 20120923_NYJ@MIA,1,54,25,MIA,NYJ,3,1,1,(9:25) D.Thomas up the middle for 1 yard TOUCHDOWN.,0,0,2012 20120923_NYJ@MIA,1,54,25,MIA,NYJ,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 20120923_NYJ@MIA,1,54,25,MIA,NYJ,,,1,D.Carpenter kicks 70 yards from MIA 35 to NYJ -5. J.McKnight to NYJ 19 for 24 yards (A.Spitler; R.Stanford).,7,0,2012 20120923_NYJ@MIA,1,54,8,NYJ,MIA,1,10,81,(9:08) New QB #15 - Tebow Tim. J.Smith reported in as eligible. S.Greene left end to NYJ 19 for no gain (R.Jones).,0,7,2012 20120923_NYJ@MIA,1,53,31,NYJ,MIA,2,10,81,(8:31) M.Sanchez pass short right to J.Cumberland to NYJ 22 for 3 yards (K.Dansby). PENALTY on MIA-S.Smith Illegal Contact 5 yards enforced at NYJ 19 - No Play.,0,7,2012 20120923_NYJ@MIA,1,53,0,NYJ,MIA,1,10,76,(8:00) S.Greene right end to NYJ 30 for 6 yards (C.Clemons).,0,7,2012 20120923_NYJ@MIA,1,52,21,NYJ,MIA,2,4,70,(7:21) J.Smith reported in as eligible. S.Greene left end to NYJ 33 for 3 yards (K.Misi; K.Burnett). NYJ-S.Hill was injured during the play. His return is Questionable.,0,7,2012 20120923_NYJ@MIA,1,52,3,NYJ,MIA,3,1,67,(7:03) M.Sanchez pass short right to K.Reuland to NYJ 35 for 2 yards (K.Dansby).,0,7,2012 20120923_NYJ@MIA,1,51,15,NYJ,MIA,1,10,65,(6:15) J.Smith reported in as eligible. M.Sanchez pass incomplete short left to J.Kerley.,0,7,2012 20120923_NYJ@MIA,1,51,6,NYJ,MIA,2,10,65,(6:06) J.Smith reported in as eligible. S.Greene right end to NYJ 39 for 4 yards (K.Dansby).,0,7,2012 20120923_NYJ@MIA,1,50,29,NYJ,MIA,3,6,61,(5:29) M.Sanchez pass incomplete deep middle to S.Hill (S.Smith) [J.Odrick].,0,7,2012 20120923_NYJ@MIA,1,50,22,NYJ,MIA,4,6,61,(5:22) (Punt formation) R.Malone punts 54 yards to MIA 7 Center-T.Purdum. M.Thigpen to MIA 8 for 1 yard (D.Davis). PENALTY on MIA-N.Carroll Illegal Block Above the Waist 3 yards enforced at MIA 8.,0,7,2012 20120923_NYJ@MIA,1,50,10,MIA,NYJ,1,10,95,(5:10) R.Bush right end to MIA 12 for 7 yards (L.Landry).,7,0,2012 20120923_NYJ@MIA,1,48,56,MIA,NYJ,2,3,88,(3:56) R.Bush left guard to MIA 24 for 12 yards (D.Revis; Y.Bell).,7,0,2012 20120923_NYJ@MIA,1,48,56,MIA,NYJ,1,10,76,(3:56) R.Tannehill pass incomplete short right to D.Bess.,7,0,2012 20120923_NYJ@MIA,1,48,53,MIA,NYJ,2,10,76,(3:53) (Shotgun) R.Tannehill pass short left to A.Armstrong to MIA 33 for 9 yards (D.Revis).,7,0,2012 20120923_NYJ@MIA,1,48,17,MIA,NYJ,3,1,67,(3:17) R.Tannehill pass incomplete short right to D.Thomas.,7,0,2012 20120923_NYJ@MIA,1,48,8,MIA,NYJ,4,1,67,(3:08) (Punt formation) B.Fields punts 57 yards to NYJ 10 Center-J.Denney. J.Kerley to NYJ 28 for 18 yards (N.Carroll). PENALTY on NYJ Illegal Block Above the Waist 10 yards enforced at NYJ 28.,7,0,2012 20120923_NYJ@MIA,1,47,57,NYJ,MIA,1,10,82,(2:57) B.Powell up the middle to NYJ 22 for 4 yards (K.Burnett).,0,7,2012 20120923_NYJ@MIA,1,47,15,NYJ,MIA,2,6,78,(2:15) M.Sanchez pass short middle to B.Powell to NYJ 32 for 10 yards (K.Dansby).,0,7,2012 20120923_NYJ@MIA,1,46,29,NYJ,MIA,1,10,68,(1:29) M.Sanchez pass incomplete deep left to S.Holmes. PENALTY on MIA-R.Marshall Illegal Contact 5 yards enforced at NYJ 32 - No Play.,0,7,2012 20120923_NYJ@MIA,1,46,22,NYJ,MIA,1,10,63,(1:22) B.Powell up the middle to NYJ 41 for 4 yards (J.Odrick).,0,7,2012 20120923_NYJ@MIA,1,45,52,NYJ,MIA,2,6,59,(:52) M.Sanchez pass short right to K.Reuland to MIA 49 for 10 yards (S.Smith).,0,7,2012 20120923_NYJ@MIA,1,45,8,NYJ,MIA,1,10,49,(:08) B.Powell right guard to MIA 49 for no gain (K.Misi).,0,7,2012 20120923_NYJ@MIA,2,45,0,NYJ,MIA,2,10,49,(15:00) (Shotgun) M.Sanchez pass incomplete short left to S.Hill.,0,7,2012 20120923_NYJ@MIA,2,44,55,NYJ,MIA,3,10,49,(14:55) (Shotgun) M.Sanchez sacked at NYJ 45 for -6 yards (sack split by J.Odrick and O.Vernon).,0,7,2012 20120923_NYJ@MIA,2,44,27,NYJ,MIA,4,16,55,(14:27) (Punt formation) R.Malone punts 43 yards to MIA 12 Center-T.Purdum. D.Bess to MIA 22 for 10 yards (N.Bellore).,0,7,2012 20120923_NYJ@MIA,2,44,14,MIA,NYJ,1,10,78,(14:14) D.Thomas left guard to MIA 25 for 3 yards (M.Wilkerson).,7,0,2012 20120923_NYJ@MIA,2,43,42,MIA,NYJ,2,7,75,(13:42) D.Thomas left end to MIA 29 for 4 yards (D.Harris).,7,0,2012 20120923_NYJ@MIA,2,43,13,MIA,NYJ,3,3,71,(13:13) (Shotgun) R.Tannehill pass incomplete short left to R.Bush. PENALTY on NYJ-B.Scott Illegal Contact 5 yards enforced at MIA 29 - No Play.,7,0,2012 20120923_NYJ@MIA,2,43,9,MIA,NYJ,1,10,66,(13:09) R.Bush left tackle to MIA 38 for 4 yards (D.Harris).,7,0,2012 20120923_NYJ@MIA,2,42,43,MIA,NYJ,2,6,62,(12:43) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 39 for 1 yard (D.Revis).,7,0,2012 20120923_NYJ@MIA,2,42,9,MIA,NYJ,3,5,61,(12:09) (Shotgun) R.Tannehill pass short right to D.Bess to NYJ 38 for 23 yards (D.Harris).,7,0,2012 20120923_NYJ@MIA,2,41,21,MIA,NYJ,1,10,38,(11:21) R.Tannehill pass short right to A.Fasano to NYJ 21 for 17 yards (A.Cromartie).,7,0,2012 20120923_NYJ@MIA,2,41,1,MIA,NYJ,1,10,21,(11:01) D.Thomas right tackle to NYJ 17 for 4 yards (Y.Bell).,7,0,2012 20120923_NYJ@MIA,2,40,38,MIA,NYJ,2,6,17,(10:38) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,7,0,2012 20120923_NYJ@MIA,2,40,34,MIA,NYJ,3,7,17,(10:34) (Shotgun) D.Thomas up the middle to NYJ 11 for 6 yards (L.Landry).,7,0,2012 20120923_NYJ@MIA,2,39,57,MIA,NYJ,1,10,11,(9:57) D.Thomas left end to NYJ 4 for 7 yards (S.Pouha).,7,0,2012 20120923_NYJ@MIA,2,39,17,MIA,NYJ,2,3,4,(9:17) D.Thomas left tackle to NYJ 3 for 1 yard (C.Pace).,7,0,2012 20120923_NYJ@MIA,2,38,40,MIA,NYJ,3,2,3,(8:40) R.Tannehill pass incomplete short right to B.Hartline. NYJ-L.Landry was injured during the play.,7,0,2012 20120923_NYJ@MIA,2,38,31,MIA,NYJ,4,2,3,(8:31) (Field Goal formation) D.Carpenter 21 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,7,0,2012 20120923_NYJ@MIA,2,38,31,MIA,NYJ,,,3,D.Carpenter kicks 62 yards from MIA 35 to NYJ 3. J.McKnight to NYJ 18 for 15 yards (L.Naanee).,10,0,2012 20120923_NYJ@MIA,2,38,20,NYJ,MIA,1,10,82,(8:20) M.Sanchez pass incomplete short right to S.Hill.,0,10,2012 20120923_NYJ@MIA,2,38,14,NYJ,MIA,2,10,82,(8:14) (Shotgun) PENALTY on NYJ-A.Howard False Start 5 yards enforced at NYJ 18 - No Play.,0,10,2012 20120923_NYJ@MIA,2,38,14,NYJ,MIA,2,15,87,(8:14) (Shotgun) M.Sanchez pass incomplete deep right to S.Holmes (K.Dansby).,0,10,2012 20120923_NYJ@MIA,2,38,10,NYJ,MIA,3,15,87,(8:10) (Shotgun) M.Sanchez pass short right to S.Holmes to NYJ 25 for 12 yards (C.Clemons).,0,10,2012 20120923_NYJ@MIA,2,37,18,NYJ,MIA,4,3,75,(7:18) (Punt formation) T.Tebow left guard to NYJ 30 for 5 yards (O.Vernon).,0,10,2012 20120923_NYJ@MIA,2,36,53,NYJ,MIA,1,10,70,(6:53) M.Sanchez pass incomplete short right to J.Cumberland.,0,10,2012 20120923_NYJ@MIA,2,36,46,NYJ,MIA,2,10,70,(6:46) M.Sanchez pass incomplete short middle to S.Holmes.,0,10,2012 20120923_NYJ@MIA,2,36,42,NYJ,MIA,3,10,70,(6:42) (Shotgun) M.Sanchez pass short right to S.Holmes to NYJ 45 for 15 yards (N.Carroll).,0,10,2012 20120923_NYJ@MIA,2,36,5,NYJ,MIA,1,10,55,(6:05) M.Sanchez pass short right to S.Greene to MIA 49 for 6 yards (K.Misi).,0,10,2012 20120923_NYJ@MIA,2,35,27,NYJ,MIA,2,4,49,(5:27) B.Powell right end to MIA 43 for 6 yards (C.Wake).,0,10,2012 20120923_NYJ@MIA,2,34,39,NYJ,MIA,1,10,43,(4:39) M.Sanchez pass incomplete short right to J.Cumberland (K.Burnett) [C.Wake].,0,10,2012 20120923_NYJ@MIA,2,34,32,NYJ,MIA,2,10,43,(4:32) (Shotgun) B.Powell right guard to MIA 40 for 3 yards (P.Soliai).,0,10,2012 20120923_NYJ@MIA,2,33,55,NYJ,MIA,3,7,40,(3:55) (Shotgun) M.Sanchez pass short right to J.Cumberland to MIA 21 for 19 yards (R.Jones) [J.Odrick].,0,10,2012 20120923_NYJ@MIA,2,33,15,NYJ,MIA,1,10,21,(3:15) S.Greene up the middle to MIA 16 for 5 yards (K.Misi).,0,10,2012 20120923_NYJ@MIA,2,32,30,NYJ,MIA,2,5,16,(2:30) S.Greene left guard to MIA 15 for 1 yard (C.Wake).,0,10,2012 20120923_NYJ@MIA,2,32,0,NYJ,MIA,3,4,15,(2:00) (Shotgun) M.Sanchez pass incomplete short left to S.Hill.,0,10,2012 20120923_NYJ@MIA,2,31,55,NYJ,MIA,4,4,15,(1:55) (Field Goal formation) N.Folk 33 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,0,10,2012 20120923_NYJ@MIA,2,31,55,NYJ,MIA,,,15,N.Folk kicks 70 yards from NYJ 35 to MIA -5. M.Thigpen to MIA 13 for 18 yards (J.Mauga). PENALTY on MIA Illegal Block Above the Waist 6 yards enforced at MIA 13.,3,10,2012 20120923_NYJ@MIA,2,31,44,MIA,NYJ,1,10,93,(1:44) (Shotgun) R.Bush up the middle to MIA 10 for 3 yards (D.Harris).,10,3,2012 20120923_NYJ@MIA,2,31,1,MIA,NYJ,2,7,90,(1:01) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,10,3,2012 20120923_NYJ@MIA,2,30,52,MIA,NYJ,3,7,90,(:52) (Shotgun) R.Bush up the middle to MIA 10 for no gain (Q.Coples). PENALTY on MIA-J.Martin Unsportsmanlike Conduct 5 yards enforced at MIA 10.,10,3,2012 20120923_NYJ@MIA,2,30,47,MIA,NYJ,4,12,95,(:47) (Punt formation) B.Fields punts 55 yards to NYJ 40 Center-J.Denney. J.Kerley to MIA 49 for 11 yards (J.Denney). PENALTY on NYJ-E.Smith Roughing the Kicker 15 yards enforced at MIA 5 - No Play.,10,3,2012 20120923_NYJ@MIA,2,30,36,MIA,NYJ,1,10,80,(:36) R.Bush up the middle to MIA 24 for 4 yards (B.Scott). MIA-R.Bush was injured during the play. His return is Probable.,10,3,2012 20120923_NYJ@MIA,2,30,23,MIA,NYJ,2,6,76,(:23) D.Thomas right tackle to MIA 28 for 4 yards (M.Wilkerson).,10,3,2012 20120923_NYJ@MIA,3,30,0,NYJ,MIA,,,76,N.Folk kicks 69 yards from NYJ 35 to MIA -4. M.Thigpen to MIA 24 for 28 yards (N.Bellore). PENALTY on MIA-T.Nolan Illegal Block Above the Waist 6 yards enforced at MIA 12.,3,10,2012 20120923_NYJ@MIA,3,29,54,MIA,NYJ,1,10,94,(14:54) D.Thomas right guard to MIA 6 for no gain (M.Wilkerson).,10,3,2012 20120923_NYJ@MIA,3,29,27,MIA,NYJ,2,10,94,(14:27) R.Tannehill pass short right intended for A.Fasano INTERCEPTED by L.Landry at MIA 18. L.Landry for 18 yards TOUCHDOWN.,10,3,2012 20120923_NYJ@MIA,3,29,27,NYJ,MIA,,,94,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,3,10,2012 20120923_NYJ@MIA,3,29,27,NYJ,MIA,,,94,N.Folk kicks 70 yards from NYJ 35 to MIA -5. M.Thigpen Touchback.,10,10,2012 20120923_NYJ@MIA,3,29,16,MIA,NYJ,1,10,80,(14:16) D.Thomas right end to MIA 24 for 4 yards (K.Ellis). FUMBLES (K.Ellis) RECOVERED by NYJ-D.Revis at MIA 26. D.Revis to MIA 26 for no gain (R.Incognito). The Replay Assistant challenged the fumble ruling and the play was Upheld.,10,10,2012 20120923_NYJ@MIA,3,29,8,NYJ,MIA,1,10,26,(14:08) M.Sanchez pass short right to S.Holmes to MIA 13 for 13 yards (R.Marshall).,10,10,2012 20120923_NYJ@MIA,3,28,27,NYJ,MIA,1,10,13,(13:27) J.Smith reported in as eligible. S.Greene right tackle to MIA 13 for no gain (K.Burnett; R.Starks).,10,10,2012 20120923_NYJ@MIA,3,27,44,NYJ,MIA,2,10,13,(12:44) M.Sanchez pass short right to S.Holmes to MIA 3 for 10 yards (R.Marshall).,10,10,2012 20120923_NYJ@MIA,3,27,8,NYJ,MIA,1,3,3,(12:08) J.Smith reported in as eligible. S.Greene right tackle to MIA 2 for 1 yard (K.Dansby).,10,10,2012 20120923_NYJ@MIA,3,26,31,NYJ,MIA,2,2,2,(11:31) New QB - #15 - Tebow Tim. (Shotgun) J.Smith reported in as eligible. T.Tebow left end to MIA 7 for -5 yards (R.Starks).,10,10,2012 20120923_NYJ@MIA,3,25,53,NYJ,MIA,3,7,7,(10:53) M.Sanchez pass short right intended for S.Hill INTERCEPTED by C.Clemons at MIA -5. Touchback.,10,10,2012 20120923_NYJ@MIA,3,25,37,MIA,NYJ,1,10,80,(10:37) L.Miller right tackle to MIA 25 for 5 yards (S.Pouha).,10,10,2012 20120923_NYJ@MIA,3,25,7,MIA,NYJ,2,5,75,(10:07) L.Miller up the middle to MIA 32 for 7 yards (D.Harris).,10,10,2012 20120923_NYJ@MIA,3,24,40,MIA,NYJ,1,10,68,(9:40) D.Thomas right guard to MIA 37 for 5 yards (M.Devito; C.Pace).,10,10,2012 20120923_NYJ@MIA,3,24,3,MIA,NYJ,2,5,63,(9:03) L.Miller right tackle to MIA 40 for 3 yards (M.Wilkerson; D.Revis).,10,10,2012 20120923_NYJ@MIA,3,23,17,MIA,NYJ,3,2,60,(8:17) L.Miller right end to MIA 41 for 1 yard (B.Scott).,10,10,2012 20120923_NYJ@MIA,3,22,34,MIA,NYJ,4,1,59,(7:34) (Punt formation) B.Fields punts 59 yards to end zone Center-J.Denney Touchback.,10,10,2012 20120923_NYJ@MIA,3,22,24,NYJ,MIA,1,10,80,(7:24) M.Sanchez pass short left to S.Holmes to NYJ 28 for 8 yards (R.Marshall).,10,10,2012 20120923_NYJ@MIA,3,21,56,NYJ,MIA,2,2,72,(6:56) S.Greene left guard to NYJ 27 for -1 yards (C.Clemons).,10,10,2012 20120923_NYJ@MIA,3,21,44,NYJ,MIA,3,3,73,(6:44) M.Sanchez pass incomplete short left to T.Tebow (R.Jones).,10,10,2012 20120923_NYJ@MIA,3,21,18,NYJ,MIA,4,3,73,(6:18) (Punt formation) R.Malone punts 61 yards to MIA 12 Center-T.Purdum. M.Thigpen to MIA 20 for 8 yards (I.Trufant).,10,10,2012 20120923_NYJ@MIA,3,21,6,MIA,NYJ,1,10,80,(6:06) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (A.Cromartie).,10,10,2012 20120923_NYJ@MIA,3,21,1,MIA,NYJ,2,10,80,(6:01) L.Miller left tackle to MIA 42 for 22 yards (Y.Bell).,10,10,2012 20120923_NYJ@MIA,3,20,47,MIA,NYJ,1,10,58,(5:47) L.Miller left end to MIA 42 for no gain (M.Devito). NYJ-M.Devito was injured during the play. His return is Questionable.,10,10,2012 20120923_NYJ@MIA,3,19,58,MIA,NYJ,2,10,58,(4:58) D.Thomas left tackle to MIA 43 for 1 yard (M.Wilkerson; Y.Bell).,10,10,2012 20120923_NYJ@MIA,3,19,26,MIA,NYJ,3,9,57,(4:26) (No Huddle Shotgun) R.Tannehill pass short left to D.Thomas to NYJ 46 for 11 yards (D.Harris). NYJ-D.Revis was injured during the play. He is Out.,10,10,2012 20120923_NYJ@MIA,3,18,54,MIA,NYJ,1,10,46,(3:54) L.Miller up the middle to NYJ 40 for 6 yards (Q.Coples).,10,10,2012 20120923_NYJ@MIA,3,18,23,MIA,NYJ,2,4,40,(3:23) R.Tannehill right end to NYJ 43 for -3 yards (B.Scott).,10,10,2012 20120923_NYJ@MIA,3,18,7,MIA,NYJ,3,7,43,(3:07) (Shotgun) R.Tannehill pass short middle to D.Bess to NYJ 29 for 14 yards (E.Smith). PENALTY on NYJ-E.Smith Unnecessary Roughness 15 yards enforced at NYJ 29.,10,10,2012 20120923_NYJ@MIA,3,17,29,MIA,NYJ,1,10,14,(2:29) (Shotgun) R.Tannehill pass short left to A.Fasano to NYJ 2 for 12 yards (K.Wilson). New York Jets challenged the pass completion ruling and the play was Upheld. (Timeout #1.),10,10,2012 20120923_NYJ@MIA,3,17,10,MIA,NYJ,1,2,2,(2:10) R.Tannehill right end to NYJ 1 for 1 yard (Y.Bell).,10,10,2012 20120923_NYJ@MIA,3,16,51,MIA,NYJ,2,1,1,(1:51) J.Lane right tackle for 1 yard TOUCHDOWN.,10,10,2012 20120923_NYJ@MIA,3,16,51,MIA,NYJ,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,10,10,2012 20120923_NYJ@MIA,3,16,51,MIA,NYJ,,,1,D.Carpenter kicks 63 yards from MIA 35 to NYJ 2. J.McKnight to NYJ 25 for 23 yards (J.Freeny).,17,10,2012 20120923_NYJ@MIA,3,16,37,NYJ,MIA,1,10,75,(1:37) J.Smith reported in as eligible. B.Powell right guard to NYJ 29 for 4 yards (R.Starks; C.Wake).,10,17,2012 20120923_NYJ@MIA,3,16,1,NYJ,MIA,2,6,71,(1:01) (Shotgun) M.Sanchez pass short right to J.Kerley to MIA 5 for 66 yards (S.Smith).,10,17,2012 20120923_NYJ@MIA,3,15,35,NYJ,MIA,1,5,5,(:35) J.Smith reported in as eligible. S.Greene left guard to MIA 4 for 1 yard (R.Marshall).,10,17,2012 20120923_NYJ@MIA,4,15,0,NYJ,MIA,2,4,4,(15:00) M.Sanchez pass incomplete short left to S.Holmes. PENALTY on MIA-R.Marshall Defensive Pass Interference 3 yards enforced at MIA 4 - No Play.,10,17,2012 20120923_NYJ@MIA,4,14,56,NYJ,MIA,1,1,1,(14:56) S.Greene up the middle to MIA 1 for no gain (K.Burnett).,10,17,2012 20120923_NYJ@MIA,4,14,22,NYJ,MIA,2,1,1,(14:22) M.Sanchez pass incomplete short right to J.Cumberland [R.Jones].,10,17,2012 20120923_NYJ@MIA,4,14,17,NYJ,MIA,3,1,1,(14:17) PENALTY on NYJ-M.Slauson False Start 5 yards enforced at MIA 1 - No Play.,10,17,2012 20120923_NYJ@MIA,4,14,17,NYJ,MIA,3,6,6,(14:17) M.Sanchez scrambles left guard to MIA 2 for 4 yards (C.Wake).,10,17,2012 20120923_NYJ@MIA,4,13,35,NYJ,MIA,4,2,2,(13:35) (Field Goal formation) N.Folk 20 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,10,17,2012 20120923_NYJ@MIA,4,13,35,NYJ,MIA,,,2,N.Folk kicks 71 yards from NYJ 35 to MIA -6. M.Thigpen to MIA 21 for 27 yards (J.Bush; N.Bellore).,13,17,2012 20120923_NYJ@MIA,4,13,24,MIA,NYJ,1,10,79,(13:24) L.Miller left guard to MIA 25 for 4 yards (D.Harris; G.McIntyre).,17,13,2012 20120923_NYJ@MIA,4,12,52,MIA,NYJ,2,6,75,(12:52) L.Miller right tackle to MIA 25 for no gain (M.Devito).,17,13,2012 20120923_NYJ@MIA,4,12,12,MIA,NYJ,3,6,75,(12:12) (Shotgun) R.Tannehill pass deep left to D.Bess ran ob at MIA 45 for 20 yards [Q.Coples].,17,13,2012 20120923_NYJ@MIA,4,12,2,MIA,NYJ,1,10,55,(12:02) R.Tannehill pass incomplete deep right to B.Hartline. NYJ-A.Cromartie was injured during the play. His return is Probable. PENALTY on NYJ-A.Cromartie Defensive Pass Interference 24 yards enforced at MIA 45 - No Play. Penalty on NYJ-M.Dixon Defensive Offside declined.,17,13,2012 20120923_NYJ@MIA,4,11,52,MIA,NYJ,1,10,31,(11:52) PENALTY on MIA-J.Jerry False Start 5 yards enforced at NYJ 31 - No Play.,17,13,2012 20120923_NYJ@MIA,4,11,51,MIA,NYJ,1,15,36,(11:51) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline. PENALTY on MIA-B.Hartline Offensive Pass Interference 10 yards enforced at NYJ 36 - No Play.,17,13,2012 20120923_NYJ@MIA,4,11,44,MIA,NYJ,1,25,46,(11:44) (Shotgun) R.Tannehill pass incomplete short right to A.Armstrong.,17,13,2012 20120923_NYJ@MIA,4,11,40,MIA,NYJ,2,25,46,(11:40) (Shotgun) R.Tannehill pass incomplete deep left to A.Armstrong.,17,13,2012 20120923_NYJ@MIA,4,11,34,MIA,NYJ,3,25,46,(11:34) (Shotgun) R.Tannehill pass short middle to D.Bess to NYJ 29 for 17 yards (E.Lankster).,17,13,2012 20120923_NYJ@MIA,4,10,48,MIA,NYJ,4,8,29,(10:48) (Field Goal formation) D.Carpenter 47 yard field goal is No Good Wide Left Center-J.Denney Holder-B.Fields.,17,13,2012 20120923_NYJ@MIA,4,10,41,NYJ,MIA,1,10,62,(10:41) M.Sanchez pass incomplete deep right to S.Hill.,13,17,2012 20120923_NYJ@MIA,4,10,34,NYJ,MIA,2,10,62,(10:34) M.Sanchez pass incomplete short middle to B.Powell.,13,17,2012 20120923_NYJ@MIA,4,10,30,NYJ,MIA,3,10,62,(10:30) (Shotgun) M.Sanchez pass incomplete short right to B.Powell.,13,17,2012 20120923_NYJ@MIA,4,10,24,NYJ,MIA,4,10,62,(10:24) (Punt formation) R.Malone punts 48 yards to MIA 14 Center-T.Purdum fair catch by D.Bess.,13,17,2012 20120923_NYJ@MIA,4,10,19,MIA,NYJ,1,10,86,(10:19) R.Tannehill pass incomplete short right to B.Hartline [B.Scott].,17,13,2012 20120923_NYJ@MIA,4,10,14,MIA,NYJ,2,10,86,(10:14) R.Tannehill pass incomplete short left to D.Bess (G.McIntyre).,17,13,2012 20120923_NYJ@MIA,4,10,8,MIA,NYJ,3,10,86,(10:08) (Shotgun) R.Tannehill pass incomplete short middle to A.Armstrong.,17,13,2012 20120923_NYJ@MIA,4,10,3,MIA,NYJ,4,10,86,(10:03) (Punt formation) B.Fields punts 62 yards to NYJ 24 Center-J.Denney. J.Kerley to NYJ 40 for 16 yards (O.Vernon).,17,13,2012 20120923_NYJ@MIA,4,9,50,NYJ,MIA,1,10,60,(9:50) M.Sanchez pass incomplete deep left to S.Holmes (R.Marshall).,13,17,2012 20120923_NYJ@MIA,4,9,44,NYJ,MIA,2,10,60,(9:44) (Shotgun) M.Sanchez pass deep left to S.Holmes ran ob at MIA 42 for 18 yards.,13,17,2012 20120923_NYJ@MIA,4,9,12,NYJ,MIA,1,10,42,(9:12) J.Smith reported in as eligible. B.Powell right end to MIA 37 for 5 yards (K.Misi).,13,17,2012 20120923_NYJ@MIA,4,8,40,NYJ,MIA,2,5,37,(8:40) New QB - #15 Tebow Tim. J.McKnight right end to MIA 38 for -1 yards (K.Misi).,13,17,2012 20120923_NYJ@MIA,4,7,26,NYJ,MIA,3,6,38,(7:26) (Shotgun) M.Sanchez pass incomplete short right to B.Powell.,13,17,2012 20120923_NYJ@MIA,4,7,21,NYJ,MIA,4,6,38,(7:21) (Punt formation) R.Malone punts 33 yards to MIA 5 Center-T.Purdum downed by NYJ-I.Trufant.,13,17,2012 20120923_NYJ@MIA,4,7,13,MIA,NYJ,1,10,95,(7:13) R.Tannehill pass short right to J.Lane to MIA 6 for 1 yard (A.Cromartie).,17,13,2012 20120923_NYJ@MIA,4,6,36,MIA,NYJ,2,9,94,(6:36) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano.,17,13,2012 20120923_NYJ@MIA,4,6,26,MIA,NYJ,3,9,94,(6:26) PENALTY on MIA-R.Tannehill Delay of Game 3 yards enforced at MIA 6 - No Play.,17,13,2012 20120923_NYJ@MIA,4,6,26,MIA,NYJ,3,12,97,(6:26) D.Thomas left tackle to MIA 7 for 4 yards (Y.Bell).,17,13,2012 20120923_NYJ@MIA,4,5,48,MIA,NYJ,4,8,93,(5:48) (Punt formation) B.Fields punts 57 yards to NYJ 36 Center-J.Denney. J.Kerley to NYJ 47 for 11 yards (O.Vernon).,17,13,2012 20120923_NYJ@MIA,4,5,34,NYJ,MIA,1,10,53,(5:34) M.Sanchez pass short right to S.Holmes to MIA 35 for 18 yards (C.Clemons).,13,17,2012 20120923_NYJ@MIA,4,4,57,NYJ,MIA,1,10,35,(4:57) (Shotgun) M.Sanchez pass incomplete short right to S.Holmes.,13,17,2012 20120923_NYJ@MIA,4,4,48,NYJ,MIA,2,10,35,(4:48) (Shotgun) M.Sanchez pass short left to B.Powell to MIA 16 for 19 yards (R.Jones). PENALTY on NYJ-S.Holmes Offensive Holding 10 yards enforced at MIA 21.,13,17,2012 20120923_NYJ@MIA,4,4,39,NYJ,MIA,2,6,31,(4:39) M.Sanchez pass incomplete deep right to C.Schilens.,13,17,2012 20120923_NYJ@MIA,4,4,32,NYJ,MIA,3,6,31,(4:32) (Shotgun) M.Sanchez pass short left to S.Holmes to MIA 16 for 15 yards (C.Clemons).,13,17,2012 20120923_NYJ@MIA,4,4,0,NYJ,MIA,1,10,16,(4:00) S.Greene left end to MIA 7 for 9 yards (R.Jones).,13,17,2012 20120923_NYJ@MIA,4,3,44,NYJ,MIA,2,1,7,(3:44) S.Greene up the middle to MIA 7 for no gain (C.Clemons).,13,17,2012 20120923_NYJ@MIA,4,3,5,NYJ,MIA,3,1,7,(3:05) (Shotgun) M.Sanchez pass short middle to J.Kerley for 7 yards TOUCHDOWN.,13,17,2012 20120923_NYJ@MIA,4,3,5,NYJ,MIA,,,7,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,13,17,2012 20120923_NYJ@MIA,4,3,5,NYJ,MIA,,,7,N.Folk kicks 67 yards from NYJ 35 to MIA -2. M.Thigpen to MIA 29 for 31 yards (J.McKnight).,20,17,2012 20120923_NYJ@MIA,4,2,52,MIA,NYJ,1,10,71,(2:52) D.Thomas right tackle to MIA 32 for 3 yards (M.Wilkerson).,17,20,2012 20120923_NYJ@MIA,4,2,28,MIA,NYJ,2,7,68,(2:28) (Shotgun) R.Tannehill pass short right to A.Armstrong to MIA 32 for no gain (B.Scott).,17,20,2012 20120923_NYJ@MIA,4,2,0,MIA,NYJ,3,7,68,(2:00) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 44 for 12 yards (K.Wilson).,17,20,2012 20120923_NYJ@MIA,4,1,36,MIA,NYJ,1,10,56,(1:36) (Shotgun) R.Tannehill pass incomplete short left to A.Armstrong.,17,20,2012 20120923_NYJ@MIA,4,1,27,MIA,NYJ,2,10,56,(1:27) (Shotgun) D.Thomas up the middle to NYJ 47 for 9 yards (C.Pace; M.Wilkerson).,17,20,2012 20120923_NYJ@MIA,4,1,14,MIA,NYJ,3,1,47,(1:14) R.Tannehill right guard to NYJ 42 for 5 yards (C.Pace).,17,20,2012 20120923_NYJ@MIA,4,0,53,MIA,NYJ,1,10,42,(:53) (No Huddle Shotgun) R.Tannehill pass incomplete short middle to A.Fasano (E.Smith).,17,20,2012 20120923_NYJ@MIA,4,0,46,MIA,NYJ,2,10,42,(:46) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano.,17,20,2012 20120923_NYJ@MIA,4,0,41,MIA,NYJ,3,10,42,(:41) (Shotgun) R.Tannehill pass incomplete deep middle to D.Bess. PENALTY on NYJ-K.Wilson Defensive Pass Interference 19 yards enforced at NYJ 42 - No Play.,17,20,2012 20120923_NYJ@MIA,4,0,36,MIA,NYJ,1,10,23,(:36) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano.,17,20,2012 20120923_NYJ@MIA,4,0,32,MIA,NYJ,2,10,23,(:32) (No Huddle Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,17,20,2012 20120923_NYJ@MIA,4,0,27,MIA,NYJ,3,10,23,(:27) R.Tannehill pass incomplete deep right to B.Hartline.,17,20,2012 20120923_NYJ@MIA,4,0,21,MIA,NYJ,4,10,23,(:21) (Field Goal formation) D.Carpenter 41 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,17,20,2012 20120923_NYJ@MIA,4,0,21,MIA,NYJ,,,23,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,20,20,2012 20120923_NYJ@MIA,4,0,16,NYJ,MIA,1,10,80,(:16) J.Smith reported in as eligible. S.Greene up the middle to NYJ 22 for 2 yards (K.Dansby).,20,20,2012 20120923_NYJ@MIA,4,0,10,NYJ,MIA,2,8,78,(:10) S.Greene right guard to NYJ 25 for 3 yards (C.Wake).,20,20,2012 20120923_NYJ@MIA,4,0,6,NYJ,MIA,3,5,75,(:06) S.Greene right end to NYJ 26 for 1 yard (K.Burnett; K.Dansby).,20,20,2012 20120923_NYJ@MIA,5,0,0,MIA,NYJ,,,75,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,20,20,2012 20120923_NYJ@MIA,5,0,0,NYJ,MIA,1,10,80,(15:00) J.Smith reported in as eligible. B.Powell left tackle to NYJ 24 for 4 yards (P.Soliai).,20,20,2012 20120923_NYJ@MIA,5,-1,25,NYJ,MIA,2,6,76,(14:25) B.Powell left tackle to NYJ 35 for 11 yards (R.Jones).,20,20,2012 20120923_NYJ@MIA,5,-2,42,NYJ,MIA,1,10,65,(13:42) B.Powell right tackle to NYJ 39 for 4 yards (K.Misi).,20,20,2012 20120923_NYJ@MIA,5,-2,9,NYJ,MIA,2,6,61,(13:09) M.Sanchez pass incomplete short middle to J.Cumberland (R.Marshall) [C.Wake].,20,20,2012 20120923_NYJ@MIA,5,-2,0,NYJ,MIA,3,6,61,(13:00) (Shotgun) M.Sanchez pass short left to C.Schilens to NYJ 47 for 8 yards (K.Burnett).,20,20,2012 20120923_NYJ@MIA,5,-3,24,NYJ,MIA,1,10,53,(12:24) J.Smith reported in as eligible. M.Sanchez pass incomplete deep right to S.Holmes.,20,20,2012 20120923_NYJ@MIA,5,-3,13,NYJ,MIA,2,10,53,(12:13) (Shotgun) M.Sanchez to NYJ 42 for -5 yards. FUMBLES and recovers at NYJ 42. M.Sanchez pass incomplete short left.,20,20,2012 20120923_NYJ@MIA,5,-4,33,NYJ,MIA,3,10,53,(11:33) (Shotgun) M.Sanchez pass short left to C.Schilens to MIA 45 for 8 yards (O.Vernon).,20,20,2012 20120923_NYJ@MIA,5,-4,28,NYJ,MIA,4,2,45,(11:28) (Punt formation) R.Malone punts 35 yards to MIA 10 Center-T.Purdum fair catch by D.Bess.,20,20,2012 20120923_NYJ@MIA,5,-4,22,MIA,NYJ,1,10,90,(11:22) D.Thomas up the middle to MIA 15 for 5 yards (D.Harris).,20,20,2012 20120923_NYJ@MIA,5,-5,47,MIA,NYJ,2,5,85,(10:47) D.Thomas up the middle to MIA 18 for 3 yards (B.Scott).,20,20,2012 20120923_NYJ@MIA,5,-5,7,MIA,NYJ,3,2,82,(10:07) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 24 for 6 yards (Y.Bell).,20,20,2012 20120923_NYJ@MIA,5,-6,39,MIA,NYJ,1,10,76,(9:39) R.Tannehill pass deep right to B.Hartline ran ob at NYJ 35 for 41 yards.,20,20,2012 20120923_NYJ@MIA,5,-6,25,MIA,NYJ,1,10,35,(9:25) D.Thomas right tackle to NYJ 32 for 3 yards (G.McIntyre).,20,20,2012 20120923_NYJ@MIA,5,-7,49,MIA,NYJ,2,7,32,(8:49) (Shotgun) R.Tannehill pass incomplete deep left to B.Hartline.,20,20,2012 20120923_NYJ@MIA,5,-7,39,MIA,NYJ,3,7,32,(8:39) D.Thomas right end to NYJ 30 for 2 yards (M.Wilkerson).,20,20,2012 20120923_NYJ@MIA,5,-7,0,MIA,NYJ,4,5,30,(8:00) (Field Goal formation) D.Carpenter 48 yard field goal is No Good Wide Left Center-J.Denney Holder-B.Fields.,20,20,2012 20120923_NYJ@MIA,5,-8,53,NYJ,MIA,1,10,62,(7:53) M.Sanchez pass short left to J.Cumberland to NYJ 44 for 6 yards (K.Burnett).,20,20,2012 20120923_NYJ@MIA,5,-8,47,NYJ,MIA,2,4,56,(7:47) M.Sanchez pass deep left to S.Holmes to MIA 18 for 38 yards (R.Marshall). MIA-R.Marshall was injured during the play. His return is Questionable. Penalty on MIA-R.Marshall Defensive Holding declined.,20,20,2012 20120923_NYJ@MIA,5,-8,34,NYJ,MIA,1,10,18,(7:34) J.Smith reported in as eligible. S.Greene left guard to MIA 13 for 5 yards (K.Burnett).,20,20,2012 20120923_NYJ@MIA,5,-9,53,NYJ,MIA,2,5,13,(6:53) S.Greene right end to MIA 15 for -2 yards (K.Misi; K.Burnett).,20,20,2012 20120923_NYJ@MIA,5,-9,4,NYJ,MIA,3,7,15,(6:04) (Field Goal formation) N.Folk 33 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,20,20,2012 20120923_NYJ@MIA,5,-9,4,NYJ,MIA,,,15,                      ,23,20,2012 20120923_SF@MIN,1,-9,0,SF,MIN,,,15,D.Akers kicks 69 yards from SF 35 to MIN -4. P.Harvin to MIN 18 for 22 yards (C.Culliver).,0,0,2012 20120923_SF@MIN,1,59,55,MIN,SF,1,10,82,(14:55) A.Peterson right tackle to MIN 22 for 4 yards (R.McDonald; A.Brooks).,0,0,2012 20120923_SF@MIN,1,59,22,MIN,SF,2,6,78,(14:22) C.Ponder pass short left to P.Harvin to MIN 34 for 12 yards (T.Brown).,0,0,2012 20120923_SF@MIN,1,58,37,MIN,SF,1,10,66,(13:37) A.Peterson right tackle to MIN 34 for no gain (A.Brooks).,0,0,2012 20120923_SF@MIN,1,58,4,MIN,SF,2,10,66,(13:04) C.Ponder pass short middle to K.Rudolph to 50 for 16 yards (D.Goldson).,0,0,2012 20120923_SF@MIN,1,57,27,MIN,SF,1,10,50,(12:27) A.Peterson left guard to SF 47 for 3 yards (R.McDonald; N.Bowman).,0,0,2012 20120923_SF@MIN,1,56,46,MIN,SF,2,7,47,(11:46) C.Ponder pass short right to P.Harvin to SF 45 for 2 yards (C.Culliver; N.Bowman). PENALTY on SF-C.Culliver Face Mask (15 Yards) 15 yards enforced at SF 45.,0,0,2012 20120923_SF@MIN,1,56,24,MIN,SF,1,10,30,(11:24) A.Peterson left guard to SF 27 for 3 yards (A.Brooks; N.Bowman).,0,0,2012 20120923_SF@MIN,1,55,47,MIN,SF,2,7,27,(10:47) C.Ponder pass short right to K.Rudolph pushed ob at SF 21 for 6 yards (A.Brooks).,0,0,2012 20120923_SF@MIN,1,55,27,MIN,SF,3,1,21,(10:27) A.Peterson up the middle to SF 18 for 3 yards (P.Willis).,0,0,2012 20120923_SF@MIN,1,54,52,MIN,SF,1,10,18,(9:52) C.Ponder pass incomplete short middle to T.Gerhart [A.Brooks].,0,0,2012 20120923_SF@MIN,1,54,48,MIN,SF,2,10,18,(9:48) C.Ponder pass incomplete short right to S.Burton.,0,0,2012 20120923_SF@MIN,1,54,45,MIN,SF,3,10,18,(9:45) (Shotgun) C.Ponder pass short middle to K.Rudolph to SF 7 for 11 yards (D.Whitner).,0,0,2012 20120923_SF@MIN,1,54,10,MIN,SF,1,7,7,(9:10) A.Peterson right tackle to SF 2 for 5 yards (N.Bowman; D.Goldson).,0,0,2012 20120923_SF@MIN,1,53,35,MIN,SF,2,2,2,(8:35) A.Peterson left guard to SF 1 for 1 yard (P.Willis; N.Bowman).,0,0,2012 20120923_SF@MIN,1,53,0,MIN,SF,3,1,1,(8:00) A.Peterson up the middle to SF 1 for no gain (I.Sopoaga).,0,0,2012 20120923_SF@MIN,1,52,25,MIN,SF,4,1,1,(7:25) C.Ponder pass short left to K.Rudolph for 1 yard TOUCHDOWN.,0,0,2012 20120923_SF@MIN,1,52,25,MIN,SF,,,1,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 20120923_SF@MIN,1,52,25,MIN,SF,,,1,B.Walsh kicks 65 yards from MIN 35 to SF 0. K.Hunter to SF 20 for 20 yards (R.Ellison).,7,0,2012 20120923_SF@MIN,1,52,15,SF,MIN,1,10,80,(7:15) A.Smith pass short right to M.Crabtree to SF 26 for 6 yards (C.Greenway).,0,7,2012 20120923_SF@MIN,1,51,38,SF,MIN,2,4,74,(6:38) A.Smith pass incomplete short right to D.Walker (H.Smith).,0,7,2012 20120923_SF@MIN,1,51,27,SF,MIN,3,4,74,(6:27) (Shotgun) A.Smith pass short right to V.Davis to SF 38 for 12 yards (J.Robinson).,0,7,2012 20120923_SF@MIN,1,50,50,SF,MIN,1,10,62,(5:50) F.Gore left end pushed ob at SF 42 for 4 yards (L.Guion).,0,7,2012 20120923_SF@MIN,1,50,30,SF,MIN,2,6,58,(5:30) (Shotgun) A.Smith pass incomplete short right to R.Moss.,0,7,2012 20120923_SF@MIN,1,50,24,SF,MIN,3,6,58,(5:24) (Shotgun) A.Smith sacked at SF 36 for -6 yards (C.Greenway).,0,7,2012 20120923_SF@MIN,1,49,54,SF,MIN,4,12,64,(4:54) A.Lee punts 44 yards to MIN 20 Center-B.Jennings fair catch by M.Sherels.,0,7,2012 20120923_SF@MIN,1,49,47,MIN,SF,1,10,80,(4:47) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph.,7,0,2012 20120923_SF@MIN,1,49,43,MIN,SF,2,10,80,(4:43) C.Ponder pass deep left to P.Harvin ran ob at MIN 44 for 24 yards.,7,0,2012 20120923_SF@MIN,1,49,22,MIN,SF,1,10,56,(4:22) A.Peterson up the middle to MIN 44 for no gain (P.Willis).,7,0,2012 20120923_SF@MIN,1,48,48,MIN,SF,2,10,56,(3:48) A.Peterson left tackle to MIN 46 for 2 yards (Ald.Smith).,7,0,2012 20120923_SF@MIN,1,48,8,MIN,SF,3,8,54,(3:08) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins [Ald.Smith].,7,0,2012 20120923_SF@MIN,1,48,3,MIN,SF,4,8,54,(3:03) C.Kluwe punts 35 yards to SF 19 Center-C.Loeffler. K.Williams to SF 35 for 16 yards (H.Smith).,7,0,2012 20120923_SF@MIN,1,47,53,SF,MIN,1,10,65,(2:53) (Shotgun) A.Smith pass short left to M.Manningham to SF 41 for 6 yards (L.Guion).,0,7,2012 20120923_SF@MIN,1,47,19,SF,MIN,2,4,59,(2:19) A.Smith pass incomplete short left to R.Moss [J.Brinkley].,0,7,2012 20120923_SF@MIN,1,47,15,SF,MIN,3,4,59,(2:15) A.Smith pass short right to M.Crabtree pushed ob at SF 47 for 6 yards (J.Robinson).,0,7,2012 20120923_SF@MIN,1,46,59,SF,MIN,1,10,53,(1:59) D.Kilgore reported in as eligible. F.Gore left end to MIN 48 for 5 yards (C.Cook).,0,7,2012 20120923_SF@MIN,1,46,25,SF,MIN,2,5,48,(1:25) A.Smith pass short left to M.Manningham to MIN 41 for 7 yards (H.Smith).,0,7,2012 20120923_SF@MIN,1,45,56,SF,MIN,1,10,41,(:56) A.Smith sacked at MIN 41 for 0 yards (C.Greenway).,0,7,2012 20120923_SF@MIN,1,45,11,SF,MIN,2,10,41,(:11) F.Gore left end to MIN 30 for 11 yards (H.Smith).,0,7,2012 20120923_SF@MIN,2,45,0,SF,MIN,1,10,30,(15:00) A.Smith pass short middle to K.Hunter to MIN 28 for 2 yards (C.Greenway).,0,7,2012 20120923_SF@MIN,2,44,18,SF,MIN,2,8,28,(14:18) A.Smith pass short left to R.Moss pushed ob at MIN 20 for 8 yards (C.Cook).,0,7,2012 20120923_SF@MIN,2,43,55,SF,MIN,1,10,20,(13:55) F.Gore up the middle to MIN 18 for 2 yards (C.Greenway).,0,7,2012 20120923_SF@MIN,2,43,14,SF,MIN,2,8,18,(13:14) (Shotgun) A.Smith pass incomplete deep left to R.Moss.,0,7,2012 20120923_SF@MIN,2,43,9,SF,MIN,3,8,18,(13:09) (Shotgun) A.Smith pass short right to K.Williams to MIN 11 for 7 yards (J.Brinkley).,0,7,2012 20120923_SF@MIN,2,42,17,SF,MIN,4,1,11,(12:17) D.Akers 29 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,7,2012 20120923_SF@MIN,2,42,17,SF,MIN,,,11,D.Akers kicks 74 yards from SF 35 to MIN -9. P.Harvin Touchback.,3,7,2012 20120923_SF@MIN,2,42,13,MIN,SF,1,10,80,(12:13) C.Ponder scrambles left end to MIN 22 for 2 yards (A.Brooks).,7,3,2012 20120923_SF@MIN,2,41,32,MIN,SF,2,8,78,(11:32) C.Ponder scrambles left end pushed ob at MIN 31 for 9 yards (J.Smith).,7,3,2012 20120923_SF@MIN,2,41,8,MIN,SF,1,10,69,(11:08) A.Peterson right guard to MIN 32 for 1 yard (P.Willis; N.Bowman).,7,3,2012 20120923_SF@MIN,2,40,31,MIN,SF,2,9,68,(10:31) C.Ponder pass short middle to A.Peterson to MIN 44 for 12 yards (P.Willis; I.Sopoaga).,7,3,2012 20120923_SF@MIN,2,39,49,MIN,SF,1,10,56,(9:49) C.Ponder pass short middle to D.Aromashodu to SF 43 for 13 yards (D.Whitner).,7,3,2012 20120923_SF@MIN,2,39,6,MIN,SF,1,10,43,(9:06) A.Peterson up the middle to SF 36 for 7 yards (N.Bowman).,7,3,2012 20120923_SF@MIN,2,38,25,MIN,SF,2,3,36,(8:25) A.Peterson right guard to SF 33 for 3 yards (N.Bowman; P.Willis).,7,3,2012 20120923_SF@MIN,2,37,35,MIN,SF,1,10,33,(7:35) A.Peterson right guard to SF 36 for -3 yards (A.Brooks).,7,3,2012 20120923_SF@MIN,2,36,59,MIN,SF,2,13,36,(6:59) C.Ponder pass short left to P.Harvin to SF 34 for 2 yards (D.Whitner; N.Bowman).,7,3,2012 20120923_SF@MIN,2,36,22,MIN,SF,3,11,34,(6:22) (Shotgun) C.Ponder pass short left to D.Aromashodu to SF 23 for 11 yards (T.Brown).,7,3,2012 20120923_SF@MIN,2,35,39,MIN,SF,1,10,23,(5:39) C.Ponder scrambles up the middle for 23 yards TOUCHDOWN.,7,3,2012 20120923_SF@MIN,2,35,39,MIN,SF,,,23,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,3,2012 20120923_SF@MIN,2,35,39,MIN,SF,,,23,B.Walsh kicks 70 yards from MIN 35 to SF -5. K.Hunter to SF 24 for 29 yards (M.Sherels).,14,3,2012 20120923_SF@MIN,2,35,24,SF,MIN,1,10,76,(5:24) F.Gore up the middle to SF 27 for 3 yards (H.Smith; B.Robison).,3,14,2012 20120923_SF@MIN,2,34,50,SF,MIN,2,7,73,(4:50) (Shotgun) A.Smith pass incomplete short middle to V.Davis (K.Williams).,3,14,2012 20120923_SF@MIN,2,34,47,SF,MIN,3,7,73,(4:47) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 36 for 9 yards (C.Greenway).,3,14,2012 20120923_SF@MIN,2,34,4,SF,MIN,1,10,64,(4:04) K.Hunter right guard to SF 31 for -5 yards (A.Winfield).,3,14,2012 20120923_SF@MIN,2,33,24,SF,MIN,2,15,69,(3:24) A.Smith scrambles left end to SF 41 for 10 yards (C.Greenway). MIN-M.Raymond was injured during the play. His return is Probable.,3,14,2012 20120923_SF@MIN,2,32,37,SF,MIN,3,5,59,(2:37) (Shotgun) A.Smith pass short middle to V.Davis to MIN 46 for 13 yards (J.Robinson; E.Griffen).,3,14,2012 20120923_SF@MIN,2,32,0,SF,MIN,1,10,46,(2:00) F.Gore up the middle to MIN 39 for 7 yards (K.Williams).,3,14,2012 20120923_SF@MIN,2,31,28,SF,MIN,2,3,39,(1:28) A.Smith pass short middle to M.Crabtree to MIN 33 for 6 yards (Team).,3,14,2012 20120923_SF@MIN,2,31,20,SF,MIN,1,10,33,(1:20) A.Smith pass short right to R.Moss pushed ob at MIN 26 for 7 yards (A.Winfield).,3,14,2012 20120923_SF@MIN,2,31,15,SF,MIN,2,3,26,(1:15) (Shotgun) A.Smith pass incomplete short right to F.Gore.,3,14,2012 20120923_SF@MIN,2,31,9,SF,MIN,3,3,26,(1:09) (Shotgun) A.Smith pass short right to D.Walker to MIN 25 for 1 yard (C.Greenway H.Smith).,3,14,2012 20120923_SF@MIN,2,31,0,SF,MIN,4,2,25,(1:00) D.Akers 43 yard field goal is BLOCKED (L.Guion) Center-B.Jennings Holder-A.Lee declared dead at MIN 33.,3,14,2012 20120923_SF@MIN,2,30,52,MIN,SF,1,10,67,(:52) C.Ponder pass short right to M.Jenkins pushed ob at MIN 41 for 8 yards (C.Culliver).,14,3,2012 20120923_SF@MIN,2,30,47,MIN,SF,2,2,59,(:47) (Shotgun) C.Ponder pass incomplete short right to T.Gerhart.,14,3,2012 20120923_SF@MIN,2,30,44,MIN,SF,3,2,59,(:44) (Shotgun) C.Ponder pass short left to T.Gerhart to MIN 47 for 6 yards (C.Rogers).,14,3,2012 20120923_SF@MIN,2,30,37,MIN,SF,1,10,53,(:37) (Shotgun) C.Ponder pass incomplete short right to A.Reisner.,14,3,2012 20120923_SF@MIN,2,30,31,MIN,SF,2,10,53,(:31) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins.,14,3,2012 20120923_SF@MIN,2,30,26,MIN,SF,3,10,53,(:26) (Shotgun) C.Ponder pass deep right to T.Gerhart to SF 39 for 14 yards (N.Bowman).,14,3,2012 20120923_SF@MIN,2,30,15,MIN,SF,1,10,39,(:15) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins.,14,3,2012 20120923_SF@MIN,2,30,9,MIN,SF,2,10,39,(:09) (Shotgun) C.Ponder pass short middle to P.Harvin ran ob at SF 34 for 5 yards.,14,3,2012 20120923_SF@MIN,2,30,4,MIN,SF,3,5,34,(:04) B.Walsh 52 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,3,2012 20120923_SF@MIN,3,30,0,MIN,SF,,,34,B.Walsh kicks 73 yards from MIN 35 to SF -8. K.Williams to MIN 14 for 94 yards (J.Sanford).,17,3,2012 20120923_SF@MIN,3,29,49,SF,MIN,1,10,14,(14:49) K.Hunter left end to MIN 11 for 3 yards (M.Mitchell).,3,17,2012 20120923_SF@MIN,3,29,12,SF,MIN,2,7,11,(14:12) (Shotgun) F.Gore right guard to MIN 7 for 4 yards (J.Brinkley; L.Guion).,3,17,2012 20120923_SF@MIN,3,28,31,SF,MIN,3,3,7,(13:31) A.Smith scrambles right end to MIN 6 for 1 yard (A.Winfield).,3,17,2012 20120923_SF@MIN,3,28,31,SF,MIN,4,2,6,(13:31) (Run formation) PENALTY on SF-A.Smith Delay of Game 5 yards enforced at MIN 6 - No Play.,3,17,2012 20120923_SF@MIN,3,27,50,SF,MIN,4,7,11,(12:50) D.Akers 29 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,3,17,2012 20120923_SF@MIN,3,27,50,SF,MIN,,,11,D.Akers kicks 70 yards from SF 35 to MIN -5. P.Harvin to MIN 27 for 32 yards (P.Cox).,6,17,2012 20120923_SF@MIN,3,27,41,MIN,SF,1,10,73,(12:41) A.Peterson right guard to MIN 31 for 4 yards (N.Bowman).,17,6,2012 20120923_SF@MIN,3,27,4,MIN,SF,2,6,69,(12:04) A.Peterson up the middle to MIN 35 for 4 yards (N.Bowman).,17,6,2012 20120923_SF@MIN,3,26,29,MIN,SF,3,2,65,(11:29) (Shotgun) C.Ponder pass incomplete short left to A.Peterson.,17,6,2012 20120923_SF@MIN,3,26,25,MIN,SF,4,2,65,(11:25) C.Kluwe punts 51 yards to SF 14 Center-C.Loeffler fair catch by K.Williams.,17,6,2012 20120923_SF@MIN,3,26,17,SF,MIN,1,10,86,(11:17) A.Smith pass short right to M.Crabtree to SF 23 for 9 yards (A.Winfield; J.Sanford).,6,17,2012 20120923_SF@MIN,3,25,40,SF,MIN,2,1,77,(10:40) D.Kilgore and L.Davis reported in as eligible. F.Gore left end to SF 29 for 6 yards (A.Winfield; C.Greenway).,6,17,2012 20120923_SF@MIN,3,25,40,SF,MIN,1,10,71,(10:40) A.Smith pass short middle to R.Moss to SF 41 for 12 yards (H.Smith; C.Cook).,6,17,2012 20120923_SF@MIN,3,24,23,SF,MIN,1,10,59,(9:23) W.Tukuafu reported in as eligible. F.Gore right tackle to MIN 48 for 11 yards (J.Sanford).,6,17,2012 20120923_SF@MIN,3,23,41,SF,MIN,1,10,48,(8:41) A.Smith pass short left to M.Manningham to MIN 31 for 17 yards (J.Sanford).,6,17,2012 20120923_SF@MIN,3,22,55,SF,MIN,1,10,31,(7:55) A.Smith pass short right to K.Williams to MIN 22 for 9 yards (A.Winfield).,6,17,2012 20120923_SF@MIN,3,22,31,SF,MIN,2,1,22,(7:31) D.Kilgore and L.Davis reported in as eligible. F.Gore left guard to MIN 21 for 1 yard (A.Winfield; C.Greenway).,6,17,2012 20120923_SF@MIN,3,21,48,SF,MIN,1,10,21,(6:48) (Shotgun) A.Smith pass deep right to V.Davis to MIN 1 for 20 yards (J.Sanford).,6,17,2012 20120923_SF@MIN,3,21,21,SF,MIN,1,1,1,(6:21) D.Kilgore L.Davis and W.Tukuafu reported in as eligible. A.Smith pass short right to V.Davis for 1 yard TOUCHDOWN.,6,17,2012 20120923_SF@MIN,3,21,21,SF,MIN,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,6,17,2012 20120923_SF@MIN,3,21,21,SF,MIN,,,1,D.Akers kicks 71 yards from SF 35 to MIN -6. P.Harvin to MIN 14 for 20 yards (L.Grant).,13,17,2012 20120923_SF@MIN,3,21,12,MIN,SF,1,10,86,(6:12) C.Ponder scrambles right end to MIN 18 for 4 yards (I.Sopoaga).,17,13,2012 20120923_SF@MIN,3,20,35,MIN,SF,2,6,82,(5:35) C.Ponder pass short left to P.Harvin to MIN 25 for 7 yards (P.Willis).,17,13,2012 20120923_SF@MIN,3,20,0,MIN,SF,1,10,75,(5:00) C.Ponder pass incomplete short left to A.Peterson.,17,13,2012 20120923_SF@MIN,3,19,52,MIN,SF,2,10,75,(4:52) A.Peterson up the middle to MIN 30 for 5 yards (D.Whitner). FUMBLES (D.Whitner) recovered by MIN-P.Harvin at MIN 34. P.Harvin to MIN 34 for no gain (Team). PENALTY on SF Unnecessary Roughness 15 yards enforced at MIN 34.,17,13,2012 20120923_SF@MIN,3,19,23,MIN,SF,1,10,51,(4:23) A.Peterson left tackle to SF 47 for 4 yards (P.Willis). PENALTY on MIN Offensive Holding 10 yards enforced at MIN 49 - No Play.,17,13,2012 20120923_SF@MIN,3,19,52,MIN,SF,1,20,61,(4:52) C.Ponder pass short right to P.Harvin ran ob at SF 48 for 13 yards.,17,13,2012 20120923_SF@MIN,3,18,48,MIN,SF,2,7,48,(3:48) (Shotgun) C.Ponder pass short left to P.Harvin to SF 38 for 10 yards (N.Bowman).,17,13,2012 20120923_SF@MIN,3,18,7,MIN,SF,1,10,38,(3:07) A.Peterson up the middle to SF 35 for 3 yards (P.Willis; N.Bowman).,17,13,2012 20120923_SF@MIN,3,17,34,MIN,SF,2,7,35,(2:34) C.Ponder pass short middle to A.Peterson to SF 26 for 9 yards (D.Whitner).,17,13,2012 20120923_SF@MIN,3,16,51,MIN,SF,1,10,26,(1:51) C.Ponder pass incomplete deep middle to K.Rudolph. PENALTY on SF-D.Goldson Unnecessary Roughness 12 yards enforced at SF 26 - No Play.,17,13,2012 20120923_SF@MIN,3,16,45,MIN,SF,1,10,14,(1:45) P.Harvin up the middle to SF 5 for 9 yards (P.Willis).,17,13,2012 20120923_SF@MIN,3,16,9,MIN,SF,2,1,5,(1:09) C.Ponder pass short right to M.Asiata to SF 4 for 1 yard (D.Whitner; N.Bowman). PENALTY on SF Defensive Holding 2 yards enforced at SF 5 - No Play.,17,13,2012 20120923_SF@MIN,3,15,46,MIN,SF,1,3,3,(:46) A.Peterson up the middle to SF 4 for -1 yards (J.Smith).,17,13,2012 20120923_SF@MIN,4,15,0,MIN,SF,2,4,4,(15:00) A.Peterson up the middle to SF 2 for 2 yards (Ald.Smith).,17,13,2012 20120923_SF@MIN,4,14,22,MIN,SF,3,2,2,(14:22) (Shotgun) C.Ponder pass short middle to K.Rudolph for 2 yards TOUCHDOWN.,17,13,2012 20120923_SF@MIN,4,14,22,MIN,SF,,,2,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,17,13,2012 20120923_SF@MIN,4,14,22,MIN,SF,,,2,B.Walsh kicks 72 yards from MIN 35 to SF -7. K.Williams pushed ob at SF 43 for 50 yards (J.Robinson).,24,13,2012 20120923_SF@MIN,4,14,10,SF,MIN,1,10,57,(14:10) F.Gore right guard to 50 for 7 yards (J.Sanford). Play Challenged by MIN and REVERSED. F.Gore right guard to 50 for 7 yards (J.Sanford). FUMBLES (J.Sanford) RECOVERED by MIN-M.Mitchell at 50. M.Mitchell to 50 for no gain (Team).,13,24,2012 20120923_SF@MIN,4,14,4,MIN,SF,1,10,50,(14:04) A.Peterson up the middle to SF 42 for 8 yards (D.Goldson).,24,13,2012 20120923_SF@MIN,4,13,30,MIN,SF,2,2,42,(13:30) C.Ponder pass incomplete deep middle to P.Harvin.,24,13,2012 20120923_SF@MIN,4,13,24,MIN,SF,3,2,42,(13:24) (Shotgun) C.Ponder pass incomplete short left to J.Carlson.,24,13,2012 20120923_SF@MIN,4,13,19,MIN,SF,4,2,42,(13:19) C.Kluwe punts 42 yards to end zone Center-C.Loeffler Touchback.,24,13,2012 20120923_SF@MIN,4,13,9,SF,MIN,1,10,80,(13:09) F.Gore left end to SF 22 for 2 yards (K.Williams H.Smith).,13,24,2012 20120923_SF@MIN,4,12,30,SF,MIN,2,8,78,(12:30) A.Smith scrambles left end ran ob at SF 30 for 8 yards.,13,24,2012 20120923_SF@MIN,4,12,4,SF,MIN,1,10,70,(12:04) A.Smith pass short right to M.Crabtree to SF 34 for 4 yards (C.Greenway; A.Winfield).,13,24,2012 20120923_SF@MIN,4,11,31,SF,MIN,2,6,66,(11:31) A.Smith pass short middle to F.Gore to SF 43 for 9 yards (J.Brinkley).,13,24,2012 20120923_SF@MIN,4,10,45,SF,MIN,1,10,57,(10:45) K.Hunter right tackle to SF 43 for no gain (J.Brinkley).,13,24,2012 20120923_SF@MIN,4,10,9,SF,MIN,2,10,57,(10:09) (Shotgun) K.Hunter left tackle to SF 45 for 2 yards (C.Greenway).,13,24,2012 20120923_SF@MIN,4,9,23,SF,MIN,3,8,55,(9:23) (Shotgun) A.Smith pass incomplete short right to K.Williams.,13,24,2012 20120923_SF@MIN,4,9,15,SF,MIN,4,8,55,(9:15) A.Lee punts 53 yards to MIN 2 Center-B.Jennings downed by SF-D.Goldson.,13,24,2012 20120923_SF@MIN,4,9,2,MIN,SF,1,10,98,(9:02) A.Peterson right guard to MIN 5 for 3 yards (N.Bowman A.Brooks). SF-I.Sopoaga was injured during the play. His return is Probable.,24,13,2012 20120923_SF@MIN,4,8,38,MIN,SF,2,7,95,(8:38) A.Peterson left guard ran ob at MIN 25 for 20 yards (T.Brown).,24,13,2012 20120923_SF@MIN,4,8,10,MIN,SF,1,10,75,(8:10) C.Ponder pass incomplete short right to P.Harvin.,24,13,2012 20120923_SF@MIN,4,8,5,MIN,SF,2,10,75,(8:05) A.Peterson up the middle to MIN 27 for 2 yards (R.Jean Francois).,24,13,2012 20120923_SF@MIN,4,7,30,MIN,SF,3,8,73,(7:30) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins.,24,13,2012 20120923_SF@MIN,4,7,25,MIN,SF,4,8,73,(7:25) C.Kluwe punts 53 yards to SF 20 Center-C.Loeffler. K.Williams to SF 28 for 8 yards (L.Dean). PENALTY on SF Face Mask (15 Yards) 11 yards enforced at SF 28.,24,13,2012 20120923_SF@MIN,4,7,12,SF,MIN,1,10,83,(7:12) (Shotgun) A.Smith pass short left to M.Manningham to SF 21 for 4 yards (C.Cook).,13,24,2012 20120923_SF@MIN,4,6,46,SF,MIN,2,6,79,(6:46) (Shotgun) A.Smith pass incomplete short left to V.Davis.,13,24,2012 20120923_SF@MIN,4,6,41,SF,MIN,3,6,79,(6:41) (Shotgun) A.Smith pass incomplete short right to V.Davis.,13,24,2012 20120923_SF@MIN,4,6,36,SF,MIN,4,6,79,(6:36) A.Lee punts 49 yards to MIN 30 Center-B.Jennings fair catch by M.Sherels.,13,24,2012 20120923_SF@MIN,4,6,28,MIN,SF,1,10,70,(6:28) A.Peterson left end to MIN 37 for 7 yards (Ald.Smith).,24,13,2012 20120923_SF@MIN,4,5,59,MIN,SF,2,3,63,(5:59) T.Gerhart left tackle to MIN 46 for 9 yards (P.Willis).,24,13,2012 20120923_SF@MIN,4,5,15,MIN,SF,1,10,54,(5:15) T.Gerhart left guard to MIN 49 for 3 yards (N.Bowman; L.Grant).,24,13,2012 20120923_SF@MIN,4,4,31,MIN,SF,2,7,51,(4:31) T.Gerhart left guard to SF 49 for 2 yards (J.Smith N.Bowman).,24,13,2012 20120923_SF@MIN,4,3,49,MIN,SF,3,5,49,(3:49) (Shotgun) C.Ponder pass short left to P.Harvin to SF 35 for 14 yards (N.Bowman).,24,13,2012 20120923_SF@MIN,4,3,39,MIN,SF,1,10,35,(3:39) T.Gerhart up the middle to SF 35 for no gain (W.Tukuafu; D.Whitner).,24,13,2012 20120923_SF@MIN,4,3,33,MIN,SF,2,10,35,(3:33) T.Gerhart up the middle to SF 35 for no gain (R.Jean Francois; A.Brooks). San Francisco challenged the fumble ruling and the play was REVERSED. T.Gerhart up the middle to SF 35 for no gain. FUMBLES RECOVERED by SF-P.Willis at SF 35. P.Willis to SF 38 for 3 yards.,24,13,2012 20120923_SF@MIN,4,3,29,SF,MIN,1,10,62,(3:29) (Shotgun) A.Smith scrambles left end to SF 45 for 7 yards (E.Griffen).,13,24,2012 20120923_SF@MIN,4,2,58,SF,MIN,2,3,55,(2:58) (Shotgun) A.Smith pass short left to V.Davis to MIN 48 for 7 yards (C.Greenway).,13,24,2012 20120923_SF@MIN,4,2,35,SF,MIN,1,10,48,(2:35) (Shotgun) A.Smith pass incomplete short right to M.Crabtree (A.Winfield).,13,24,2012 20120923_SF@MIN,4,2,30,SF,MIN,2,10,48,(2:30) (Shotgun) A.Smith pass deep right intended for M.Crabtree INTERCEPTED by J.Robinson at MIN 32. J.Robinson to SF 44 for 24 yards (A.Davis).,13,24,2012 20120923_SF@MIN,4,2,18,MIN,SF,1,10,44,(2:18) T.Gerhart up the middle to SF 42 for 2 yards (A.Brooks). San Francisco challenged the fumble ruling and the play was REVERSED. T.Gerhart up the middle to SF 42 for 2 yards. FUMBLES and recovers at SF 42.,24,13,2012 20120923_SF@MIN,4,2,18,MIN,SF,2,8,42,(2:18) T.Gerhart left end to SF 43 for -1 yards (R.Jean Francois).,24,13,2012 20120923_SF@MIN,4,2,0,MIN,SF,3,9,43,(2:00) T.Gerhart up the middle to SF 40 for 3 yards (A.Brooks). FUMBLES (A.Brooks) touched at SF 35 RECOVERED by SF-C.Rogers at SF 32. C.Rogers to SF 43 for 11 yards (R.Ellison).,24,13,2012 20120923_SF@MIN,4,1,46,SF,MIN,1,10,57,(1:46) (Shotgun) A.Smith pass deep right to M.Manningham to MIN 35 for 22 yards (J.Sanford).,13,24,2012 20120923_SF@MIN,4,1,41,SF,MIN,1,10,35,(1:41) (Shotgun) A.Smith sacked at MIN 42 for -7 yards (J.Allen). FUMBLES (J.Allen) RECOVERED by MIN-B.Robison at MIN 42. B.Robison to MIN 42 for no gain (M.Iupati).,13,24,2012 20120923_SF@MIN,4,1,33,MIN,SF,1,10,58,(1:33) C.Ponder kneels to MIN 40 for -2 yards.,24,13,2012 20120923_SF@MIN,4,0,53,MIN,SF,2,12,60,(:53) C.Ponder kneels to MIN 38 for -2 yards.,24,13,2012 20120923_SF@MIN,4,0,28,MIN,SF,3,14,62,(:28) C.Ponder kneels to MIN 37 for -1 yards.,24,13,2012 20120923_SF@MIN,4,0,28,MIN,SF,,,62,                      ,24,13,2012 20120923_KC@NO,1,0,0,KC,NO,,,62,R.Succop kicks 69 yards from KC 35 to NO -4. D.Sproles to NO 17 for 21 yards (T.Hartman).,0,0,2012 20120923_KC@NO,1,59,56,NO,KC,1,10,83,(14:56) P.Thomas right guard to NO 17 for no gain (D.Johnson).,0,0,2012 20120923_KC@NO,1,59,24,NO,KC,2,10,83,(14:24) (Shotgun) D.Brees pass short middle to M.Colston to NO 25 for 8 yards (B.Flowers; E.Berry). Pass 7 YAC 1,0,0,2012 20120923_KC@NO,1,58,52,NO,KC,3,2,75,(13:52) D.Sproles left end to KC 28 for 47 yards (J.Arenas).,0,0,2012 20120923_KC@NO,1,58,1,NO,KC,1,10,28,(13:01) (Shotgun) D.Brees pass short left to M.Colston to KC 9 for 19 yards (S.Routt). Pass 9 YAC 10,0,0,2012 20120923_KC@NO,1,57,28,NO,KC,1,9,9,(12:28) (Shotgun) D.Brees pass incomplete short right to M.Colston (B.Flowers).,0,0,2012 20120923_KC@NO,1,57,23,NO,KC,2,9,9,(12:23) (Shotgun) D.Brees pass short right to L.Moore for 9 yards TOUCHDOWN. Pass 9 YAC 0,0,0,2012 20120923_KC@NO,1,57,23,NO,KC,,,9,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 20120923_KC@NO,1,57,23,NO,KC,,,9,T.Morstead kicks 71 yards from NO 35 to KC -6. J.Arenas to KC 12 for 18 yards (J.Patrick).,7,0,2012 20120923_KC@NO,1,57,15,KC,NO,1,10,88,(12:15) J.Charles right guard to KC 14 for 2 yards (D.Hawthorne).,0,7,2012 20120923_KC@NO,1,56,38,KC,NO,2,8,86,(11:38) P.Hillis right guard to KC 18 for 4 yards (S.Ellis; D.Hawthorne).,0,7,2012 20120923_KC@NO,1,55,51,KC,NO,3,4,82,(10:51) (Shotgun) M.Cassel pass short left to D.Bowe to KC 29 for 11 yards (P.Robinson). Pass 7 YAC 4,0,7,2012 20120923_KC@NO,1,55,14,KC,NO,1,10,71,(10:14) M.Cassel pass short right to J.Charles pushed ob at KC 33 for 4 yards (R.Harper). Pass -6 YAC 10,0,7,2012 20120923_KC@NO,1,54,47,KC,NO,2,6,67,(9:47) (Shotgun) M.Cassel pass short middle to D.McCluster pushed ob at NO 47 for 20 yards (M.Jenkins). Pass -3 YAC 23,0,7,2012 20120923_KC@NO,1,54,26,KC,NO,1,10,47,(9:26) J.Charles right guard to NO 36 for 11 yards (M.Jenkins).,0,7,2012 20120923_KC@NO,1,53,54,KC,NO,1,10,36,(8:54) D.McCluster left end to NO 31 for 5 yards (J.Casillas).,0,7,2012 20120923_KC@NO,1,53,9,KC,NO,2,5,31,(8:09) M.Cassel pass short right to D.McCluster to NO 26 for 5 yards (C.White). Pass 2 YAC 3,0,7,2012 20120923_KC@NO,1,52,27,KC,NO,1,10,26,(7:27) J.Charles right end to NO 17 for 9 yards (M.Wilson).,0,7,2012 20120923_KC@NO,1,51,49,KC,NO,2,1,17,(6:49) J.Charles left end pushed ob at NO 11 for 6 yards (J.Casillas).,0,7,2012 20120923_KC@NO,1,51,22,KC,NO,1,10,11,(6:22) J.Charles left guard to NO 13 for -2 yards (T.Johnson).,0,7,2012 20120923_KC@NO,1,50,43,KC,NO,2,12,13,(5:43) (Shotgun) M.Cassel pass short left to T.Moeaki to NO 6 for 7 yards (M.Jenkins). Pass 4 YAC 3,0,7,2012 20120923_KC@NO,1,50,1,KC,NO,3,5,6,(5:01) (Shotgun) M.Cassel pass incomplete short middle to J.Baldwin.,0,7,2012 20120923_KC@NO,1,49,56,KC,NO,4,5,6,(4:56) R.Succop 25 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 20120923_KC@NO,1,49,56,KC,NO,,,6,R.Succop kicks 72 yards from KC 35 to NO -7. D.Sproles to NO 13 for 20 yards (E.Jones).,3,7,2012 20120923_KC@NO,1,49,48,NO,KC,1,10,87,(4:48) M.Ingram left guard to NO 13 for no gain (E.Berry; J.Belcher).,7,3,2012 20120923_KC@NO,1,49,10,NO,KC,2,10,87,(4:10) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,7,3,2012 20120923_KC@NO,1,49,6,NO,KC,3,10,87,(4:06) (Shotgun) D.Brees pass deep right to D.Henderson to NO 49 for 36 yards (B.Flowers). Pass 29 YAC 7,7,3,2012 20120923_KC@NO,1,48,25,NO,KC,1,10,51,(3:25) M.Ingram left guard to KC 47 for 4 yards (Ty.Jackson; D.Johnson).,7,3,2012 20120923_KC@NO,1,47,52,NO,KC,2,6,47,(2:52) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,7,3,2012 20120923_KC@NO,1,47,46,NO,KC,3,6,47,(2:46) (Shotgun) D.Brees pass deep left to L.Moore to KC 30 for 17 yards (S.Routt) [T.Hali]. Pass 17 YAC 0,7,3,2012 20120923_KC@NO,1,47,6,NO,KC,1,10,30,(2:06) (Shotgun) D.Sproles right guard to KC 31 for -1 yards (J.Powe; G.Dorsey).,7,3,2012 20120923_KC@NO,1,46,35,NO,KC,2,11,31,(1:35) D.Brees pass short left to J.Graham to KC 24 for 7 yards (J.Belcher; S.Routt). Pass 8 YAC -1,7,3,2012 20120923_KC@NO,1,45,51,NO,KC,3,4,24,(:51) (Shotgun) D.Brees pass short right to J.Graham to KC 20 for 4 yards (E.Berry). Kansas City challenged the first down ruling and the play was REVERSED. (Shotgun) D.Brees pass short right to J.Graham to KC 22 for 2 yards (E.Berry). Pass 3 YAC -1,7,3,2012 20120923_KC@NO,2,45,0,NO,KC,4,2,22,(15:00) G.Hartley 40 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,7,3,2012 20120923_KC@NO,2,45,0,NO,KC,,,22,T.Morstead kicks 68 yards from NO 35 to KC -3. J.Arenas to KC 24 for 27 yards (C.White).,10,3,2012 20120923_KC@NO,2,44,50,KC,NO,1,10,76,(14:50) J.Charles right tackle to KC 24 for no gain (C.Lofton).,3,10,2012 20120923_KC@NO,2,44,18,KC,NO,2,10,76,(14:18) P.Hillis left tackle to KC 29 for 5 yards (C.Lofton).,3,10,2012 20120923_KC@NO,2,43,39,KC,NO,3,5,71,(13:39) (Shotgun) M.Cassel pass incomplete short right to D.McCluster (M.Jenkins).,3,10,2012 20120923_KC@NO,2,43,32,KC,NO,4,5,71,(13:32) D.Colquitt punts 55 yards to NO 16 Center-T.Gafford. D.Sproles to NO 18 for 2 yards (E.Jones).,3,10,2012 20120923_KC@NO,2,43,22,NO,KC,1,10,82,(13:22) (Shotgun) D.Brees pass short right to P.Thomas to NO 32 for 14 yards (D.Johnson). Pass 8 YAC 6,10,3,2012 20120923_KC@NO,2,42,51,NO,KC,1,10,68,(12:51) P.Thomas right guard to NO 33 for 1 yard (Ty.Jackson).,10,3,2012 20120923_KC@NO,2,42,7,NO,KC,2,9,67,(12:07) (Shotgun) D.Brees sacked at NO 23 for -10 yards (D.Johnson).,10,3,2012 20120923_KC@NO,2,41,33,NO,KC,3,19,77,(11:33) (Shotgun) D.Brees pass short left to P.Thomas to NO 30 for 7 yards (E.Berry; D.Johnson). Pass 4 YAC 3,10,3,2012 20120923_KC@NO,2,40,53,NO,KC,4,12,70,(10:53) T.Morstead punts 70 yards to end zone Center-J.Drescher Touchback.,10,3,2012 20120923_KC@NO,2,40,45,KC,NO,1,10,80,(10:45) J.Charles right end to KC 27 for 7 yards (C.White).,3,10,2012 20120923_KC@NO,2,40,10,KC,NO,2,3,73,(10:10) M.Cassel pass short left to D.Bowe to KC 36 for 9 yards (S.Shanle). Pass 5 YAC 4,3,10,2012 20120923_KC@NO,2,39,36,KC,NO,1,10,64,(9:36) M.Cassel pass short left to J.Baldwin to 50 for 14 yards (J.Greer). Pass 11 YAC 3,3,10,2012 20120923_KC@NO,2,38,55,KC,NO,1,10,50,(8:55) P.Hillis right guard to NO 42 for 8 yards (W.Smith; S.Shanle). PENALTY on KC-R.Lilja Offensive Holding 10 yards enforced at 50 - No Play.,3,10,2012 20120923_KC@NO,2,38,36,KC,NO,1,20,60,(8:36) J.Charles right end to KC 41 for 1 yard (P.Robinson).,3,10,2012 20120923_KC@NO,2,38,1,KC,NO,2,19,59,(8:01) (Shotgun) M.Cassel pass short left to J.Charles ran ob at NO 45 for 14 yards (C.Lofton). Pass 6 YAC 8,3,10,2012 20120923_KC@NO,2,37,28,KC,NO,3,5,45,(7:28) (Shotgun) M.Cassel pass incomplete short right to D.Bowe (P.Robinson).,3,10,2012 20120923_KC@NO,2,37,21,KC,NO,4,5,45,(7:21) D.Colquitt punts 35 yards to NO 10 Center-T.Gafford fair catch by D.Sproles.,3,10,2012 20120923_KC@NO,2,37,14,NO,KC,1,10,90,(7:14) M.Ingram right tackle to NO 13 for 3 yards (J.Belcher).,10,3,2012 20120923_KC@NO,2,36,40,NO,KC,2,7,87,(6:40) D.Brees pass incomplete short right to L.Moore.,10,3,2012 20120923_KC@NO,2,36,36,NO,KC,3,7,87,(6:36) (Shotgun) D.Brees pass incomplete short left to J.Graham [J.Houston].,10,3,2012 20120923_KC@NO,2,36,30,NO,KC,4,7,87,(6:30) T.Morstead punts 56 yards to KC 31 Center-J.Drescher. J.Arenas to NO 45 for 24 yards (R.Bush).,10,3,2012 20120923_KC@NO,2,36,15,KC,NO,1,10,45,(6:15) M.Cassel pass short middle to D.Bowe to NO 30 for 15 yards (J.Greer). Pass 9 YAC 6,3,10,2012 20120923_KC@NO,2,35,36,KC,NO,1,10,30,(5:36) J.Charles left end to NO 27 for 3 yards (W.Smith; S.Ellis).,3,10,2012 20120923_KC@NO,2,34,58,KC,NO,2,7,27,(4:58) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe.,3,10,2012 20120923_KC@NO,2,34,52,KC,NO,3,7,27,(4:52) (Shotgun) M.Cassel pass incomplete deep middle to D.Bowe (C.Lofton) [W.Smith].,3,10,2012 20120923_KC@NO,2,34,46,KC,NO,4,7,27,(4:46) R.Succop 45 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,3,10,2012 20120923_KC@NO,2,34,46,KC,NO,,,27,R.Succop kicks 74 yards from KC 35 to NO -9. D.Sproles Touchback.,6,10,2012 20120923_KC@NO,2,34,41,NO,KC,1,10,80,(4:41) D.Brees pass incomplete deep left to L.Moore. PENALTY on KC-Ty.Jackson Defensive Offside 5 yards enforced at NO 20 - No Play.,10,6,2012 20120923_KC@NO,2,34,35,NO,KC,1,5,75,(4:35) D.Brees pass short left to L.Moore to NO 35 for 10 yards (S.Routt). Pass 5 YAC 5,10,6,2012 20120923_KC@NO,2,34,5,NO,KC,1,10,65,(4:05) (Shotgun) D.Sproles left guard to NO 44 for 9 yards (A.Elam).,10,6,2012 20120923_KC@NO,2,33,33,NO,KC,2,1,56,(3:33) M.Ingram right guard to NO 47 for 3 yards (E.Berry).,10,6,2012 20120923_KC@NO,2,33,0,NO,KC,1,10,53,(3:00) D.Brees pass short right to D.Henderson pushed ob at KC 46 for 7 yards (B.Flowers). Pass 3 YAC 4,10,6,2012 20120923_KC@NO,2,32,36,NO,KC,2,3,46,(2:36) D.Brees pass short left to P.Thomas to KC 39 for 7 yards (J.Belcher) [D.Johnson]. Pass -1 YAC 8,10,6,2012 20120923_KC@NO,2,32,0,NO,KC,1,10,39,(2:00) D.Brees pass short left to P.Thomas to KC 12 for 27 yards (A.Elam). Pass -7 YAC 34,10,6,2012 20120923_KC@NO,2,31,49,NO,KC,1,10,12,(1:49) P.Thomas left tackle to KC 9 for 3 yards (J.Houston; D.Johnson).,10,6,2012 20120923_KC@NO,2,31,15,NO,KC,2,7,9,(1:15) (Shotgun) D.Brees pass short left to P.Thomas for 9 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) D.Brees pass incomplete short left to P.Thomas.,10,6,2012 20120923_KC@NO,2,31,11,NO,KC,3,7,9,(1:11) (Shotgun) D.Brees sacked at KC 20 for -11 yards (J.Houston).,10,6,2012 20120923_KC@NO,2,30,51,NO,KC,4,18,20,(:51) G.Hartley 38 yard field goal is No Good Wide Right Center-J.Drescher Holder-C.Daniel.,10,6,2012 20120923_KC@NO,2,30,47,KC,NO,1,10,72,(:47) (Shotgun) S.Draughn right end to KC 33 for 5 yards (R.Harper).,6,10,2012 20120923_KC@NO,2,30,41,KC,NO,2,5,67,(:41) (Shotgun) M.Cassel sacked at KC 26 for -7 yards (J.Galette). Penalty on KC-R.Lilja Offensive Holding declined.,6,10,2012 20120923_KC@NO,2,30,35,KC,NO,3,12,74,(:35) (Shotgun) M.Cassel pass short left to J.Charles to KC 45 for 19 yards (R.Harper; J.Casillas). Pass -7 YAC 26,6,10,2012 20120923_KC@NO,2,30,17,KC,NO,1,10,55,(:17) M.Cassel spiked the ball to stop the clock.,6,10,2012 20120923_KC@NO,2,30,16,KC,NO,2,10,55,(:16) (Shotgun) M.Cassel pass short left to S.Draughn to NO 45 for 10 yards (J.Greer). Pass 3 YAC 7,6,10,2012 20120923_KC@NO,2,30,8,KC,NO,1,10,45,(:08) (Shotgun) M.Cassel sacked at NO 45 for 0 yards (J.Galette). FUMBLES (J.Galette) RECOVERED by NO-C.Jordan at NO 38. C.Jordan to NO 38 for no gain (R.Hudson).,6,10,2012 20120923_KC@NO,3,30,0,NO,KC,,,45,T.Morstead kicks 72 yards from NO 35 to KC -7. S.Draughn to KC 16 for 23 yards (W.Herring).,10,6,2012 20120923_KC@NO,3,29,51,NO,KC,1,10,19,(14:51) D.Brees pass incomplete short left to P.Thomas (J.Houston).,10,6,2012 20120923_KC@NO,3,29,46,NO,KC,2,10,19,(14:46) D.Brees pass deep left to L.Moore pushed ob at KC 1 for 18 yards (S.Routt). Kansas City challenged the pass completion ruling and the play was REVERSED. D.Brees pass incomplete deep left to L.Moore.,10,6,2012 20120923_KC@NO,3,29,27,NO,KC,3,10,19,(14:27) (Shotgun) D.Brees pass short middle to M.Colston to KC 6 for 13 yards (S.Routt). Pass 13 YAC 0,10,6,2012 20120923_KC@NO,3,28,51,NO,KC,1,6,6,(13:51) P.Thomas left guard to KC 1 for 5 yards (B.Flowers).,10,6,2012 20120923_KC@NO,3,28,14,NO,KC,2,1,1,(13:14) D.Brees pass short right to J.Graham for 1 yard TOUCHDOWN. Pass 0 YAC 1,10,6,2012 20120923_KC@NO,3,28,14,NO,KC,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,10,6,2012 20120923_KC@NO,3,28,14,NO,KC,,,1,T.Morstead kicks 74 yards from NO 35 to KC -9. S.Draughn Touchback.,17,6,2012 20120923_KC@NO,3,28,10,KC,NO,1,10,80,(13:10) J.Charles right end to KC 29 for 9 yards (R.Harper; S.Shanle).,6,17,2012 20120923_KC@NO,3,27,33,KC,NO,2,1,71,(12:33) J.Charles right tackle to KC 33 for 4 yards (R.Harper).,6,17,2012 20120923_KC@NO,3,27,3,KC,NO,1,10,67,(12:03) J.Charles left tackle to KC 39 for 6 yards (M.Jenkins).,6,17,2012 20120923_KC@NO,3,26,32,KC,NO,2,4,61,(11:32) J.Charles left end pushed ob at KC 44 for 5 yards (J.Casillas).,6,17,2012 20120923_KC@NO,3,26,5,KC,NO,1,10,56,(11:05) P.Hillis right guard to KC 46 for 2 yards (C.Lofton).,6,17,2012 20120923_KC@NO,3,25,26,KC,NO,2,8,54,(10:26) (Shotgun) M.Cassel pass incomplete short left to P.Hillis.,6,17,2012 20120923_KC@NO,3,25,21,KC,NO,3,8,54,(10:21) (Shotgun) M.Cassel pass short right to S.Draughn to NO 49 for 5 yards (P.Robinson). KC-R.Hudson was injured during the play. His return is Questionable. Pass 5 YAC 0,6,17,2012 20120923_KC@NO,3,25,1,KC,NO,4,3,49,(10:01) D.Colquitt punts 24 yards to NO 25 Center-T.Gafford out of bounds.,6,17,2012 20120923_KC@NO,3,24,54,NO,KC,1,10,75,(9:54) D.Sproles left end to NO 29 for 4 yards (T.Daniels). PENALTY on NO-C.Roby Offensive Holding 10 yards enforced at NO 29.,17,6,2012 20120923_KC@NO,3,24,31,NO,KC,1,16,81,(9:31) D.Brees pass short right to D.Henderson to NO 23 for 4 yards (B.Flowers). Pass 4 YAC 0,17,6,2012 20120923_KC@NO,3,23,55,NO,KC,2,12,77,(8:55) D.Brees pass short left to J.Graham to NO 29 for 6 yards (D.Johnson). Pass 4 YAC 2,17,6,2012 20120923_KC@NO,3,23,14,NO,KC,3,6,71,(8:14) (Shotgun) D.Brees pass incomplete deep middle to J.Graham (T.Daniels).,17,6,2012 20120923_KC@NO,3,23,9,NO,KC,4,6,71,(8:09) T.Morstead punts 55 yards to KC 16 Center-J.Drescher downed by NO-C.Roby.,17,6,2012 20120923_KC@NO,3,22,58,KC,NO,1,10,84,(7:58) M.Cassel pass short right to S.Maneri to KC 26 for 10 yards (P.Robinson; S.Shanle). Pass 2 YAC 8,6,17,2012 20120923_KC@NO,3,22,34,KC,NO,1,10,74,(7:34) J.Charles right tackle to KC 29 for 3 yards (C.Lofton; C.Jordan).,6,17,2012 20120923_KC@NO,3,21,48,KC,NO,2,7,71,(6:48) (Shotgun) PENALTY on KC-B.Albert False Start 5 yards enforced at KC 29 - No Play.,6,17,2012 20120923_KC@NO,3,21,31,KC,NO,2,12,76,(6:31) M.Cassel pass short left intended for S.Breaston INTERCEPTED by J.Greer at KC 35. J.Greer to KC 7 for 28 yards (B.Albert).,6,17,2012 20120923_KC@NO,3,21,21,NO,KC,1,7,7,(6:21) M.Ingram left guard to KC 6 for 1 yard (Ty.Jackson).,17,6,2012 20120923_KC@NO,3,20,41,NO,KC,2,6,6,(5:41) D.Brees pass short right to J.Collins for 6 yards TOUCHDOWN. Pass 0 YAC 6,17,6,2012 20120923_KC@NO,3,20,41,NO,KC,,,6,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,17,6,2012 20120923_KC@NO,3,20,41,NO,KC,,,6,T.Morstead kicks 70 yards from NO 35 to KC -5. S.Draughn to KC 9 for 14 yards (C.Roby).,24,6,2012 20120923_KC@NO,3,20,32,KC,NO,1,10,91,(5:32) J.Charles left end for 91 yards TOUCHDOWN.,6,24,2012 20120923_KC@NO,3,20,32,KC,NO,,,91,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,6,24,2012 20120923_KC@NO,3,20,32,KC,NO,,,91,R.Succop kicks 73 yards from KC 35 to NO -8. D.Sproles to NO 30 for 38 yards (J.Brown).,13,24,2012 20120923_KC@NO,3,20,12,NO,KC,1,10,70,(5:12) PENALTY on NO-D.Graham False Start 5 yards enforced at NO 30 - No Play.,24,13,2012 20120923_KC@NO,3,20,12,NO,KC,1,15,75,(5:12) (Shotgun) D.Brees pass short left to D.Henderson ran ob at NO 31 for 6 yards. Pass 6 YAC 0,24,13,2012 20120923_KC@NO,3,19,50,NO,KC,2,9,69,(4:50) P.Thomas right tackle to NO 34 for 3 yards (Ty.Jackson; E.Berry).,24,13,2012 20120923_KC@NO,3,19,6,NO,KC,3,6,66,(4:06) (Shotgun) D.Brees pass deep right to L.Moore to KC 32 for 34 yards (J.Arenas). Pass 34 YAC 0,24,13,2012 20120923_KC@NO,3,18,21,NO,KC,1,10,32,(3:21) (Shotgun) D.Sproles left guard to KC 29 for 3 yards (R.Pitoitua).,24,13,2012 20120923_KC@NO,3,17,43,NO,KC,2,7,29,(2:43) D.Brees pass deep left intended for D.Henderson INTERCEPTED by S.Routt at KC 0. S.Routt to KC 32 for 32 yards (D.Brees).,24,13,2012 20120923_KC@NO,3,17,28,KC,NO,1,10,68,(2:28) M.Cassel pass incomplete short right to D.Bowe.,13,24,2012 20120923_KC@NO,3,17,22,KC,NO,2,10,68,(2:22) J.Charles right tackle to KC 36 for 4 yards (B.Bunkley).,13,24,2012 20120923_KC@NO,3,16,40,KC,NO,3,6,64,(1:40) (Shotgun) M.Cassel pass short left to D.Bowe to KC 47 for 11 yards (C.Lofton; P.Robinson). Pass 11 YAC 0,13,24,2012 20120923_KC@NO,3,15,58,KC,NO,1,10,53,(:58) J.Charles right tackle to NO 13 for 40 yards (M.Jenkins).,13,24,2012 20120923_KC@NO,3,15,12,KC,NO,1,10,13,(:12) S.Draughn left end to NO 17 for -4 yards (C.Jordan; R.Harper).,13,24,2012 20120923_KC@NO,4,15,0,KC,NO,2,14,17,(15:00) (Shotgun) M.Cassel pass short left to J.Charles to NO 12 for 5 yards (M.Jenkins). Pass -2 YAC 7,13,24,2012 20120923_KC@NO,4,14,16,KC,NO,3,9,12,(14:16) (Shotgun) M.Cassel sacked at NO 16 for -4 yards (W.Smith).,13,24,2012 20120923_KC@NO,4,13,45,KC,NO,4,13,16,(13:45) R.Succop 34 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,13,24,2012 20120923_KC@NO,4,13,45,KC,NO,,,16,R.Succop kicks 73 yards from KC 35 to NO -8. D.Sproles to NO 20 for 28 yards (B.Siler).,16,24,2012 20120923_KC@NO,4,13,34,NO,KC,1,10,80,(13:34) D.Sproles right guard to NO 22 for 2 yards (D.Johnson).,24,16,2012 20120923_KC@NO,4,13,2,NO,KC,2,8,78,(13:02) (Shotgun) D.Brees pass incomplete short right to D.Henderson.,24,16,2012 20120923_KC@NO,4,12,55,NO,KC,3,8,78,(12:55) (Shotgun) D.Brees pass incomplete short right to J.Graham.,24,16,2012 20120923_KC@NO,4,12,50,NO,KC,4,8,78,(12:50) T.Morstead punts 48 yards to KC 30 Center-J.Drescher out of bounds.,24,16,2012 20120923_KC@NO,4,12,43,KC,NO,1,10,70,(12:43) J.Charles left guard to KC 44 for 14 yards (R.Harper).,16,24,2012 20120923_KC@NO,4,12,12,KC,NO,1,10,56,(12:12) J.Charles right tackle to KC 47 for 3 yards (W.Smith; A.Hicks).,16,24,2012 20120923_KC@NO,4,11,37,KC,NO,2,7,53,(11:37) (Shotgun) M.Cassel pass short middle to J.Baldwin to NO 42 for 11 yards (J.Greer). Pass 10 YAC 1,16,24,2012 20120923_KC@NO,4,10,58,KC,NO,1,10,42,(10:58) M.Cassel pass incomplete short left to D.Bowe.,16,24,2012 20120923_KC@NO,4,10,52,KC,NO,2,10,42,(10:52) J.Charles right tackle to NO 41 for 1 yard (C.Jordan).,16,24,2012 20120923_KC@NO,4,10,10,KC,NO,3,9,41,(10:10) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe. PENALTY on NO-P.Robinson Defensive Pass Interference 26 yards enforced at NO 41 - No Play.,16,24,2012 20120923_KC@NO,4,10,4,KC,NO,1,10,15,(10:04) PENALTY on KC-B.Albert False Start 5 yards enforced at NO 15 - No Play.,16,24,2012 20120923_KC@NO,4,10,4,KC,NO,1,15,20,(10:04) S.Draughn left guard to NO 15 for 5 yards (R.Harper).,16,24,2012 20120923_KC@NO,4,9,27,KC,NO,2,10,15,(9:27) M.Cassel pass incomplete short right to J.Charles [W.Smith].,16,24,2012 20120923_KC@NO,4,9,21,KC,NO,3,10,15,(9:21) (Shotgun) NO-W.Smith was injured during the play. His return is Probable. PENALTY on KC-E.Winston False Start 5 yards enforced at NO 15 - No Play.,16,24,2012 20120923_KC@NO,4,9,21,KC,NO,3,15,20,(9:21) (Shotgun) M.Cassel pass incomplete deep middle to T.Moeaki (R.Harper).,16,24,2012 20120923_KC@NO,4,9,16,KC,NO,4,15,20,(9:16) R.Succop 38 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,16,24,2012 20120923_KC@NO,4,9,16,KC,NO,,,20,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,19,24,2012 20120923_KC@NO,4,9,11,NO,KC,1,10,80,(9:11) P.Thomas left guard to NO 19 for -1 yards (E.Berry).,24,19,2012 20120923_KC@NO,4,8,32,NO,KC,2,11,81,(8:32) D.Brees pass incomplete short left to D.Sproles (J.Houston).,24,19,2012 20120923_KC@NO,4,8,27,NO,KC,3,11,81,(8:27) (Shotgun) D.Brees sacked at NO 12 for -7 yards (J.Houston).,24,19,2012 20120923_KC@NO,4,7,57,NO,KC,4,18,88,(7:57) T.Morstead punts 46 yards to KC 42 Center-J.Drescher. J.Arenas to NO 21 for 37 yards (C.White). PENALTY on KC-J.Brown Offensive Holding 10 yards enforced at KC 48.,24,19,2012 20120923_KC@NO,4,7,38,KC,NO,1,10,62,(7:38) J.Charles right guard to KC 38 for no gain (C.Jordan; A.Hicks).,19,24,2012 20120923_KC@NO,4,7,1,KC,NO,2,10,62,(7:01) M.Cassel pass short right to S.Breaston to KC 40 for 2 yards (P.Robinson). Pass 0 YAC 2,19,24,2012 20120923_KC@NO,4,6,31,KC,NO,3,8,60,(6:31) (Shotgun) M.Cassel pass incomplete short left to J.Charles (C.Lofton).,19,24,2012 20120923_KC@NO,4,6,26,KC,NO,4,8,60,(6:26) D.Colquitt punts 51 yards to NO 9 Center-T.Gafford downed by KC-B.Siler.,19,24,2012 20120923_KC@NO,4,6,15,NO,KC,1,10,91,(6:15) D.Sproles left end to NO 7 for -2 yards (D.Johnson; E.Berry).,24,19,2012 20120923_KC@NO,4,5,40,NO,KC,2,12,93,(5:40) (Shotgun) D.Brees sacked in End Zone for -7 yards SAFETY (J.Houston).,24,19,2012 20120923_KC@NO,4,5,40,NO,KC,,,93,T.Morstead kicks 55 yards from NO 20 to KC 25. J.Arenas to KC 38 for 13 yards (W.Herring).,24,21,2012 20120923_KC@NO,4,5,26,KC,NO,1,10,62,(5:26) J.Charles right end to KC 40 for 2 yards (B.Bunkley; S.Ellis).,21,24,2012 20120923_KC@NO,4,4,41,KC,NO,2,8,60,(4:41) J.Charles left end pushed ob at KC 38 for -2 yards (R.Harper).,21,24,2012 20120923_KC@NO,4,4,35,KC,NO,3,10,62,(4:35) (Shotgun) M.Cassel pass short left to J.Baldwin to KC 49 for 11 yards (R.Harper). Pass 11 YAC 0,21,24,2012 20120923_KC@NO,4,3,52,KC,NO,1,10,51,(3:52) M.Cassel pass incomplete deep left to D.Bowe (P.Robinson).,21,24,2012 20120923_KC@NO,4,3,46,KC,NO,2,10,51,(3:46) (Shotgun) S.Draughn right tackle to 50 for 1 yard (C.Lofton; A.Hicks).,21,24,2012 20120923_KC@NO,4,2,59,KC,NO,3,9,50,(2:59) (Shotgun) M.Cassel pass short right to J.Charles to NO 46 for 4 yards (J.Greer). Pass -5 YAC 9,21,24,2012 20120923_KC@NO,4,2,26,KC,NO,4,5,46,(2:26) (Shotgun) M.Cassel pass short left to D.Bowe to NO 39 for 7 yards (C.White). Pass 4 YAC 3,21,24,2012 20120923_KC@NO,4,2,2,KC,NO,1,10,39,(2:02) J.Charles right tackle to NO 33 for 6 yards (A.Hicks).,21,24,2012 20120923_KC@NO,4,1,56,KC,NO,2,4,33,(1:56) J.Charles right end to NO 34 for -1 yards (C.Jordan).,21,24,2012 20120923_KC@NO,4,1,51,KC,NO,3,5,34,(1:51) PENALTY on NO Defensive Delay of Game 4 yards enforced at NO 34 - No Play.,21,24,2012 20120923_KC@NO,4,1,51,KC,NO,3,1,30,(1:51) M.Cassel up the middle to NO 28 for 2 yards (W.Smith).,21,24,2012 20120923_KC@NO,4,1,17,KC,NO,1,10,28,(1:17) J.Charles left tackle to NO 29 for -1 yards (T.Johnson; W.Smith).,21,24,2012 20120923_KC@NO,4,0,36,KC,NO,2,11,29,(:36) J.Charles left guard to NO 25 for 4 yards (R.Harper).,21,24,2012 20120923_KC@NO,4,0,8,KC,NO,3,7,25,(:08) R.Succop 43 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,21,24,2012 20120923_KC@NO,4,0,8,KC,NO,,,25,R.Succop kicks 34 yards from KC 35 to NO 31. J.Collins (didn't try to advance) to NO 31 for no gain.,24,24,2012 20120923_KC@NO,4,0,1,NO,KC,1,10,69,(:01) D.Brees kneels to NO 30 for -1 yards.,24,24,2012 20120923_KC@NO,5,0,0,NO,KC,,,69,T.Morstead kicks 73 yards from NO 35 to KC -8. S.Draughn Touchback.,24,24,2012 20120923_KC@NO,5,0,0,KC,NO,1,10,80,(15:00) M.Cassel pass short right to D.Bowe to KC 37 for 17 yards (P.Robinson; M.Jenkins). Pass 14 YAC 3,24,24,2012 20120923_KC@NO,5,-1,28,KC,NO,1,10,63,(14:28) M.Cassel pass incomplete deep right to D.Bowe.,24,24,2012 20120923_KC@NO,5,-1,23,KC,NO,2,10,63,(14:23) J.Charles right tackle to KC 39 for 2 yards (C.Lofton).,24,24,2012 20120923_KC@NO,5,-2,46,KC,NO,3,8,61,(13:46) (Shotgun) M.Cassel pass short middle to J.Charles to KC 48 for 9 yards (C.Lofton). Pass 3 YAC 6,24,24,2012 20120923_KC@NO,5,-2,9,KC,NO,1,10,52,(13:09) S.Draughn left end to NO 46 for 6 yards (A.Hicks).,24,24,2012 20120923_KC@NO,5,-3,33,KC,NO,2,4,46,(12:33) M.Cassel pass incomplete short right to D.Bowe (J.Greer).,24,24,2012 20120923_KC@NO,5,-3,28,KC,NO,3,4,46,(12:28) (Shotgun) M.Cassel pass incomplete short right to S.Breaston (R.Harper).,24,24,2012 20120923_KC@NO,5,-3,23,KC,NO,4,4,46,(12:23) D.Colquitt punts 43 yards to NO 3 Center-T.Gafford downed by KC-B.Siler. The Replay Assistant challenged the touchback ruling and the play was Upheld.,24,24,2012 20120923_KC@NO,5,-3,12,NO,KC,1,10,97,(12:12) D.Brees pass incomplete short left to J.Graham.,24,24,2012 20120923_KC@NO,5,-3,7,NO,KC,2,10,97,(12:07) D.Brees pass incomplete short middle to L.Moore.,24,24,2012 20120923_KC@NO,5,-3,3,NO,KC,3,10,97,(12:03) (Shotgun) D.Brees pass incomplete deep right to D.Henderson [R.Pitoitua].,24,24,2012 20120923_KC@NO,5,-4,58,NO,KC,4,10,97,(11:58) T.Morstead punts 60 yards to KC 37 Center-J.Drescher. J.Arenas to KC 47 for 10 yards (I.Abdul-Quddus).,24,24,2012 20120923_KC@NO,5,-4,46,KC,NO,1,10,53,(11:46) M.Cassel pass incomplete deep left to D.Bowe (P.Robinson).,24,24,2012 20120923_KC@NO,5,-4,40,KC,NO,2,10,53,(11:40) J.Charles left end to KC 45 for -2 yards (M.Jenkins).,24,24,2012 20120923_KC@NO,5,-5,55,KC,NO,3,12,55,(10:55) (Shotgun) M.Cassel pass short left to S.Draughn to NO 43 for 12 yards (S.Shanle). FUMBLES (S.Shanle) RECOVERED by NO-R.Harper at NO 43. R.Harper for 57 yards TOUCHDOWN. The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) M.Cassel pass short left to S.Draughn to NO 44 for 11 yards (S.Shanle). Pass -2 YAC 13,24,24,2012 20120923_KC@NO,5,-5,40,KC,NO,4,1,44,(10:40) J.Charles right tackle to NO 41 for 3 yards (C.Lofton).,24,24,2012 20120923_KC@NO,5,-5,4,KC,NO,1,10,41,(10:04) J.Charles left end pushed ob at NO 41 for no gain (C.Lofton).,24,24,2012 20120923_KC@NO,5,-6,39,KC,NO,2,10,41,(9:39) M.Cassel pass short right to T.Moeaki to NO 36 for 5 yards (C.Lofton). Pass 5 YAC 0,24,24,2012 20120923_KC@NO,5,-7,58,KC,NO,3,5,36,(8:58) (Shotgun) M.Cassel pass short right to D.Bowe pushed ob at NO 27 for 9 yards (P.Robinson). Pass 7 YAC 2,24,24,2012 20120923_KC@NO,5,-7,37,KC,NO,1,10,27,(8:37) S.Draughn right tackle to NO 20 for 7 yards (C.Lofton; A.Hicks).,24,24,2012 20120923_KC@NO,5,-8,58,KC,NO,2,3,20,(7:58) J.Charles left tackle to NO 17 for 3 yards (A.Hicks).,24,24,2012 20120923_KC@NO,5,-8,16,KC,NO,1,10,17,(7:16) J.Charles right guard to NO 15 for 2 yards (A.Hicks; S.Ellis).,24,24,2012 20120923_KC@NO,5,-9,40,KC,NO,2,8,15,(6:40) S.Draughn left tackle to NO 13 for 2 yards (W.Smith).,24,24,2012 20120923_KC@NO,5,-9,32,KC,NO,3,6,13,(6:32) R.Succop 31 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,24,24,2012 20120923_KC@NO,5,-9,32,KC,NO,,,13,                      ,27,24,2012 20120923_DET@TEN,1,-9,0,TEN,DET,,,13,R.Bironas kicks 52 yards from TEN 35 to DET 13. S.Logan to DET 32 for 19 yards (P.Bailey).,0,0,2012 20120923_DET@TEN,1,59,53,DET,TEN,1,10,68,(14:53) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew.,0,0,2012 20120923_DET@TEN,1,59,50,DET,TEN,2,10,68,(14:50) (Shotgun) M.Leshoure right guard to DET 35 for 3 yards (A.Ayers).,0,0,2012 20120923_DET@TEN,1,59,14,DET,TEN,3,7,65,(14:14) (Shotgun) M.Stafford pass short left to N.Burleson to 50 for 15 yards (R.Mouton). Penalty on TEN-R.Mouton Defensive Holding declined.,0,0,2012 20120923_DET@TEN,1,58,54,DET,TEN,1,10,50,(13:54) (No Huddle Shotgun) M.Stafford pass short left to C.Johnson to TEN 44 for 6 yards (A.Ayers; A.Verner).,0,0,2012 20120923_DET@TEN,1,58,28,DET,TEN,2,4,44,(13:28) (No Huddle) M.Leshoure left guard to TEN 37 for 7 yards (W.Witherspoon).,0,0,2012 20120923_DET@TEN,1,57,59,DET,TEN,1,10,37,(12:59) (No Huddle) M.Stafford pass short right to N.Burleson to TEN 32 for 5 yards (W.Witherspoon; J.McCourty).,0,0,2012 20120923_DET@TEN,1,57,29,DET,TEN,2,5,32,(12:29) (No Huddle Shotgun) M.Leshoure up the middle to TEN 29 for 3 yards (J.Casey; W.Witherspoon).,0,0,2012 20120923_DET@TEN,1,56,49,DET,TEN,3,2,29,(11:49) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (A.Ayers).,0,0,2012 20120923_DET@TEN,1,56,43,DET,TEN,4,2,29,(11:43) (Field Goal formation) J.Hanson 47 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,0,0,2012 20120923_DET@TEN,1,56,43,DET,TEN,,,29,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,3,0,2012 20120923_DET@TEN,1,56,38,TEN,DET,1,10,80,(11:38) (Shotgun) J.Locker pass short left to K.Britt pushed ob at TEN 27 for 7 yards (J.Wendling).,0,3,2012 20120923_DET@TEN,1,56,12,TEN,DET,2,3,73,(11:12) (Shotgun) J.Locker pass short right to K.Wright to TEN 31 for 4 yards (E.Coleman; S.Tulloch).,0,3,2012 20120923_DET@TEN,1,55,35,TEN,DET,1,10,69,(10:35) J.Locker pass short right to J.Cook to TEN 33 for 2 yards (C.Houston).,0,3,2012 20120923_DET@TEN,1,54,54,TEN,DET,2,8,67,(9:54) J.Locker pass short left to K.Wright to TEN 38 for 5 yards (D.Bentley).,0,3,2012 20120923_DET@TEN,1,54,14,TEN,DET,3,3,62,(9:14) (Shotgun) J.Locker pass short left to K.Britt to DET 45 for 17 yards (D.Bentley; J.Wendling). Penalty on DET-D.Bentley Defensive Pass Interference declined.,0,3,2012 20120923_DET@TEN,1,53,57,DET,TEN,1,10,47,(8:57) (Shotgun) J.Locker FUMBLES (Aborted) at DET 49 RECOVERED by DET-N.Fairley at DET 47. N.Fairley to DET 47 for no gain (M.Roos).,3,0,2012 20120923_DET@TEN,1,53,52,DET,TEN,1,10,53,(8:52) M.Leshoure left tackle to TEN 47 for 6 yards (K.Wimbley).,3,0,2012 20120923_DET@TEN,1,53,23,DET,TEN,2,4,47,(8:23) (No Huddle Shotgun) M.Leshoure right guard to TEN 41 for 6 yards (A.Ayers).,3,0,2012 20120923_DET@TEN,1,52,49,DET,TEN,1,10,41,(7:49) (No Huddle Shotgun) M.Leshoure up the middle to TEN 38 for 3 yards (D.Morgan; A.Ayers).,3,0,2012 20120923_DET@TEN,1,52,25,DET,TEN,2,7,38,(7:25) (No Huddle Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew.,3,0,2012 20120923_DET@TEN,1,52,21,DET,TEN,3,7,38,(7:21) (Shotgun) M.Stafford pass short middle to T.Young to TEN 34 for 4 yards (C.Sensabaugh).,3,0,2012 20120923_DET@TEN,1,51,41,DET,TEN,4,3,34,(6:41) (Field Goal formation) J.Hanson 53 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,3,0,2012 20120923_DET@TEN,1,51,41,DET,TEN,,,34,J.Hanson kicks 69 yards from DET 35 to TEN -4. D.Reynaud pushed ob at TEN 21 for 25 yards (A.Spievey).,6,0,2012 20120923_DET@TEN,1,51,29,TEN,DET,1,10,79,(6:29) J.Locker pass deep left to N.Washington to DET 47 for 32 yards (D.Bentley).,0,6,2012 20120923_DET@TEN,1,50,48,TEN,DET,1,10,47,(5:48) (Shotgun) C.Johnson left end to DET 43 for 4 yards (D.Bentley).,0,6,2012 20120923_DET@TEN,1,50,8,TEN,DET,2,6,43,(5:08) (Shotgun) C.Johnson up the middle to DET 39 for 4 yards (D.Levy; S.Tulloch).,0,6,2012 20120923_DET@TEN,1,49,30,TEN,DET,3,2,39,(4:30) C.Johnson right tackle to DET 28 for 11 yards (J.Durant).,0,6,2012 20120923_DET@TEN,1,48,44,TEN,DET,1,10,28,(3:44) J.Locker pass short middle to C.Stevens to DET 18 for 10 yards (D.Levy).,0,6,2012 20120923_DET@TEN,1,48,5,TEN,DET,1,10,18,(3:05) (Shotgun) J.Locker pass incomplete short right to K.Wright.,0,6,2012 20120923_DET@TEN,1,48,1,TEN,DET,2,10,18,(3:01) D.Reynaud right guard to DET 18 for no gain (N.Suh).,0,6,2012 20120923_DET@TEN,1,47,21,TEN,DET,3,10,18,(2:21) (Shotgun) PENALTY on DET-D.Levy Neutral Zone Infraction 5 yards enforced at DET 18 - No Play.,0,6,2012 20120923_DET@TEN,1,47,13,TEN,DET,3,5,13,(2:13) J.Locker pass incomplete short right to K.Britt (C.Houston).,0,6,2012 20120923_DET@TEN,1,47,7,TEN,DET,4,5,13,(2:07) (Field Goal formation) R.Bironas 31 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,6,2012 20120923_DET@TEN,1,47,7,TEN,DET,,,13,R.Bironas kicks 74 yards from TEN 35 to DET -9. S.Logan Touchback.,3,6,2012 20120923_DET@TEN,1,47,2,DET,TEN,1,10,80,(2:02) M.Leshoure right tackle to DET 25 for 5 yards (J.Casey).,6,3,2012 20120923_DET@TEN,1,46,36,DET,TEN,2,5,75,(1:36) (No Huddle) M.Leshoure up the middle to DET 25 for no gain (S.Marks; D.Morgan).,6,3,2012 20120923_DET@TEN,1,45,56,DET,TEN,3,5,75,(:56) (Shotgun) M.Stafford pass deep right to C.Johnson pushed ob at DET 42 for 17 yards (J.Babineaux). Tennessee challenged the pass completion ruling and the play was REVERSED. (Shotgun) M.Stafford pass incomplete deep right to C.Johnson (J.Babineaux).,6,3,2012 20120923_DET@TEN,1,45,49,DET,TEN,4,5,75,(:49) (Punt formation) B.Graham punts 38 yards to TEN 37 Center-D.Muhlbach. D.Reynaud to TEN 35 for -2 yards. Pass back to T.Campbell for 65 yards TOUCHDOWN.,6,3,2012 20120923_DET@TEN,1,45,49,TEN,DET,,,75,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,6,2012 20120923_DET@TEN,1,45,49,TEN,DET,,,75,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,10,6,2012 20120923_DET@TEN,1,45,32,DET,TEN,1,10,80,(:32) N.Burleson left end to DET 24 for 4 yards (R.Mouton; A.Ayers).,6,10,2012 20120923_DET@TEN,1,45,2,DET,TEN,2,6,76,(:02) (No Huddle) M.Leshoure up the middle to DET 23 for -1 yards (W.Witherspoon).,6,10,2012 20120923_DET@TEN,2,45,0,DET,TEN,3,7,77,(15:00) (Shotgun) M.Stafford pass short left to S.Logan to DET 26 for 3 yards (A.Verner).,6,10,2012 20120923_DET@TEN,2,44,22,DET,TEN,4,4,74,(14:22) (Punt formation) J.Hanson punts 37 yards to TEN 37 Center-D.Muhlbach. D.Reynaud to TEN 41 for 4 yards (A.Palmer).,6,10,2012 20120923_DET@TEN,2,44,12,TEN,DET,1,10,59,(14:12) C.Johnson left end to TEN 34 for -7 yards (D.Levy).,10,6,2012 20120923_DET@TEN,2,43,32,TEN,DET,2,17,66,(13:32) (Shotgun) PENALTY on DET-N.Fairley Neutral Zone Infraction 5 yards enforced at TEN 34 - No Play.,10,6,2012 20120923_DET@TEN,2,43,11,TEN,DET,2,12,61,(13:11) (Shotgun) J.Locker pass deep middle to J.Cook for 61 yards TOUCHDOWN.,10,6,2012 20120923_DET@TEN,2,43,11,TEN,DET,,,61,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,10,6,2012 20120923_DET@TEN,2,43,11,TEN,DET,,,61,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,17,6,2012 20120923_DET@TEN,2,43,0,DET,TEN,1,10,80,(13:00) M.Stafford pass short right to B.Pettigrew to DET 30 for 10 yards (J.McCourty).,6,17,2012 20120923_DET@TEN,2,42,23,DET,TEN,1,10,70,(12:23) M.Stafford pass short left to T.Young to DET 32 for 2 yards (R.Mouton).,6,17,2012 20120923_DET@TEN,2,41,50,DET,TEN,2,8,68,(11:50) (No Huddle Shotgun) M.Stafford scrambles up the middle to DET 37 for 5 yards (A.Ayers).,6,17,2012 20120923_DET@TEN,2,41,10,DET,TEN,3,3,63,(11:10) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to DET 41 for 4 yards (A.Ayers).,6,17,2012 20120923_DET@TEN,2,40,35,DET,TEN,1,10,59,(10:35) (No Huddle) M.Leshoure left guard to DET 44 for 3 yards (M.Martin).,6,17,2012 20120923_DET@TEN,2,40,8,DET,TEN,2,7,56,(10:08) M.Leshoure left tackle to TEN 44 for 12 yards (M.Griffin; M.Martin).,6,17,2012 20120923_DET@TEN,2,39,42,DET,TEN,1,10,44,(9:42) (No Huddle Shotgun) M.Stafford pass short left to T.Young ran ob at TEN 34 for 10 yards.,6,17,2012 20120923_DET@TEN,2,39,16,DET,TEN,1,10,34,(9:16) (Shotgun) M.Stafford pass short right to T.Young pushed ob at TEN 27 for 7 yards (R.Mouton).,6,17,2012 20120923_DET@TEN,2,38,52,DET,TEN,2,3,27,(8:52) M.Leshoure right guard to TEN 22 for 5 yards (S.Marks).,6,17,2012 20120923_DET@TEN,2,38,20,DET,TEN,1,10,22,(8:20) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to TEN 15 for 7 yards (A.Ayers).,6,17,2012 20120923_DET@TEN,2,37,48,DET,TEN,2,3,15,(7:48) (No Huddle) M.Stafford pass short left to N.Burleson pushed ob at TEN 14 for 1 yard (R.Mouton; A.Verner).,6,17,2012 20120923_DET@TEN,2,37,11,DET,TEN,3,2,14,(7:11) M.Leshoure left tackle to TEN 15 for -1 yards (M.Martin).,6,17,2012 20120923_DET@TEN,2,36,35,DET,TEN,4,3,15,(6:35) (Field Goal formation) J.Hanson 33 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,6,17,2012 20120923_DET@TEN,2,36,35,DET,TEN,,,15,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,9,17,2012 20120923_DET@TEN,2,36,30,TEN,DET,1,10,80,(6:30) (Shotgun) J.Locker pass incomplete short right to K.Wright.,17,9,2012 20120923_DET@TEN,2,36,27,TEN,DET,2,10,80,(6:27) J.Locker pass short right to Q.Johnson to TEN 25 for 5 yards (S.Tulloch).,17,9,2012 20120923_DET@TEN,2,35,55,TEN,DET,3,5,75,(5:55) (Shotgun) J.Locker pass short right to K.Britt to TEN 28 for 3 yards (C.Houston).,17,9,2012 20120923_DET@TEN,2,35,10,TEN,DET,4,2,72,(5:10) (Punt formation) B.Kern punts 41 yards to DET 31 Center-B.Brinkley fair catch by S.Logan. PENALTY on TEN Illegal Formation 5 yards enforced at DET 31.,17,9,2012 20120923_DET@TEN,2,35,2,DET,TEN,1,10,64,(5:02) M.Stafford pass short left to N.Burleson pushed ob at DET 42 for 6 yards (Z.Brown).,9,17,2012 20120923_DET@TEN,2,34,33,DET,TEN,2,4,58,(4:33) M.Leshoure up the middle to DET 47 for 5 yards (J.Casey; W.Witherspoon).,9,17,2012 20120923_DET@TEN,2,33,50,DET,TEN,1,10,53,(3:50) M.Stafford pass short left to B.Pettigrew to DET 50 for 3 yards (Z.Brown).,9,17,2012 20120923_DET@TEN,2,33,14,DET,TEN,2,7,50,(3:14) (Shotgun) M.Leshoure up the middle to TEN 45 for 5 yards (M.Martin).,9,17,2012 20120923_DET@TEN,2,32,47,DET,TEN,3,2,45,(2:47) (No Huddle) M.Leshoure left end pushed ob at TEN 45 for no gain (A.Verner).,9,17,2012 20120923_DET@TEN,2,32,24,DET,TEN,4,2,45,(2:24) (Punt formation) J.Hanson punts 35 yards to TEN 10 Center-D.Muhlbach fair catch by D.Reynaud.,9,17,2012 20120923_DET@TEN,2,32,17,TEN,DET,1,10,90,(2:17) (Shotgun) J.Locker pass short right to J.Cook to TEN 17 for 7 yards (E.Coleman; D.Levy).,17,9,2012 20120923_DET@TEN,2,32,0,TEN,DET,2,3,83,(2:00) (Shotgun) J.Locker pass short middle to J.Cook to TEN 24 for 7 yards (A.Spievey).,17,9,2012 20120923_DET@TEN,2,31,38,TEN,DET,1,10,76,(1:38) (No Huddle Shotgun) J.Locker pass short middle to C.Johnson to TEN 29 for 5 yards (J.Lacey).,17,9,2012 20120923_DET@TEN,2,31,14,TEN,DET,2,5,71,(1:14) (No Huddle Shotgun) J.Locker scrambles up the middle to DET 40 for 31 yards (A.Spievey).,17,9,2012 20120923_DET@TEN,2,31,3,TEN,DET,1,10,40,(1:03) (Shotgun) J.Locker pass incomplete short right to K.Britt. PENALTY on DET-S.Tulloch Unnecessary Roughness 15 yards enforced at DET 40.,17,9,2012 20120923_DET@TEN,2,31,0,TEN,DET,1,10,25,(1:00) (Shotgun) PENALTY on DET-K.Vanden Bosch Neutral Zone Infraction 5 yards enforced at DET 25 - No Play.,17,9,2012 20120923_DET@TEN,2,31,0,TEN,DET,1,5,20,(1:00) (Shotgun) J.Locker up the middle to DET 25 for -5 yards (J.Durant).,17,9,2012 20120923_DET@TEN,2,30,33,TEN,DET,2,10,25,(:33) (No Huddle Shotgun) J.Locker pass incomplete short middle to C.Johnson.,17,9,2012 20120923_DET@TEN,2,30,30,TEN,DET,3,10,25,(:30) (Shotgun) J.Locker pass short left to K.Wright to DET 20 for 5 yards (J.Lacey).,17,9,2012 20120923_DET@TEN,2,30,3,TEN,DET,4,5,20,(:03) (Field Goal formation) R.Bironas 38 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,17,9,2012 20120923_DET@TEN,3,30,0,DET,TEN,,,20,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,9,20,2012 20120923_DET@TEN,3,30,0,TEN,DET,1,10,80,(15:00) C.Johnson left guard to TEN 23 for 3 yards (S.Tulloch; C.Avril).,20,9,2012 20120923_DET@TEN,3,29,21,TEN,DET,2,7,77,(14:21) (Shotgun) J.Locker pass short left to K.Britt pushed ob at TEN 38 for 15 yards (J.Wendling).,20,9,2012 20120923_DET@TEN,3,28,54,TEN,DET,1,10,62,(13:54) C.Johnson left end pushed ob at TEN 49 for 11 yards (J.Wendling).,20,9,2012 20120923_DET@TEN,3,28,29,TEN,DET,1,10,51,(13:29) J.Locker pass incomplete short middle to C.Stevens.,20,9,2012 20120923_DET@TEN,3,28,24,TEN,DET,2,10,51,(13:24) (Shotgun) C.Johnson right guard to 50 for 1 yard (N.Suh).,20,9,2012 20120923_DET@TEN,3,27,41,TEN,DET,3,9,50,(12:41) (Shotgun) PENALTY on DET-C.Avril Neutral Zone Infraction 5 yards enforced at 50 - No Play.,20,9,2012 20120923_DET@TEN,3,27,25,TEN,DET,3,4,45,(12:25) (Shotgun) J.Locker pass short right to C.Stevens ran ob at DET 40 for 5 yards.,20,9,2012 20120923_DET@TEN,3,27,13,TEN,DET,1,10,40,(12:13) J.Locker pass incomplete deep left to K.Britt (SamL.Hill).,20,9,2012 20120923_DET@TEN,3,27,6,TEN,DET,2,10,40,(12:06) PENALTY on TEN-J.Locker Delay of Game 5 yards enforced at DET 40 - No Play.,20,9,2012 20120923_DET@TEN,3,27,6,TEN,DET,2,15,45,(12:06) J.Locker pass short right to N.Washington to DET 36 for 9 yards (C.Houston).,20,9,2012 20120923_DET@TEN,3,26,27,TEN,DET,3,6,36,(11:27) J.Locker pass incomplete short left to K.Britt (C.Houston). PENALTY on DET-C.Houston Defensive Holding 5 yards enforced at DET 36 - No Play.,20,9,2012 20120923_DET@TEN,3,26,21,TEN,DET,1,10,31,(11:21) (Shotgun) C.Johnson up the middle to DET 28 for 3 yards (C.Avril).,20,9,2012 20120923_DET@TEN,3,25,40,TEN,DET,2,7,28,(10:40) C.Johnson right end to DET 31 for -3 yards (C.Avril).,20,9,2012 20120923_DET@TEN,3,24,54,TEN,DET,3,10,31,(9:54) (Shotgun) J.Locker pass short left to K.Britt to DET 23 for 8 yards (J.Durant). Penalty on TEN-D.Stewart Illegal Formation declined.,20,9,2012 20120923_DET@TEN,3,24,36,TEN,DET,4,2,23,(9:36) (Field Goal formation) R.Bironas 41 yard field goal is No Good Wide Left Center-B.Brinkley Holder-B.Kern.,20,9,2012 20120923_DET@TEN,3,24,30,DET,TEN,1,10,69,(9:30) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew.,9,20,2012 20120923_DET@TEN,3,24,24,DET,TEN,2,10,69,(9:24) (Shotgun) M.Stafford pass deep middle to C.Johnson to TEN 41 for 28 yards (J.Babineaux; M.Griffin).,9,20,2012 20120923_DET@TEN,3,23,57,DET,TEN,1,10,41,(8:57) (No Huddle Shotgun) M.Leshoure left guard to TEN 35 for 6 yards (D.Harris).,9,20,2012 20120923_DET@TEN,3,23,20,DET,TEN,2,4,35,(8:20) (Shotgun) M.Stafford pass short right to B.Pettigrew to TEN 28 for 7 yards (W.Witherspoon).,9,20,2012 20120923_DET@TEN,3,22,43,DET,TEN,1,10,28,(7:43) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson.,9,20,2012 20120923_DET@TEN,3,22,38,DET,TEN,2,10,28,(7:38) (Shotgun) M.Stafford pass short right to C.Johnson to TEN 10 for 18 yards (W.Witherspoon) [K.Klug].,9,20,2012 20120923_DET@TEN,3,22,10,DET,TEN,1,10,10,(7:10) (No Huddle Shotgun) M.Stafford pass short right to C.Johnson to TEN 1 for 9 yards (J.McCourty; A.Ayers).,9,20,2012 20120923_DET@TEN,3,21,41,DET,TEN,2,1,1,(6:41) (No Huddle) M.Leshoure up the middle for 1 yard TOUCHDOWN.,9,20,2012 20120923_DET@TEN,3,21,41,DET,TEN,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,9,20,2012 20120923_DET@TEN,3,21,41,DET,TEN,,,1,J.Hanson kicks 69 yards from DET 35 to TEN -4. D.Reynaud to TEN 15 for 19 yards (A.Palmer).,16,20,2012 20120923_DET@TEN,3,21,30,TEN,DET,1,10,85,(6:30) C.Johnson left guard to TEN 16 for 1 yard (C.Avril).,20,16,2012 20120923_DET@TEN,3,20,55,TEN,DET,2,9,84,(5:55) J.Locker pass short right to K.Wright ran ob at TEN 18 for 2 yards.,20,16,2012 20120923_DET@TEN,3,20,24,TEN,DET,3,7,82,(5:24) (Shotgun) J.Locker pass short middle to C.Stevens to TEN 35 for 17 yards (D.Levy).,20,16,2012 20120923_DET@TEN,3,19,47,TEN,DET,1,10,65,(4:47) C.Johnson left tackle to TEN 48 for 13 yards (A.Spievey).,20,16,2012 20120923_DET@TEN,3,19,2,TEN,DET,1,10,52,(4:02) J.Locker pass short left to K.Wright to DET 35 for 17 yards (D.Bentley).,20,16,2012 20120923_DET@TEN,3,18,15,TEN,DET,1,10,35,(3:15) (Shotgun) J.Locker pass incomplete short left to K.Britt.,20,16,2012 20120923_DET@TEN,3,18,12,TEN,DET,2,10,35,(3:12) (Shotgun) J.Locker pass incomplete short left to K.Britt (C.Houston).,20,16,2012 20120923_DET@TEN,3,18,7,TEN,DET,3,10,35,(3:07) (Shotgun) J.Locker pass short left to K.Britt to DET 30 for 5 yards (S.Tulloch).,20,16,2012 20120923_DET@TEN,3,17,24,TEN,DET,4,5,30,(2:24) (Field Goal formation) R.Bironas 48 yard field goal is No Good Wide Left Center-B.Brinkley Holder-B.Kern.,20,16,2012 20120923_DET@TEN,3,17,18,DET,TEN,1,10,62,(2:18) M.Leshoure right guard to DET 39 for 1 yard (S.Marks).,16,20,2012 20120923_DET@TEN,3,16,42,DET,TEN,2,9,61,(1:42) (Shotgun) M.Stafford pass short middle to C.Johnson to TEN 44 for 17 yards (M.Griffin).,16,20,2012 20120923_DET@TEN,3,16,14,DET,TEN,1,10,44,(1:14) (No Huddle) M.Leshoure up the middle to TEN 40 for 4 yards (A.Ayers; S.Marks).,16,20,2012 20120923_DET@TEN,3,15,36,DET,TEN,2,6,40,(:36) (Shotgun) M.Stafford pass short right to N.Burleson pushed ob at TEN 27 for 13 yards (M.Griffin).,16,20,2012 20120923_DET@TEN,3,15,17,DET,TEN,1,10,27,(:17) (Shotgun) M.Leshoure up the middle to TEN 26 for 1 yard (W.Witherspoon).,16,20,2012 20120923_DET@TEN,4,15,0,DET,TEN,2,9,26,(15:00) (Shotgun) M.Stafford pass short middle to M.Leshoure to TEN 16 for 10 yards (Z.Brown). PENALTY on TEN-S.Solomon Roughing the Passer 8 yards enforced at TEN 16.,16,20,2012 20120923_DET@TEN,4,14,34,DET,TEN,1,8,8,(14:34) M.Leshoure up the middle to TEN 8 for no gain. PENALTY on DET-G.Cherilus Offensive Holding 9 yards enforced at TEN 8 - No Play.,16,20,2012 20120923_DET@TEN,4,14,13,DET,TEN,1,17,17,(14:13) (Shotgun) N.Burleson left end to TEN 14 for 3 yards (R.Johnson; D.Morgan).,16,20,2012 20120923_DET@TEN,4,13,30,DET,TEN,2,14,14,(13:30) (Shotgun) M.Stafford pass short left to T.Young to TEN 8 for 6 yards (A.Ayers).,16,20,2012 20120923_DET@TEN,4,12,53,DET,TEN,3,8,8,(12:53) (Shotgun) M.Stafford pass incomplete short right to T.Young (J.Babineaux) [K.Wimbley]. Penalty on DET-T.Young Illegal Touch Pass declined.,16,20,2012 20120923_DET@TEN,4,12,44,DET,TEN,4,8,8,(12:44) (Field Goal formation) J.Hanson 26 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,16,20,2012 20120923_DET@TEN,4,12,44,DET,TEN,,,8,J.Hanson kicks 55 yards from DET 35 to TEN 10 out of bounds.,19,20,2012 20120923_DET@TEN,4,12,39,TEN,DET,1,10,60,(12:39) C.Johnson up the middle to TEN 39 for -1 yards (S.Tulloch).,20,19,2012 20120923_DET@TEN,4,11,57,TEN,DET,2,11,61,(11:57) (Shotgun) J.Locker pass short right to K.Wright to TEN 47 for 8 yards (C.Houston). FUMBLES (C.Houston) RECOVERED by DET-D.Levy at TEN 46. D.Levy to TEN 46 for no gain (C.Stevens). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,20,19,2012 20120923_DET@TEN,4,11,50,DET,TEN,1,10,46,(11:50) (Shotgun) M.Leshoure up the middle to TEN 38 for 8 yards (K.Wimbley; M.Griffin).,19,20,2012 20120923_DET@TEN,4,11,21,DET,TEN,2,2,38,(11:21) (No Huddle Shotgun) M.Leshoure right tackle to TEN 34 for 4 yards (S.Marks).,19,20,2012 20120923_DET@TEN,4,10,42,DET,TEN,1,10,34,(10:42) (Shotgun) M.Leshoure right tackle to TEN 31 for 3 yards (S.Marks).,19,20,2012 20120923_DET@TEN,4,10,4,DET,TEN,2,7,31,(10:04) (Shotgun) M.Stafford scrambles up the middle to TEN 24 for 7 yards (J.Babineaux).,19,20,2012 20120923_DET@TEN,4,9,27,DET,TEN,1,10,24,(9:27) (Shotgun) M.Leshoure up the middle to TEN 15 for 9 yards (M.Griffin).,19,20,2012 20120923_DET@TEN,4,8,45,DET,TEN,2,1,15,(8:45) M.Leshoure right tackle to TEN 13 for 2 yards (J.Casey).,19,20,2012 20120923_DET@TEN,4,8,3,DET,TEN,1,10,13,(8:03) (Shotgun) M.Stafford pass short right to N.Burleson pushed ob at TEN 5 for 8 yards (J.McCourty).,19,20,2012 20120923_DET@TEN,4,7,36,DET,TEN,2,2,5,(7:36) J.Bell up the middle to TEN 3 for 2 yards (Z.Diles; J.Babineaux).,19,20,2012 20120923_DET@TEN,4,6,58,DET,TEN,1,3,3,(6:58) M.Stafford pass short left to N.Burleson for 3 yards TOUCHDOWN.,19,20,2012 20120923_DET@TEN,4,6,58,DET,TEN,,,3,TWO-POINT CONVERSION ATTEMPT. M.Stafford pass to N.Burleson is complete. ATTEMPT SUCCEEDS.,19,20,2012 20120923_DET@TEN,4,6,58,DET,TEN,,,3,J.Hanson kicks 70 yards from DET 35 to TEN -5. D.Reynaud for 105 yards TOUCHDOWN.,27,20,2012 20120923_DET@TEN,4,6,58,TEN,DET,,,3,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,20,27,2012 20120923_DET@TEN,4,6,58,TEN,DET,,,3,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,27,27,2012 20120923_DET@TEN,4,6,41,DET,TEN,1,10,80,(6:41) (Shotgun) M.Stafford pass short middle to M.Leshoure to DET 33 for 13 yards (J.Babineaux).,27,27,2012 20120923_DET@TEN,4,6,4,DET,TEN,1,10,67,(6:04) M.Leshoure right guard to DET 35 for 2 yards (J.Casey). PENALTY on DET-B.Pettigrew Offensive Holding 10 yards enforced at DET 33 - No Play.,27,27,2012 20120923_DET@TEN,4,5,44,DET,TEN,1,20,77,(5:44) (Shotgun) M.Stafford pass short left to M.Leshoure to DET 27 for 4 yards (D.Reynaud).,27,27,2012 20120923_DET@TEN,4,5,2,DET,TEN,2,16,73,(5:02) (Shotgun) M.Stafford pass short left to N.Burleson to DET 34 for 7 yards (A.Verner).,27,27,2012 20120923_DET@TEN,4,4,15,DET,TEN,3,9,66,(4:15) (Shotgun) M.Stafford sacked at DET 26 for -8 yards (A.Ayers).,27,27,2012 20120923_DET@TEN,4,3,41,DET,TEN,4,17,74,(3:41) (Punt formation) J.Hanson punts 46 yards to TEN 28 Center-D.Muhlbach. D.Reynaud to TEN 34 for 6 yards (A.Palmer).,27,27,2012 20120923_DET@TEN,4,3,30,TEN,DET,1,10,66,(3:30) (Shotgun) J.Locker left end to TEN 43 for 9 yards (J.Wendling). PENALTY on TEN-C.Stevens Illegal Motion 5 yards enforced at TEN 34 - No Play.,27,27,2012 20120923_DET@TEN,4,3,23,TEN,DET,1,15,71,(3:23) J.Locker pass deep left to N.Washington for 71 yards TOUCHDOWN.,27,27,2012 20120923_DET@TEN,4,3,23,TEN,DET,,,71,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,27,27,2012 20120923_DET@TEN,4,3,23,TEN,DET,,,71,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,34,27,2012 20120923_DET@TEN,4,3,10,DET,TEN,1,10,80,(3:10) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 27 for 7 yards (A.Ayers).,27,34,2012 20120923_DET@TEN,4,2,48,DET,TEN,2,3,73,(2:48) (No Huddle Shotgun) M.Stafford pass short right to C.Johnson to DET 42 for 15 yards (J.Babineaux).,27,34,2012 20120923_DET@TEN,4,2,24,DET,TEN,1,10,58,(2:24) (No Huddle Shotgun) M.Stafford pass short left to N.Burleson pushed ob at DET 49 for 7 yards (R.Mouton).,27,34,2012 20120923_DET@TEN,4,2,20,DET,TEN,2,3,51,(2:20) (Shotgun) M.Stafford pass incomplete short middle to W.Heller.,27,34,2012 20120923_DET@TEN,4,2,16,DET,TEN,3,3,51,(2:16) (Shotgun) M.Stafford pass short middle to N.Burleson to TEN 47 for 4 yards (A.Ayers).,27,34,2012 20120923_DET@TEN,4,2,0,DET,TEN,1,10,47,(2:00) (Shotgun) M.Stafford pass short middle to J.Bell to TEN 34 for 13 yards (R.Mouton; A.Ayers).,27,34,2012 20120923_DET@TEN,4,1,36,DET,TEN,1,10,34,(1:36) (Shotgun) M.Stafford pass incomplete short left to N.Burleson.,27,34,2012 20120923_DET@TEN,4,1,32,DET,TEN,2,10,34,(1:32) (Shotgun) M.Stafford pass short left to B.Pettigrew to TEN 28 for 6 yards (A.Verner). FUMBLES (A.Verner) RECOVERED by TEN-A.Verner at TEN 28. A.Verner for 72 yards TOUCHDOWN.,27,34,2012 20120923_DET@TEN,4,1,32,TEN,DET,,,34,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,34,27,2012 20120923_DET@TEN,4,1,32,TEN,DET,,,34,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,41,27,2012 20120923_DET@TEN,4,1,16,DET,TEN,1,10,80,(1:16) (Shotgun) Sh.Hill pass short right to J.Bell to DET 29 for 9 yards (A.Ayers).,27,41,2012 20120923_DET@TEN,4,1,8,DET,TEN,2,1,71,(1:08) (Shotgun) Sh.Hill pass deep right to C.Johnson ran ob at DET 49 for 20 yards. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,27,41,2012 20120923_DET@TEN,4,1,1,DET,TEN,1,10,51,(1:01) (Shotgun) Sh.Hill pass short middle to J.Bell to TEN 39 for 12 yards (C.Sensabaugh).,27,41,2012 20120923_DET@TEN,4,0,55,DET,TEN,1,10,39,(:55) (Shotgun) Sh.Hill pass short right to C.Johnson to TEN 17 for 22 yards (R.Mouton).,27,41,2012 20120923_DET@TEN,4,0,47,DET,TEN,1,10,17,(:47) (Shotgun) Sh.Hill pass short right to J.Bell to TEN 7 for 10 yards (J.McCourty).,27,41,2012 20120923_DET@TEN,4,0,28,DET,TEN,1,7,7,(:28) Sh.Hill spiked the ball to stop the clock.,27,41,2012 20120923_DET@TEN,4,0,28,DET,TEN,2,7,7,(:28) (Shotgun) Sh.Hill pass short left intended for N.Burleson INTERCEPTED by A.Verner at TEN -5. Touchback. PENALTY on TEN-A.Ayers Roughing the Passer 4 yards enforced at TEN 7 - No Play.,27,41,2012 20120923_DET@TEN,4,0,20,DET,TEN,1,3,3,(:20) (Shotgun) Sh.Hill pass short right to C.Johnson for 3 yards TOUCHDOWN.,27,41,2012 20120923_DET@TEN,4,0,20,DET,TEN,,,3,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,27,41,2012 20120923_DET@TEN,4,0,20,DET,TEN,,,3,(Onside Kick formation) J.Hanson kicks onside 19 yards from DET 35 to TEN 46. RECOVERED by DET-A.Spievey.,34,41,2012 20120923_DET@TEN,4,0,16,DET,TEN,1,10,46,(:16) (Shotgun) Sh.Hill pass incomplete short right to N.Burleson (J.McCourty).,34,41,2012 20120923_DET@TEN,4,0,6,DET,TEN,2,10,46,(:06) (Shotgun) Sh.Hill pass deep middle to T.Young for 46 yards TOUCHDOWN.,34,41,2012 20120923_DET@TEN,4,0,6,DET,TEN,,,46,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,34,41,2012 20120923_DET@TEN,5,0,0,DET,TEN,,,46,J.Hanson kicks 70 yards from DET 35 to TEN -5. D.Reynaud to TEN 20 for 25 yards (A.Palmer; T.Whitehead).,41,41,2012 20120923_DET@TEN,5,-1,54,TEN,DET,1,10,80,(14:54) (Shotgun) J.Locker pass deep right to C.Stevens to TEN 44 for 24 yards (J.Wendling).,41,41,2012 20120923_DET@TEN,5,-1,16,TEN,DET,1,10,56,(14:16) C.Johnson left tackle to TEN 36 for -8 yards (K.Vanden Bosch).,41,41,2012 20120923_DET@TEN,5,-2,28,TEN,DET,2,18,64,(13:28) (Shotgun) J.Locker pass short middle to C.Stevens to TEN 43 for 7 yards (J.Lacey; D.Levy).,41,41,2012 20120923_DET@TEN,5,-3,52,TEN,DET,3,11,57,(12:52) (Shotgun) PENALTY on TEN-L.Harris False Start 5 yards enforced at TEN 43 - No Play.,41,41,2012 20120923_DET@TEN,5,-3,42,TEN,DET,3,16,62,(12:42) J.Locker scrambles left end to TEN 47 for 9 yards (J.Durant). PENALTY on DET-D.Bentley Defensive Holding 5 yards enforced at TEN 47.,41,41,2012 20120923_DET@TEN,5,-3,29,TEN,DET,1,10,48,(12:29) C.Johnson up the middle to TEN 44 for -8 yards (C.Avril; C.Houston).,41,41,2012 20120923_DET@TEN,5,-3,18,TEN,DET,2,18,56,(12:18) (Shotgun) J.Locker pass deep middle to C.Stevens to DET 32 for 24 yards (S.Tulloch). PENALTY on DET-S.Tulloch Personal Foul 15 yards enforced at DET 32. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) J.Locker pass incomplete deep middle to C.Stevens (S.Tulloch). PENALTY on DET-S.Tulloch Personal Foul 27 yards enforced at TEN 44.,41,41,2012 20120923_DET@TEN,5,-3,14,TEN,DET,1,10,29,(12:14) (Shotgun) J.Locker pass incomplete short right to K.Wright.,41,41,2012 20120923_DET@TEN,5,-3,10,TEN,DET,2,10,29,(12:10) (Shotgun) J.Locker pass incomplete short left to K.Wright.,41,41,2012 20120923_DET@TEN,5,-3,5,TEN,DET,3,10,29,(12:05) (Shotgun) J.Locker pass short right to D.Williams ran ob at DET 16 for 13 yards.,41,41,2012 20120923_DET@TEN,5,-4,35,TEN,DET,1,10,16,(11:35) (Shotgun) J.Locker pass short left to K.Wright to DET 15 for 1 yard (D.Bentley).,41,41,2012 20120923_DET@TEN,5,-5,53,TEN,DET,2,9,15,(10:53) (Shotgun) J.Locker pass incomplete short right to D.Williams [N.Suh].,41,41,2012 20120923_DET@TEN,5,-5,47,TEN,DET,3,9,15,(10:47) (Shotgun) J.Locker pass short left to D.Williams to DET 8 for 7 yards (J.Wendling).,41,41,2012 20120923_DET@TEN,5,-5,41,TEN,DET,4,2,8,(10:41) (Field Goal formation) R.Bironas 26 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,41,41,2012 20120923_DET@TEN,5,-5,41,TEN,DET,,,8,R.Bironas kicks 66 yards from TEN 35 to DET -1. S.Logan to DET 22 for 23 yards (T.Shaw; Z.Brown).,44,41,2012 20120923_DET@TEN,5,-5,30,DET,TEN,1,10,78,(10:30) Sh.Hill pass short right to B.Pettigrew to DET 39 for 17 yards (J.McCourty).,41,44,2012 20120923_DET@TEN,5,-6,53,DET,TEN,1,10,61,(9:53) J.Bell up the middle to DET 44 for 5 yards (M.Martin; W.Witherspoon).,41,44,2012 20120923_DET@TEN,5,-6,22,DET,TEN,2,5,56,(9:22) (Shotgun) Sh.Hill pass deep left to C.Johnson to TEN 30 for 26 yards (M.Griffin).,41,44,2012 20120923_DET@TEN,5,-7,50,DET,TEN,1,10,30,(8:50) (No Huddle) J.Bell up the middle to TEN 25 for 5 yards (J.Casey).,41,44,2012 20120923_DET@TEN,5,-7,22,DET,TEN,2,5,25,(8:22) (No Huddle) J.Bell left tackle to TEN 16 for 9 yards (M.Griffin; A.Verner).,41,44,2012 20120923_DET@TEN,5,-8,49,DET,TEN,1,10,16,(7:49) (No Huddle) J.Bell left end to TEN 14 for 2 yards (J.Casey).,41,44,2012 20120923_DET@TEN,5,-8,9,DET,TEN,2,8,14,(7:09) (Shotgun) Sh.Hill pass incomplete short left to J.Bell.,41,44,2012 20120923_DET@TEN,5,-8,2,DET,TEN,3,8,14,(7:02) (Shotgun) Sh.Hill pass short middle to M.Leshoure to TEN 7 for 7 yards (R.Mouton).,41,44,2012 20120923_DET@TEN,5,-9,41,DET,TEN,4,1,7,(6:41) Sh.Hill up the middle to TEN 8 for -1 yards (J.Casey). The Replay Assistant challenged the first down ruling and the play was Upheld.,41,44,2012 20120923_DET@TEN,5,-9,41,DET,TEN,,,7,                      ,41,44,2012 20120923_CIN@WAS,1,-9,0,WAS,CIN,,,7,B.Cundiff kicks 69 yards from WAS 35 to CIN -4. B.Tate to CIN 27 for 31 yards (D.Gomes; D.Young). Tackled at the CIN 31 moved back to where runner lost helmet.,0,0,2012 20120923_CIN@WAS,1,59,53,CIN,WAS,1,10,73,(14:53) (Shotgun) Direct snap to M.Sanu. M.Sanu pass deep middle to A.Green for 73 yards TOUCHDOWN.,0,0,2012 20120923_CIN@WAS,1,59,53,CIN,WAS,,,73,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 20120923_CIN@WAS,1,59,53,CIN,WAS,,,73,M.Nugent kicks 67 yards from CIN 35 to WAS -2. B.Banks to WAS 17 for 19 yards (D.Skuta).,7,0,2012 20120923_CIN@WAS,1,59,37,WAS,CIN,1,10,83,(14:37) (Shotgun) A.Morris right end to WAS 27 for 10 yards (D.Peko V.Burfict). 46 - Morris tackled at the 31 but ball placed at the 27 where he lost his helmet.,0,7,2012 20120923_CIN@WAS,1,59,15,WAS,CIN,1,10,73,(14:15) A.Morris left end to WAS 39 for 12 yards (R.Maualuga V.Burfict). WAS-T.Williams was injured during the play. His return is Questionable. Trent Williams injury is a knee,0,7,2012 20120923_CIN@WAS,1,58,46,WAS,CIN,1,10,61,(13:46) (Shotgun) R.Griffin sacked at WAS 30 for -9 yards. FUMBLES and recovers at WAS 29. R.Griffin to WAS 29 for no gain (M.Johnson).,0,7,2012 20120923_CIN@WAS,1,58,8,WAS,CIN,2,20,71,(13:08) R.Griffin pass short middle to F.Davis to WAS 37 for 8 yards (R.Maualuga; V.Burfict).,0,7,2012 20120923_CIN@WAS,1,57,27,WAS,CIN,3,12,63,(12:27) (Shotgun) R.Griffin pass short left to F.Davis to WAS 41 for 4 yards (J.Allen T.Mays).,0,7,2012 20120923_CIN@WAS,1,56,58,WAS,CIN,4,8,59,(11:58) S.Rocca punts 58 yards to CIN 1 Center-J.Snow downed by WAS-N.Paul.,0,7,2012 20120923_CIN@WAS,1,56,45,CIN,WAS,1,10,99,(11:45) B.Green-Ellis right guard to CIN 2 for 1 yard (P.Riley; L.Fletcher).,7,0,2012 20120923_CIN@WAS,1,56,5,CIN,WAS,2,9,98,(11:05) A.Dalton pass short left intended for B.Green-Ellis INTERCEPTED by R.Jackson [R.Kerrigan] at CIN 0. TOUCHDOWN.,7,0,2012 20120923_CIN@WAS,1,56,5,WAS,CIN,,,98,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,0,7,2012 20120923_CIN@WAS,1,56,5,WAS,CIN,,,98,B.Cundiff kicks 61 yards from WAS 35 to CIN 4. B.Tate to CIN 18 for 14 yards (L.Alexander).,7,7,2012 20120923_CIN@WAS,1,56,0,CIN,WAS,1,10,82,(11:00) PENALTY on CIN-J.Gresham False Start 5 yards enforced at CIN 18 - No Play.,7,7,2012 20120923_CIN@WAS,1,55,53,CIN,WAS,1,15,87,(10:53) B.Green-Ellis left guard to CIN 16 for 3 yards (D.Gomes; P.Riley).,7,7,2012 20120923_CIN@WAS,1,55,14,CIN,WAS,2,12,84,(10:14) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 38 for 22 yards (D.Hall L.Fletcher).,7,7,2012 20120923_CIN@WAS,1,54,42,CIN,WAS,1,10,62,(9:42) B.Green-Ellis left tackle to CIN 40 for 2 yards (R.Kerrigan; L.Fletcher).,7,7,2012 20120923_CIN@WAS,1,54,6,CIN,WAS,2,8,60,(9:06) (Shotgun) A.Dalton pass incomplete short left to A.Binns. PENALTY on WAS-J.Wilson Defensive Pass Interference 8 yards enforced at CIN 40 - No Play.,7,7,2012 20120923_CIN@WAS,1,54,1,CIN,WAS,1,10,52,(9:01) A.Dalton pass short right to A.Green to WAS 38 for 14 yards (D.Hall).,7,7,2012 20120923_CIN@WAS,1,53,22,CIN,WAS,1,10,38,(8:22) B.Green-Ellis left end to WAS 40 for -2 yards (R.Jackson L.Fletcher).,7,7,2012 20120923_CIN@WAS,1,52,40,CIN,WAS,2,12,40,(7:40) (Shotgun) A.Dalton pass incomplete deep right to J.Gresham.,7,7,2012 20120923_CIN@WAS,1,52,34,CIN,WAS,3,12,40,(7:34) (Shotgun) A.Dalton sacked at WAS 47 for -7 yards (sack split by C.Wilson and R.Kerrigan). Penalty on CIN-A.Whitworth Offensive Holding declined.,7,7,2012 20120923_CIN@WAS,1,52,16,CIN,WAS,4,19,47,(7:16) K.Huber punts 37 yards to WAS 10 Center-C.Harris fair catch by B.Banks.,7,7,2012 20120923_CIN@WAS,1,52,12,WAS,CIN,1,10,90,(7:12) A.Morris right end to WAS 10 for no gain (G.Atkins).,7,7,2012 20120923_CIN@WAS,1,51,36,WAS,CIN,2,10,90,(6:36) (Shotgun) A.Morris left end to WAS 13 for 3 yards (M.Johnson).,7,7,2012 20120923_CIN@WAS,1,50,56,WAS,CIN,3,7,87,(5:56) (Shotgun) R.Griffin pass incomplete short right to L.Hankerson (T.Newman).,7,7,2012 20120923_CIN@WAS,1,50,49,WAS,CIN,4,7,87,(5:49) S.Rocca punts 45 yards to CIN 42 Center-J.Snow. A.Jones to CIN 42 for no gain (C.Wilson).,7,7,2012 20120923_CIN@WAS,1,50,40,CIN,WAS,1,10,58,(5:40) D.Roland reported in as eligible. B.Scott left end to CIN 34 for -8 yards (R.Jackson).,7,7,2012 20120923_CIN@WAS,1,50,0,CIN,WAS,2,18,66,(5:00) (Shotgun) A.Dalton scrambles left guard to WAS 49 for 17 yards (L.Fletcher).,7,7,2012 20120923_CIN@WAS,1,49,12,CIN,WAS,3,1,49,(4:12) A.Hawkins left end pushed ob at WAS 38 for 11 yards (D.Gomes; L.Fletcher).,7,7,2012 20120923_CIN@WAS,1,48,46,CIN,WAS,1,10,38,(3:46) A.Dalton pass incomplete short middle to A.Binns (L.Fletcher). PENALTY on CIN-J.Faine Offensive Holding 10 yards enforced at WAS 38 - No Play.,7,7,2012 20120923_CIN@WAS,1,48,41,CIN,WAS,1,20,48,(3:41) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins (D.Hall).,7,7,2012 20120923_CIN@WAS,1,48,37,CIN,WAS,2,20,48,(3:37) (Shotgun) A.Dalton pass short left to A.Binns for 48 yards TOUCHDOWN [Mad.Williams].,7,7,2012 20120923_CIN@WAS,1,48,37,CIN,WAS,,,48,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,7,2012 20120923_CIN@WAS,1,48,37,CIN,WAS,,,48,M.Nugent kicks 71 yards from CIN 35 to WAS -6. B.Banks Touchback.,14,7,2012 20120923_CIN@WAS,1,48,28,WAS,CIN,1,10,80,(3:28) R.Griffin pass short left to J.Morgan to WAS 31 for 11 yards (N.Clements) [M.Johnson].,7,14,2012 20120923_CIN@WAS,1,47,52,WAS,CIN,1,10,69,(2:52) R.Griffin sacked at WAS 27 for -4 yards (M.Johnson).,7,14,2012 20120923_CIN@WAS,1,47,15,WAS,CIN,2,14,73,(2:15) (Shotgun) R.Griffin sacked at WAS 22 for -5 yards (M.Johnson).,7,14,2012 20120923_CIN@WAS,1,46,44,WAS,CIN,3,19,78,(1:44) (Shotgun) R.Griffin pass short left to E.Royster to WAS 36 for 14 yards (R.Maualuga; M.Johnson).,7,14,2012 20120923_CIN@WAS,1,46,14,WAS,CIN,4,5,64,(1:14) S.Rocca punts 40 yards to CIN 24 Center-J.Snow. B.Tate to CIN 26 for 2 yards (R.Doughty; N.Paul).,7,14,2012 20120923_CIN@WAS,1,46,4,CIN,WAS,1,10,74,(1:04) B.Green-Ellis up the middle to CIN 29 for 3 yards (C.Baker).,14,7,2012 20120923_CIN@WAS,1,45,28,CIN,WAS,2,7,71,(:28) A.Dalton pass short right to A.Green to CIN 34 for 5 yards (D.Hall R.Kerrigan).,14,7,2012 20120923_CIN@WAS,2,45,0,CIN,WAS,3,2,66,(15:00) A.Hawkins left end pushed ob at CIN 39 for 5 yards (C.Wilson).,14,7,2012 20120923_CIN@WAS,2,44,38,CIN,WAS,1,10,61,(14:38) B.Green-Ellis up the middle to CIN 41 for 2 yards (J.Jenkins; C.Baker).,14,7,2012 20120923_CIN@WAS,2,44,2,CIN,WAS,2,8,59,(14:02) A.Dalton pass short right to A.Green pushed ob at WAS 47 for 12 yards (R.Crawford).,14,7,2012 20120923_CIN@WAS,2,43,37,CIN,WAS,1,10,47,(13:37) B.Scott up the middle to WAS 45 for 2 yards (K.Golston; P.Riley).,14,7,2012 20120923_CIN@WAS,2,42,56,CIN,WAS,2,8,45,(12:56) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,14,7,2012 20120923_CIN@WAS,2,42,50,CIN,WAS,3,8,45,(12:50) (Shotgun) A.Dalton pass short middle to J.Gresham to WAS 30 for 15 yards (P.Riley).,14,7,2012 20120923_CIN@WAS,2,42,26,CIN,WAS,1,10,30,(12:26) B.Leonard right end to WAS 19 for 11 yards (Mad.Williams).,14,7,2012 20120923_CIN@WAS,2,42,1,CIN,WAS,1,10,19,(12:01) A.Dalton pass short left to A.Binns to WAS 13 for 6 yards (J.Wilson).,14,7,2012 20120923_CIN@WAS,2,41,37,CIN,WAS,2,4,13,(11:37) (No Huddle) B.Leonard right tackle to WAS 6 for 7 yards (L.Fletcher R.Crawford). WAS-K.Golston was injured during the play.,14,7,2012 20120923_CIN@WAS,2,41,7,CIN,WAS,1,6,6,(11:07) B.Scott right guard to WAS 5 for 1 yard (L.Fletcher Mad.Williams).,14,7,2012 20120923_CIN@WAS,2,40,33,CIN,WAS,2,5,5,(10:33) A.Dalton sacked at WAS 14 for -9 yards (P.Riley).,14,7,2012 20120923_CIN@WAS,2,39,56,CIN,WAS,3,14,14,(9:56) (Shotgun) A.Dalton pass short right to J.Gresham pushed ob at WAS 5 for 9 yards (R.Crawford).,14,7,2012 20120923_CIN@WAS,2,39,34,CIN,WAS,4,5,5,(9:34) (Field Goal formation) Direct snap to K.Huber. K.Huber right end to WAS 6 for -1 yards (Mad.Williams D.Hall).,14,7,2012 20120923_CIN@WAS,2,39,29,WAS,CIN,1,10,94,(9:29) R.Griffin pass incomplete short middle to L.Paulsen. PENALTY on CIN-N.Clements Defensive Pass Interference 15 yards enforced at WAS 6 - No Play.,7,14,2012 20120923_CIN@WAS,2,39,25,WAS,CIN,1,10,79,(9:25) (Shotgun) R.Griffin right guard to WAS 25 for 4 yards (R.Geathers).,7,14,2012 20120923_CIN@WAS,2,38,47,WAS,CIN,2,6,75,(8:47) (Shotgun) A.Morris left end to WAS 24 for -1 yards (G.Atkins).,7,14,2012 20120923_CIN@WAS,2,38,8,WAS,CIN,3,7,76,(8:08) (Shotgun) R.Griffin pass incomplete short right to E.Royster [C.Dunlap].,7,14,2012 20120923_CIN@WAS,2,38,2,WAS,CIN,4,7,76,(8:02) S.Rocca punts 33 yards to CIN 43 Center-J.Snow. A.Jones to WAS 49 for 8 yards (R.Doughty).,7,14,2012 20120923_CIN@WAS,2,37,51,CIN,WAS,1,10,49,(7:51) A.Dalton pass short right to A.Binns to WAS 40 for 9 yards (D.Hall).,14,7,2012 20120923_CIN@WAS,2,37,12,CIN,WAS,2,1,40,(7:12) B.Green-Ellis right end to WAS 36 for 4 yards (L.Fletcher D.Hall).,14,7,2012 20120923_CIN@WAS,2,36,35,CIN,WAS,1,10,36,(6:35) A.Dalton pass short left to A.Binns to WAS 33 for 3 yards (D.Hall). PENALTY on CIN-A.Whitworth Offensive Holding 10 yards enforced at WAS 36 - No Play.,14,7,2012 20120923_CIN@WAS,2,36,15,CIN,WAS,1,20,46,(6:15) B.Green-Ellis right tackle to WAS 41 for 5 yards (C.Wilson; P.Riley).,14,7,2012 20120923_CIN@WAS,2,35,30,CIN,WAS,2,15,41,(5:30) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins (P.Riley).,14,7,2012 20120923_CIN@WAS,2,35,26,CIN,WAS,3,15,41,(5:26) (Shotgun) A.Dalton pass short middle to J.Gresham to WAS 29 for 12 yards (D.Gomes).,14,7,2012 20120923_CIN@WAS,2,34,42,CIN,WAS,4,3,29,(4:42) M.Nugent 47 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,14,7,2012 20120923_CIN@WAS,2,34,42,CIN,WAS,,,29,M.Nugent kicks 72 yards from CIN 35 to WAS -7. B.Banks Touchback.,17,7,2012 20120923_CIN@WAS,2,34,36,WAS,CIN,1,10,80,(4:36) A.Morris up the middle to WAS 23 for 3 yards (D.Peko V.Burfict).,7,17,2012 20120923_CIN@WAS,2,34,1,WAS,CIN,2,7,77,(4:01) (Shotgun) R.Griffin sacked at WAS 19 for -4 yards (C.Dunlap). FUMBLES (C.Dunlap) RECOVERED by CIN-C.Dunlap at WAS 12. C.Dunlap to WAS 12 for no gain (A.Morris).,7,17,2012 20120923_CIN@WAS,2,33,49,CIN,WAS,1,10,12,(3:49) A.Green left end to WAS 1 for 11 yards (J.Wilson). CIN-A.Green was injured during the play. End around,17,7,2012 20120923_CIN@WAS,2,33,14,CIN,WAS,1,1,1,(3:14) D.Roland reported in as eligible. Direct snap to B.Green-Ellis. B.Green-Ellis right guard for 1 yard TOUCHDOWN.,17,7,2012 20120923_CIN@WAS,2,33,14,CIN,WAS,,,1,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,7,2012 20120923_CIN@WAS,2,33,14,,WAS,,,1,M.Nugent kicks 73 yards from CIN 30 to WAS -3. B.Banks to CIN 48 for 55 yards (M.Nugent).,24,7,2012 20120923_CIN@WAS,2,33,3,WAS,CIN,1,10,48,(3:03) R.Griffin pass incomplete short middle to L.Paulsen.,7,24,2012 20120923_CIN@WAS,2,32,58,WAS,CIN,2,10,48,(2:58) (Shotgun) R.Griffin pass incomplete short right to A.Morris (V.Rey).,7,24,2012 20120923_CIN@WAS,2,32,50,WAS,CIN,3,10,48,(2:50) (Shotgun) R.Griffin scrambles right end pushed ob at CIN 37 for 11 yards (V.Rey).,7,24,2012 20120923_CIN@WAS,2,32,26,WAS,CIN,1,10,37,(2:26) (Shotgun) E.Royster left end to CIN 25 for 12 yards (A.Jones).,7,24,2012 20120923_CIN@WAS,2,32,0,WAS,CIN,1,10,25,(2:00) R.Griffin pass short right to E.Royster to CIN 26 for -1 yards (T.Newman N.Clements) [G.Atkins].,7,24,2012 20120923_CIN@WAS,2,31,27,WAS,CIN,2,11,26,(1:27) (Shotgun) R.Griffin pass incomplete short left to S.Moss (A.Jones).,7,24,2012 20120923_CIN@WAS,2,31,24,WAS,CIN,3,11,26,(1:24) (Shotgun) R.Griffin right tackle to CIN 18 for 8 yards (V.Rey).,7,24,2012 20120923_CIN@WAS,2,30,36,WAS,CIN,4,3,18,(:36) B.Cundiff 36 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,7,24,2012 20120923_CIN@WAS,2,30,36,WAS,CIN,,,18,B.Cundiff kicks 73 yards from WAS 35 to CIN -8. A.Jones MUFFS catch RECOVERED by WAS-D.Gomes at CIN -8. D.Gomes to CIN 10 for -18 yards ([37]).,10,24,2012 20120923_CIN@WAS,2,30,27,CIN,WAS,1,10,90,(:27) A.Dalton kneels to CIN 9 for -1 yards.,24,10,2012 20120923_CIN@WAS,3,30,0,CIN,WAS,,,90,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,24,10,2012 20120923_CIN@WAS,3,30,0,WAS,CIN,1,10,80,(15:00) A.Morris right tackle to WAS 25 for 5 yards (R.Maualuga).,10,24,2012 20120923_CIN@WAS,3,29,28,WAS,CIN,2,5,75,(14:28) A.Morris right end to WAS 25 for no gain (G.Atkins; R.Geathers).,10,24,2012 20120923_CIN@WAS,3,28,53,WAS,CIN,3,5,75,(13:53) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 39 for 14 yards (R.Nelson).,10,24,2012 20120923_CIN@WAS,3,28,18,WAS,CIN,1,10,61,(13:18) (Shotgun) R.Griffin pass short middle to F.Davis to CIN 49 for 12 yards (R.Maualuga V.Burfict) [M.Johnson].,10,24,2012 20120923_CIN@WAS,3,27,36,WAS,CIN,1,10,49,(12:36) (Shotgun) E.Royster up the middle to CIN 40 for 9 yards (R.Nelson; D.Still).,10,24,2012 20120923_CIN@WAS,3,26,58,WAS,CIN,2,1,40,(11:58) A.Morris up the middle to CIN 35 for 5 yards (A.Jones). PENALTY on CIN-A.Jones Horse Collar Tackle 15 yards enforced at CIN 35.,10,24,2012 20120923_CIN@WAS,3,26,36,WAS,CIN,1,10,20,(11:36) A.Morris left end to CIN 14 for 6 yards (M.Lawson; R.Maualuga).,10,24,2012 20120923_CIN@WAS,3,25,58,WAS,CIN,2,4,14,(10:58) (Shotgun) R.Griffin left end pushed ob at CIN 7 for 7 yards (R.Nelson).,10,24,2012 20120923_CIN@WAS,3,25,29,WAS,CIN,1,7,7,(10:29) A.Morris right tackle for 7 yards TOUCHDOWN.,10,24,2012 20120923_CIN@WAS,3,25,29,WAS,CIN,,,7,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,10,24,2012 20120923_CIN@WAS,3,25,29,WAS,CIN,,,7,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,17,24,2012 20120923_CIN@WAS,3,25,23,CIN,WAS,1,10,80,(10:23) (Shotgun) A.Dalton pass short right to A.Green to CIN 28 for 8 yards (D.Hall).,24,17,2012 20120923_CIN@WAS,3,24,50,CIN,WAS,2,2,72,(9:50) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (L.Fletcher R.Kerrigan).,24,17,2012 20120923_CIN@WAS,3,24,45,CIN,WAS,3,2,72,(9:45) B.Green-Ellis left tackle to CIN 29 for 1 yard (D.Hall; P.Riley).,24,17,2012 20120923_CIN@WAS,3,24,8,CIN,WAS,4,1,71,(9:08) K.Huber punts 56 yards to WAS 15 Center-C.Harris. B.Banks pushed ob at WAS 14 for -1 yards (B.Leonard).,24,17,2012 20120923_CIN@WAS,3,23,57,WAS,CIN,1,10,86,(8:57) R.Griffin pass deep middle to L.Hankerson to WAS 37 for 23 yards (T.Newman N.Clements).,17,24,2012 20120923_CIN@WAS,3,23,14,WAS,CIN,1,10,63,(8:14) (Shotgun) A.Morris right tackle to 50 for 13 yards (B.Green-Ellis; R.Nelson).,17,24,2012 20120923_CIN@WAS,3,22,37,WAS,CIN,1,10,50,(7:37) (Shotgun) B.Banks left end pushed ob at CIN 29 for 21 yards (R.Nelson).,17,24,2012 20120923_CIN@WAS,3,22,10,WAS,CIN,1,10,29,(7:10) A.Morris right end to CIN 30 for -1 yards (C.Dunlap).,17,24,2012 20120923_CIN@WAS,3,21,31,WAS,CIN,2,11,30,(6:31) (Shotgun) A.Morris left guard to CIN 26 for 4 yards (R.Maualuga).,17,24,2012 20120923_CIN@WAS,3,20,54,WAS,CIN,3,7,26,(5:54) (Shotgun) R.Griffin up the middle to CIN 17 for 9 yards (R.Nelson).,17,24,2012 20120923_CIN@WAS,3,20,17,WAS,CIN,1,10,18,(5:17) (Shotgun) R.Griffin FUMBLES (Aborted) at CIN 20 recovered by WAS-B.Banks at CIN 18. B.Banks pushed ob at CIN 12 for 6 yards (R.Nelson).,17,24,2012 20120923_CIN@WAS,3,19,39,WAS,CIN,2,5,12,(4:39) (Shotgun) A.Morris up the middle to CIN 6 for 6 yards (M.Lawson; V.Burfict).,17,24,2012 20120923_CIN@WAS,3,19,0,WAS,CIN,1,6,6,(4:00) (Shotgun) R.Griffin left end pushed ob at CIN 3 for 3 yards (V.Rey).,17,24,2012 20120923_CIN@WAS,3,18,34,WAS,CIN,2,3,3,(3:34) R.Griffin pass short right to S.Moss for 3 yards TOUCHDOWN.,17,24,2012 20120923_CIN@WAS,3,18,34,WAS,CIN,,,3,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,17,24,2012 20120923_CIN@WAS,3,18,34,WAS,CIN,,,3,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,24,24,2012 20120923_CIN@WAS,3,18,29,CIN,WAS,1,10,80,(3:29) A.Dalton pass deep right to A.Green to CIN 47 for 27 yards (D.Hall).,24,24,2012 20120923_CIN@WAS,3,18,2,CIN,WAS,1,10,53,(3:02) (No Huddle) B.Green-Ellis left end to CIN 47 for no gain (J.Wilson). FUMBLES (J.Wilson) RECOVERED by WAS-J.Wilson at CIN 47. J.Wilson to CIN 47 for no gain (B.Green-Ellis).,24,24,2012 20120923_CIN@WAS,3,17,53,WAS,CIN,1,10,47,(2:53) (Shotgun) B.Banks right end pushed ob at CIN 47 for no gain (V.Burfict).,24,24,2012 20120923_CIN@WAS,3,17,28,WAS,CIN,2,10,47,(2:28) R.Griffin sacked at WAS 45 for -8 yards (M.Johnson).,24,24,2012 20120923_CIN@WAS,3,16,56,WAS,CIN,3,18,55,(1:56) (Shotgun) R.Griffin pass incomplete deep left to L.Hankerson [C.Dunlap].,24,24,2012 20120923_CIN@WAS,3,16,49,WAS,CIN,4,18,55,(1:49) S.Rocca punts 41 yards to CIN 14 Center-J.Snow fair catch by B.Tate.,24,24,2012 20120923_CIN@WAS,3,16,41,CIN,WAS,1,10,86,(1:41) B.Green-Ellis left end to CIN 13 for -1 yards (R.Jackson L.Fletcher).,24,24,2012 20120923_CIN@WAS,3,16,2,CIN,WAS,2,11,87,(1:02) A.Dalton pass incomplete short right to A.Green (R.Kerrigan).,24,24,2012 20120923_CIN@WAS,3,15,58,CIN,WAS,3,11,87,(:58) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 20 for 7 yards (J.Wilson).,24,24,2012 20120923_CIN@WAS,3,15,21,CIN,WAS,4,4,80,(:21) K.Huber punts 33 yards to WAS 47 Center-C.Harris out of bounds.,24,24,2012 20120923_CIN@WAS,3,15,4,WAS,CIN,1,10,53,(:04) (Shotgun) R.Griffin pass incomplete short middle to A.Robinson.,24,24,2012 20120923_CIN@WAS,4,15,0,WAS,CIN,2,10,53,(15:00) (Shotgun) A.Morris up the middle to WAS 49 for 2 yards (M.Lawson; D.Peko).,24,24,2012 20120923_CIN@WAS,4,14,24,WAS,CIN,3,8,51,(14:24) (Shotgun) R.Griffin left end to CIN 44 for 7 yards (R.Maualuga; N.Clements).,24,24,2012 20120923_CIN@WAS,4,13,41,WAS,CIN,4,1,44,(13:41) S.Rocca punts 44 yards to end zone Center-J.Snow Touchback. Washington challenged the touchback ruling and the play was Upheld. (Timeout #3 at 13:27.),24,24,2012 20120923_CIN@WAS,4,13,27,CIN,WAS,1,10,80,(13:27) A.Dalton pass short right to A.Green to CIN 31 for 11 yards (D.Hall).,24,24,2012 20120923_CIN@WAS,4,12,42,CIN,WAS,1,10,69,(12:42) A.Dalton pass deep right to O.Charles to WAS 44 for 25 yards (L.Fletcher) [R.Kerrigan].,24,24,2012 20120923_CIN@WAS,4,12,4,CIN,WAS,1,10,44,(12:04) A.Dalton pass deep right to A.Green to WAS 13 for 31 yards (D.Hall Mad.Williams). PENALTY on WAS-D.Hall Face Mask (15 Yards) 7 yards enforced at WAS 13.,24,24,2012 20120923_CIN@WAS,4,11,35,CIN,WAS,1,6,6,(11:35) (Shotgun) A.Dalton pass incomplete short middle to B.Leonard.,24,24,2012 20120923_CIN@WAS,4,11,31,CIN,WAS,2,6,6,(11:31) (Shotgun) A.Dalton pass short right to J.Gresham for 6 yards TOUCHDOWN.,24,24,2012 20120923_CIN@WAS,4,11,31,CIN,WAS,,,6,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,24,24,2012 20120923_CIN@WAS,4,11,31,CIN,WAS,,,6,M.Nugent kicks 71 yards from CIN 35 to WAS -6. B.Banks to WAS 20 for 26 yards (V.Rey).,31,24,2012 20120923_CIN@WAS,4,11,19,WAS,CIN,1,10,80,(11:19) (Shotgun) R.Griffin pass short right to B.Banks pushed ob at WAS 25 for 5 yards (N.Clements).,24,31,2012 20120923_CIN@WAS,4,10,51,WAS,CIN,2,5,75,(10:51) (Shotgun) B.Banks right end pushed ob at WAS 33 for 8 yards (N.Clements).,24,31,2012 20120923_CIN@WAS,4,10,19,WAS,CIN,1,10,67,(10:19) A.Morris right end to WAS 37 for 4 yards (N.Clements).,24,31,2012 20120923_CIN@WAS,4,9,36,WAS,CIN,2,6,63,(9:36) (Shotgun) R.Griffin pass incomplete deep middle to L.Hankerson [M.Johnson].,24,31,2012 20120923_CIN@WAS,4,9,28,WAS,CIN,3,6,63,(9:28) (Shotgun) R.Griffin pass incomplete short middle to A.Robinson (M.Johnson R.Muckelroy).,24,31,2012 20120923_CIN@WAS,4,9,22,WAS,CIN,4,6,63,(9:22) S.Rocca punts 49 yards to CIN 14 Center-J.Snow. B.Tate to CIN 28 for 14 yards (D.Young).,24,31,2012 20120923_CIN@WAS,4,9,9,CIN,WAS,1,10,72,(9:09) A.Dalton pass short middle to A.Green to CIN 30 for 2 yards (L.Fletcher).,31,24,2012 20120923_CIN@WAS,4,8,34,CIN,WAS,2,8,70,(8:34) B.Green-Ellis left end to CIN 39 for 9 yards (P.Riley Mad.Williams).,31,24,2012 20120923_CIN@WAS,4,7,58,CIN,WAS,1,10,61,(7:58) B.Green-Ellis right end to CIN 41 for 2 yards (R.Kerrigan).,31,24,2012 20120923_CIN@WAS,4,7,17,CIN,WAS,2,8,59,(7:17) (Shotgun) A.Dalton pass deep middle to A.Hawkins for 59 yards TOUCHDOWN. Penalty on WAS-J.Wilson Defensive Holding declined.,31,24,2012 20120923_CIN@WAS,4,7,17,CIN,WAS,,,59,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,31,24,2012 20120923_CIN@WAS,4,7,8,WAS,CIN,1,10,90,(7:08) R.Griffin pass incomplete short left to E.Royster [R.Geathers]. WAS-E.Royster was injured during the play. Royster's return was questionable,24,38,2012 20120923_CIN@WAS,4,7,2,WAS,CIN,2,10,90,(7:02) (Shotgun) R.Griffin pass short right to F.Davis pushed ob at WAS 26 for 16 yards (R.Nelson) [C.Dunlap].,24,38,2012 20120923_CIN@WAS,4,6,45,WAS,CIN,1,10,74,(6:45) (Shotgun) R.Griffin pass short left to R.Helu pushed ob at WAS 32 for 6 yards (V.Rey).,24,38,2012 20120923_CIN@WAS,4,6,23,WAS,CIN,2,4,68,(6:23) (Shotgun) R.Griffin pass short left to F.Davis to WAS 43 for 11 yards (A.Jones). PENALTY on WAS-J.Black Offensive Holding 10 yards enforced at WAS 32 - No Play.,24,38,2012 20120923_CIN@WAS,4,6,4,WAS,CIN,2,14,78,(6:04) (Shotgun) R.Griffin pass deep middle to F.Davis pushed ob at CIN 49 for 29 yards (A.Jones).,24,38,2012 20120923_CIN@WAS,4,5,46,WAS,CIN,1,10,49,(5:46) (Shotgun) R.Griffin scrambles left end to CIN 44 for 5 yards (R.Nelson W.Gilberry).,24,38,2012 20120923_CIN@WAS,4,5,21,WAS,CIN,2,5,44,(5:21) (No Huddle Shotgun) R.Griffin pass short left to L.Hankerson pushed ob at CIN 34 for 10 yards (J.Allen).,24,38,2012 20120923_CIN@WAS,4,5,0,WAS,CIN,1,10,34,(5:00) (Shotgun) R.Griffin pass short right to R.Helu to CIN 29 for 5 yards (N.Clements R.Maualuga).,24,38,2012 20120923_CIN@WAS,4,4,34,WAS,CIN,2,5,29,(4:34) (No Huddle Shotgun) R.Griffin pass short middle to F.Davis to CIN 22 for 7 yards (N.Clements; R.Maualuga).,24,38,2012 20120923_CIN@WAS,4,4,11,WAS,CIN,1,10,22,(4:11) (No Huddle Shotgun) R.Griffin pass incomplete short middle to S.Moss.,24,38,2012 20120923_CIN@WAS,4,4,8,WAS,CIN,2,10,22,(4:08) (Shotgun) R.Griffin pass short middle to L.Hankerson ran ob at CIN 11 for 11 yards [M.Johnson].,24,38,2012 20120923_CIN@WAS,4,4,0,WAS,CIN,1,10,11,(4:00) (Shotgun) R.Griffin pass short middle to R.Helu to CIN 2 for 9 yards (R.Nelson; C.Dunlap).,24,38,2012 20120923_CIN@WAS,4,3,38,WAS,CIN,2,1,2,(3:38) (No Huddle Shotgun) R.Griffin up the middle for 2 yards TOUCHDOWN.,24,38,2012 20120923_CIN@WAS,4,3,38,WAS,CIN,,,2,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,24,38,2012 20120923_CIN@WAS,4,3,38,WAS,CIN,,,2,B.Cundiff kicks onside 9 yards from WAS 35 to WAS 44 downed by WAS-N.Paul.,31,38,2012 20120923_CIN@WAS,4,3,30,CIN,WAS,1,10,56,(3:30) B.Green-Ellis up the middle to WAS 40 for 16 yards (Mad.Williams; P.Riley).,38,31,2012 20120923_CIN@WAS,4,2,50,CIN,WAS,1,10,40,(2:50) D.Roland reported in as eligible. B.Green-Ellis up the middle to WAS 38 for 2 yards (L.Fletcher; P.Riley).,38,31,2012 20120923_CIN@WAS,4,2,7,CIN,WAS,3,4,38,(2:07) B.Green-Ellis right end to WAS 36 for 2 yards (B.Cofield; P.Riley).,38,31,2012 20120923_CIN@WAS,4,1,57,CIN,WAS,4,2,36,(1:57) (Shotgun) PENALTY on CIN-A.Dalton Delay of Game 5 yards enforced at WAS 36 - No Play.,38,31,2012 20120923_CIN@WAS,4,1,57,CIN,WAS,4,7,41,(1:57) K.Huber punts 39 yards to WAS 2 Center-C.Harris downed by CIN-A.Hawkins.,38,31,2012 20120923_CIN@WAS,4,1,47,WAS,CIN,1,10,98,(1:47) (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 13 for 11 yards (R.Maualuga).,31,38,2012 20120923_CIN@WAS,4,1,23,WAS,CIN,1,10,87,(1:23) (No Huddle Shotgun) R.Griffin pass short middle to L.Hankerson to WAS 25 for 12 yards (R.Maualuga). WAS-L.Hankerson was injured during the play.,31,38,2012 20120923_CIN@WAS,4,1,2,WAS,CIN,1,10,75,(1:02) (Shotgun) R.Griffin scrambles pushed ob at WAS 35 for 10 yards (T.Newman). PENALTY on CIN-T.Newman Personal Foul 15 yards enforced at WAS 35.,31,38,2012 20120923_CIN@WAS,4,0,51,WAS,CIN,1,10,50,(:51) R.Griffin pass short right to A.Robinson to CIN 38 for 12 yards (T.Newman).,31,38,2012 20120923_CIN@WAS,4,0,36,WAS,CIN,1,10,38,(:36) (No Huddle Shotgun) R.Griffin scrambles left end pushed ob at CIN 19 for 19 yards (R.Maualuga).,31,38,2012 20120923_CIN@WAS,4,0,29,WAS,CIN,1,10,19,(:29) (Shotgun) R.Griffin sacked at CIN 34 for -15 yards (G.Atkins).,31,38,2012 20120923_CIN@WAS,4,0,7,WAS,CIN,2,25,34,(:07) R.Griffin pass incomplete. Spiked,31,38,2012 20120923_CIN@WAS,4,0,7,WAS,CIN,3,25,34,(:07) (Shotgun) PENALTY on WAS-F.Davis False Start 5 yards enforced at CIN 34 - No Play. PENALTY on WAS Unsportsmanlike Conduct 20 yards enforced between downs.,31,38,2012 20120923_CIN@WAS,4,0,6,WAS,CIN,3,45,54,(:06) (Shotgun) R.Griffin pass incomplete deep right to J.Morgan.,31,38,2012 20120923_CIN@WAS,4,0,6,WAS,CIN,,,54,                      ,31,38,2012 20120923_PHI@ARI,1,0,0,ARI,PHI,,,54,J.Feely kicks 64 yards from ARZ 35 to PHI 1. B.Boykin to PHI 24 for 23 yards (M.Adams).,0,0,2012 20120923_PHI@ARI,1,59,54,PHI,ARI,1,10,76,(14:54) M.Vick left end pushed ob at PHI 27 for 3 yards (D.Washington).,0,0,2012 20120923_PHI@ARI,1,59,30,PHI,ARI,2,7,73,(14:30) M.Vick pass incomplete deep left to D.Johnson [D.Washington].,0,0,2012 20120923_PHI@ARI,1,59,21,PHI,ARI,3,7,73,(14:21) (Shotgun) M.Vick pass incomplete short left to D.Johnson (K.Rhodes).,0,0,2012 20120923_PHI@ARI,1,59,16,PHI,ARI,4,7,73,(14:16) C.Henry punts 52 yards to ARZ 21 Center-J.Dorenbos. P.Peterson ran ob at ARZ 35 for 14 yards (N.Allen).,0,0,2012 20120923_PHI@ARI,1,59,5,ARI,PHI,1,10,65,(14:05) K.Kolb pass short left to A.Roberts to ARZ 49 for 14 yards (N.Asomugha).,0,0,2012 20120923_PHI@ARI,1,58,25,ARI,PHI,1,10,51,(13:25) (Shotgun) K.Kolb pass short right to L.Fitzgerald to PHI 35 for 16 yards (D.Ryans).,0,0,2012 20120923_PHI@ARI,1,57,46,ARI,PHI,1,10,35,(12:46) C.Wells left tackle to PHI 33 for 2 yards (T.Cole).,0,0,2012 20120923_PHI@ARI,1,57,5,ARI,PHI,2,8,33,(12:05) (Shotgun) K.Kolb pass short left to R.Williams pushed ob at PHI 21 for 12 yards (M.Kendricks).,0,0,2012 20120923_PHI@ARI,1,56,52,ARI,PHI,1,10,21,(11:52) C.Wells left tackle to PHI 17 for 4 yards (D.Tapp).,0,0,2012 20120923_PHI@ARI,1,56,14,ARI,PHI,2,6,17,(11:14) (Shotgun) P.Peterson left end pushed ob at PHI 21 for -4 yards (N.Asomugha).,0,0,2012 20120923_PHI@ARI,1,55,43,ARI,PHI,3,10,21,(10:43) (Shotgun) K.Kolb sacked at PHI 29 for -8 yards (sack split by T.Cole and J.Babin).,0,0,2012 20120923_PHI@ARI,1,55,43,ARI,PHI,4,18,29,(10:43) J.Feely 47 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 20120923_PHI@ARI,1,55,43,ARI,PHI,,,29,J.Feely kicks 67 yards from ARZ 35 to PHI -2. B.Boykin ran ob at PHI 22 for 24 yards (J.Sanders).,3,0,2012 20120923_PHI@ARI,1,55,13,PHI,ARI,1,10,78,(10:13) L.McCoy right tackle to PHI 22 for no gain (D.Williams).,0,3,2012 20120923_PHI@ARI,1,54,36,PHI,ARI,2,10,78,(9:36) M.Vick pass short left to L.McCoy to PHI 26 for 4 yards (S.Acho).,0,3,2012 20120923_PHI@ARI,1,53,45,PHI,ARI,3,6,74,(8:45) (Shotgun) M.Vick pass deep right to D.Johnson to PHI 46 for 20 yards (J.Sanders) [C.Campbell].,0,3,2012 20120923_PHI@ARI,1,53,5,PHI,ARI,1,10,54,(8:05) M.Vick sacked at PHI 35 for -11 yards (O.Schofield).,0,3,2012 20120923_PHI@ARI,1,52,32,PHI,ARI,2,21,65,(7:32) B.Brown left tackle to PHI 38 for 3 yards (P.Lenon S.Acho).,0,3,2012 20120923_PHI@ARI,1,51,51,PHI,ARI,3,18,62,(6:51) (Shotgun) M.Vick pass incomplete short left to M.Gilyard (C.Campbell).,0,3,2012 20120923_PHI@ARI,1,51,51,PHI,ARI,4,18,62,(6:51) C.Henry punts 54 yards to ARZ 8 Center-J.Dorenbos. P.Peterson to ARZ 18 for 10 yards (P.Hunt).,0,3,2012 20120923_PHI@ARI,1,51,33,ARI,PHI,1,10,82,(6:33) (Shotgun) R.Williams up the middle to ARZ 17 for -1 yards (D.Landri).,3,0,2012 20120923_PHI@ARI,1,50,50,ARI,PHI,2,11,83,(5:50) K.Kolb pass incomplete short right to A.Roberts (D.Rodgers-Cromartie).,3,0,2012 20120923_PHI@ARI,1,50,44,ARI,PHI,3,11,83,(5:44) (Shotgun) PENALTY on ARZ Defensive Delay of Game 5 yards enforced at ARZ 17 - No Play.,3,0,2012 20120923_PHI@ARI,1,50,41,ARI,PHI,3,16,88,(5:41) K.Kolb pass short right to L.Fitzgerald to ARZ 16 for 4 yards (B.Boykin) [J.Babin].,3,0,2012 20120923_PHI@ARI,1,50,2,ARI,PHI,4,12,84,(5:02) D.Zastudil punts 58 yards to PHI 26 Center-M.Leach. D.Johnson to PHI 38 for 12 yards (A.Sherman). FUMBLES (A.Sherman) RECOVERED by ARZ-M.Leach at PHI 38. M.Leach to PHI 38 for no gain (D.Johnson).,3,0,2012 20120923_PHI@ARI,1,49,36,ARI,PHI,1,10,38,(4:36) C.Wells right tackle to PHI 36 for 2 yards (J.Babin K.Coleman).,3,0,2012 20120923_PHI@ARI,1,49,6,ARI,PHI,2,8,36,(4:06) (Shotgun) K.Kolb pass incomplete deep left to A.Roberts.,3,0,2012 20120923_PHI@ARI,1,49,1,ARI,PHI,3,8,36,(4:01) (Shotgun) K.Kolb pass short left to A.Roberts to PHI 24 for 12 yards (B.Boykin).,3,0,2012 20120923_PHI@ARI,1,47,49,ARI,PHI,1,10,24,(2:49) C.Wells left tackle to PHI 24 for no gain (D.Tapp C.Thornton).,3,0,2012 20120923_PHI@ARI,1,47,39,ARI,PHI,2,10,24,(2:39) K.Kolb pass short right to L.Fitzgerald to PHI 13 for 11 yards (K.Coleman).,3,0,2012 20120923_PHI@ARI,1,47,1,ARI,PHI,1,10,13,(2:01) C.Wells up the middle to PHI 8 for 5 yards (D.Ryans).,3,0,2012 20120923_PHI@ARI,1,46,15,ARI,PHI,2,5,8,(1:15) (Shotgun) K.Kolb pass incomplete short left to E.Doucet.,3,0,2012 20120923_PHI@ARI,1,46,10,ARI,PHI,3,5,8,(1:10) (Shotgun) K.Kolb pass short right to M.Floyd for 8 yards TOUCHDOWN.,3,0,2012 20120923_PHI@ARI,1,46,10,ARI,PHI,,,8,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,3,0,2012 20120923_PHI@ARI,1,46,10,ARI,PHI,,,8,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,10,0,2012 20120923_PHI@ARI,1,46,4,PHI,ARI,1,10,80,(1:04) L.McCoy left tackle to PHI 28 for 8 yards (D.Dockett).,0,10,2012 20120923_PHI@ARI,1,45,28,PHI,ARI,2,2,72,(:28) (Shotgun) M.Vick pass deep left to B.Celek to ARZ 38 for 34 yards (R.Johnson).,0,10,2012 20120923_PHI@ARI,2,45,0,PHI,ARI,1,10,38,(15:00) PENALTY on PHI-D.Bell False Start 5 yards enforced at ARZ 38 - No Play.,0,10,2012 20120923_PHI@ARI,2,45,0,PHI,ARI,1,15,43,(15:00) L.McCoy up the middle to ARZ 36 for 7 yards (W.Gay; O.Schofield).,0,10,2012 20120923_PHI@ARI,2,44,30,PHI,ARI,2,8,36,(14:30) M.Vick right end to ARZ 35 for 1 yard (S.Acho). Arizona challenged the fumble ruling and the play was REVERSED. M.Vick scrambles right end to ARZ 35 for 1 yard (S.Acho). FUMBLES (S.Acho) RECOVERED by ARZ-D.Williams at ARZ 35. D.Williams to ARZ 35 for no gain (D.Reynolds).,0,10,2012 20120923_PHI@ARI,2,44,22,ARI,PHI,1,10,65,(14:22) R.Williams right tackle to ARZ 39 for 4 yards (D.Ryans N.Allen).,10,0,2012 20120923_PHI@ARI,2,43,48,ARI,PHI,2,7,61,(13:48) R.Williams right tackle to ARZ 43 for 4 yards (K.Coleman).,10,0,2012 20120923_PHI@ARI,2,43,7,ARI,PHI,3,2,57,(13:07) K.Kolb pass short right to R.Housler to PHI 46 for 11 yards (M.Kendricks; K.Coleman).,10,0,2012 20120923_PHI@ARI,2,42,22,ARI,PHI,1,10,46,(12:22) R.Williams right tackle to PHI 37 for 9 yards (N.Allen). PENALTY on ARZ-A.Sherman Unsportsmanlike Conduct 15 yards enforced at PHI 37.,10,0,2012 20120923_PHI@ARI,2,41,45,ARI,PHI,2,16,52,(11:45) (Shotgun) K.Kolb sacked at ARZ 40 for -8 yards (D.Tapp). PENALTY on ARZ-D.Batiste Offensive Holding 10 yards enforced at ARZ 48 - No Play.,10,0,2012 20120923_PHI@ARI,2,41,17,ARI,PHI,2,26,62,(11:17) (Shotgun) K.Kolb pass incomplete short right to M.Floyd.,10,0,2012 20120923_PHI@ARI,2,41,12,ARI,PHI,3,26,62,(11:12) (Shotgun) K.Kolb pass short left to L.Fitzgerald to PHI 40 for 22 yards (D.Rodgers-Cromartie).,10,0,2012 20120923_PHI@ARI,2,40,23,ARI,PHI,4,4,40,(10:23) D.Zastudil punts 31 yards to PHI 9 Center-M.Leach fair catch by D.Johnson.,10,0,2012 20120923_PHI@ARI,2,40,14,PHI,ARI,1,10,91,(10:14) M.Vick pass incomplete deep left to D.Jackson.,0,10,2012 20120923_PHI@ARI,2,40,6,PHI,ARI,2,10,91,(10:06) (Shotgun) M.Vick sacked at PHI 6 for -3 yards (D.Washington).,0,10,2012 20120923_PHI@ARI,2,39,25,PHI,ARI,3,13,94,(9:25) (Shotgun) M.Vick pass incomplete deep right to D.Jackson.,0,10,2012 20120923_PHI@ARI,2,39,18,PHI,ARI,4,13,94,(9:18) C.Henry punts 49 yards to ARZ 45 impetus ends at ARZ 49 Center-J.Dorenbos. P.Peterson to ARZ 45 for no gain (C.Anderson).,0,10,2012 20120923_PHI@ARI,2,39,2,ARI,PHI,1,10,55,(9:02) K.Kolb pass incomplete short right to A.Roberts (D.Rodgers-Cromartie).,10,0,2012 20120923_PHI@ARI,2,39,2,ARI,PHI,2,10,55,(9:02) C.Wells up the middle to ARZ 48 for 3 yards (D.Landri).,10,0,2012 20120923_PHI@ARI,2,38,19,ARI,PHI,3,7,52,(8:19) (Shotgun) K.Kolb pass short middle to J.King to PHI 37 for 15 yards (N.Allen).,10,0,2012 20120923_PHI@ARI,2,37,40,ARI,PHI,1,10,37,(7:40) K.Kolb pass deep left to L.Fitzgerald for 37 yards TOUCHDOWN.,10,0,2012 20120923_PHI@ARI,2,37,40,ARI,PHI,,,37,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,10,0,2012 20120923_PHI@ARI,2,37,40,ARI,PHI,,,37,J.Feely kicks 59 yards from ARZ 35 to PHI 6. B.Boykin to PHI 25 for 19 yards (J.Feely).,17,0,2012 20120923_PHI@ARI,2,37,22,PHI,ARI,1,10,75,(7:22) (Shotgun) M.Vick scrambles left end to PHI 30 for 5 yards (C.Campbell). PENALTY on PHI-D.Bell Offensive Holding 10 yards enforced at PHI 25 - No Play.,0,17,2012 20120923_PHI@ARI,2,37,3,PHI,ARI,1,20,85,(7:03) (Shotgun) M.Vick pass incomplete short left to B.Celek.,0,17,2012 20120923_PHI@ARI,2,36,58,PHI,ARI,2,20,85,(6:58) (Shotgun) M.Vick pass incomplete deep left to B.Celek.,0,17,2012 20120923_PHI@ARI,2,36,52,PHI,ARI,3,20,85,(6:52) L.McCoy right tackle to PHI 15 for no gain (Q.Groves).,0,17,2012 20120923_PHI@ARI,2,36,6,PHI,ARI,4,20,85,(6:06) C.Henry punts 62 yards to ARZ 23 Center-J.Dorenbos. P.Peterson ran ob at ARZ 40 for 17 yards (S.Havili).,0,17,2012 20120923_PHI@ARI,2,35,54,ARI,PHI,1,10,60,(5:54) C.Wells up the middle to ARZ 42 for 2 yards (M.Kendricks).,17,0,2012 20120923_PHI@ARI,2,35,14,ARI,PHI,2,8,58,(5:14) (Shotgun) K.Kolb pass short right to L.Fitzgerald pushed ob at PHI 49 for 9 yards (B.Boykin).,17,0,2012 20120923_PHI@ARI,2,34,42,ARI,PHI,1,10,49,(4:42) R.Williams right tackle to PHI 47 for 2 yards (K.Coleman).,17,0,2012 20120923_PHI@ARI,2,33,58,ARI,PHI,2,8,47,(3:58) K.Kolb sacked at ARZ 46 for -7 yards (sack split by B.Graham and D.Tapp).,17,0,2012 20120923_PHI@ARI,2,33,19,ARI,PHI,3,15,54,(3:19) (Shotgun) K.Kolb pass short right to L.Fitzgerald to PHI 48 for 6 yards (D.Rodgers-Cromartie).,17,0,2012 20120923_PHI@ARI,2,32,34,ARI,PHI,4,9,48,(2:34) D.Zastudil punts 48 yards to end zone Center-M.Leach Touchback.,17,0,2012 20120923_PHI@ARI,2,32,26,PHI,ARI,1,10,80,(2:26) M.Vick pass short middle to L.McCoy to PHI 25 for 5 yards (W.Gay).,0,17,2012 20120923_PHI@ARI,2,32,1,PHI,ARI,2,5,75,(2:01) (Shotgun) M.Vick pass short left to L.McCoy to PHI 24 for -1 yards (W.Gay).,0,17,2012 20120923_PHI@ARI,2,31,53,PHI,ARI,3,6,76,(1:53) (Shotgun) M.Vick pass short left to D.Johnson ran ob at 50 for 26 yards (J.Fleming).,0,17,2012 20120923_PHI@ARI,2,31,44,PHI,ARI,1,10,50,(1:44) M.Vick pass short right to B.Celek to ARZ 48 for 2 yards (P.Lenon).,0,17,2012 20120923_PHI@ARI,2,31,13,PHI,ARI,2,8,48,(1:13) (Shotgun) M.Vick pass short right to J.Avant to ARZ 35 for 13 yards (D.Washington).,0,17,2012 20120923_PHI@ARI,2,30,41,PHI,ARI,1,10,35,(:41) (Shotgun) M.Vick pass incomplete deep right to D.Johnson.,0,17,2012 20120923_PHI@ARI,2,30,35,PHI,ARI,2,10,35,(:35) (Shotgun) M.Vick scrambles up the middle to ARZ 15 for 20 yards (D.Washington).,0,17,2012 20120923_PHI@ARI,2,30,24,PHI,ARI,1,10,15,(:24) M.Vick pass short left to D.Jackson to ARZ 1 for 14 yards (K.Rhodes).,0,17,2012 20120923_PHI@ARI,2,30,16,PHI,ARI,1,1,1,(:16) M.Vick pass incomplete short left to D.Jackson.,0,17,2012 20120923_PHI@ARI,2,30,11,PHI,ARI,2,1,1,(:11) M.Vick pass incomplete short right to D.Jackson [Q.Groves].,0,17,2012 20120923_PHI@ARI,2,30,6,PHI,ARI,3,1,1,(:06) M.Vick sacked at ARZ 7 for -6 yards (K.Rhodes). FUMBLES (K.Rhodes) RECOVERED by ARZ-J.Sanders at ARZ 7. J.Sanders for 93 yards TOUCHDOWN.,0,17,2012 20120923_PHI@ARI,2,30,6,ARI,PHI,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil. PENALTY on ARZ-D.Washington Unsportsmanlike Conduct 15 yards enforced between downs. Enforced on third quarter kickoff.,17,0,2012 20120923_PHI@ARI,3,30,0,PHI,ARI,,,1,A.Henery kicks 76 yards from PHI 20 to ARZ 4. L.Stephens-Howling to ARZ 16 for 12 yards (B.Brown; D.Sims).,6,27,2012 20120923_PHI@ARI,3,29,55,ARI,PHI,1,10,84,(14:55) C.Wells left end to ARZ 16 for no gain (M.Kendricks).,27,6,2012 20120923_PHI@ARI,3,29,13,ARI,PHI,2,10,84,(14:13) K.Kolb pass short left to A.Roberts ran ob at PHI 5 for 79 yards (D.Rodgers-Cromartie). PENALTY on ARZ-L.Fitzgerald Illegal Block Above the Waist 10 yards enforced at ARZ 45.,27,6,2012 20120923_PHI@ARI,3,28,15,ARI,PHI,1,10,65,(13:15) L.Stephens-Howling left tackle to ARZ 30 for -5 yards (D.Ryans).,27,6,2012 20120923_PHI@ARI,3,27,36,ARI,PHI,2,15,70,(12:36) K.Kolb pass incomplete short left to J.King.,27,6,2012 20120923_PHI@ARI,3,27,31,ARI,PHI,3,15,70,(12:31) (Shotgun) K.Kolb scrambles right end to ARZ 44 for 14 yards (J.Babin).,27,6,2012 20120923_PHI@ARI,3,26,43,ARI,PHI,4,1,56,(11:43) D.Zastudil punts 51 yards to PHI 5 Center-M.Leach fair catch by D.Johnson.,27,6,2012 20120923_PHI@ARI,3,26,37,PHI,ARI,1,10,95,(11:37) L.McCoy right tackle to PHI 10 for 5 yards (J.Fleming).,6,27,2012 20120923_PHI@ARI,3,26,7,PHI,ARI,2,5,90,(11:07) M.Vick pass short right to D.Johnson to PHI 17 for 7 yards (W.Gay).,6,27,2012 20120923_PHI@ARI,3,25,20,PHI,ARI,1,10,83,(10:20) M.Vick pass incomplete short right to B.Brown [O.Schofield].,6,27,2012 20120923_PHI@ARI,3,25,17,PHI,ARI,2,10,83,(10:17) L.McCoy up the middle to PHI 21 for 4 yards (O.Schofield; D.Washington).,6,27,2012 20120923_PHI@ARI,3,24,38,PHI,ARI,3,6,79,(9:38) M.Vick pass short left to D.Jackson ran ob at PHI 34 for 13 yards. Penalty on ARZ-W.Gay Defensive Holding declined.,6,27,2012 20120923_PHI@ARI,3,24,17,PHI,ARI,1,10,66,(9:17) (Shotgun) L.McCoy right tackle to PHI 45 for 11 yards (W.Gay; R.Johnson).,6,27,2012 20120923_PHI@ARI,3,23,46,PHI,ARI,1,10,55,(8:46) (No Huddle) L.McCoy up the middle to ARZ 48 for 7 yards (V.Holliday).,6,27,2012 20120923_PHI@ARI,3,23,12,PHI,ARI,2,3,48,(8:12) M.Vick pass short right to J.Avant to ARZ 40 for 8 yards (R.Johnson) [S.Acho].,6,27,2012 20120923_PHI@ARI,3,22,36,PHI,ARI,1,10,40,(7:36) (No Huddle) B.Brown left tackle to ARZ 23 for 17 yards (P.Peterson).,6,27,2012 20120923_PHI@ARI,3,22,4,PHI,ARI,1,10,23,(7:04) (No Huddle) B.Brown right tackle pushed ob at ARZ 22 for 1 yard (O.Schofield).,6,27,2012 20120923_PHI@ARI,3,21,30,PHI,ARI,2,9,22,(6:30) L.McCoy up the middle to ARZ 22 for no gain (K.Rhodes).,6,27,2012 20120923_PHI@ARI,3,20,53,PHI,ARI,3,9,22,(5:53) (Shotgun) M.Vick scrambles up the middle to ARZ 18 for 4 yards (O.Schofield).,6,27,2012 20120923_PHI@ARI,3,20,11,PHI,ARI,4,5,18,(5:11) A.Henery 36 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,6,27,2012 20120923_PHI@ARI,3,20,11,PHI,ARI,,,18,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,3,23,2012 20120923_PHI@ARI,3,20,7,ARI,PHI,1,10,80,(5:07) R.Williams left end pushed ob at ARZ 23 for 3 yards (N.Asomugha).,23,3,2012 20120923_PHI@ARI,3,19,36,ARI,PHI,2,7,77,(4:36) (Shotgun) L.Stephens-Howling up the middle to ARZ 19 for -4 yards (D.Tapp; M.Kendricks).,23,3,2012 20120923_PHI@ARI,3,18,57,ARI,PHI,3,11,81,(3:57) (Shotgun) K.Kolb sacked at ARZ 5 for -14 yards (J.Babin).,23,3,2012 20120923_PHI@ARI,3,18,23,ARI,PHI,4,25,95,(3:23) D.Zastudil punts 50 yards to PHI 45 Center-M.Leach fair catch by D.Johnson.,23,3,2012 20120923_PHI@ARI,3,18,14,PHI,ARI,1,10,55,(3:14) M.Vick pass short left to D.Jackson to ARZ 39 for 16 yards (K.Rhodes).,3,23,2012 20120923_PHI@ARI,3,17,37,PHI,ARI,1,10,39,(2:37) (Shotgun) M.Vick sacked at ARZ 42 for -3 yards (Q.Groves).,3,23,2012 20120923_PHI@ARI,3,17,0,PHI,ARI,2,13,42,(2:00) (No Huddle Shotgun) M.Vick pass incomplete short middle to J.Avant.,3,23,2012 20120923_PHI@ARI,3,17,0,PHI,ARI,3,13,42,(2:00) M.Vick pass short right to D.Johnson to ARZ 27 for 15 yards (J.Fleming).,3,23,2012 20120923_PHI@ARI,3,16,29,PHI,ARI,1,10,27,(1:29) M.Vick sacked at ARZ 39 for -12 yards (D.Washington).,3,23,2012 20120923_PHI@ARI,3,15,55,PHI,ARI,2,22,39,(:55) (Shotgun) M.Vick pass deep right to J.Avant to ARZ 22 for 17 yards (J.Fleming).,3,23,2012 20120923_PHI@ARI,3,15,14,PHI,ARI,3,5,22,(:14) M.Vick pass incomplete short right to D.Johnson.,3,23,2012 20120923_PHI@ARI,3,15,14,PHI,ARI,4,5,22,(:14) A.Henery 40 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,3,23,2012 20120923_PHI@ARI,3,15,14,PHI,ARI,,,22,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,6,23,2012 20120923_PHI@ARI,3,15,1,ARI,PHI,1,10,80,(:01) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 25 for 5 yards (B.Hughes).,23,6,2012 20120923_PHI@ARI,4,15,0,ARI,PHI,2,5,75,(15:00) (Shotgun) K.Kolb pass short right to L.Fitzgerald to ARZ 29 for 4 yards (K.Coleman).,23,6,2012 20120923_PHI@ARI,4,14,14,ARI,PHI,3,1,71,(14:14) (Shotgun) R.Williams left tackle to ARZ 29 for no gain (D.Tapp M.Kendricks).,23,6,2012 20120923_PHI@ARI,4,13,26,ARI,PHI,4,1,71,(13:26) D.Zastudil punts 45 yards to PHI 26 Center-M.Leach. D.Johnson to PHI 30 for 4 yards (Q.Groves).,23,6,2012 20120923_PHI@ARI,4,13,15,PHI,ARI,1,10,70,(13:15) L.McCoy right end pushed ob at PHI 39 for 9 yards (R.Johnson).,6,23,2012 20120923_PHI@ARI,4,12,53,PHI,ARI,2,1,61,(12:53) L.McCoy left tackle to ARZ 47 for 14 yards (R.Johnson).,6,23,2012 20120923_PHI@ARI,4,12,31,PHI,ARI,1,10,47,(12:31) M.Vick pass incomplete short right to D.Johnson.,6,23,2012 20120923_PHI@ARI,4,12,27,PHI,ARI,2,10,47,(12:27) (Shotgun) B.Brown left tackle to ARZ 40 for 7 yards (O.Schofield). ARZ-D.Dockett was injured during the play. His return is Questionable.,6,23,2012 20120923_PHI@ARI,4,11,54,PHI,ARI,3,3,40,(11:54) M.Vick pass short left to B.Brown to ARZ 32 for 8 yards (G.Toler).,6,23,2012 20120923_PHI@ARI,4,11,24,PHI,ARI,1,10,32,(11:24) L.McCoy right tackle to ARZ 31 for 1 yard (P.Lenon).,6,23,2012 20120923_PHI@ARI,4,10,53,PHI,ARI,2,9,31,(10:53) (Shotgun) M.Vick pass short right to B.Celek to ARZ 29 for 2 yards (D.Washington). Arizona challenged the pass completion ruling and the play was REVERSED. (Shotgun) M.Vick pass incomplete short right to B.Celek.,6,23,2012 20120923_PHI@ARI,4,10,42,PHI,ARI,3,9,31,(10:42) (Shotgun) M.Vick pass incomplete short left to B.Celek [S.Acho]. PENALTY on PHI-M.Vick Intentional Grounding 20 yards enforced at ARZ 31.,6,23,2012 20120923_PHI@ARI,4,10,38,PHI,ARI,4,29,51,(10:38) C.Henry punts 33 yards to ARZ 18 Center-J.Dorenbos. P.Peterson to ARZ 29 for 11 yards (S.Havili).,6,23,2012 20120923_PHI@ARI,4,10,26,ARI,PHI,1,10,71,(10:26) (Shotgun) K.Kolb scrambles right end to ARZ 32 for 3 yards (K.Coleman).,23,6,2012 20120923_PHI@ARI,4,9,41,ARI,PHI,2,7,68,(9:41) K.Kolb pass short right to R.Housler pushed ob at ARZ 39 for 7 yards (B.Rolle).,23,6,2012 20120923_PHI@ARI,4,9,10,ARI,PHI,1,10,61,(9:10) L.Stephens-Howling up the middle to ARZ 37 for -2 yards (B.Graham).,23,6,2012 20120923_PHI@ARI,4,8,25,ARI,PHI,2,12,63,(8:25) (Shotgun) K.Kolb pass incomplete short left to R.Williams (K.Coleman).,23,6,2012 20120923_PHI@ARI,4,8,25,ARI,PHI,3,12,63,(8:25) (Shotgun) PENALTY on ARZ-K.Kolb False Start 5 yards enforced at ARZ 37 - No Play.,23,6,2012 20120923_PHI@ARI,4,8,21,ARI,PHI,3,17,68,(8:21) (Shotgun) R.Williams up the middle ran ob at PHI 43 for 25 yards (D.Ryans).,23,6,2012 20120923_PHI@ARI,4,7,46,ARI,PHI,1,10,43,(7:46) R.Williams up the middle to PHI 44 for -1 yards (K.Coleman). PENALTY on PHI-D.Rodgers-Cromartie Unnecessary Roughness 15 yards enforced at PHI 44.,23,6,2012 20120923_PHI@ARI,4,7,15,ARI,PHI,1,10,29,(7:15) (Shotgun) R.Williams up the middle to PHI 22 for 7 yards (D.Ryans).,23,6,2012 20120923_PHI@ARI,4,6,29,ARI,PHI,2,3,22,(6:29) (Shotgun) R.Williams left end to PHI 22 for no gain (P.Hunt).,23,6,2012 20120923_PHI@ARI,4,5,44,ARI,PHI,3,3,22,(5:44) R.Williams up the middle to PHI 11 for 11 yards (K.Coleman).,23,6,2012 20120923_PHI@ARI,4,4,58,ARI,PHI,1,10,11,(4:58) L.Stephens-Howling left tackle to PHI 6 for 5 yards (D.Tapp).,23,6,2012 20120923_PHI@ARI,4,4,12,ARI,PHI,2,5,6,(4:12) (Shotgun) L.Stephens-Howling right end to PHI 8 for -2 yards (J.Babin).,23,6,2012 20120923_PHI@ARI,4,4,3,ARI,PHI,3,7,8,(4:03) L.Stephens-Howling up the middle to PHI 9 for -1 yards (T.Cole F.Cox).,23,6,2012 20120923_PHI@ARI,4,3,57,ARI,PHI,4,8,9,(3:57) J.Feely 27 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,23,6,2012 20120923_PHI@ARI,4,3,57,ARI,PHI,,,9,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,26,6,2012 20120923_PHI@ARI,4,3,52,PHI,ARI,1,10,80,(3:52) (Shotgun) M.Vick pass short left to D.Johnson to PHI 36 for 16 yards (W.Gay).,6,26,2012 20120923_PHI@ARI,4,3,19,PHI,ARI,1,10,64,(3:19) (No Huddle Shotgun) M.Vick pass incomplete short left to D.Jackson [C.Campbell].,6,26,2012 20120923_PHI@ARI,4,3,17,PHI,ARI,2,10,64,(3:17) (Shotgun) M.Vick pass incomplete deep right to D.Jackson [J.Sanders].,6,26,2012 20120923_PHI@ARI,4,3,12,PHI,ARI,3,10,64,(3:12) (Shotgun) M.Vick pass incomplete short left to D.Johnson [J.Sanders].,6,26,2012 20120923_PHI@ARI,4,3,8,PHI,ARI,4,10,64,(3:08) (Shotgun) M.Vick pass incomplete short right to D.Jackson.,6,26,2012 20120923_PHI@ARI,4,3,5,ARI,PHI,1,10,36,(3:05) R.Williams up the middle to PHI 16 for 20 yards (B.Rolle). ARZ-R.Williams was injured during the play. His return is Questionable.,26,6,2012 20120923_PHI@ARI,4,2,7,ARI,PHI,1,10,16,(2:07) L.Stephens-Howling up the middle to PHI 18 for -2 yards (B.Graham).,26,6,2012 20120923_PHI@ARI,4,2,0,ARI,PHI,2,12,18,(2:00) L.Stephens-Howling up the middle to PHI 21 for -3 yards (B.Graham).,26,6,2012 20120923_PHI@ARI,4,1,18,ARI,PHI,3,15,21,(1:18) K.Kolb kneels to PHI 22 for -1 yards.,26,6,2012 20120923_PHI@ARI,4,2,0,ARI,PHI,4,16,22,(2:00) K.Kolb kneels to PHI 22 for no gain.,26,6,2012 20120923_PHI@ARI,4,0,33,PHI,ARI,1,10,78,(:33) L.McCoy left tackle to PHI 26 for 4 yards (V.Holliday).,6,26,2012 20120923_PHI@ARI,4,0,33,PHI,ARI,,,78,                      ,6,26,2012 20120923_ATL@SD,1,0,0,SD,ATL,,,78,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,0,0,2012 20120923_ATL@SD,1,60,0,ATL,SD,1,10,80,(15:00) M.Ryan pass deep middle to J.Jones to ATL 39 for 19 yards (E.Weddle).,0,0,2012 20120923_ATL@SD,1,59,18,ATL,SD,1,10,61,(14:18) M.Ryan pass short left to T.Gonzalez to ATL 48 for 9 yards (A.Bigby J.Johnson).,0,0,2012 20120923_ATL@SD,1,58,41,ATL,SD,2,1,52,(13:41) M.Turner up the middle to SD 49 for 3 yards (T.Spikes V.Martin).,0,0,2012 20120923_ATL@SD,1,58,3,ATL,SD,1,10,49,(13:03) M.Ryan pass short right to M.Palmer to SD 48 for 1 yard (T.Spikes).,0,0,2012 20120923_ATL@SD,1,57,25,ATL,SD,2,9,48,(12:25) (Shotgun) M.Ryan pass short right to Jz. Rodgers to SD 37 for 11 yards (V.Martin A.Bigby).,0,0,2012 20120923_ATL@SD,1,56,41,ATL,SD,1,10,37,(11:41) Jz. Rodgers up the middle to SD 35 for 2 yards (A.Franklin).,0,0,2012 20120923_ATL@SD,1,55,58,ATL,SD,2,8,35,(10:58) (Shotgun) M.Ryan pass short middle to T.Gonzalez to SD 22 for 13 yards (D.Butler A.Bigby).,0,0,2012 20120923_ATL@SD,1,55,21,ATL,SD,1,10,22,(10:21) M.Ryan pass short left to R.White to SD 8 for 14 yards (A.Cason).,0,0,2012 20120923_ATL@SD,1,54,56,ATL,SD,1,8,8,(9:56) M.Ryan pass incomplete short right.,0,0,2012 20120923_ATL@SD,1,54,49,ATL,SD,2,8,8,(9:49) M.Ryan pass short middle to Jz. Rodgers for 8 yards TOUCHDOWN.,0,0,2012 20120923_ATL@SD,1,54,49,ATL,SD,,,8,(Kick formation) TWO-POINT CONVERSION ATTEMPT. M.Bosher rushes right end. ATTEMPT FAILS.,0,0,2012 20120923_ATL@SD,1,54,49,ATL,SD,,,8,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,6,0,2012 20120923_ATL@SD,1,54,43,SD,ATL,1,10,80,(9:43) R.Mathews up the middle to SD 23 for 3 yards (S.Nicholas A.Dent).,0,6,2012 20120923_ATL@SD,1,54,4,SD,ATL,2,7,77,(9:04) P.Rivers pass short right to R.Mathews pushed ob at SD 33 for 10 yards (W.Moore).,0,6,2012 20120923_ATL@SD,1,53,29,SD,ATL,1,10,67,(8:29) (Shotgun) P.Rivers pass incomplete short right to R.Mathews.,0,6,2012 20120923_ATL@SD,1,53,25,SD,ATL,2,10,67,(8:25) (Shotgun) P.Rivers pass short left to R.Meachem to SD 37 for 4 yards (S.Nicholas).,0,6,2012 20120923_ATL@SD,1,52,38,SD,ATL,3,6,63,(7:38) (Shotgun) P.Rivers pass short left to E.Royal to SD 40 for 3 yards (T.DeCoud).,0,6,2012 20120923_ATL@SD,1,52,8,SD,ATL,4,3,60,(7:08) M.Scifres punts 49 yards to ATL 11 Center-M.Windt. D.Franks to ATL 23 for 12 yards (M.Gilchrist).,0,6,2012 20120923_ATL@SD,1,51,56,ATL,SD,1,10,77,(6:56) M.Ryan pass short right to M.Turner to ATL 24 for 1 yard (D.Butler).,6,0,2012 20120923_ATL@SD,1,51,19,ATL,SD,2,9,76,(6:19) M.Ryan pass short right to R.White pushed ob at ATL 29 for 5 yards (Q.Jammer E.Weddle).,6,0,2012 20120923_ATL@SD,1,50,50,ATL,SD,3,4,71,(5:50) (Shotgun) M.Ryan pass short middle to R.White to ATL 38 for 9 yards (D.Williams A.Bigby). PENALTY on ATL-J.Snelling Illegal Formation 5 yards enforced at ATL 29 - No Play.,6,0,2012 20120923_ATL@SD,1,50,26,ATL,SD,3,9,76,(5:26) (Shotgun) M.Ryan pass incomplete deep left to R.White.,6,0,2012 20120923_ATL@SD,1,50,20,ATL,SD,4,9,76,(5:20) M.Bosher punts 51 yards to SD 25 Center-J.Harris. E.Royal to SD 28 for 3 yards (K.Biermann).,6,0,2012 20120923_ATL@SD,1,50,6,SD,ATL,1,10,72,(5:06) P.Rivers pass incomplete short left to M.Floyd.,0,6,2012 20120923_ATL@SD,1,50,2,SD,ATL,2,10,72,(5:02) P.Rivers pass incomplete short middle to M.Floyd.,0,6,2012 20120923_ATL@SD,1,49,57,SD,ATL,3,10,72,(4:57) (Shotgun) P.Rivers pass incomplete deep left to M.Floyd.,0,6,2012 20120923_ATL@SD,1,49,50,SD,ATL,4,10,72,(4:50) M.Scifres punts 64 yards to ATL 8 Center-M.Windt. D.Franks to ATL 30 for 22 yards (C.Lynch J.Battle).,0,6,2012 20120923_ATL@SD,1,49,37,ATL,SD,1,10,70,(4:37) M.Turner left guard to ATL 31 for 1 yard (V.Martin D.Butler).,6,0,2012 20120923_ATL@SD,1,49,3,ATL,SD,2,9,69,(4:03) (Shotgun) M.Ryan pass incomplete short left to R.White. PENALTY on SD-A.Cason Defensive Holding 5 yards enforced at ATL 31 - No Play.,6,0,2012 20120923_ATL@SD,1,48,58,ATL,SD,1,10,64,(3:58) M.Ryan pass incomplete short middle to T.Gallarda.,6,0,2012 20120923_ATL@SD,1,48,54,ATL,SD,2,10,64,(3:54) M.Turner left tackle to ATL 42 for 6 yards (A.Bigby).,6,0,2012 20120923_ATL@SD,1,48,13,ATL,SD,3,4,58,(3:13) (Shotgun) M.Ryan pass short right to T.Gonzalez to 50 for 8 yards (D.Butler D.Williams).,6,0,2012 20120923_ATL@SD,1,47,35,ATL,SD,1,10,50,(2:35) Jz. Rodgers right tackle to SD 41 for 9 yards (A.Bigby T.Spikes).,6,0,2012 20120923_ATL@SD,1,46,56,ATL,SD,2,1,41,(1:56) M.Ryan pass deep right to R.White for 41 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on ATL-R.White Offensive Pass Interference 10 yards enforced at SD 41 - No Play.,6,0,2012 20120923_ATL@SD,1,46,46,ATL,SD,2,11,51,(1:46) M.Turner up the middle to ATL 48 for -1 yards (D.Butler A.Barnes).,6,0,2012 20120923_ATL@SD,1,46,10,ATL,SD,3,12,52,(1:10) (Shotgun) M.Ryan pass short left to Jz. Rodgers to SD 46 for 6 yards (A.Bigby M.Gilchrist).,6,0,2012 20120923_ATL@SD,1,45,29,ATL,SD,4,6,46,(:29) M.Bosher punts 34 yards to SD 12 Center-J.Harris fair catch by M.Spurlock.,6,0,2012 20120923_ATL@SD,1,45,21,SD,ATL,1,10,88,(:21) R.Mathews right end pushed ob at SD 19 for 7 yards (T.DeCoud).,0,6,2012 20120923_ATL@SD,2,45,0,SD,ATL,2,3,81,(15:00) R.Mathews up the middle to SD 24 for 5 yards (S.Weatherspoon).,0,6,2012 20120923_ATL@SD,2,44,21,SD,ATL,1,10,76,(14:21) (Shotgun) P.Rivers pass deep middle to M.Floyd to SD 40 for 16 yards (D.Robinson).,0,6,2012 20120923_ATL@SD,2,43,38,SD,ATL,1,10,60,(13:38) (Shotgun) P.Rivers pass short right to R.Meachem pushed ob at ATL 46 for 14 yards (A.Samuel).,0,6,2012 20120923_ATL@SD,2,43,17,SD,ATL,1,10,46,(13:17) R.Mathews left end to ATL 45 for 1 yard (J.Abraham A.Dent).,0,6,2012 20120923_ATL@SD,2,42,31,SD,ATL,2,9,45,(12:31) (Shotgun) P.Rivers pass deep left to M.Floyd to ATL 17 for 28 yards (D.Robinson).,0,6,2012 20120923_ATL@SD,2,42,6,SD,ATL,1,10,17,(12:06) R.Mathews up the middle to ATL 14 for 3 yards (A.Dent R.Edwards).,0,6,2012 20120923_ATL@SD,2,41,27,SD,ATL,2,7,14,(11:27) (Shotgun) R.Mathews right end to ATL 7 for 7 yards (S.Nicholas).,0,6,2012 20120923_ATL@SD,2,40,42,SD,ATL,1,7,7,(10:42) R.Mathews up the middle to ATL 4 for 3 yards (S.Weatherspoon). FUMBLES (S.Weatherspoon) RECOVERED by ATL-T.DeCoud at ATL 4. The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,6,2012 20120923_ATL@SD,2,40,31,ATL,SD,1,10,96,(10:31) M.Turner right tackle to ATL 5 for 1 yard (A.Franklin D.Butler).,6,0,2012 20120923_ATL@SD,2,39,51,ATL,SD,2,9,95,(9:51) M.Turner up the middle to ATL 9 for 4 yards (A.Franklin).,6,0,2012 20120923_ATL@SD,2,39,6,ATL,SD,3,5,91,(9:06) (Shotgun) M.Ryan sacked at ATL 1 for -8 yards (A.Barnes). PENALTY on SD-A.Bigby Defensive Holding 5 yards enforced at ATL 9 - No Play.,6,0,2012 20120923_ATL@SD,2,38,48,ATL,SD,1,10,86,(8:48) M.Ryan sacked at ATL 13 for -1 yards (V.Martin).,6,0,2012 20120923_ATL@SD,2,38,8,ATL,SD,2,11,87,(8:08) M.Ryan pass short left to H.Douglas to ATL 23 for 10 yards (A.Cason).,6,0,2012 20120923_ATL@SD,2,37,26,ATL,SD,3,1,77,(7:26) (Shotgun) M.Ryan pass short right to J.Jones to ATL 27 for 4 yards (M.Gilchrist).,6,0,2012 20120923_ATL@SD,2,36,47,ATL,SD,1,10,73,(6:47) M.Ryan pass deep left to J.Jones to SD 44 for 29 yards (A.Cason).,6,0,2012 20120923_ATL@SD,2,36,9,ATL,SD,1,10,44,(6:09) M.Ryan pass incomplete short right to R.White.,6,0,2012 20120923_ATL@SD,2,36,4,ATL,SD,2,10,44,(6:04) M.Turner left end to SD 44 for no gain (M.Ingram).,6,0,2012 20120923_ATL@SD,2,35,26,ATL,SD,3,10,44,(5:26) (Shotgun) M.Ryan pass short middle to R.White to SD 33 for 11 yards (E.Weddle).,6,0,2012 20120923_ATL@SD,2,34,42,ATL,SD,1,10,33,(4:42) (Shotgun) M.Ryan pass incomplete short middle to T.Gonzalez.,6,0,2012 20120923_ATL@SD,2,34,38,ATL,SD,2,10,33,(4:38) M.Ryan pass short right to Jz. Rodgers to SD 27 for 6 yards (D.Butler S.Phillips).,6,0,2012 20120923_ATL@SD,2,33,50,ATL,SD,3,4,27,(3:50) M.Ryan pass short left to R.White to SD 21 for 6 yards (A.Cason).,6,0,2012 20120923_ATL@SD,2,33,13,ATL,SD,1,10,21,(3:13) M.Ryan pass incomplete short left to T.Gonzalez (M.Ingram).,6,0,2012 20120923_ATL@SD,2,33,10,ATL,SD,2,10,21,(3:10) (Shotgun) M.Ryan pass incomplete short left to J.Jones (A.Cason).,6,0,2012 20120923_ATL@SD,2,33,6,ATL,SD,3,10,21,(3:06) (Shotgun) M.Ryan pass short middle to J.Snelling to SD 9 for 12 yards (C.Lynch).,6,0,2012 20120923_ATL@SD,2,32,42,ATL,SD,1,9,9,(2:42) (Shotgun) Jz. Rodgers right guard to SD 7 for 2 yards (T.Spikes C.Thomas).,6,0,2012 20120923_ATL@SD,2,32,37,ATL,SD,2,7,7,(2:37) (Shotgun) M.Ryan pass short middle to T.Gonzalez for 7 yards TOUCHDOWN.,6,0,2012 20120923_ATL@SD,2,32,37,ATL,SD,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,6,0,2012 20120923_ATL@SD,2,32,37,ATL,SD,,,7,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,13,0,2012 20120923_ATL@SD,2,32,32,SD,ATL,1,10,80,(2:32) (Shotgun) P.Rivers pass short right to R.Mathews to SD 25 for 5 yards (A.Samuel S.Nicholas).,0,13,2012 20120923_ATL@SD,2,32,4,SD,ATL,2,5,75,(2:04) (Shotgun) P.Rivers pass incomplete short right to E.Royal.,0,13,2012 20120923_ATL@SD,2,32,0,SD,ATL,3,5,75,(2:00) (Shotgun) P.Rivers pass incomplete short right to A.Gates (T.DeCoud). The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) P.Rivers pass short right intended for A.Gates INTERCEPTED by T.DeCoud at SD 29. T.DeCoud pushed ob at SD 29 for no gain (A.Gates).,0,13,2012 20120923_ATL@SD,2,31,53,ATL,SD,1,10,29,(1:53) M.Ryan pass short left to T.Gonzalez pushed ob at SD 16 for 13 yards (A.Bigby).,13,0,2012 20120923_ATL@SD,2,31,49,ATL,SD,1,10,16,(1:49) M.Ryan pass short right to J.Jones pushed ob at SD 10 for 6 yards (A.Cason).,13,0,2012 20120923_ATL@SD,2,31,43,ATL,SD,2,4,10,(1:43) M.Turner right end pushed ob at SD 9 for 1 yard (T.Spikes A.Franklin).,13,0,2012 20120923_ATL@SD,2,30,58,ATL,SD,3,3,9,(:58) M.Ryan pass short right to J.Jones for 9 yards TOUCHDOWN.,13,0,2012 20120923_ATL@SD,2,30,58,ATL,SD,,,9,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,13,0,2012 20120923_ATL@SD,2,30,58,ATL,SD,,,9,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,0,2012 20120923_ATL@SD,2,30,54,SD,ATL,1,10,80,(:54) (Shotgun) P.Rivers pass short middle to A.Gates to SD 27 for 7 yards (S.Nicholas).,0,20,2012 20120923_ATL@SD,2,30,34,SD,ATL,2,3,73,(:34) (Shotgun) PENALTY on SD-N.Hardwick False Start 5 yards enforced at SD 27 - No Play.,0,20,2012 20120923_ATL@SD,2,30,15,SD,ATL,2,8,78,(:15) (Shotgun) P.Rivers sacked at SD 13 for -9 yards (J.Abraham).,0,20,2012 20120923_ATL@SD,3,30,0,ATL,SD,,,78,M.Bosher kicks 60 yards from ATL 35 to SD 5. R.Goodman to SD 36 for 31 yards (C.Hope M.Bosher).,20,0,2012 20120923_ATL@SD,3,29,54,SD,ATL,1,10,64,(14:54) (Shotgun) P.Rivers pass incomplete short right to M.Floyd.,0,20,2012 20120923_ATL@SD,3,29,49,SD,ATL,2,10,64,(14:49) (Shotgun) P.Rivers pass short left to R.Meachem pushed ob at SD 42 for 6 yards (D.Robinson).,0,20,2012 20120923_ATL@SD,3,29,25,SD,ATL,3,4,58,(14:25) (Shotgun) E.Royal left end to ATL 48 for 10 yards (T.DeCoud).,0,20,2012 20120923_ATL@SD,3,28,43,SD,ATL,1,10,48,(13:43) P.Rivers pass incomplete deep left to M.Floyd (W.Moore).,0,20,2012 20120923_ATL@SD,3,28,36,SD,ATL,2,10,48,(13:36) P.Rivers pass incomplete short right to R.Meachem.,0,20,2012 20120923_ATL@SD,3,28,31,SD,ATL,3,10,48,(13:31) (Shotgun) P.Rivers pass short middle to A.Gates to ATL 34 for 14 yards (S.Weatherspoon).,0,20,2012 20120923_ATL@SD,3,27,50,SD,ATL,1,10,34,(12:50) P.Rivers scrambles right end ran ob at ATL 31 for 3 yards (V.Walker).,0,20,2012 20120923_ATL@SD,3,27,18,SD,ATL,2,7,31,(12:18) (Shotgun) P.Rivers pass incomplete short right to R.Mathews [K.Biermann].,0,20,2012 20120923_ATL@SD,3,27,13,SD,ATL,3,7,31,(12:13) (Shotgun) P.Rivers pass short left to M.Floyd to ATL 23 for 8 yards (D.Franks D.Robinson).,0,20,2012 20120923_ATL@SD,3,26,29,SD,ATL,1,10,23,(11:29) (Shotgun) P.Rivers pass incomplete deep left to A.Gates (T.DeCoud).,0,20,2012 20120923_ATL@SD,3,26,23,SD,ATL,2,10,23,(11:23) (Shotgun) P.Rivers pass incomplete short left to A.Gates.,0,20,2012 20120923_ATL@SD,3,26,19,SD,ATL,3,10,23,(11:19) (Shotgun) P.Rivers pass incomplete deep left to M.Floyd [J.Abraham].,0,20,2012 20120923_ATL@SD,3,26,14,SD,ATL,4,10,23,(11:14) N.Kaeding 41 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,0,20,2012 20120923_ATL@SD,3,26,14,SD,ATL,,,23,N.Kaeding kicks 73 yards from SD 35 to ATL -8. Jz. Rodgers Touchback.,3,20,2012 20120923_ATL@SD,3,26,10,ATL,SD,1,10,80,(11:10) M.Ryan pass short right to M.Turner to ATL 20 for no gain (T.Spikes A.Bigby).,20,3,2012 20120923_ATL@SD,3,25,35,ATL,SD,2,10,80,(10:35) (Shotgun) M.Ryan pass incomplete short left to J.Jones (A.Cason).,20,3,2012 20120923_ATL@SD,3,25,30,ATL,SD,3,10,80,(10:30) (Shotgun) M.Ryan pass deep middle to R.White to ATL 39 for 19 yards (Q.Jammer).,20,3,2012 20120923_ATL@SD,3,24,43,ATL,SD,1,10,61,(9:43) M.Turner right end to ATL 43 for 4 yards (T.Spikes E.Weddle).,20,3,2012 20120923_ATL@SD,3,24,9,ATL,SD,2,6,57,(9:09) M.Ryan pass short right to H.Douglas to ATL 46 for 3 yards (M.Gilchrist).,20,3,2012 20120923_ATL@SD,3,23,26,ATL,SD,3,3,54,(8:26) (Shotgun) M.Ryan pass short middle to T.Gonzalez to SD 46 for 8 yards (D.Butler).,20,3,2012 20120923_ATL@SD,3,22,57,ATL,SD,1,10,46,(7:57) M.Ryan pass incomplete deep right to R.White.,20,3,2012 20120923_ATL@SD,3,22,50,ATL,SD,2,10,46,(7:50) Jz. Rodgers up the middle to SD 39 for 7 yards (A.Bigby D.Butler).,20,3,2012 20120923_ATL@SD,3,22,4,ATL,SD,3,3,39,(7:04) (Shotgun) M.Ryan sacked at SD 48 for -9 yards (A.Barnes S.Phillips).,20,3,2012 20120923_ATL@SD,3,21,30,ATL,SD,4,12,48,(6:30) M.Bosher punts 33 yards to SD 15 Center-J.Harris fair catch by M.Spurlock.,20,3,2012 20120923_ATL@SD,3,21,21,SD,ATL,1,10,85,(6:21) (Shotgun) P.Rivers pass short right to R.Mathews to SD 26 for 11 yards (A.Samuel L.Sidbury).,3,20,2012 20120923_ATL@SD,3,20,53,SD,ATL,1,10,74,(5:53) (Shotgun) R.Mathews right end to SD 30 for 4 yards (A.Samuel).,3,20,2012 20120923_ATL@SD,3,20,17,SD,ATL,2,6,70,(5:17) (Shotgun) P.Rivers pass short left to R.Meachem to SD 49 for 19 yards (W.Moore).,3,20,2012 20120923_ATL@SD,3,19,34,SD,ATL,1,10,51,(4:34) (Shotgun) P.Rivers pass short right to R.McMichael to ATL 46 for 5 yards (D.Franks).,3,20,2012 20120923_ATL@SD,3,18,57,SD,ATL,2,5,46,(3:57) (Shotgun) R.Mathews up the middle to ATL 40 for 6 yards (V.Walker).,3,20,2012 20120923_ATL@SD,3,18,24,SD,ATL,1,10,40,(3:24) (Shotgun) P.Rivers pass short left to R.Mathews to ATL 36 for 4 yards (D.Franks).,3,20,2012 20120923_ATL@SD,3,17,40,SD,ATL,2,6,36,(2:40) (Shotgun) P.Rivers pass short middle intended for A.Gates INTERCEPTED by T.DeCoud at ATL 21. T.DeCoud to ATL 19 for -2 yards (C.Brinkley).,3,20,2012 20120923_ATL@SD,3,17,32,ATL,SD,1,10,81,(2:32) M.Ryan pass short left to Jz. Rodgers to ATL 23 for 4 yards (A.Bigby).,20,3,2012 20120923_ATL@SD,3,16,48,ATL,SD,2,6,77,(1:48) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 32 for 9 yards (A.Bigby).,20,3,2012 20120923_ATL@SD,3,16,6,ATL,SD,1,10,68,(1:06) M.Turner up the middle to ATL 36 for 4 yards (T.Spikes J.Johnson).,20,3,2012 20120923_ATL@SD,3,15,22,ATL,SD,2,6,64,(:22) M.Ryan pass short middle to T.Gonzalez to SD 49 for 15 yards (T.Spikes A.Bigby).,20,3,2012 20120923_ATL@SD,4,15,0,ATL,SD,1,10,49,(15:00) M.Turner up the middle to SD 24 for 25 yards (A.Bigby).,20,3,2012 20120923_ATL@SD,4,14,19,ATL,SD,1,10,24,(14:19) M.Ryan pass short left to T.Gonzalez pushed ob at SD 15 for 9 yards (A.Bigby).,20,3,2012 20120923_ATL@SD,4,13,51,ATL,SD,2,1,15,(13:51) J.Snelling up the middle to SD 12 for 3 yards (V.Martin M.Ingram).,20,3,2012 20120923_ATL@SD,4,13,8,ATL,SD,1,10,12,(13:08) Jz. Rodgers up the middle to SD 9 for 3 yards (T.Spikes K.Reyes).,20,3,2012 20120923_ATL@SD,4,12,27,ATL,SD,2,7,9,(12:27) M.Ryan pass short left intended for T.Gonzalez INTERCEPTED by A.Cason at SD 0. A.Cason ran ob at SD 3 for 3 yards (T.Gonzalez).,20,3,2012 20120923_ATL@SD,4,12,21,SD,ATL,1,10,97,(12:21) J.Battle up the middle to SD 4 for 1 yard (S.Nicholas V.Walker).,3,20,2012 20120923_ATL@SD,4,11,43,SD,ATL,2,9,96,(11:43) P.Rivers pass short left to A.Gates to SD 5 for 1 yard (D.Robinson).,3,20,2012 20120923_ATL@SD,4,10,57,SD,ATL,3,8,95,(10:57) (Shotgun) PENALTY on SD-M.Floyd False Start 2 yards enforced at SD 5 - No Play.,3,20,2012 20120923_ATL@SD,4,10,38,SD,ATL,3,10,97,(10:38) (Shotgun) P.Rivers pass incomplete short left to R.Mathews.,3,20,2012 20120923_ATL@SD,4,10,34,SD,ATL,4,10,97,(10:34) M.Scifres punts 29 yards to SD 32 Center-M.Windt out of bounds.,3,20,2012 20120923_ATL@SD,4,10,26,ATL,SD,1,10,32,(10:26) M.Turner up the middle to SD 25 for 7 yards (A.Bigby).,20,3,2012 20120923_ATL@SD,4,9,43,ATL,SD,2,3,25,(9:43) M.Turner left end to SD 7 for 18 yards (E.Weddle).,20,3,2012 20120923_ATL@SD,4,8,56,ATL,SD,1,7,7,(8:56) M.Turner right tackle for 7 yards TOUCHDOWN.,20,3,2012 20120923_ATL@SD,4,8,56,ATL,SD,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,3,2012 20120923_ATL@SD,4,8,56,ATL,SD,,,7,M.Bosher kicks 74 yards from ATL 35 to SD -9. R.Goodman Touchback.,27,3,2012 20120923_ATL@SD,4,8,51,SD,ATL,1,10,80,(8:51) (Shotgun) R.Mathews up the middle to SD 25 for 5 yards (S.Weatherspoon W.Moore).,3,27,2012 20120923_ATL@SD,4,8,24,SD,ATL,2,5,75,(8:24) (Shotgun) P.Rivers pass short left to R.Mathews to SD 27 for 2 yards (J.Babineaux).,3,27,2012 20120923_ATL@SD,4,7,43,SD,ATL,3,3,73,(7:43) (Shotgun) P.Rivers pass short right to E.Royal to SD 31 for 4 yards (A.Samuel).,3,27,2012 20120923_ATL@SD,4,7,9,SD,ATL,1,10,69,(7:09) (Shotgun) P.Rivers pass incomplete short middle to R.Meachem.,3,27,2012 20120923_ATL@SD,4,7,5,SD,ATL,2,10,69,(7:05) (Shotgun) P.Rivers pass incomplete deep right to R.Meachem.,3,27,2012 20120923_ATL@SD,4,6,59,SD,ATL,3,10,69,(6:59) (Shotgun) P.Rivers pass short right to C.Brinkley pushed ob at SD 36 for 5 yards (A.Samuel).,3,27,2012 20120923_ATL@SD,4,6,41,SD,ATL,4,5,64,(6:41) M.Scifres punts 64 yards to end zone Center-M.Windt Touchback.,3,27,2012 20120923_ATL@SD,4,6,32,ATL,SD,1,10,80,(6:32) Jz. Rodgers up the middle to ATL 21 for 1 yard (D.Butler J.Johnson).,27,3,2012 20120923_ATL@SD,4,5,46,ATL,SD,2,9,79,(5:46) Jz. Rodgers left tackle to ATL 24 for 3 yards (T.Spikes).,27,3,2012 20120923_ATL@SD,4,5,1,ATL,SD,3,6,76,(5:01) (Shotgun) M.Ryan scrambles right end to ATL 28 for 4 yards (M.Gilchrist).,27,3,2012 20120923_ATL@SD,4,4,20,ATL,SD,4,2,72,(4:20) M.Bosher punts 52 yards to SD 20 Center-J.Harris fair catch by M.Spurlock.,27,3,2012 20120923_ATL@SD,4,4,11,SD,ATL,1,10,80,(4:11) J.Battle right guard to ATL 28 for 52 yards (D.Robinson).,3,27,2012 20120923_ATL@SD,4,3,30,SD,ATL,1,10,28,(3:30) J.Battle right tackle to ATL 26 for 2 yards (K.Biermann V.Walker).,3,27,2012 20120923_ATL@SD,4,2,54,SD,ATL,2,8,26,(2:54) (Shotgun) P.Rivers pass short left to C.Brinkley to ATL 19 for 7 yards (S.Weatherspoon P.Jerry).,3,27,2012 20120923_ATL@SD,4,2,27,SD,ATL,3,1,19,(2:27) (Shotgun) C.Brinkley up the middle to ATL 14 for 5 yards (W.Moore).,3,27,2012 20120923_ATL@SD,4,2,20,SD,ATL,1,10,14,(2:20) (Shotgun) P.Rivers pass short left to D.Rosario to ATL 8 for 6 yards (D.Robinson). Atlanta challenged the fumble ruling and the play was REVERSED. (Shotgun) P.Rivers pass short left to D.Rosario to ATL 8 for 6 yards (W.Moore D.Robinson). FUMBLES (W.Moore) RECOVERED by ATL-W.Moore at ATL 14. W.Moore to ATL 14 for no gain (N.Hardwick).,3,27,2012 20120923_ATL@SD,4,2,11,ATL,SD,1,10,86,(2:11) Jz. Rodgers up the middle to ATL 16 for 2 yards (D.Butler J.Johnson).,27,3,2012 20120923_ATL@SD,4,2,0,ATL,SD,2,8,84,(2:00) Jz. Rodgers right end to ATL 17 for 1 yard (T.Spikes D.Butler).,27,3,2012 20120923_ATL@SD,4,1,13,ATL,SD,3,7,83,(1:13) Jz. Rodgers right guard to ATL 19 for 2 yards (V.Martin T.Spikes).,27,3,2012 20120923_ATL@SD,4,0,27,ATL,SD,4,5,81,(:27) M.Bosher punts 53 yards to SD 28 Center-J.Harris. M.Spurlock to SD 36 for 8 yards (C.Hope S.Nicholas).,27,3,2012 20120923_ATL@SD,4,0,14,SD,ATL,1,10,64,(:14) P.Rivers kneels dead ball declared at SD 35 for -1 yards.,3,27,2012 20120923_ATL@SD,4,0,14,SD,ATL,,,64,                      ,3,27,2012 20120923_HOU@DEN,1,0,0,HOU,DEN,,,64,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,0,0,2012 20120923_HOU@DEN,1,60,0,DEN,HOU,1,10,80,(15:00) W.McGahee up the middle to DEN 35 for 15 yards (G.Quin).,0,0,2012 20120923_HOU@DEN,1,59,23,DEN,HOU,1,10,65,(14:23) (Shotgun) P.Manning pass incomplete short right to W.McGahee (B.Cushing).,0,0,2012 20120923_HOU@DEN,1,59,19,DEN,HOU,2,10,65,(14:19) W.McGahee right guard to DEN 38 for 3 yards (B.Cushing).,0,0,2012 20120923_HOU@DEN,1,58,40,DEN,HOU,3,7,62,(13:40) (Shotgun) P.Manning pass incomplete short middle to J.Tamme.,0,0,2012 20120923_HOU@DEN,1,58,35,DEN,HOU,4,7,62,(13:35) B.Colquitt punts 57 yards to HST 5 Center-A.Brewer. T.Holliday ran ob at HST 5 for no gain.,0,0,2012 20120923_HOU@DEN,1,58,26,HOU,DEN,1,10,94,(13:26) Direction Change. M.Schaub sacked in End Zone for -6 yards SAFETY (E.Dumervil).,0,0,2012 20120923_HOU@DEN,1,58,26,HOU,DEN,,,94,D.Jones kicks 58 yards from HST 20 to DEN 22. J.Leonhard to DEN 40 for 18 yards (J.Nading).,0,2,2012 20120923_HOU@DEN,1,58,14,DEN,HOU,1,10,60,(13:14) P.Manning pass short right to E.Decker pushed ob at DEN 45 for 5 yards (K.Jackson).,2,0,2012 20120923_HOU@DEN,1,57,45,DEN,HOU,2,5,55,(12:45) W.McGahee left tackle to 50 for 5 yards (B.Reed; K.Jackson).,2,0,2012 20120923_HOU@DEN,1,57,2,DEN,HOU,1,10,50,(12:02) (Shotgun) P.Manning pass short right to C.Gronkowski pushed ob at HST 39 for 11 yards (B.Cushing).,2,0,2012 20120923_HOU@DEN,1,56,36,DEN,HOU,1,10,39,(11:36) W.McGahee right tackle to HST 34 for 5 yards (J.Joseph).,2,0,2012 20120923_HOU@DEN,1,55,59,DEN,HOU,2,5,34,(10:59) P.Manning pass incomplete short left to D.Thomas (J.Joseph).,2,0,2012 20120923_HOU@DEN,1,55,53,DEN,HOU,3,5,34,(10:53) (Shotgun) P.Manning pass short middle to J.Tamme to HST 20 for 14 yards (Q.Demps; D.Manning).,2,0,2012 20120923_HOU@DEN,1,55,15,DEN,HOU,1,10,20,(10:15) L.Ball left end to HST 20 for no gain (D.Manning).,2,0,2012 20120923_HOU@DEN,1,54,34,DEN,HOU,2,10,20,(9:34) P.Manning pass incomplete deep left to J.Dreessen.,2,0,2012 20120923_HOU@DEN,1,54,28,DEN,HOU,3,10,20,(9:28) (Shotgun) P.Manning pass short left to W.McGahee to HST 14 for 6 yards (C.Barwin).,2,0,2012 20120923_HOU@DEN,1,53,45,DEN,HOU,4,4,14,(8:45) M.Prater 32 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,2,0,2012 20120923_HOU@DEN,1,53,45,DEN,HOU,,,14,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,5,0,2012 20120923_HOU@DEN,1,53,41,HOU,DEN,1,10,80,(8:41) M.Schaub pass deep middle to K.Walter to HST 38 for 18 yards (M.Adams; T.Porter).,0,5,2012 20120923_HOU@DEN,1,53,5,HOU,DEN,1,10,62,(8:05) A.Foster right end to HST 49 for 11 yards (R.Moore).,0,5,2012 20120923_HOU@DEN,1,52,18,HOU,DEN,1,10,51,(7:18) PENALTY on HST-D.Brown False Start 4 yards enforced at HST 49 - No Play.,0,5,2012 20120923_HOU@DEN,1,51,55,HOU,DEN,1,14,55,(6:55) PENALTY on HST-D.Newton False Start 5 yards enforced at HST 45 - No Play.,0,5,2012 20120923_HOU@DEN,1,51,38,HOU,DEN,1,19,60,(6:38) M.Schaub pass deep middle to A.Johnson for 60 yards TOUCHDOWN.,0,5,2012 20120923_HOU@DEN,1,51,38,HOU,DEN,,,60,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,5,2012 20120923_HOU@DEN,1,51,38,HOU,DEN,,,60,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,7,5,2012 20120923_HOU@DEN,1,51,28,DEN,HOU,1,10,80,(6:28) P.Manning pass deep middle to E.Decker to HST 45 for 35 yards (K.Jackson).,5,7,2012 20120923_HOU@DEN,1,50,49,DEN,HOU,1,10,45,(5:49) W.McGahee up the middle to HST 44 for 1 yard (T.Jamison).,5,7,2012 20120923_HOU@DEN,1,50,9,DEN,HOU,2,9,44,(5:09) (Shotgun) P.Manning pass short left to D.Thomas to HST 40 for 4 yards (J.Joseph).,5,7,2012 20120923_HOU@DEN,1,49,30,DEN,HOU,3,5,40,(4:30) (Shotgun) P.Manning pass incomplete short right to D.Thomas (J.Joseph). PENALTY on HST-B.McCain Defensive Holding 5 yards enforced at HST 40 - No Play.,5,7,2012 20120923_HOU@DEN,1,49,25,DEN,HOU,1,10,35,(4:25) W.McGahee left tackle to HST 34 for 1 yard (J.Watt).,5,7,2012 20120923_HOU@DEN,1,48,52,DEN,HOU,2,9,34,(3:52) (Shotgun) PENALTY on DEN-Z.Beadles False Start 5 yards enforced at HST 34 - No Play.,5,7,2012 20120923_HOU@DEN,1,48,50,DEN,HOU,2,14,39,(3:50) (Shotgun) L.Ball up the middle to HST 37 for 2 yards (E.Mitchell).,5,7,2012 20120923_HOU@DEN,1,48,15,DEN,HOU,3,12,37,(3:15) (Shotgun) P.Manning sacked at HST 42 for -5 yards (sack split by B.Reed and J.Watt). Penalty on DEN-M.Ramirez Offensive Holding declined.,5,7,2012 20120923_HOU@DEN,1,48,10,DEN,HOU,4,17,42,(3:10) B.Colquitt punts 40 yards to HST 2 Center-A.Brewer downed by DEN-O.Bolden.,5,7,2012 20120923_HOU@DEN,1,47,58,HOU,DEN,1,10,97,(2:58) Direction Change. PENALTY on HST-D.Newton False Start 1 yard enforced at HST 3 - No Play.,7,5,2012 20120923_HOU@DEN,1,47,58,HOU,DEN,1,11,98,(2:58) B.Tate up the middle to HST 7 for 5 yards (E.Dumervil).,7,5,2012 20120923_HOU@DEN,1,47,20,HOU,DEN,2,6,93,(2:20) M.Schaub pass short right to O.Daniels to HST 9 for 2 yards (K.Brooking).,7,5,2012 20120923_HOU@DEN,1,46,40,HOU,DEN,3,4,91,(1:40) A.Foster right tackle to HST 17 for 8 yards (C.Harris).,7,5,2012 20120923_HOU@DEN,1,46,0,HOU,DEN,1,10,83,(1:00) A.Foster right tackle pushed ob at HST 39 for 22 yards (M.Adams).,7,5,2012 20120923_HOU@DEN,1,45,29,HOU,DEN,1,10,61,(:29) M.Schaub pass incomplete short left to A.Johnson.,7,5,2012 20120923_HOU@DEN,1,45,24,HOU,DEN,2,10,61,(:24) B.Tate right guard to HST 48 for 9 yards (R.Moore).,7,5,2012 20120923_HOU@DEN,2,45,0,HOU,DEN,3,1,52,(15:00) B.Tate right guard to DEN 48 for 4 yards (D.Wolfe; M.Adams).,7,5,2012 20120923_HOU@DEN,2,44,23,HOU,DEN,1,10,48,(14:23) M.Schaub pass short left to J.Casey to HST 49 for -3 yards (T.Porter).,7,5,2012 20120923_HOU@DEN,2,43,44,HOU,DEN,2,13,51,(13:44) A.Foster right tackle to DEN 49 for 2 yards (V.Miller; J.Mays).,7,5,2012 20120923_HOU@DEN,2,43,2,HOU,DEN,3,11,49,(13:02) (Shotgun) M.Schaub pass short middle to K.Martin to DEN 31 for 18 yards (T.Porter).,7,5,2012 20120923_HOU@DEN,2,42,25,HOU,DEN,1,10,31,(12:25) M.Schaub pass deep middle to G.Graham to DEN 4 for 27 yards (R.Moore) [N.Irving].,7,5,2012 20120923_HOU@DEN,2,41,41,HOU,DEN,1,4,4,(11:41) M.Schaub pass incomplete (E.Dumervil).,7,5,2012 20120923_HOU@DEN,2,41,34,HOU,DEN,2,4,4,(11:34) A.Foster right guard to DEN 3 for 1 yard (D.Wolfe).,7,5,2012 20120923_HOU@DEN,2,40,53,HOU,DEN,3,3,3,(10:53) M.Schaub pass short right to A.Foster for 3 yards TOUCHDOWN.,7,5,2012 20120923_HOU@DEN,2,40,53,HOU,DEN,,,3,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,5,2012 20120923_HOU@DEN,2,40,53,HOU,DEN,,,3,S.Graham kicks 64 yards from HST 35 to DEN 1. O.Bolden to DEN 18 for 17 yards (W.Mercilus).,14,5,2012 20120923_HOU@DEN,2,40,42,DEN,HOU,1,10,82,(10:42) W.McGahee right tackle to DEN 22 for 4 yards (C.Barwin).,5,14,2012 20120923_HOU@DEN,2,40,2,DEN,HOU,2,6,78,(10:02) (Shotgun) P.Manning pass incomplete short middle to J.Tamme (E.Mitchell).,5,14,2012 20120923_HOU@DEN,2,39,57,DEN,HOU,3,6,78,(9:57) (Shotgun) P.Manning pass incomplete deep right to L.Ball.,5,14,2012 20120923_HOU@DEN,2,39,51,DEN,HOU,4,6,78,(9:51) B.Colquitt punts 48 yards to HST 30 Center-A.Brewer. T.Holliday to HST 43 for 13 yards (Q.Carter).,5,14,2012 20120923_HOU@DEN,2,39,40,HOU,DEN,1,10,57,(9:40) A.Foster left guard to HST 48 for 5 yards (R.Moore).,14,5,2012 20120923_HOU@DEN,2,39,3,HOU,DEN,2,5,52,(9:03) M.Schaub pass short middle to K.Walter for 52 yards TOUCHDOWN.,14,5,2012 20120923_HOU@DEN,2,39,3,HOU,DEN,,,52,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,14,5,2012 20120923_HOU@DEN,2,39,3,HOU,DEN,,,52,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,21,5,2012 20120923_HOU@DEN,2,38,54,DEN,HOU,1,10,80,(8:54) (Shotgun) W.McGahee up the middle to DEN 21 for 1 yard (A.Smith).,5,21,2012 20120923_HOU@DEN,2,38,32,DEN,HOU,2,9,79,(8:32) P.Manning pass short left to J.Dreessen to HST 49 for 30 yards (Q.Demps).,5,21,2012 20120923_HOU@DEN,2,38,7,DEN,HOU,1,10,49,(8:07) (Shotgun) P.Manning pass short left to J.Tamme to HST 43 for 6 yards (J.Joseph).,5,21,2012 20120923_HOU@DEN,2,37,40,DEN,HOU,2,4,43,(7:40) (Shotgun) R.Hillman left tackle to HST 39 for 4 yards (J.Joseph).,5,21,2012 20120923_HOU@DEN,2,37,11,DEN,HOU,1,10,39,(7:11) P.Manning pass short middle to D.Thomas pushed ob at HST 16 for 23 yards (Q.Demps). PENALTY on HST-C.Barwin Roughing the Passer 8 yards enforced at HST 16.,5,21,2012 20120923_HOU@DEN,2,36,38,DEN,HOU,1,8,8,(6:38) (Shotgun) P.Manning pass incomplete short left to M.Willis.,5,21,2012 20120923_HOU@DEN,2,36,33,DEN,HOU,2,8,8,(6:33) (Shotgun) W.McGahee up the middle to HST 5 for 3 yards (D.Manning).,5,21,2012 20120923_HOU@DEN,2,35,52,DEN,HOU,3,5,5,(5:52) P.Manning pass incomplete short left to D.Thomas.,5,21,2012 20120923_HOU@DEN,2,35,48,DEN,HOU,4,5,5,(5:48) M.Prater 23 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,5,21,2012 20120923_HOU@DEN,2,35,48,DEN,HOU,,,5,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,8,21,2012 20120923_HOU@DEN,2,35,44,HOU,DEN,1,10,80,(5:44) A.Foster left guard to HST 21 for 1 yard (J.Bannan; K.Vickerson).,21,8,2012 20120923_HOU@DEN,2,35,7,HOU,DEN,2,9,79,(5:07) M.Schaub pass incomplete short left to G.Graham (J.Bannan).,21,8,2012 20120923_HOU@DEN,2,35,3,HOU,DEN,3,9,79,(5:03) (Shotgun) M.Schaub pass incomplete short left to O.Daniels (M.Adams).,21,8,2012 20120923_HOU@DEN,2,34,58,HOU,DEN,4,9,79,(4:58) D.Jones punts 49 yards to DEN 30 Center-J.Weeks. J.Leonhard to DEN 43 for 13 yards (J.Forsett).,21,8,2012 20120923_HOU@DEN,2,34,46,DEN,HOU,1,10,57,(4:46) (Shotgun) P.Manning pass incomplete short middle to D.Thomas.,8,21,2012 20120923_HOU@DEN,2,34,42,DEN,HOU,2,10,57,(4:42) (Shotgun) P.Manning pass short left to B.Stokley to DEN 49 for 6 yards (B.Cushing).,8,21,2012 20120923_HOU@DEN,2,34,21,DEN,HOU,3,4,51,(4:21) (Shotgun) W.McGahee up the middle to DEN 49 for no gain (B.Cushing).,8,21,2012 20120923_HOU@DEN,2,33,41,DEN,HOU,4,4,51,(3:41) B.Colquitt punts 39 yards to HST 12 Center-A.Brewer. T.Holliday to HST 16 for 4 yards (N.Irving). DEN-N.Irving was injured during the play.,8,21,2012 20120923_HOU@DEN,2,33,31,HOU,DEN,1,10,84,(3:31) K.Martin left end to HST 37 for 21 yards (M.Adams).,21,8,2012 20120923_HOU@DEN,2,32,48,HOU,DEN,1,10,63,(2:48) B.Tate left tackle to HST 37 for no gain (J.Bannan).,21,8,2012 20120923_HOU@DEN,2,32,7,HOU,DEN,2,10,63,(2:07) M.Schaub pass short right to G.Graham to HST 49 for 12 yards (C.Bailey).,21,8,2012 20120923_HOU@DEN,2,31,59,HOU,DEN,1,10,51,(1:59) A.Foster right tackle to DEN 49 for 2 yards (E.Dumervil; K.Brooking).,21,8,2012 20120923_HOU@DEN,2,31,29,HOU,DEN,2,8,49,(1:29) M.Schaub pass incomplete deep left to O.Daniels (M.Adams).,21,8,2012 20120923_HOU@DEN,2,31,22,HOU,DEN,3,8,49,(1:22) (Shotgun) M.Schaub pass short left to O.Daniels to DEN 39 for 10 yards (M.Adams).,21,8,2012 20120923_HOU@DEN,2,31,14,HOU,DEN,1,10,39,(1:14) (Shotgun) A.Foster right tackle to DEN 38 for 1 yard (W.Woodyard).,21,8,2012 20120923_HOU@DEN,2,30,51,HOU,DEN,2,9,38,(:51) (Shotgun) M.Schaub pass incomplete short right to K.Martin.,21,8,2012 20120923_HOU@DEN,2,30,46,HOU,DEN,3,9,38,(:46) (Shotgun) M.Schaub pass short left intended for K.Walter INTERCEPTED by W.Woodyard [E.Dumervil] at DEN 33. W.Woodyard ran ob at DEN 40 for 7 yards.,21,8,2012 20120923_HOU@DEN,2,30,34,DEN,HOU,1,10,60,(:34) (Shotgun) P.Manning sacked at DEN 37 for -3 yards (J.Watt).,8,21,2012 20120923_HOU@DEN,2,30,22,DEN,HOU,2,13,63,(:22) (Shotgun) P.Manning pass incomplete short middle to E.Decker.,8,21,2012 20120923_HOU@DEN,2,30,17,DEN,HOU,3,13,63,(:17) (Shotgun) P.Manning pass deep right to E.Decker ran ob at HST 41 for 22 yards.,8,21,2012 20120923_HOU@DEN,2,30,10,DEN,HOU,1,10,41,(:10) (Shotgun) P.Manning pass short middle to E.Decker to HST 35 for 6 yards (K.Jackson).,8,21,2012 20120923_HOU@DEN,2,30,6,DEN,HOU,2,4,35,(:06) M.Prater 53 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,8,21,2012 20120923_HOU@DEN,2,30,6,DEN,HOU,,,35,M.Prater kicks 31 yards from DEN 35 to HST 34. J.Casey to HST 34 for no gain (W.Woodyard).,11,21,2012 20120923_HOU@DEN,3,30,0,DEN,HOU,,,35,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,11,21,2012 20120923_HOU@DEN,3,30,0,HOU,DEN,1,10,80,(15:00) M.Schaub pass incomplete deep left to A.Johnson (M.Adams).,21,11,2012 20120923_HOU@DEN,3,29,51,HOU,DEN,2,10,80,(14:51) A.Foster right end to HST 24 for 4 yards (C.Harris).,21,11,2012 20120923_HOU@DEN,3,29,10,HOU,DEN,3,6,76,(14:10) (Shotgun) M.Schaub pass incomplete deep right to K.Walter.,21,11,2012 20120923_HOU@DEN,3,29,5,HOU,DEN,4,6,76,(14:05) D.Jones punts 46 yards to DEN 30 Center-J.Weeks. J.Leonhard to DEN 32 for 2 yards (W.Mercilus).,21,11,2012 20120923_HOU@DEN,3,28,54,DEN,HOU,1,10,68,(13:54) W.McGahee left tackle to DEN 30 for -2 yards (J.Watt).,11,21,2012 20120923_HOU@DEN,3,28,22,DEN,HOU,2,12,70,(13:22) (Shotgun) P.Manning pass incomplete short right to J.Dreessen [A.Smith].,11,21,2012 20120923_HOU@DEN,3,28,17,DEN,HOU,3,12,70,(13:17) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,11,21,2012 20120923_HOU@DEN,3,28,11,DEN,HOU,4,12,70,(13:11) B.Colquitt punts 47 yards to HST 23 Center-A.Brewer fair catch by T.Holliday. PENALTY on DEN-O.Bolden Interference with Opportunity to Catch 15 yards enforced at HST 23.,11,21,2012 20120923_HOU@DEN,3,27,56,HOU,DEN,1,10,62,(12:56) A.Foster right guard to HST 41 for 3 yards (M.Unrein).,21,11,2012 20120923_HOU@DEN,3,27,16,HOU,DEN,2,7,59,(12:16) A.Foster left guard to HST 46 for 5 yards (E.Dumervil).,21,11,2012 20120923_HOU@DEN,3,26,40,HOU,DEN,3,2,54,(11:40) M.Schaub pass short right to K.Walter to HST 49 for 3 yards (C.Harris). PENALTY on DEN-V.Miller Roughing the Passer 15 yards enforced at HST 49.,21,11,2012 20120923_HOU@DEN,3,26,17,HOU,DEN,1,10,36,(11:17) M.Schaub pass incomplete deep right to A.Johnson (C.Bailey). PENALTY on DEN-J.Mays Roughing the Passer 15 yards enforced at DEN 36 - No Play.,21,11,2012 20120923_HOU@DEN,3,26,8,HOU,DEN,1,10,21,(11:08) B.Tate left end to DEN 18 for 3 yards (R.Moore).,21,11,2012 20120923_HOU@DEN,3,25,29,HOU,DEN,2,7,18,(10:29) A.Foster left guard to DEN 13 for 5 yards (E.Dumervil).,21,11,2012 20120923_HOU@DEN,3,24,49,HOU,DEN,3,2,13,(9:49) A.Foster right end to DEN 12 for 1 yard (C.Harris). PENALTY on HST-D.Newton Offensive Holding 10 yards enforced at DEN 13 - No Play.,21,11,2012 20120923_HOU@DEN,3,24,20,HOU,DEN,3,12,23,(9:20) (Shotgun) M.Schaub pass incomplete short middle to K.Martin (C.Harris).,21,11,2012 20120923_HOU@DEN,3,24,16,HOU,DEN,4,12,23,(9:16) S.Graham 41 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,21,11,2012 20120923_HOU@DEN,3,24,16,HOU,DEN,,,23,S.Graham kicks 63 yards from HST 35 to DEN 2. O.Bolden to DEN 26 for 24 yards (S.Keo).,24,11,2012 20120923_HOU@DEN,3,24,6,DEN,HOU,1,10,74,(9:06) (Shotgun) P.Manning pass incomplete short left to L.Ball (E.Mitchell).,11,24,2012 20120923_HOU@DEN,3,24,1,DEN,HOU,2,10,74,(9:01) (Shotgun) P.Manning pass short left to L.Ball to DEN 25 for -1 yards (Q.Demps).,11,24,2012 20120923_HOU@DEN,3,23,34,DEN,HOU,3,11,75,(8:34) (Shotgun) P.Manning pass short right to B.Stokley to DEN 35 for 10 yards (B.McCain). PENALTY on HST-J.Joseph Defensive Holding 5 yards enforced at DEN 25 - No Play.,11,24,2012 20120923_HOU@DEN,3,23,17,DEN,HOU,1,10,70,(8:17) R.Hillman left end to DEN 33 for 3 yards (S.Cody).,11,24,2012 20120923_HOU@DEN,3,22,41,DEN,HOU,2,7,67,(7:41) P.Manning pass incomplete short left to J.Tamme (B.Reed).,11,24,2012 20120923_HOU@DEN,3,22,34,DEN,HOU,3,7,67,(7:34) (Shotgun) P.Manning pass deep right to E.Decker to HST 31 for 36 yards (D.Manning). PENALTY on DEN-M.Ramirez Offensive Holding 10 yards enforced at DEN 33 - No Play.,11,24,2012 20120923_HOU@DEN,3,22,3,DEN,HOU,3,17,77,(7:03) (Shotgun) P.Manning pass incomplete deep middle to E.Decker (K.Jackson).,11,24,2012 20120923_HOU@DEN,3,21,56,DEN,HOU,4,17,77,(6:56) B.Colquitt punts 52 yards to HST 25 Center-A.Brewer. T.Holliday to HST 27 for 2 yards (J.Tamme).,11,24,2012 20120923_HOU@DEN,3,21,43,HOU,DEN,1,10,73,(6:43) B.Tate left end to HST 32 for 5 yards (M.Adams).,24,11,2012 20120923_HOU@DEN,3,21,4,HOU,DEN,2,5,68,(6:04) B.Tate right guard to HST 34 for 2 yards (K.Vickerson).,24,11,2012 20120923_HOU@DEN,3,20,24,HOU,DEN,3,3,66,(5:24) (Shotgun) M.Schaub pass incomplete short right to K.Walter.,24,11,2012 20120923_HOU@DEN,3,20,18,HOU,DEN,4,3,66,(5:18) D.Jones punts 66 yards to end zone Center-J.Weeks Touchback.,24,11,2012 20120923_HOU@DEN,3,20,7,DEN,HOU,1,10,80,(5:07) W.McGahee up the middle to DEN 20 for no gain (J.Watt).,11,24,2012 20120923_HOU@DEN,3,19,43,DEN,HOU,2,10,80,(4:43) (Shotgun) P.Manning pass short middle to R.Hillman to DEN 21 for 1 yard (B.James).,11,24,2012 20120923_HOU@DEN,3,19,4,DEN,HOU,3,9,79,(4:04) (Shotgun) P.Manning pass incomplete short right to D.Thomas (J.Joseph Q.Demps).,11,24,2012 20120923_HOU@DEN,3,18,57,DEN,HOU,4,9,79,(3:57) B.Colquitt punts 51 yards to HST 28 Center-A.Brewer fair catch by T.Holliday.,11,24,2012 20120923_HOU@DEN,3,18,52,HOU,DEN,1,10,72,(3:52) M.Schaub pass short right to J.Casey to HST 40 for 12 yards (R.Moore).,24,11,2012 20120923_HOU@DEN,3,18,5,HOU,DEN,1,10,60,(3:05) M.Schaub pass incomplete.,24,11,2012 20120923_HOU@DEN,3,17,57,HOU,DEN,2,10,60,(2:57) M.Schaub pass short left to L.Jean to DEN 14 for 46 yards (R.Moore).,24,11,2012 20120923_HOU@DEN,3,17,20,HOU,DEN,1,10,14,(2:20) A.Foster up the middle to DEN 14 for no gain (M.Jackson).,24,11,2012 20120923_HOU@DEN,3,16,39,HOU,DEN,2,10,14,(1:39) M.Schaub pass short left to O.Daniels for 14 yards TOUCHDOWN.,24,11,2012 20120923_HOU@DEN,3,16,39,HOU,DEN,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,24,11,2012 20120923_HOU@DEN,3,16,39,HOU,DEN,,,14,S.Graham kicks 69 yards from HST 35 to DEN -4. O.Bolden to DEN 21 for 25 yards (M.Alexander). PENALTY on DEN-J.Dreessen Offensive Holding 10 yards enforced at DEN 21.,31,11,2012 20120923_HOU@DEN,3,16,24,DEN,HOU,1,10,89,(1:24) P.Manning pass incomplete deep right to E.Decker.,11,31,2012 20120923_HOU@DEN,3,16,20,DEN,HOU,2,10,89,(1:20) (Shotgun) P.Manning pass incomplete short left to D.Thomas (J.Joseph).,11,31,2012 20120923_HOU@DEN,3,16,16,DEN,HOU,3,10,89,(1:16) P.Manning pass deep right to E.Decker to DEN 37 for 26 yards (K.Jackson).,11,31,2012 20120923_HOU@DEN,3,15,48,DEN,HOU,1,10,63,(:48) (Shotgun) P.Manning pass short right to E.Decker to 50 for 13 yards (Q.Demps).,11,31,2012 20120923_HOU@DEN,3,15,16,DEN,HOU,1,10,50,(:16) (Shotgun) P.Manning pass short right to D.Thomas to HST 47 for 3 yards (J.Joseph).,11,31,2012 20120923_HOU@DEN,4,15,0,DEN,HOU,2,7,47,(15:00) (No Huddle) P.Manning pass incomplete short right to J.Dreessen.,11,31,2012 20120923_HOU@DEN,4,14,56,DEN,HOU,3,7,47,(14:56) (Shotgun) P.Manning pass incomplete deep right to J.Tamme (G.Quin).,11,31,2012 20120923_HOU@DEN,4,14,50,DEN,HOU,4,7,47,(14:50) B.Colquitt punts 47 yards to end zone Center-A.Brewer Touchback.,11,31,2012 20120923_HOU@DEN,4,14,41,HOU,DEN,1,10,80,(14:41) A.Foster left guard to HST 24 for 4 yards (J.Bannan). DEN-J.Mays was injured during the play.,31,11,2012 20120923_HOU@DEN,4,14,0,HOU,DEN,2,6,76,(14:00) A.Foster left end pushed ob at HST 32 for 8 yards (R.Moore).,31,11,2012 20120923_HOU@DEN,4,13,22,HOU,DEN,1,10,68,(13:22) A.Foster right tackle to HST 33 for 1 yard (M.Unrein; D.Wolfe).,31,11,2012 20120923_HOU@DEN,4,12,40,HOU,DEN,2,9,67,(12:40) M.Schaub pass short left to J.Casey to HST 35 for 2 yards (R.Moore).,31,11,2012 20120923_HOU@DEN,4,11,56,HOU,DEN,3,7,65,(11:56) (Shotgun) M.Schaub pass incomplete short left to A.Johnson. PENALTY on DEN-C.Bailey Illegal Contact 5 yards enforced at HST 35 - No Play.,31,11,2012 20120923_HOU@DEN,4,11,51,HOU,DEN,1,10,60,(11:51) A.Foster right tackle to HST 43 for 3 yards (C.Harris).,31,11,2012 20120923_HOU@DEN,4,11,13,HOU,DEN,2,7,57,(11:13) A.Foster left end to DEN 48 for 9 yards (T.Carter).,31,11,2012 20120923_HOU@DEN,4,10,28,HOU,DEN,1,10,48,(10:28) B.Tate right guard to 50 for -2 yards (K.Vickerson). FUMBLES (K.Vickerson) RECOVERED by DEN-J.Bannan at 50. J.Bannan to 50 for no gain (A.Caldwell).,31,11,2012 20120923_HOU@DEN,4,10,20,DEN,HOU,1,10,49,(10:20) Direction Change. (Shotgun) L.Ball up the middle to HST 38 for 11 yards (K.Jackson).,11,31,2012 20120923_HOU@DEN,4,9,56,DEN,HOU,1,10,38,(9:56) (Shotgun) P.Manning pass deep middle to B.Stokley for 38 yards TOUCHDOWN.,11,31,2012 20120923_HOU@DEN,4,9,56,DEN,HOU,,,38,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,11,31,2012 20120923_HOU@DEN,4,9,56,DEN,HOU,,,38,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,18,31,2012 20120923_HOU@DEN,4,9,49,HOU,DEN,1,10,80,(9:49) M.Schaub pass incomplete deep middle to G.Graham [M.Adams].,31,18,2012 20120923_HOU@DEN,4,9,44,HOU,DEN,2,10,80,(9:44) (Shotgun) A.Foster up the middle to HST 18 for -2 yards (V.Miller; D.Wolfe).,31,18,2012 20120923_HOU@DEN,4,9,1,HOU,DEN,3,12,82,(9:01) (Shotgun) M.Schaub pass short left to K.Martin to HST 20 for 2 yards (J.Mays).,31,18,2012 20120923_HOU@DEN,4,8,21,HOU,DEN,4,10,80,(8:21) D.Jones punts 55 yards to DEN 25 Center-J.Weeks. J.Leonhard to DEN 26 for 1 yard (G.Graham).,31,18,2012 20120923_HOU@DEN,4,8,8,DEN,HOU,1,10,74,(8:08) (Shotgun) L.Ball up the middle to DEN 30 for 4 yards (G.Quin).,18,31,2012 20120923_HOU@DEN,4,7,45,DEN,HOU,2,6,70,(7:45) (Shotgun) P.Manning pass short right to B.Stokley to DEN 34 for 4 yards (Q.Demps).,18,31,2012 20120923_HOU@DEN,4,7,17,DEN,HOU,3,2,66,(7:17) (Shotgun) P.Manning pass short right to B.Stokley to DEN 38 for 4 yards (B.McCain) [A.Smith].,18,31,2012 20120923_HOU@DEN,4,6,47,DEN,HOU,1,10,62,(6:47) (Shotgun) P.Manning pass incomplete deep left to J.Tamme.,18,31,2012 20120923_HOU@DEN,4,6,41,DEN,HOU,2,10,62,(6:41) (Shotgun) P.Manning pass short middle to B.Stokley pushed ob at 50 for 12 yards (K.Jackson).,18,31,2012 20120923_HOU@DEN,4,6,15,DEN,HOU,1,10,50,(6:15) (Shotgun) P.Manning pass incomplete short right to D.Thomas.,18,31,2012 20120923_HOU@DEN,4,6,9,DEN,HOU,2,10,50,(6:09) (Shotgun) P.Manning pass short middle to J.Tamme to HST 39 for 11 yards (Q.Demps).,18,31,2012 20120923_HOU@DEN,4,5,44,DEN,HOU,1,10,39,(5:44) (Shotgun) P.Manning pass incomplete short right to J.Tamme (B.McCain).,18,31,2012 20120923_HOU@DEN,4,5,39,DEN,HOU,2,10,39,(5:39) (Shotgun) P.Manning sacked at HST 45 for -6 yards (J.Watt).,18,31,2012 20120923_HOU@DEN,4,5,10,DEN,HOU,3,16,45,(5:10) (Shotgun) P.Manning pass incomplete deep left to J.Tamme (G.Quin). DEN-J.Tamme was injured during the play.,18,31,2012 20120923_HOU@DEN,4,5,4,DEN,HOU,4,16,45,(5:04) (Shotgun) P.Manning pass incomplete deep right to D.Thomas. PENALTY on HST-B.McCain Illegal Contact 5 yards enforced at HST 45 - No Play.,18,31,2012 20120923_HOU@DEN,4,4,57,DEN,HOU,1,10,40,(4:57) (Shotgun) P.Manning pass short middle to B.Stokley to HST 31 for 9 yards (G.Quin). DEN-B.Stokley was injured during the play.,18,31,2012 20120923_HOU@DEN,4,4,41,DEN,HOU,2,1,31,(4:41) P.Manning pass deep right to D.Thomas for 31 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was REVERSED. P.Manning pass incomplete deep right to D.Thomas.,18,31,2012 20120923_HOU@DEN,4,4,33,DEN,HOU,3,1,31,(4:33) (Shotgun) L.Ball up the middle to HST 27 for 4 yards (A.Smith; B.Cushing).,18,31,2012 20120923_HOU@DEN,4,4,8,DEN,HOU,1,10,27,(4:08) (Shotgun) P.Manning pass incomplete deep left to E.Decker (K.Jackson). PENALTY on HST-K.Jackson Defensive Pass Interference 26 yards enforced at HST 27 - No Play.,18,31,2012 20120923_HOU@DEN,4,4,2,DEN,HOU,1,1,1,(4:02) L.Ball left tackle to HST 4 for -3 yards (B.James).,18,31,2012 20120923_HOU@DEN,4,3,34,DEN,HOU,2,4,4,(3:34) (Shotgun) L.Ball up the middle to HST 6 for -2 yards (J.Watt).,18,31,2012 20120923_HOU@DEN,4,3,5,DEN,HOU,3,6,6,(3:05) (Shotgun) P.Manning pass short left to J.Dreessen for 6 yards TOUCHDOWN.,18,31,2012 20120923_HOU@DEN,4,3,5,DEN,HOU,,,6,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,18,31,2012 20120923_HOU@DEN,4,3,5,DEN,HOU,,,6,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,25,31,2012 20120923_HOU@DEN,4,3,0,HOU,DEN,1,10,80,(3:00) A.Foster right tackle to HST 23 for 3 yards (K.Vickerson).,31,25,2012 20120923_HOU@DEN,4,2,54,HOU,DEN,2,7,77,(2:54) A.Foster left guard to HST 25 for 2 yards (J.Mays; D.Wolfe).,31,25,2012 20120923_HOU@DEN,4,2,49,HOU,DEN,3,5,75,(2:49) (Shotgun) M.Schaub pass short left to A.Johnson ran ob at HST 37 for 12 yards.,31,25,2012 20120923_HOU@DEN,4,2,43,HOU,DEN,1,10,63,(2:43) A.Foster right tackle to HST 41 for 4 yards (M.Unrein; J.Bannan).,31,25,2012 20120923_HOU@DEN,4,2,0,HOU,DEN,2,6,59,(2:00) A.Foster up the middle to HST 44 for 3 yards (J.Bannan).,31,25,2012 20120923_HOU@DEN,4,1,17,HOU,DEN,3,3,56,(1:17) A.Foster left guard to HST 44 for no gain (K.Vickerson; V.Miller).,31,25,2012 20120923_HOU@DEN,4,0,33,HOU,DEN,4,3,56,(:33) D.Jones punts 55 yards to DEN 1 Center-J.Weeks. E.Decker to DEN 14 for 13 yards (J.Weeks; J.Nading).,31,25,2012 20120923_HOU@DEN,4,0,20,DEN,HOU,1,10,86,(:20) (Shotgun) P.Manning pass short middle to E.Decker to DEN 30 for 16 yards (K.Jackson).,25,31,2012 20120923_HOU@DEN,4,0,20,DEN,HOU,1,10,70,(:20) P.Manning spiked the ball to stop the clock.,25,31,2012 20120923_HOU@DEN,4,0,0,DEN,HOU,2,10,70,(:00) (Shotgun) P.Manning pass short right to E.Decker to DEN 43 for 13 yards. Lateral to D.Thomas to 50 for 7 yards. Lateral to L.Ball to HST 47 for 3 yards. Lateral to D.Thomas to HST 47 for no gain. FUMBLES RECOVERED by HST-C.Barwin at 50. C.Barwin to 50 for no gain (J.Tamme).,25,31,2012 20120923_HOU@DEN,4,0,0,DEN,HOU,,,70,                      ,25,31,2012 20120923_PIT@OAK,1,0,0,PIT,OAK,,,70,S.Suisham kicks 60 yards from PIT 35 to OAK 5. M.Reece to OAK 41 for 36 yards (S.Suisham; R.Mundy).,0,0,2012 20120923_PIT@OAK,1,59,52,OAK,PIT,1,10,59,(14:52) C.Palmer pass deep middle intended for D.Moore INTERCEPTED by R.Clark at PIT 38. R.Clark to OAK 36 for 26 yards (D.McFadden).,0,0,2012 20120923_PIT@OAK,1,59,39,PIT,OAK,1,10,36,(14:39) B.Roethlisberger pass incomplete short right to M.Wallace (M.Burris).,0,0,2012 20120923_PIT@OAK,1,59,35,PIT,OAK,2,10,36,(14:35) B.Roethlisberger pass incomplete deep right to H.Miller. Pittsburgh challenged the pass completion ruling and the play was Upheld. (Timeout #1 at 14:30.),0,0,2012 20120923_PIT@OAK,1,59,30,PIT,OAK,3,10,36,(14:30) (Shotgun) B.Roethlisberger pass short middle to J.Cotchery to OAK 27 for 9 yards (J.Hanson; P.Lee).,0,0,2012 20120923_PIT@OAK,1,58,39,PIT,OAK,4,1,27,(13:39) (No Huddle) B.Roethlisberger pass short middle to M.Wallace to OAK 7 for 20 yards (R.Seymour).,0,0,2012 20120923_PIT@OAK,1,58,6,PIT,OAK,1,7,7,(13:06) I.Redman up the middle to OAK 5 for 2 yards (Team).,0,0,2012 20120923_PIT@OAK,1,57,21,PIT,OAK,2,5,5,(12:21) (Shotgun) M.Wallace right end to OAK 4 for 1 yard (T.Branch J.Hanson).,0,0,2012 20120923_PIT@OAK,1,56,37,PIT,OAK,3,4,4,(11:37) B.Roethlisberger pass short right to H.Miller for 4 yards TOUCHDOWN.,0,0,2012 20120923_PIT@OAK,1,56,37,PIT,OAK,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 20120923_PIT@OAK,1,56,37,PIT,OAK,,,4,S.Suisham kicks 72 yards from PIT 35 to OAK -7. M.Goodson Touchback.,7,0,2012 20120923_PIT@OAK,1,56,33,OAK,PIT,1,10,80,(11:33) C.Palmer pass incomplete short left to D.Moore (C.Carter).,0,7,2012 20120923_PIT@OAK,1,56,28,OAK,PIT,2,10,80,(11:28) (No Huddle) C.Palmer pass short middle to B.Myers to OAK 36 for 16 yards (L.Foote I.Taylor).,0,7,2012 20120923_PIT@OAK,1,55,44,OAK,PIT,1,10,64,(10:44) (No Huddle) D.McFadden right tackle for 64 yards TOUCHDOWN.,0,7,2012 20120923_PIT@OAK,1,55,44,OAK,PIT,,,64,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,0,7,2012 20120923_PIT@OAK,1,55,44,OAK,PIT,,,64,S.Janikowski kicks 66 yards from OAK 35 to PIT -1. C.Rainey to PIT 19 for 20 yards (P.Adams).,7,7,2012 20120923_PIT@OAK,1,55,28,PIT,OAK,1,10,81,(10:28) B.Roethlisberger pass short right to I.Redman to PIT 23 for 4 yards (M.Huff T.Kelly).,7,7,2012 20120923_PIT@OAK,1,54,42,PIT,OAK,2,6,77,(9:42) K.Beachum reported in as eligible. B.Roethlisberger pass incomplete deep middle to A.Brown (P.Wheeler).,7,7,2012 20120923_PIT@OAK,1,54,37,PIT,OAK,3,6,77,(9:37) (Shotgun) B.Roethlisberger pass short middle to M.Wallace to PIT 39 for 16 yards (M.Giordano).,7,7,2012 20120923_PIT@OAK,1,53,51,PIT,OAK,1,10,61,(8:51) B.Roethlisberger pass incomplete short left to E.Sanders.,7,7,2012 20120923_PIT@OAK,1,53,48,PIT,OAK,2,10,61,(8:48) B.Roethlisberger scrambles up the middle to PIT 47 for 8 yards (L.Houston).,7,7,2012 20120923_PIT@OAK,1,53,1,PIT,OAK,3,2,53,(8:01) B.Roethlisberger pass short right to E.Sanders to OAK 46 for 7 yards (T.Branch).,7,7,2012 20120923_PIT@OAK,1,52,21,PIT,OAK,1,10,46,(7:21) B.Roethlisberger pass short left to I.Redman to OAK 35 for 11 yards (R.McClain D.Bryant).,7,7,2012 20120923_PIT@OAK,1,51,32,PIT,OAK,1,10,35,(6:32) B.Roethlisberger pass short right to A.Brown to OAK 21 for 14 yards (M.Huff).,7,7,2012 20120923_PIT@OAK,1,51,1,PIT,OAK,1,10,21,(6:01) J.Dwyer up the middle to OAK 18 for 3 yards (R.McClain).,7,7,2012 20120923_PIT@OAK,1,50,18,PIT,OAK,2,7,18,(5:18) B.Roethlisberger pass short middle to M.Wallace to OAK 4 for 14 yards (M.Giordano).,7,7,2012 20120923_PIT@OAK,1,49,34,PIT,OAK,1,4,4,(4:34) J.Dwyer right tackle to OAK 4 for no gain (M.Huff; T.Branch).,7,7,2012 20120923_PIT@OAK,1,48,53,PIT,OAK,2,4,4,(3:53) B.Roethlisberger pass short middle to H.Miller for 4 yards TOUCHDOWN.,7,7,2012 20120923_PIT@OAK,1,48,53,PIT,OAK,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,7,7,2012 20120923_PIT@OAK,1,48,53,PIT,OAK,,,4,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,14,7,2012 20120923_PIT@OAK,1,48,49,OAK,PIT,1,10,80,(3:49) C.Palmer pass short left to D.McFadden to OAK 17 for -3 yards (R.Clark C.Hampton).,7,14,2012 20120923_PIT@OAK,1,48,7,OAK,PIT,2,13,83,(3:07) (No Huddle) C.Palmer pass incomplete short left to D.Moore.,7,14,2012 20120923_PIT@OAK,1,48,3,OAK,PIT,3,13,83,(3:03) (Shotgun) C.Palmer sacked at OAK 10 for -7 yards (L.Woodley).,7,14,2012 20120923_PIT@OAK,1,47,37,OAK,PIT,4,20,90,(2:37) S.Lechler punts 60 yards to PIT 30 Center-J.Condo. A.Brown to OAK 48 for 22 yards (M.Giordano).,7,14,2012 20120923_PIT@OAK,1,47,20,PIT,OAK,1,10,48,(2:20) B.Roethlisberger pass incomplete short right.,14,7,2012 20120923_PIT@OAK,1,47,13,PIT,OAK,2,10,48,(2:13) PENALTY on PIT-R.Foster False Start 5 yards enforced at OAK 48 - No Play.,14,7,2012 20120923_PIT@OAK,1,47,13,PIT,OAK,2,15,53,(2:13) I.Redman up the middle to PIT 47 for no gain (P.Wheeler M.Giordano). PENALTY on PIT-W.Colon Offensive Holding 10 yards enforced at PIT 47 - No Play.,14,7,2012 20120923_PIT@OAK,1,46,43,PIT,OAK,2,25,63,(1:43) B.Roethlisberger pass incomplete deep right to A.Brown.,14,7,2012 20120923_PIT@OAK,1,46,37,PIT,OAK,3,25,63,(1:37) (Shotgun) B.Roethlisberger pass short left to C.Rainey to OAK 49 for 14 yards (L.Houston).,14,7,2012 20120923_PIT@OAK,1,46,3,PIT,OAK,4,11,49,(1:03) D.Butler punts 35 yards to OAK 14 Center-G.Warren fair catch by P.Adams.,14,7,2012 20120923_PIT@OAK,1,45,57,OAK,PIT,1,10,86,(:57) D.McFadden up the middle to OAK 15 for 1 yard (L.Foote).,7,14,2012 20120923_PIT@OAK,1,45,20,OAK,PIT,2,9,85,(:20) D.McFadden left tackle to OAK 18 for 3 yards (E.Hood).,7,14,2012 20120923_PIT@OAK,2,45,0,OAK,PIT,3,6,82,(15:00) (Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey.,7,14,2012 20120923_PIT@OAK,2,44,55,OAK,PIT,4,6,82,(14:55) S.Lechler punts 54 yards to PIT 28 Center-J.Condo. A.Brown for 72 yards TOUCHDOWN NULLIFIED by Penalty. Penalty on PIT-W.Johnson Illegal Block Above the Waist declined. PENALTY on PIT Offensive Holding 10 yards enforced at PIT 28.,7,14,2012 20120923_PIT@OAK,2,44,36,PIT,OAK,1,10,82,(14:36) B.Batch up the middle to PIT 20 for 2 yards (T.Branch; L.Houston).,14,7,2012 20120923_PIT@OAK,2,43,55,PIT,OAK,2,8,80,(13:55) B.Roethlisberger pass short left to H.Miller to PIT 27 for 7 yards (P.Wheeler).,14,7,2012 20120923_PIT@OAK,2,43,10,PIT,OAK,3,1,73,(13:10) B.Batch left tackle to PIT 30 for 3 yards (M.Burris).,14,7,2012 20120923_PIT@OAK,2,42,29,PIT,OAK,1,10,70,(12:29) B.Batch right guard to PIT 32 for 2 yards (L.Houston R.McClain).,14,7,2012 20120923_PIT@OAK,2,41,44,PIT,OAK,2,8,68,(11:44) B.Roethlisberger pass short right to W.Johnson to PIT 36 for 4 yards (R.McClain).,14,7,2012 20120923_PIT@OAK,2,41,37,PIT,OAK,3,4,64,(11:37) (Shotgun) PENALTY on PIT-B.Roethlisberger Delay of Game 5 yards enforced at PIT 36 - No Play.,14,7,2012 20120923_PIT@OAK,2,40,30,PIT,OAK,3,9,69,(10:30) (Shotgun) B.Roethlisberger pass deep middle to H.Miller to OAK 47 for 22 yards (P.Wheeler). Oakland challenged the pass completion ruling and the play was REVERSED. (Shotgun) B.Roethlisberger pass incomplete deep middle to H.Miller (P.Wheeler).,14,7,2012 20120923_PIT@OAK,2,40,25,PIT,OAK,4,9,69,(10:25) D.Butler punts 29 yards to OAK 40 Center-G.Warren out of bounds.,14,7,2012 20120923_PIT@OAK,2,40,19,OAK,PIT,1,10,60,(10:19) D.McFadden right guard to OAK 41 for 1 yard (J.Worilds).,7,14,2012 20120923_PIT@OAK,2,39,44,OAK,PIT,2,9,59,(9:44) (No Huddle) C.Palmer pass short left to D.McFadden ran ob at OAK 46 for 5 yards (J.Worilds).,7,14,2012 20120923_PIT@OAK,2,39,11,OAK,PIT,3,4,54,(9:11) (No Huddle) D.McFadden left end to OAK 44 for -2 yards (I.Taylor).,7,14,2012 20120923_PIT@OAK,2,38,39,OAK,PIT,4,6,56,(8:39) S.Lechler punts 41 yards to PIT 15 Center-J.Condo fair catch by A.Brown. PENALTY on PIT-J.Worilds Face Mask (15 Yards) 7 yards enforced at PIT 15.,7,14,2012 20120923_PIT@OAK,2,38,32,PIT,OAK,1,10,92,(8:32) I.Redman up the middle to PIT 12 for 4 yards (M.Huff).,14,7,2012 20120923_PIT@OAK,2,37,52,PIT,OAK,2,6,88,(7:52) B.Roethlisberger pass short right to A.Brown to PIT 17 for 5 yards (J.Hanson; T.Branch).,14,7,2012 20120923_PIT@OAK,2,37,20,PIT,OAK,3,1,83,(7:20) I.Redman up the middle to PIT 21 for 4 yards (M.Burris; R.McClain).,14,7,2012 20120923_PIT@OAK,2,36,36,PIT,OAK,1,10,79,(6:36) B.Roethlisberger pass short middle to I.Redman to PIT 30 for 9 yards (M.Burris).,14,7,2012 20120923_PIT@OAK,2,35,52,PIT,OAK,2,1,70,(5:52) I.Redman left tackle to PIT 33 for 3 yards (M.Giordano).,14,7,2012 20120923_PIT@OAK,2,35,10,PIT,OAK,1,10,67,(5:10) B.Roethlisberger pass short middle to J.Dwyer to PIT 34 for 1 yard (P.Wheeler).,14,7,2012 20120923_PIT@OAK,2,34,26,PIT,OAK,2,9,66,(4:26) J.Dwyer up the middle to PIT 30 for -4 yards (D.Bryant). FUMBLES (D.Bryant) touched at PIT 30 RECOVERED by OAK-J.Hanson at PIT 31. J.Hanson to PIT 30 for 1 yard (M.Gilbert).,14,7,2012 20120923_PIT@OAK,2,34,20,OAK,PIT,1,10,30,(4:20) C.Palmer pass short right to M.Reece to PIT 27 for 3 yards (L.Timmons).,7,14,2012 20120923_PIT@OAK,2,33,52,OAK,PIT,2,7,27,(3:52) C.Palmer pass short right to D.Ausberry to PIT 14 for 13 yards (R.Mundy).,7,14,2012 20120923_PIT@OAK,2,33,20,OAK,PIT,1,10,14,(3:20) D.McFadden left tackle to PIT 13 for 1 yard (R.Clark; L.Foote).,7,14,2012 20120923_PIT@OAK,2,32,38,OAK,PIT,2,9,13,(2:38) C.Palmer scrambles right end to PIT 7 for 6 yards (L.Woodley).,7,14,2012 20120923_PIT@OAK,2,32,9,OAK,PIT,3,3,7,(2:09) M.Goodson left end to PIT 6 for 1 yard (C.Allen).,7,14,2012 20120923_PIT@OAK,2,32,0,OAK,PIT,4,2,6,(2:00) (Run formation) PENALTY on PIT-E.Hood Neutral Zone Infraction 3 yards enforced at PIT 6 - No Play.,7,14,2012 20120923_PIT@OAK,2,32,0,OAK,PIT,1,3,3,(2:00) C.Palmer pass short right to D.Heyward-Bey for 3 yards TOUCHDOWN.,7,14,2012 20120923_PIT@OAK,2,32,0,OAK,PIT,,,3,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,7,14,2012 20120923_PIT@OAK,2,32,0,OAK,PIT,,,3,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,14,14,2012 20120923_PIT@OAK,2,31,54,PIT,OAK,1,10,80,(1:54) (Shotgun) B.Roethlisberger pass short right to M.Wallace to PIT 27 for 7 yards (J.Hanson).,14,14,2012 20120923_PIT@OAK,2,31,48,PIT,OAK,2,3,73,(1:48) (Shotgun) B.Roethlisberger pass short middle to B.Batch to PIT 32 for 5 yards (P.Wheeler; R.McClain).,14,14,2012 20120923_PIT@OAK,2,31,21,PIT,OAK,1,10,68,(1:21) (No Huddle Shotgun) B.Roethlisberger pass short left to B.Batch to PIT 47 for 15 yards (P.Lee).,14,14,2012 20120923_PIT@OAK,2,31,12,PIT,OAK,1,10,53,(1:12) (Shotgun) B.Roethlisberger pass short middle to H.Miller to OAK 46 for 7 yards (J.Hanson).,14,14,2012 20120923_PIT@OAK,2,30,48,PIT,OAK,2,3,46,(:48) (No Huddle Shotgun) B.Roethlisberger pass deep middle to E.Sanders to OAK 25 for 21 yards (M.Giordano).,14,14,2012 20120923_PIT@OAK,2,30,39,PIT,OAK,1,10,25,(:39) (No Huddle) B.Roethlisberger spiked the ball to stop the clock.,14,14,2012 20120923_PIT@OAK,2,30,23,PIT,OAK,2,10,25,(:23) B.Roethlisberger pass short middle to C.Rainey to OAK 16 for 9 yards (P.Wheeler).,14,14,2012 20120923_PIT@OAK,2,30,3,PIT,OAK,3,1,16,(:03) (No Huddle) B.Roethlisberger spiked the ball to stop the clock.,14,14,2012 20120923_PIT@OAK,2,30,2,PIT,OAK,4,1,16,(:02) S.Suisham 33 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,14,14,2012 20120923_PIT@OAK,3,30,0,OAK,PIT,,,16,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,14,17,2012 20120923_PIT@OAK,3,30,0,PIT,OAK,1,10,80,(15:00) PENALTY on PIT-K.Beachum False Start 5 yards enforced at PIT 20 - No Play.,17,14,2012 20120923_PIT@OAK,3,30,0,PIT,OAK,1,15,85,(15:00) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace.,17,14,2012 20120923_PIT@OAK,3,29,55,PIT,OAK,2,15,85,(14:55) (Shotgun) B.Roethlisberger pass incomplete short right to A.Brown.,17,14,2012 20120923_PIT@OAK,3,29,50,PIT,OAK,3,15,85,(14:50) (Shotgun) B.Roethlisberger pass deep middle to M.Wallace to PIT 37 for 22 yards (T.Branch).,17,14,2012 20120923_PIT@OAK,3,29,7,PIT,OAK,1,10,63,(14:07) (No Huddle Shotgun) B.Batch up the middle to PIT 42 for 5 yards (D.Bryant R.McClain).,17,14,2012 20120923_PIT@OAK,3,28,31,PIT,OAK,2,5,58,(13:31) (No Huddle Shotgun) B.Roethlisberger pass short middle to A.Brown to OAK 39 for 19 yards (J.Hanson).,17,14,2012 20120923_PIT@OAK,3,27,55,PIT,OAK,1,10,39,(12:55) (No Huddle Shotgun) B.Roethlisberger pass short right to A.Brown to OAK 27 for 12 yards (P.Wheeler).,17,14,2012 20120923_PIT@OAK,3,27,21,PIT,OAK,1,10,27,(12:21) (No Huddle Shotgun) B.Roethlisberger pass incomplete short right to A.Brown.,17,14,2012 20120923_PIT@OAK,3,27,17,PIT,OAK,2,10,27,(12:17) (No Huddle Shotgun) B.Roethlisberger pass short left to E.Sanders to OAK 22 for 5 yards (P.Lee).,17,14,2012 20120923_PIT@OAK,3,26,50,PIT,OAK,3,5,22,(11:50) (No Huddle Shotgun) B.Roethlisberger pass deep middle to M.Wallace for 22 yards TOUCHDOWN. OAK-M.Giordano was injured during the play. His return is Questionable.,17,14,2012 20120923_PIT@OAK,3,26,50,PIT,OAK,,,22,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,17,14,2012 20120923_PIT@OAK,3,26,50,PIT,OAK,,,22,S.Suisham kicks 64 yards from PIT 35 to OAK 1. M.Goodson pushed ob at PIT 48 for 51 yards (Cu.Brown).,24,14,2012 20120923_PIT@OAK,3,26,30,OAK,PIT,1,10,48,(11:30) D.McFadden left tackle to PIT 32 for 16 yards (C.Carter).,14,24,2012 20120923_PIT@OAK,3,26,1,OAK,PIT,1,10,32,(11:01) (No Huddle Shotgun) C.Palmer pass incomplete deep right to D.Heyward-Bey.,14,24,2012 20120923_PIT@OAK,3,25,56,OAK,PIT,2,10,32,(10:56) (No Huddle) D.McFadden right end to PIT 31 for 1 yard (L.Woodley).,14,24,2012 20120923_PIT@OAK,3,25,11,OAK,PIT,3,9,31,(10:11) (Shotgun) C.Palmer pass short middle to D.Moore to PIT 19 for 12 yards (C.Allen; L.Foote).,14,24,2012 20120923_PIT@OAK,3,24,25,OAK,PIT,1,10,19,(9:25) (No Huddle) C.Palmer pass short left to R.Streater to PIT 14 for 5 yards (I.Taylor).,14,24,2012 20120923_PIT@OAK,3,23,53,OAK,PIT,2,5,14,(8:53) (No Huddle) C.Palmer pass short middle to D.Moore to PIT 10 for 4 yards (L.Foote).,14,24,2012 20120923_PIT@OAK,3,23,9,OAK,PIT,3,1,10,(8:09) D.McFadden left tackle to PIT 5 for 5 yards (R.Clark C.Carter).,14,24,2012 20120923_PIT@OAK,3,22,29,OAK,PIT,1,5,5,(7:29) D.McFadden left tackle for 5 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. D.McFadden left tackle to PIT 1 for 4 yards (R.Mundy K.Lewis).,14,24,2012 20120923_PIT@OAK,3,22,10,OAK,PIT,2,1,1,(7:10) D.McFadden left tackle to PIT 1 for no gain (W.Allen; C.Carter). PIT-W.Allen was injured during the play.,14,24,2012 20120923_PIT@OAK,3,21,39,OAK,PIT,3,1,1,(6:39) C.Palmer pass short middle to R.Gordon for 1 yard TOUCHDOWN.,14,24,2012 20120923_PIT@OAK,3,21,39,OAK,PIT,,,1,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,14,24,2012 20120923_PIT@OAK,3,21,39,OAK,PIT,,,1,S.Janikowski kicks onside 13 yards from OAK 35 to OAK 48 out of bounds.,21,24,2012 20120923_PIT@OAK,3,21,35,PIT,OAK,1,10,48,(6:35) (Shotgun) B.Roethlisberger pass short left to A.Brown to OAK 42 for 6 yards (P.Wheeler; T.Branch).,24,21,2012 20120923_PIT@OAK,3,20,56,PIT,OAK,2,4,42,(5:56) (No Huddle Shotgun) C.Rainey up the middle to OAK 37 for 5 yards (D.Tollefson).,24,21,2012 20120923_PIT@OAK,3,20,29,PIT,OAK,1,10,37,(5:29) B.Roethlisberger pass short middle to H.Miller to OAK 21 for 16 yards (J.Hanson R.McClain).,24,21,2012 20120923_PIT@OAK,3,19,51,PIT,OAK,1,10,21,(4:51) (No Huddle Shotgun) C.Rainey right tackle to OAK 19 for 2 yards (T.Branch).,24,21,2012 20120923_PIT@OAK,3,19,12,PIT,OAK,2,8,19,(4:12) (No Huddle Shotgun) B.Roethlisberger pass short left to M.Wallace to OAK 12 for 7 yards (P.Lee). PENALTY on PIT-M.Gilbert Illegal Formation 5 yards enforced at OAK 19 - No Play.,24,21,2012 20120923_PIT@OAK,3,18,47,PIT,OAK,2,13,24,(3:47) (Shotgun) B.Roethlisberger pass short left to M.Wallace to OAK 19 for 5 yards (T.Branch).,24,21,2012 20120923_PIT@OAK,3,18,3,PIT,OAK,3,8,19,(3:03) (Shotgun) B.Roethlisberger pass short right to H.Miller to OAK 10 for 9 yards (M.Mitchell).,24,21,2012 20120923_PIT@OAK,3,17,22,PIT,OAK,1,10,10,(2:22) (No Huddle Shotgun) I.Redman up the middle to OAK 11 for -1 yards (J.Hanson).,24,21,2012 20120923_PIT@OAK,3,16,32,PIT,OAK,2,11,11,(1:32) (No Huddle Shotgun) B.Roethlisberger pass short right to A.Brown to OAK 1 for 10 yards (P.Wheeler). FUMBLES (P.Wheeler) and recovers at OAK 0. TOUCHDOWN. PENALTY on OAK-T.Kelly Unnecessary Roughness 15 yards enforced between downs. The Replay Assistant challenged the loose ball recovery ruling and the play was Upheld.,24,21,2012 20120923_PIT@OAK,3,16,32,PIT,OAK,,,11,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,24,21,2012 20120923_PIT@OAK,3,16,32,PIT,OAK,,,11,S.Suisham kicks 73 yards from PIT 35 to OAK -8. M.Goodson Touchback.,31,21,2012 20120923_PIT@OAK,3,16,31,OAK,PIT,1,10,80,(1:31) C.Palmer pass deep left to D.Moore to OAK 38 for 18 yards (K.Lewis).,21,31,2012 20120923_PIT@OAK,3,16,7,OAK,PIT,1,10,62,(1:07) (No Huddle) C.Palmer pass short right to D.Heyward-Bey to OAK 49 for 11 yards (I.Taylor).,21,31,2012 20120923_PIT@OAK,3,15,45,OAK,PIT,1,10,51,(:45) (No Huddle) C.Palmer pass short middle to B.Myers to PIT 34 for 17 yards (R.Clark).,21,31,2012 20120923_PIT@OAK,3,15,6,OAK,PIT,1,10,34,(:06) (No Huddle) C.Palmer pass short left to M.Reece to PIT 28 for 6 yards (R.Mundy).,21,31,2012 20120923_PIT@OAK,4,15,0,OAK,PIT,2,4,28,(15:00) PENALTY on OAK-M.Reece False Start 5 yards enforced at PIT 28 - No Play.,21,31,2012 20120923_PIT@OAK,4,15,0,OAK,PIT,2,9,33,(15:00) C.Palmer pass incomplete deep left to D.Moore.,21,31,2012 20120923_PIT@OAK,4,14,55,OAK,PIT,3,9,33,(14:55) (Shotgun) C.Palmer pass deep right to R.Streater to PIT 16 for 17 yards (C.Allen).,21,31,2012 20120923_PIT@OAK,4,14,35,OAK,PIT,1,10,16,(14:35) C.Palmer pass incomplete deep middle to D.Heyward-Bey. OAK-D.Heyward-Bey was injured during the play. He is Out.,21,31,2012 20120923_PIT@OAK,4,14,31,OAK,PIT,2,10,16,(14:31) D.McFadden right tackle to PIT 14 for 2 yards (L.Timmons).,21,31,2012 20120923_PIT@OAK,4,13,51,OAK,PIT,3,8,14,(13:51) (Shotgun) C.Palmer pass short left to M.Reece to PIT 4 for 10 yards (C.Allen).,21,31,2012 20120923_PIT@OAK,4,13,21,OAK,PIT,1,4,4,(13:21) D.McFadden left tackle to PIT 1 for 3 yards (Team).,21,31,2012 20120923_PIT@OAK,4,12,41,OAK,PIT,2,1,1,(12:41) PENALTY on OAK-M.Brisiel False Start 5 yards enforced at PIT 1 - No Play.,21,31,2012 20120923_PIT@OAK,4,12,19,OAK,PIT,2,6,6,(12:19) C.Palmer pass short left to D.Moore for 6 yards TOUCHDOWN.,21,31,2012 20120923_PIT@OAK,4,12,19,OAK,PIT,,,6,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,21,31,2012 20120923_PIT@OAK,4,12,19,OAK,PIT,,,6,S.Janikowski kicks 67 yards from OAK 35 to PIT -2. C.Rainey to PIT 22 for 24 yards (B.Ross).,28,31,2012 20120923_PIT@OAK,4,12,7,PIT,OAK,1,10,78,(12:07) (Shotgun) B.Roethlisberger pass short middle to H.Miller to PIT 29 for 7 yards (D.Tollefson).,31,28,2012 20120923_PIT@OAK,4,11,35,PIT,OAK,2,3,71,(11:35) (No Huddle Shotgun) I.Redman right tackle to PIT 36 for 7 yards (R.McClain; T.Branch).,31,28,2012 20120923_PIT@OAK,4,10,57,PIT,OAK,1,10,64,(10:57) (No Huddle Shotgun) B.Roethlisberger pass short middle to A.Brown to OAK 44 for 20 yards (P.Lee). FUMBLES (P.Lee) RECOVERED by OAK-P.Wheeler at OAK 36. P.Wheeler to OAK 36 for no gain (A.Brown).,31,28,2012 20120923_PIT@OAK,4,10,45,OAK,PIT,1,10,64,(10:45) C.Palmer pass short middle to B.Myers to OAK 43 for 7 yards (R.Clark).,28,31,2012 20120923_PIT@OAK,4,10,5,OAK,PIT,2,3,57,(10:05) (No Huddle) D.McFadden right guard to OAK 48 for 5 yards (R.Clark).,28,31,2012 20120923_PIT@OAK,4,9,30,OAK,PIT,1,10,52,(9:30) C.Palmer pass incomplete deep right to D.Moore. PENALTY on PIT-K.Lewis Defensive Pass Interference 21 yards enforced at OAK 48 - No Play.,28,31,2012 20120923_PIT@OAK,4,9,26,OAK,PIT,1,10,31,(9:26) (No Huddle) C.Palmer pass incomplete short left to M.Reece.,28,31,2012 20120923_PIT@OAK,4,9,21,OAK,PIT,2,10,31,(9:21) (No Huddle) D.McFadden left tackle to PIT 24 for 7 yards (R.Clark).,28,31,2012 20120923_PIT@OAK,4,8,36,OAK,PIT,3,3,24,(8:36) C.Palmer pass short left to D.Hagan to PIT 20 for 4 yards (I.Taylor).,28,31,2012 20120923_PIT@OAK,4,8,18,OAK,PIT,1,10,20,(8:18) (No Huddle) D.McFadden left tackle to PIT 18 for 2 yards (L.Foote).,28,31,2012 20120923_PIT@OAK,4,7,54,OAK,PIT,2,8,18,(7:54) (No Huddle) D.McFadden right end to PIT 19 for -1 yards (L.Woodley).,28,31,2012 20120923_PIT@OAK,4,7,11,OAK,PIT,3,9,19,(7:11) (Shotgun) C.Palmer pass short left to D.Moore to PIT 14 for 5 yards (L.Timmons).,28,31,2012 20120923_PIT@OAK,4,6,34,OAK,PIT,4,4,14,(6:34) S.Janikowski 32 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,28,31,2012 20120923_PIT@OAK,4,6,34,OAK,PIT,,,14,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,31,31,2012 20120923_PIT@OAK,4,6,30,PIT,OAK,1,10,80,(6:30) (Shotgun) B.Roethlisberger scrambles up the middle to PIT 20 for no gain. PENALTY on PIT-W.Colon Offensive Holding 10 yards enforced at PIT 20 - No Play.,31,31,2012 20120923_PIT@OAK,4,6,5,PIT,OAK,1,20,90,(6:05) (Shotgun) B.Roethlisberger pass short left to M.Wallace to PIT 24 for 14 yards (P.Wheeler). FUMBLES (P.Wheeler) and recovers at PIT 27. M.Wallace to PIT 27 for no gain (P.Wheeler; M.Giordano).,31,31,2012 20120923_PIT@OAK,4,5,10,PIT,OAK,2,3,73,(5:10) I.Redman right guard to PIT 29 for 2 yards (L.Houston).,31,31,2012 20120923_PIT@OAK,4,4,34,PIT,OAK,3,1,71,(4:34) I.Redman left guard to PIT 29 for no gain (Team).,31,31,2012 20120923_PIT@OAK,4,3,51,PIT,OAK,4,1,71,(3:51) I.Redman up the middle to PIT 35 for 6 yards (P.Wheeler; M.Giordano).,31,31,2012 20120923_PIT@OAK,4,3,9,PIT,OAK,1,10,65,(3:09) (No Huddle Shotgun) B.Roethlisberger sacked at PIT 30 for -5 yards (R.Seymour).,31,31,2012 20120923_PIT@OAK,4,2,31,PIT,OAK,2,15,70,(2:31) (Shotgun) B.Roethlisberger pass short left to H.Miller to PIT 36 for 6 yards (P.Wheeler).,31,31,2012 20120923_PIT@OAK,4,2,0,PIT,OAK,3,9,64,(2:00) (Shotgun) B.Roethlisberger pass incomplete deep middle to M.Wallace [M.Burris].,31,31,2012 20120923_PIT@OAK,4,1,43,PIT,OAK,4,9,64,(1:43) D.Butler punts 44 yards to OAK 20 Center-G.Warren. P.Adams to OAK 25 for 5 yards (B.Batch).,31,31,2012 20120923_PIT@OAK,4,1,43,OAK,PIT,1,10,75,(1:43) (Shotgun) C.Palmer pass incomplete short right to D.Hagan.,31,31,2012 20120923_PIT@OAK,4,1,39,OAK,PIT,2,10,75,(1:39) C.Palmer pass incomplete short right to D.Moore.,31,31,2012 20120923_PIT@OAK,4,1,23,OAK,PIT,3,10,75,(1:23) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 49 for 24 yards.,31,31,2012 20120923_PIT@OAK,4,0,48,OAK,PIT,1,10,60,(:48) C.Palmer pass deep right to D.Hagan to OAK 49 for 9 yards (K.Lewis).,31,31,2012 20120923_PIT@OAK,4,0,48,OAK,PIT,2,1,51,(:48) C.Palmer pass short middle to M.Reece to PIT 43 for 8 yards (I.Taylor).,31,31,2012 20120923_PIT@OAK,4,0,48,OAK,PIT,1,10,43,(:48) C.Palmer pass short middle to D.Hagan to PIT 26 for 17 yards (C.Allen).,31,31,2012 20120923_PIT@OAK,4,0,21,OAK,PIT,2,9,25,(:21) C.Palmer up the middle to PIT 26 for -1 yards (R.Mundy).,31,31,2012 20120923_PIT@OAK,4,0,0,OAK,PIT,3,10,26,(:00) S.Janikowski 43 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,31,31,2012 20120923_PIT@OAK,4,0,0,OAK,PIT,,,26,                      ,34,31,2012 20120923_NE@BAL,1,0,0,BAL,NE,,,26,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.Woodhead Touchback.,0,0,2012 20120923_NE@BAL,1,60,0,NE,BAL,1,10,80,(15:00) T.Brady pass short left to B.Lloyd to NE 32 for 12 yards (C.Williams).,0,0,2012 20120923_NE@BAL,1,59,30,NE,BAL,1,10,68,(14:30) (No Huddle Shotgun) T.Brady pass short left to J.Edelman to NE 31 for -1 yards (E.Reed).,0,0,2012 20120923_NE@BAL,1,59,2,NE,BAL,2,11,72,(14:02) (No Huddle Shotgun) T.Brady FUMBLES (Aborted) at NE 28 and recovers at NE 28. T.Brady to NE 28 for no gain (P.Kruger).,0,0,2012 20120923_NE@BAL,1,58,21,NE,BAL,3,14,72,(13:21) (Shotgun) T.Brady sacked at NE 19 for -9 yards (D.Ellerbe).,0,0,2012 20120923_NE@BAL,1,57,53,NE,BAL,4,23,81,(12:53) (Punt formation) Z.Mesko punts 56 yards to BLT 25 Center-D.Aiken. J.Jones to BLT 44 for 19 yards (B.Bolden).,0,0,2012 20120923_NE@BAL,1,57,40,BAL,NE,1,10,56,(12:40) R.Rice left end to BLT 47 for 3 yards (K.Arrington C.Jones).,0,0,2012 20120923_NE@BAL,1,57,11,BAL,NE,2,7,53,(12:11) (No Huddle) R.Rice left guard to BLT 48 for 1 yard (V.Wilfork).,0,0,2012 20120923_NE@BAL,1,56,39,BAL,NE,3,6,52,(11:39) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to NE 47 for 5 yards (K.Arrington).,0,0,2012 20120923_NE@BAL,1,55,57,BAL,NE,4,1,47,(10:57) (Punt formation) S.Koch punts 37 yards to NE 10 Center-M.Cox downed by BLT-D.Pitta.,0,0,2012 20120923_NE@BAL,1,55,49,NE,BAL,1,10,90,(10:49) (Shotgun) T.Brady pass short left to J.Edelman to NE 17 for 7 yards (R.Lewis).,0,0,2012 20120923_NE@BAL,1,55,26,NE,BAL,2,3,83,(10:26) (No Huddle) D.Woodhead right end to NE 19 for 2 yards (H.Ngata E.Reed).,0,0,2012 20120923_NE@BAL,1,55,1,NE,BAL,3,1,81,(10:01) (No Huddle) D.Woodhead right tackle to NE 21 for 2 yards (P.Kruger R.Lewis).,0,0,2012 20120923_NE@BAL,1,54,32,NE,BAL,1,10,79,(9:32) (No Huddle) T.Brady pass deep left to W.Welker to BLT 20 for 59 yards (B.Pollard).,0,0,2012 20120923_NE@BAL,1,54,21,NE,BAL,1,10,20,(9:21) (No Huddle) S.Ridley right tackle to BLT 20 for no gain (P.Kruger T.Cody).,0,0,2012 20120923_NE@BAL,1,53,40,NE,BAL,2,10,20,(8:40) S.Ridley left guard to BLT 19 for 1 yard (D.Ellerbe).,0,0,2012 20120923_NE@BAL,1,52,58,NE,BAL,3,9,19,(7:58) (No Huddle Shotgun) T.Brady pass incomplete deep middle to J.Edelman (E.Reed) [H.Ngata].,0,0,2012 20120923_NE@BAL,1,52,52,NE,BAL,4,9,19,(7:52) (Field Goal formation) S.Gostkowski 37 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 20120923_NE@BAL,1,52,52,NE,BAL,,,19,S.Gostkowski kicks 64 yards from NE 35 to BLT 1. D.Thompson to BLT 24 for 23 yards (M.Cole).,3,0,2012 20120923_NE@BAL,1,52,42,BAL,NE,1,10,76,(7:42) J.Flacco pass deep middle intended for D.Pitta INTERCEPTED by S.Gregory at BLT 42. S.Gregory to BLT 6 for 36 yards (R.Rice).,0,3,2012 20120923_NE@BAL,1,52,31,NE,BAL,1,6,6,(7:31) T.Brady pass incomplete short right to B.Lloyd.,3,0,2012 20120923_NE@BAL,1,52,28,NE,BAL,2,6,6,(7:28) T.Brady pass short left to M.Hoomanawanui to BLT 2 for 4 yards (E.Reed).,3,0,2012 20120923_NE@BAL,1,52,14,NE,BAL,3,2,2,(7:14) (No Huddle) B.Bolden up the middle for 2 yards TOUCHDOWN.,3,0,2012 20120923_NE@BAL,1,52,14,NE,BAL,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,3,0,2012 20120923_NE@BAL,1,52,14,NE,BAL,,,2,S.Gostkowski kicks 68 yards from NE 35 to BLT -3. D.Thompson to BLT 33 for 36 yards (B.Bolden).,10,0,2012 20120923_NE@BAL,1,52,1,BAL,NE,1,10,67,(7:01) J.Flacco pass short right to E.Dickson to BLT 35 for 2 yards (K.Arrington).,0,10,2012 20120923_NE@BAL,1,51,30,BAL,NE,2,8,65,(6:30) (No Huddle) R.Rice right guard to BLT 38 for 3 yards (R.Ninkovich J.Mayo).,0,10,2012 20120923_NE@BAL,1,50,55,BAL,NE,3,5,62,(5:55) (No Huddle Shotgun) J.Flacco pass short right to E.Dickson to BLT 41 for 3 yards (T.Wilson).,0,10,2012 20120923_NE@BAL,1,50,14,BAL,NE,4,2,59,(5:14) (Punt formation) S.Koch punts 52 yards to NE 7 Center-M.Cox. J.Edelman pushed ob at NE 18 for 11 yards (D.Ellerbe). PENALTY on NE-N.Koutouvides Illegal Block Above the Waist 9 yards enforced at NE 18.,0,10,2012 20120923_NE@BAL,1,50,2,NE,BAL,1,10,91,(5:02) T.Brady pass incomplete short right to W.Welker.,10,0,2012 20120923_NE@BAL,1,49,56,NE,BAL,2,10,91,(4:56) S.Ridley left guard to NE 13 for 4 yards (H.Ngata).,10,0,2012 20120923_NE@BAL,1,49,26,NE,BAL,3,6,87,(4:26) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd to NE 24 for 11 yards (C.Williams).,10,0,2012 20120923_NE@BAL,1,48,54,NE,BAL,1,10,76,(3:54) (No Huddle) D.Woodhead left guard to NE 27 for 3 yards (T.Cody).,10,0,2012 20120923_NE@BAL,1,48,26,NE,BAL,2,8,73,(3:26) (No Huddle) T.Brady pass short left to B.Lloyd pushed ob at NE 49 for 22 yards (C.Williams).,10,0,2012 20120923_NE@BAL,1,48,10,NE,BAL,1,10,51,(3:10) (Shotgun) T.Brady scrambles left end to BLT 44 for 7 yards (H.Ngata). PENALTY on BLT-C.Upshaw Personal Foul 15 yards enforced at BLT 44.,10,0,2012 20120923_NE@BAL,1,47,41,NE,BAL,1,10,29,(2:41) S.Ridley right tackle to BLT 27 for 2 yards.,10,0,2012 20120923_NE@BAL,1,47,14,NE,BAL,2,8,27,(2:14) (No Huddle) S.Ridley right tackle to BLT 18 for 9 yards (R.Lewis). PENALTY on NE-R.Gronkowski Offensive Holding 10 yards enforced at BLT 20.,10,0,2012 20120923_NE@BAL,1,46,52,NE,BAL,2,11,30,(1:52) T.Brady pass incomplete short left to W.Welker.,10,0,2012 20120923_NE@BAL,1,46,48,NE,BAL,3,11,30,(1:48) (Shotgun) T.Brady pass deep left to J.Edelman to BLT 11 for 19 yards (C.Williams). PENALTY on NE-J.Edelman Offensive Pass Interference 10 yards enforced at BLT 30 - No Play.,10,0,2012 20120923_NE@BAL,1,46,22,NE,BAL,3,21,40,(1:22) (Shotgun) T.Brady pass short right to W.Welker to BLT 31 for 9 yards (H.Ngata).,10,0,2012 20120923_NE@BAL,1,46,22,NE,BAL,4,12,31,(1:22) (Field Goal formation) S.Gostkowski 49 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,10,0,2012 20120923_NE@BAL,1,46,22,NE,BAL,,,31,S.Gostkowski kicks 69 yards from NE 35 to BLT -4. D.Thompson to BLT 18 for 22 yards (T.Wilson).,13,0,2012 20120923_NE@BAL,1,45,30,BAL,NE,1,10,82,(:30) J.Flacco pass incomplete deep right to T.Smith (D.McCourty).,0,13,2012 20120923_NE@BAL,1,45,22,BAL,NE,2,10,82,(:22) R.Rice left tackle to BLT 22 for 4 yards (J.Mayo C.Jones).,0,13,2012 20120923_NE@BAL,2,45,0,BAL,NE,3,6,78,(15:00) (Shotgun) J.Flacco pass incomplete short left to R.Rice. PENALTY on NE-J.Mayo Defensive Pass Interference 2 yards enforced at BLT 22 - No Play.,0,13,2012 20120923_NE@BAL,2,44,54,BAL,NE,1,10,76,(14:54) J.Flacco pass short right to R.Rice to BLT 28 for 4 yards (B.Spikes J.Mayo).,0,13,2012 20120923_NE@BAL,2,44,20,BAL,NE,2,6,72,(14:20) (No Huddle) R.Rice right tackle to BLT 47 for 19 yards (S.Gregory). PENALTY on BLT-A.Boldin Offensive Holding 10 yards enforced at BLT 37.,0,13,2012 20120923_NE@BAL,2,43,45,BAL,NE,2,7,73,(13:45) (No Huddle) J.Flacco pass short right to B.Pierce to BLT 37 for 10 yards (D.McCourty).,0,13,2012 20120923_NE@BAL,2,43,24,BAL,NE,1,10,63,(13:24) B.Pierce right end to BLT 45 for 8 yards (D.McCourty).,0,13,2012 20120923_NE@BAL,2,42,31,BAL,NE,2,2,55,(12:31) (No Huddle) J.Flacco pass short right to V.Leach to NE 49 for 6 yards (D.McCourty).,0,13,2012 20120923_NE@BAL,2,42,11,BAL,NE,1,10,49,(12:11) (No Huddle) PENALTY on BLT-M.Yanda False Start 5 yards enforced at NE 49 - No Play.,0,13,2012 20120923_NE@BAL,2,41,51,BAL,NE,1,15,54,(11:51) R.Rice left guard to BLT 48 for 2 yards (V.Wilfork).,0,13,2012 20120923_NE@BAL,2,41,30,BAL,NE,2,13,52,(11:30) J.Flacco pass incomplete short right to A.Boldin.,0,13,2012 20120923_NE@BAL,2,41,28,BAL,NE,3,13,52,(11:28) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to NE 40 for 12 yards (D.McCourty).,0,13,2012 20120923_NE@BAL,2,40,53,BAL,NE,1,10,38,(10:53) R.Rice left guard to NE 30 for 8 yards (D.McCourty).,0,13,2012 20120923_NE@BAL,2,40,27,BAL,NE,2,2,30,(10:27) R.Rice left guard to NE 25 for 5 yards (B.Spikes).,0,13,2012 20120923_NE@BAL,2,39,53,BAL,NE,1,10,25,(9:53) (No Huddle) J.Flacco pass deep left to T.Smith for 25 yards TOUCHDOWN.,0,13,2012 20120923_NE@BAL,2,39,53,BAL,NE,,,25,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,13,2012 20120923_NE@BAL,2,39,53,BAL,NE,,,25,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.McCourty Touchback.,7,13,2012 20120923_NE@BAL,2,39,45,NE,BAL,1,10,80,(9:45) PENALTY on NE-J.Edelman False Start 5 yards enforced at NE 20 - No Play.,13,7,2012 20120923_NE@BAL,2,39,45,NE,BAL,1,15,85,(9:45) T.Brady pass short left to R.Gronkowski to NE 24 for 9 yards (E.Reed J.McClain).,13,7,2012 20120923_NE@BAL,2,39,25,NE,BAL,2,6,76,(9:25) (No Huddle) J.Edelman left end to NE 32 for 8 yards (B.Pollard E.Reed). Reverse,13,7,2012 20120923_NE@BAL,2,38,50,NE,BAL,1,10,68,(8:50) (No Huddle Shotgun) T.Brady pass short middle to J.Edelman to NE 47 for 15 yards (C.Williams).,13,7,2012 20120923_NE@BAL,2,38,24,NE,BAL,1,10,53,(8:24) (No Huddle) D.Woodhead left tackle to BLT 49 for 4 yards (R.Lewis).,13,7,2012 20120923_NE@BAL,2,37,48,NE,BAL,2,6,49,(7:48) (Shotgun) J.Edelman left end to NE 38 for -13 yards (C.Upshaw). Direct snap to Woodhead who hands off to Edelman on reverse.,13,7,2012 20120923_NE@BAL,2,37,6,NE,BAL,3,19,62,(7:06) (Shotgun) D.Woodhead right tackle to NE 42 for 4 yards.,13,7,2012 20120923_NE@BAL,2,36,41,NE,BAL,4,15,58,(6:41) (Punt formation) Z.Mesko punts 50 yards to BLT 8 Center-D.Aiken fair catch by J.Jones.,13,7,2012 20120923_NE@BAL,2,36,36,BAL,NE,1,10,92,(6:36) J.Flacco pass short right to V.Leach to BLT 9 for 1 yard (D.Hightower).,7,13,2012 20120923_NE@BAL,2,35,58,BAL,NE,2,9,91,(5:58) B.Pierce left end to BLT 14 for 5 yards (D.Hightower B.Spikes).,7,13,2012 20120923_NE@BAL,2,35,24,BAL,NE,3,4,86,(5:24) (No Huddle Shotgun) J.Flacco scrambles up the middle to BLT 19 for 5 yards (J.Cunningham).,7,13,2012 20120923_NE@BAL,2,34,49,BAL,NE,1,10,81,(4:49) (No Huddle) R.Rice right tackle to BLT 22 for 3 yards (J.Mayo).,7,13,2012 20120923_NE@BAL,2,34,24,BAL,NE,2,7,78,(4:24) (No Huddle) J.Flacco pass deep middle to J.Jones to NE 37 for 41 yards (K.Arrington P.Chung).,7,13,2012 20120923_NE@BAL,2,33,44,BAL,NE,1,10,37,(3:44) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to NE 32 for 5 yards (D.McCourty).,7,13,2012 20120923_NE@BAL,2,33,6,BAL,NE,2,5,32,(3:06) (No Huddle) R.Rice right tackle to NE 26 for 6 yards (J.Mayo B.Spikes).,7,13,2012 20120923_NE@BAL,2,32,30,BAL,NE,1,10,26,(2:30) (No Huddle) R.Rice left guard to NE 20 for 6 yards (J.Mayo).,7,13,2012 20120923_NE@BAL,2,32,0,BAL,NE,2,4,20,(2:00) J.Flacco pass incomplete deep right to A.Boldin.,7,13,2012 20120923_NE@BAL,2,31,53,BAL,NE,3,4,20,(1:53) (Shotgun) J.Flacco pass short right to D.Pitta for 20 yards TOUCHDOWN.,7,13,2012 20120923_NE@BAL,2,31,53,BAL,NE,,,20,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,13,2012 20120923_NE@BAL,2,31,53,BAL,NE,,,20,J.Tucker kicks 70 yards from BLT 35 to NE -5. D.McCourty to NE 19 for 24 yards (C.Graham).,14,13,2012 20120923_NE@BAL,2,31,41,NE,BAL,1,10,81,(1:41) (Shotgun) T.Brady pass incomplete short right to J.Edelman (J.Smith).,13,14,2012 20120923_NE@BAL,2,31,37,NE,BAL,2,10,81,(1:37) (Shotgun) T.Brady pass short right to R.Gronkowski to NE 31 for 12 yards (D.Ellerbe B.Pollard).,13,14,2012 20120923_NE@BAL,2,31,14,NE,BAL,1,10,69,(1:14) (No Huddle Shotgun) T.Brady pass short left to D.Woodhead pushed ob at NE 36 for 5 yards (R.Lewis). PENALTY on BLT-D.Ellerbe Defensive Holding 5 yards enforced at NE 31 - No Play.,13,14,2012 20120923_NE@BAL,2,31,7,NE,BAL,1,10,64,(1:07) (Shotgun) D.Woodhead right guard to NE 40 for 4 yards (H.Ngata).,13,14,2012 20120923_NE@BAL,2,31,1,NE,BAL,2,6,60,(1:01) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,13,14,2012 20120923_NE@BAL,2,30,57,NE,BAL,3,6,60,(:57) (Shotgun) T.Brady pass short middle to D.Woodhead to NE 49 for 9 yards (J.Smith).,13,14,2012 20120923_NE@BAL,2,30,35,NE,BAL,1,10,51,(:35) (No Huddle Shotgun) T.Brady pass incomplete deep left to B.Lloyd. PENALTY on BLT-C.Williams Illegal Contact 5 yards enforced at NE 49 - No Play.,13,14,2012 20120923_NE@BAL,2,30,28,NE,BAL,1,10,46,(:28) (No Huddle Shotgun) T.Brady pass short left to D.Branch pushed ob at BLT 35 for 11 yards (E.Reed).,13,14,2012 20120923_NE@BAL,2,30,23,NE,BAL,1,10,35,(:23) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to BLT 7 for 28 yards (E.Reed).,13,14,2012 20120923_NE@BAL,2,30,13,NE,BAL,1,7,7,(:13) T.Brady pass incomplete short right to J.Edelman [P.McPhee].,13,14,2012 20120923_NE@BAL,2,30,7,NE,BAL,2,7,7,(:07) (Shotgun) T.Brady pass short middle to J.Edelman for 7 yards TOUCHDOWN.,13,14,2012 20120923_NE@BAL,2,30,7,NE,BAL,,,7,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko. PENALTY on BLT-C.Upshaw Personal Foul 15 yards enforced between downs.,13,14,2012 20120923_NE@BAL,2,30,7,NE,BAL,,,7,S.Gostkowski kicks 26 yards from 50 to BLT 24. D.Pitta to BLT 24 for no gain (T.Wilson).,20,14,2012 20120923_NE@BAL,3,30,0,NE,BAL,,,7,S.Gostkowski kicks 74 yards from NE 35 to BLT -9. D.Thompson Touchback.,20,14,2012 20120923_NE@BAL,3,30,0,BAL,NE,1,10,80,(15:00) R.Rice left tackle to BLT 35 for 15 yards (K.Arrington).,14,20,2012 20120923_NE@BAL,3,29,35,BAL,NE,1,10,65,(14:35) (No Huddle) R.Rice right tackle to BLT 37 for 2 yards (V.Wilfork).,14,20,2012 20120923_NE@BAL,3,29,6,BAL,NE,2,8,63,(14:06) J.Flacco pass incomplete deep middle to A.Boldin. PENALTY on NE-K.Arrington Defensive Holding 5 yards enforced at BLT 37 - No Play.,14,20,2012 20120923_NE@BAL,3,28,58,BAL,NE,1,10,58,(13:58) (No Huddle) J.Flacco pass short right to R.Rice to BLT 46 for 4 yards (J.Mayo).,14,20,2012 20120923_NE@BAL,3,28,26,BAL,NE,2,6,54,(13:26) (No Huddle) R.Rice right guard to BLT 50 for 4 yards (J.Mayo).,14,20,2012 20120923_NE@BAL,3,27,49,BAL,NE,3,2,50,(12:49) (No Huddle Shotgun) J.Flacco pass short middle to T.Smith pushed ob at NE 39 for 11 yards (S.Gregory).,14,20,2012 20120923_NE@BAL,3,27,26,BAL,NE,1,10,39,(12:26) (No Huddle) J.Flacco pass incomplete deep right to J.Jones (D.McCourty).,14,20,2012 20120923_NE@BAL,3,27,18,BAL,NE,2,10,39,(12:18) J.Flacco pass deep middle to T.Smith to NE 7 for 32 yards (S.Gregory D.McCourty).,14,20,2012 20120923_NE@BAL,3,26,42,BAL,NE,1,7,7,(11:42) (No Huddle) R.Rice left guard for 7 yards TOUCHDOWN.,14,20,2012 20120923_NE@BAL,3,26,42,BAL,NE,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,14,20,2012 20120923_NE@BAL,3,26,42,BAL,NE,,,7,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.McCourty Touchback.,21,20,2012 20120923_NE@BAL,3,26,36,NE,BAL,1,10,80,(11:36) T.Brady pass short middle to B.Lloyd to NE 31 for 11 yards (C.Williams).,20,21,2012 20120923_NE@BAL,3,26,7,NE,BAL,1,10,69,(11:07) (No Huddle) S.Ridley right guard to NE 36 for 5 yards (R.Lewis M.Kemoeatu).,20,21,2012 20120923_NE@BAL,3,25,36,NE,BAL,2,5,64,(10:36) (No Huddle) T.Brady pass incomplete short right to K.Winslow (L.Webb).,20,21,2012 20120923_NE@BAL,3,25,30,NE,BAL,3,5,64,(10:30) (No Huddle Shotgun) T.Brady pass short left to W.Welker to NE 47 for 11 yards (C.Williams).,20,21,2012 20120923_NE@BAL,3,24,56,NE,BAL,1,10,53,(9:56) (No Huddle Shotgun) D.Woodhead left guard to NE 50 for 3 yards (R.Lewis).,20,21,2012 20120923_NE@BAL,3,24,32,NE,BAL,2,7,50,(9:32) (No Huddle) D.Woodhead left guard to BLT 49 for 1 yard (C.Upshaw H.Ngata).,20,21,2012 20120923_NE@BAL,3,23,56,NE,BAL,3,6,49,(8:56) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd pushed ob at BLT 39 for 10 yards (C.Williams).,20,21,2012 20120923_NE@BAL,3,23,49,NE,BAL,1,10,39,(8:49) (No Huddle) D.Woodhead left end to BLT 36 for 3 yards (D.Ellerbe). PENALTY on BLT-B.Pollard Personal Foul 15 yards enforced at BLT 36.,20,21,2012 20120923_NE@BAL,3,23,22,NE,BAL,1,10,21,(8:22) (No Huddle Shotgun) D.Woodhead right guard to BLT 18 for 3 yards (D.Ellerbe).,20,21,2012 20120923_NE@BAL,3,22,42,NE,BAL,2,7,18,(7:42) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd pushed ob at BLT 9 for 9 yards (C.Williams).,20,21,2012 20120923_NE@BAL,3,22,16,NE,BAL,1,9,9,(7:16) (No Huddle) D.Woodhead right guard to BLT 3 for 6 yards (D.Ellerbe R.Lewis).,20,21,2012 20120923_NE@BAL,3,21,52,NE,BAL,2,3,3,(6:52) (No Huddle) D.Woodhead right tackle for 3 yards TOUCHDOWN.,20,21,2012 20120923_NE@BAL,3,21,52,NE,BAL,,,3,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,20,21,2012 20120923_NE@BAL,3,21,52,NE,BAL,,,3,S.Gostkowski kicks 74 yards from NE 35 to BLT -9. D.Thompson Touchback.,27,21,2012 20120923_NE@BAL,3,21,48,BAL,NE,1,10,80,(6:48) PENALTY on BLT-T.Smith False Start 5 yards enforced at BLT 20 - No Play.,21,27,2012 20120923_NE@BAL,3,21,48,BAL,NE,1,15,85,(6:48) J.Flacco pass incomplete short right to T.Smith.,21,27,2012 20120923_NE@BAL,3,21,43,BAL,NE,2,15,85,(6:43) J.Flacco pass deep left to T.Smith pushed ob at NE 47 for 38 yards (P.Chung). Penalty on NE-S.Moore Defensive Holding declined.,21,27,2012 20120923_NE@BAL,3,21,22,BAL,NE,1,10,47,(6:22) B.Pierce left guard to NE 42 for 5 yards (J.Mayo).,21,27,2012 20120923_NE@BAL,3,20,54,BAL,NE,2,5,42,(5:54) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to NE 33 for 9 yards (R.Dowling). PENALTY on BLT-M.Yanda Offensive Holding 10 yards enforced at NE 42 - No Play.,21,27,2012 20120923_NE@BAL,3,20,29,BAL,NE,2,15,52,(5:29) J.Flacco pass incomplete short left to V.Leach.,21,27,2012 20120923_NE@BAL,3,20,21,BAL,NE,3,15,52,(5:21) (No Huddle Shotgun) J.Flacco pass incomplete deep right to T.Smith (D.McCourty).,21,27,2012 20120923_NE@BAL,3,20,15,BAL,NE,4,15,52,(5:15) (Punt formation) S.Koch punts 41 yards to NE 11 Center-M.Cox. W.Welker to NE 18 for 7 yards (C.Brown). PENALTY on NE-N.Koutouvides Defensive Offside 5 yards enforced at BLT 48 - No Play.,21,27,2012 20120923_NE@BAL,3,20,4,BAL,NE,4,10,47,(5:04) (Punt formation) S.Koch punts 47 yards to end zone Center-M.Cox Touchback.,21,27,2012 20120923_NE@BAL,3,19,57,NE,BAL,1,10,80,(4:57) T.Brady pass short right to K.Winslow to NE 32 for 12 yards (J.Smith).,27,21,2012 20120923_NE@BAL,3,19,34,NE,BAL,1,10,68,(4:34) S.Ridley up the middle to NE 31 for -1 yards (H.Ngata).,27,21,2012 20120923_NE@BAL,3,19,7,NE,BAL,2,11,69,(4:07) (Shotgun) T.Brady pass short right to B.Lloyd to NE 41 for 10 yards (E.Reed).,27,21,2012 20120923_NE@BAL,3,18,41,NE,BAL,3,1,59,(3:41) S.Ridley right tackle to NE 45 for 4 yards (P.McPhee R.Lewis).,27,21,2012 20120923_NE@BAL,3,17,59,NE,BAL,1,10,55,(2:59) (Shotgun) T.Brady pass short right to B.Lloyd to BLT 45 for 10 yards (J.Smith).,27,21,2012 20120923_NE@BAL,3,17,53,NE,BAL,1,10,45,(2:53) (No Huddle Shotgun) T.Brady pass incomplete short middle to D.Branch. PENALTY on BLT-J.Smith Defensive Holding 5 yards enforced at BLT 45 - No Play.,27,21,2012 20120923_NE@BAL,3,17,46,NE,BAL,1,10,40,(2:46) (No Huddle) D.Woodhead right end to BLT 40 for no gain (C.Upshaw).,27,21,2012 20120923_NE@BAL,3,17,8,NE,BAL,2,10,40,(2:08) (No Huddle) T.Brady pass short left to W.Welker to BLT 33 for 7 yards (C.Williams).,27,21,2012 20120923_NE@BAL,3,16,28,NE,BAL,3,3,33,(1:28) (No Huddle Shotgun) T.Brady pass incomplete short left to D.Branch. PENALTY on BLT-E.Reed Unnecessary Roughness 15 yards enforced at BLT 33.,27,21,2012 20120923_NE@BAL,3,16,20,NE,BAL,1,10,18,(1:20) S.Ridley left tackle to BLT 4 for 14 yards (E.Reed J.Smith).,27,21,2012 20120923_NE@BAL,3,15,40,NE,BAL,1,4,4,(:40) (No Huddle) S.Ridley up the middle to BLT 8 for -4 yards (B.Pollard).,27,21,2012 20120923_NE@BAL,4,15,0,NE,BAL,2,8,8,(15:00) (No Huddle Shotgun) D.Woodhead right guard to BLT 8 for no gain (L.Webb P.McPhee).,27,21,2012 20120923_NE@BAL,4,14,19,NE,BAL,3,8,8,(14:19) (Shotgun) T.Brady pass short left to W.Welker to BLT 2 for 6 yards (L.Webb).,27,21,2012 20120923_NE@BAL,4,14,19,NE,BAL,4,2,2,(14:19) (Field Goal formation) S.Gostkowski 20 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,27,21,2012 20120923_NE@BAL,4,14,19,NE,BAL,,,2,S.Gostkowski kicks 74 yards from NE 35 to BLT -9. D.Thompson Touchback.,30,21,2012 20120923_NE@BAL,4,14,10,BAL,NE,1,10,80,(14:10) J.Flacco pass short right to D.Pitta pushed ob at BLT 25 for 5 yards (D.Hightower).,21,30,2012 20120923_NE@BAL,4,13,39,BAL,NE,2,5,75,(13:39) (No Huddle) R.Rice left guard to BLT 34 for 9 yards (T.Scott).,21,30,2012 20120923_NE@BAL,4,13,13,BAL,NE,1,10,66,(13:13) (No Huddle Shotgun) J.Flacco pass incomplete deep left to T.Smith (D.McCourty).,21,30,2012 20120923_NE@BAL,4,13,5,BAL,NE,2,10,66,(13:05) (No Huddle) J.Flacco pass deep left to A.Boldin pushed ob at NE 42 for 24 yards (K.Arrington).,21,30,2012 20120923_NE@BAL,4,12,43,BAL,NE,1,10,42,(12:43) R.Rice left guard to NE 41 for 1 yard (V.Wilfork).,21,30,2012 20120923_NE@BAL,4,12,14,BAL,NE,2,9,41,(12:14) (No Huddle) R.Rice left guard to NE 35 for 6 yards (D.Hightower).,21,30,2012 20120923_NE@BAL,4,11,43,BAL,NE,3,3,35,(11:43) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice to NE 33 for 2 yards (J.Mayo).,21,30,2012 20120923_NE@BAL,4,10,56,BAL,NE,4,1,33,(10:56) B.Pierce left guard to NE 34 for -1 yards (P.Chung).,21,30,2012 20120923_NE@BAL,4,10,50,NE,BAL,1,10,66,(10:50) T.Brady pass short left to B.Lloyd to NE 47 for 13 yards (C.Williams).,30,21,2012 20120923_NE@BAL,4,10,16,NE,BAL,1,10,53,(10:16) B.Bolden left end to NE 49 for 2 yards (H.Ngata).,30,21,2012 20120923_NE@BAL,4,9,36,NE,BAL,2,8,51,(9:36) (Shotgun) T.Brady pass short middle to W.Welker to BLT 40 for 11 yards (B.Pollard).,30,21,2012 20120923_NE@BAL,4,9,2,NE,BAL,1,10,40,(9:02) (No Huddle) D.Woodhead left end to BLT 44 for -4 yards (D.Ellerbe).,30,21,2012 20120923_NE@BAL,4,8,28,NE,BAL,2,14,44,(8:28) (No Huddle Shotgun) T.Brady pass short right to D.Branch to BLT 44 for no gain (J.Smith).,30,21,2012 20120923_NE@BAL,4,7,44,NE,BAL,3,14,44,(7:44) (Shotgun) T.Brady pass incomplete short right to D.Woodhead.,30,21,2012 20120923_NE@BAL,4,7,44,NE,BAL,4,14,44,(7:44) (Punt formation) Z.Mesko punts 36 yards to BLT 8 Center-D.Aiken fair catch by L.Webb.,30,21,2012 20120923_NE@BAL,4,7,29,BAL,NE,1,10,92,(7:29) J.Flacco pass short middle to R.Rice to BLT 20 for 12 yards (J.Mayo).,21,30,2012 20120923_NE@BAL,4,6,55,BAL,NE,1,10,80,(6:55) (No Huddle) J.Flacco pass incomplete deep right to T.Smith. PENALTY on BLT-M.Yanda Offensive Holding 10 yards enforced at BLT 20 - No Play.,21,30,2012 20120923_NE@BAL,4,6,50,BAL,NE,1,20,90,(6:50) R.Rice left guard to BLT 16 for 6 yards (D.Hightower).,21,30,2012 20120923_NE@BAL,4,6,18,BAL,NE,2,14,84,(6:18) (No Huddle Shotgun) J.Flacco pass incomplete deep right to T.Smith. PENALTY on NE-D.McCourty Defensive Holding 5 yards enforced at BLT 16 - No Play.,21,30,2012 20120923_NE@BAL,4,6,11,BAL,NE,1,10,79,(6:11) (No Huddle Shotgun) J.Flacco pass short middle to J.Jones to BLT 42 for 21 yards (S.Gregory).,21,30,2012 20120923_NE@BAL,4,5,40,BAL,NE,1,10,58,(5:40) (No Huddle Shotgun) J.Flacco pass short right to T.Smith ran ob at NE 42 for 16 yards.,21,30,2012 20120923_NE@BAL,4,5,20,BAL,NE,1,10,42,(5:20) (No Huddle Shotgun) J.Flacco pass short left to D.Pitta to NE 37 for 5 yards (S.Moore).,21,30,2012 20120923_NE@BAL,4,4,48,BAL,NE,2,5,37,(4:48) (No Huddle Shotgun) J.Flacco pass short right to R.Rice to NE 10 for 27 yards (K.Arrington). NE-K.Arrington was injured during the play.,21,30,2012 20120923_NE@BAL,4,4,21,BAL,NE,1,10,10,(4:21) (No Huddle Shotgun) J.Flacco pass incomplete short left to D.Pitta.,21,30,2012 20120923_NE@BAL,4,4,15,BAL,NE,2,10,10,(4:15) (No Huddle Shotgun) J.Flacco sacked at NE 22 for -12 yards (sack split by C.Jones and K.Love). PENALTY on NE-B.Spikes Defensive Holding 5 yards enforced at NE 10 - No Play.,21,30,2012 20120923_NE@BAL,4,4,8,BAL,NE,1,5,5,(4:08) (No Huddle) J.Flacco pass short right to T.Smith for 5 yards TOUCHDOWN.,21,30,2012 20120923_NE@BAL,4,4,8,BAL,NE,,,5,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,21,30,2012 20120923_NE@BAL,4,4,8,BAL,NE,,,5,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.McCourty Touchback.,28,30,2012 20120923_NE@BAL,4,4,1,NE,BAL,1,10,80,(4:01) T.Brady pass incomplete short right to S.Ridley.,30,28,2012 20120923_NE@BAL,4,3,57,NE,BAL,2,10,80,(3:57) (Shotgun) T.Brady pass short right to W.Welker to NE 31 for 11 yards (B.Pollard).,30,28,2012 20120923_NE@BAL,4,3,15,NE,BAL,1,10,69,(3:15) S.Ridley left end to NE 32 for 1 yard (R.Lewis C.Upshaw).,30,28,2012 20120923_NE@BAL,4,2,32,NE,BAL,2,9,68,(2:32) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,30,28,2012 20120923_NE@BAL,4,2,28,NE,BAL,3,9,68,(2:28) (Shotgun) T.Brady pass short right intended for W.Welker INTERCEPTED by L.Webb at NE 40. L.Webb to NE 40 for no gain (R.Gronkowski). PENALTY on BLT-L.Webb Illegal Contact 5 yards enforced at NE 32 - No Play.,30,28,2012 20120923_NE@BAL,4,2,23,NE,BAL,1,10,63,(2:23) S.Ridley left guard to NE 40 for 3 yards (A.McClellan). PENALTY on BLT Unsportsmanlike Conduct 15 yards enforced at NE 40. Unsportsmanlike conduct called on Baltimore Bench.,30,28,2012 20120923_NE@BAL,4,2,18,NE,BAL,1,10,45,(2:18) S.Ridley right tackle to BLT 44 for 1 yard (R.Lewis J.McClain).,30,28,2012 20120923_NE@BAL,4,2,12,NE,BAL,2,9,44,(2:12) (Shotgun) T.Brady sacked at NE 49 for -7 yards (sack split by D.Ellerbe and H.Ngata).,30,28,2012 20120923_NE@BAL,4,2,6,NE,BAL,3,16,51,(2:06) (Shotgun) T.Brady pass incomplete short right to R.Gronkowski (B.Pollard) [P.Kruger].,30,28,2012 20120923_NE@BAL,4,2,1,NE,BAL,4,16,51,(2:01) (Punt formation) Z.Mesko punts 30 yards to BLT 21 Center-D.Aiken. J.Jones MUFFS catch and recovers at BLT 21. J.Jones to BLT 21 for no gain (M.Slater).,30,28,2012 20120923_NE@BAL,4,1,55,BAL,NE,1,10,79,(1:55) (Shotgun) J.Flacco pass deep right to J.Jones to BLT 45 for 24 yards (P.Chung).,28,30,2012 20120923_NE@BAL,4,1,31,BAL,NE,1,10,55,(1:31) J.Flacco pass short right to D.Pitta to BLT 48 for 3 yards (T.Wilson).,28,30,2012 20120923_NE@BAL,4,1,26,BAL,NE,2,7,52,(1:26) (No Huddle Shotgun) J.Flacco pass deep right to D.Pitta pushed ob at NE 35 for 17 yards (P.Chung).,28,30,2012 20120923_NE@BAL,4,1,21,BAL,NE,1,10,35,(1:21) (No Huddle Shotgun) R.Rice up the middle to NE 34 for 1 yard (J.Cunningham R.Ninkovich).,28,30,2012 20120923_NE@BAL,4,0,55,BAL,NE,2,9,34,(:55) (No Huddle Shotgun) J.Flacco pass incomplete deep left to A.Boldin.,28,30,2012 20120923_NE@BAL,4,0,52,BAL,NE,3,9,34,(:52) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones. PENALTY on NE-D.McCourty Defensive Pass Interference 27 yards enforced at NE 34 - No Play.,28,30,2012 20120923_NE@BAL,4,0,52,BAL,NE,1,7,7,(:52) J.Flacco kneels to NE 9 for -2 yards.,28,30,2012 20120923_NE@BAL,4,0,2,BAL,NE,2,9,9,(:02) (Field Goal formation) J.Tucker 27 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,28,30,2012 20120923_NE@BAL,4,0,2,BAL,NE,,,9,                      ,31,30,2012 20120924_GB@SEA,1,0,0,GB,SEA,,,9,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,0,0,2012 20120924_GB@SEA,1,60,0,SEA,GB,1,10,80,(15:00) M.Lynch left tackle to SEA 24 for 4 yards (A.Hawk; C.Wilson).,0,0,2012 20120924_GB@SEA,1,59,25,SEA,GB,2,6,76,(14:25) M.Lynch right tackle to SEA 28 for 4 yards (R.Pickett; B.Raji).,0,0,2012 20120924_GB@SEA,1,58,45,SEA,GB,3,2,72,(13:45) (Shotgun) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 28 - No Play.,0,0,2012 20120924_GB@SEA,1,58,17,SEA,GB,3,7,77,(13:17) (Shotgun) R.Wilson pass incomplete short right to B.Obomanu.,0,0,2012 20120924_GB@SEA,1,58,11,SEA,GB,4,7,77,(13:11) J.Ryan punts 42 yards to GB 35 Center-C.Gresham fair catch by R.Cobb.,0,0,2012 20120924_GB@SEA,1,58,3,GB,SEA,1,10,65,(13:03) (Shotgun) A.Rodgers scrambles up the middle to SEA 49 for 16 yards.,0,0,2012 20120924_GB@SEA,1,57,23,GB,SEA,1,10,49,(12:23) A.Rodgers pass short right to C.Benson to SEA 49 for no gain (K.Wright).,0,0,2012 20120924_GB@SEA,1,56,43,GB,SEA,2,10,49,(11:43) C.Benson left end to SEA 49 for no gain (R.Bryant).,0,0,2012 20120924_GB@SEA,1,56,2,GB,SEA,3,10,49,(11:02) (Shotgun) A.Rodgers sacked at GB 48 for -3 yards (B.Irvin).,0,0,2012 20120924_GB@SEA,1,55,46,GB,SEA,4,13,52,(10:46) T.Masthay punts 43 yards to SEA 9 Center-B.Goode downed by GB-M.Jennings.,0,0,2012 20120924_GB@SEA,1,55,36,SEA,GB,1,10,91,(10:36) (Shotgun) R.Wilson pass short left to B.Obomanu to SEA 17 for 8 yards (D.Smith).,0,0,2012 20120924_GB@SEA,1,55,4,SEA,GB,2,2,83,(10:04) R.Wilson pass short right to C.Martin to SEA 27 for 10 yards (A.Hawk).,0,0,2012 20120924_GB@SEA,1,54,25,SEA,GB,1,10,73,(9:25) R.Wilson pass short right to A.McCoy pushed ob at SEA 36 for 9 yards (N.Perry).,0,0,2012 20120924_GB@SEA,1,53,58,SEA,GB,2,1,64,(8:58) M.Lynch right guard to SEA 44 for 8 yards (N.Perry T.Williams).,0,0,2012 20120924_GB@SEA,1,53,14,SEA,GB,1,10,56,(8:14) PENALTY on SEA-A.McCoy False Start 5 yards enforced at SEA 44 - No Play.,0,0,2012 20120924_GB@SEA,1,52,45,SEA,GB,1,15,61,(7:45) M.Lynch right tackle to SEA 45 for 6 yards (C.Wilson).,0,0,2012 20120924_GB@SEA,1,52,10,SEA,GB,2,9,55,(7:10) R.Wilson pass incomplete deep left to S.Rice (S.Shields). PENALTY on GB-C.Woodson Defensive Holding 5 yards enforced at SEA 45 - No Play.,0,0,2012 20120924_GB@SEA,1,52,4,SEA,GB,1,10,50,(7:04) R.Wilson pass incomplete short right to A.McCoy [E.Walden].,0,0,2012 20120924_GB@SEA,1,51,58,SEA,GB,2,10,50,(6:58) M.Lynch right tackle to GB 44 for 6 yards (C.Matthews; C.Woodson).,0,0,2012 20120924_GB@SEA,1,51,13,SEA,GB,3,4,44,(6:13) (Shotgun) R.Wilson pass incomplete short right to B.Obomanu (J.McMillian).,0,0,2012 20120924_GB@SEA,1,51,9,SEA,GB,4,4,44,(6:09) J.Ryan punts 43 yards to GB 1 Center-C.Gresham downed by SEA-B.Obomanu.,0,0,2012 20120924_GB@SEA,1,50,59,GB,SEA,1,10,99,(5:59) A.Rodgers pass incomplete deep left to G.Jennings (B.Browner).,0,0,2012 20120924_GB@SEA,1,50,54,GB,SEA,2,10,99,(5:54) (Shotgun) A.Rodgers pass short right to D.Williams pushed ob at GB 12 for 11 yards (L.Hill).,0,0,2012 20120924_GB@SEA,1,50,28,GB,SEA,1,10,88,(5:28) A.Rodgers pass short left to J.Nelson to GB 18 for 6 yards (E.Thomas; B.Browner).,0,0,2012 20120924_GB@SEA,1,49,47,GB,SEA,2,4,82,(4:47) A.Rodgers sacked at GB 12 for -6 yards (B.Mebane).,0,0,2012 20120924_GB@SEA,1,49,18,GB,SEA,3,10,88,(4:18) (Shotgun) A.Rodgers pass short left to J.Kuhn to GB 21 for 9 yards (L.Hill; K.Wright). PENALTY on SEA-C.Clemons Defensive Offside 5 yards enforced at GB 12 - No Play.,0,0,2012 20120924_GB@SEA,1,49,0,GB,SEA,3,5,83,(4:00) (Shotgun) A.Rodgers pass short middle to Ja.Jones to GB 24 for 7 yards (L.Hill; K.Chancellor).,0,0,2012 20120924_GB@SEA,1,48,22,GB,SEA,1,10,76,(3:22) A.Rodgers pass short middle to C.Benson to GB 32 for 8 yards (B.Wagner). PENALTY on GB-J.Sitton Illegal Use of Hands 10 yards enforced at GB 24 - No Play.,0,0,2012 20120924_GB@SEA,1,47,57,GB,SEA,1,20,86,(2:57) (Shotgun) A.Rodgers pass incomplete short right to C.Benson.,0,0,2012 20120924_GB@SEA,1,47,52,GB,SEA,2,20,86,(2:52) (Shotgun) A.Rodgers sacked at GB 8 for -6 yards (B.Irvin).,0,0,2012 20120924_GB@SEA,1,47,22,GB,SEA,3,26,92,(2:22) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 21 for 13 yards (K.Wright).,0,0,2012 20120924_GB@SEA,1,46,52,GB,SEA,4,13,79,(1:52) T.Masthay punts 51 yards to SEA 28 Center-B.Goode downed by GB-J.Bush. PENALTY on GB-B.Saine Ineligible Downfield Kick 5 yards enforced at GB 21 - No Play.,0,0,2012 20120924_GB@SEA,1,46,39,GB,SEA,4,18,84,(1:39) T.Masthay punts 48 yards to SEA 36 Center-B.Goode fair catch by L.Washington.,0,0,2012 20120924_GB@SEA,1,46,31,SEA,GB,1,10,64,(1:31) M.Lynch right tackle to SEA 38 for 2 yards (R.Pickett; A.Hawk).,0,0,2012 20120924_GB@SEA,1,45,55,SEA,GB,2,8,62,(:55) R.Wilson pass short left to M.Lynch to SEA 39 for 1 yard (A.Hawk).,0,0,2012 20120924_GB@SEA,1,45,15,SEA,GB,3,7,61,(:15) (Shotgun) R.Wilson pass incomplete short right to Z.Miller.,0,0,2012 20120924_GB@SEA,1,45,7,SEA,GB,4,7,61,(:07) J.Ryan punts 41 yards to GB 20 Center-C.Gresham. R.Cobb to GB 22 for 2 yards (J.Lane; B.Obomanu). PENALTY on SEA-M.Smith Unnecessary Roughness 15 yards enforced at GB 22.,0,0,2012 20120924_GB@SEA,2,45,0,GB,SEA,1,10,63,(15:00) A.Rodgers pass short right to C.Benson to GB 45 for 8 yards (B.Wagner).,0,0,2012 20120924_GB@SEA,2,44,25,GB,SEA,2,2,55,(14:25) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 46 for 1 yard (K.Chancellor).,0,0,2012 20120924_GB@SEA,2,43,40,GB,SEA,3,1,54,(13:40) A.Rodgers sacked at GB 40 for -6 yards (C.Clemons).,0,0,2012 20120924_GB@SEA,2,43,22,GB,SEA,4,7,60,(13:22) T.Masthay punts 43 yards to SEA 17 Center-B.Goode fair catch by L.Washington.,0,0,2012 20120924_GB@SEA,2,43,14,SEA,GB,1,10,83,(13:14) M.Lynch left tackle to SEA 22 for 5 yards (R.Pickett; S.Shields).,0,0,2012 20120924_GB@SEA,2,42,36,SEA,GB,2,5,78,(12:36) M.Lynch left tackle to SEA 22 for no gain (B.Raji).,0,0,2012 20120924_GB@SEA,2,41,56,SEA,GB,3,5,78,(11:56) (Shotgun) R.Wilson pass incomplete short right to G.Tate (C.Hayward).,0,0,2012 20120924_GB@SEA,2,41,52,SEA,GB,4,5,78,(11:52) J.Ryan punts 65 yards to GB 13 Center-C.Gresham. R.Cobb MUFFS catch and recovers at GB 5. R.Cobb to GB 11 for 6 yards (M.Smith; H.Farwell).,0,0,2012 20120924_GB@SEA,2,41,38,GB,SEA,1,10,89,(11:38) (Shotgun) R.Cobb left end pushed ob at GB 31 for 20 yards (B.Browner).,0,0,2012 20120924_GB@SEA,2,41,14,GB,SEA,1,10,69,(11:14) A.Rodgers pass short right to G.Jennings to GB 44 for 13 yards (B.Wagner).,0,0,2012 20120924_GB@SEA,2,40,29,GB,SEA,1,10,56,(10:29) C.Benson right end to GB 48 for 4 yards (R.Bryant; B.Wagner).,0,0,2012 20120924_GB@SEA,2,39,50,GB,SEA,2,6,52,(9:50) (Shotgun) A.Rodgers pass incomplete short left to R.Cobb.,0,0,2012 20120924_GB@SEA,2,39,47,GB,SEA,3,6,52,(9:47) (Shotgun) A.Rodgers sacked at GB 42 for -6 yards (C.Clemons). Penalty on GB-B.Bulaga Offensive Holding declined.,0,0,2012 20120924_GB@SEA,2,39,34,GB,SEA,4,12,58,(9:34) T.Masthay punts 37 yards to SEA 21 Center-B.Goode. L.Washington to SEA 27 for 6 yards (D.Williams; J.Bush).,0,0,2012 20120924_GB@SEA,2,39,24,SEA,GB,1,10,73,(9:24) R.Wilson scrambles left end to SEA 38 for 11 yards (S.Shields). PENALTY on SEA-P.McQuistan Offensive Holding 10 yards enforced at SEA 27 - No Play. Penalty on SEA-R.Okung Offensive Holding declined.,0,0,2012 20120924_GB@SEA,2,38,55,SEA,GB,1,20,83,(8:55) Unabated to QB. (Shotgun) PENALTY on GB-J.Worthy Defensive Offside 5 yards enforced at SEA 17 - No Play.,0,0,2012 20120924_GB@SEA,2,38,42,SEA,GB,1,15,78,(8:42) M.Lynch right tackle to SEA 30 for 8 yards (D.Smith; C.Woodson).,0,0,2012 20120924_GB@SEA,2,38,5,SEA,GB,2,7,70,(8:05) M.Lynch right tackle to SEA 33 for 3 yards (P.Merling; R.Pickett).,0,0,2012 20120924_GB@SEA,2,37,23,SEA,GB,3,4,67,(7:23) (Shotgun) R.Wilson scrambles right end ran ob at SEA 40 for 7 yards.,0,0,2012 20120924_GB@SEA,2,36,54,SEA,GB,1,10,60,(6:54) M.Lynch left tackle to SEA 44 for 4 yards (A.Hawk). PENALTY on GB-D.Smith Unnecessary Roughness 15 yards enforced at SEA 44.,0,0,2012 20120924_GB@SEA,2,36,29,SEA,GB,1,10,41,(6:29) R.Wilson pass deep right to G.Tate for 41 yards TOUCHDOWN.,0,0,2012 20120924_GB@SEA,2,36,29,SEA,GB,,,41,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 20120924_GB@SEA,2,36,29,SEA,GB,,,41,S.Hauschka kicks 64 yards from SEA 35 to GB 1. R.Cobb to GB 24 for 23 yards (J.Johnson; S.Hauschka).,7,0,2012 20120924_GB@SEA,2,36,15,GB,SEA,1,10,76,(6:15) A.Rodgers pass short right to J.Finley to GB 29 for 5 yards (K.Chancellor) [A.Branch].,0,7,2012 20120924_GB@SEA,2,35,38,GB,SEA,2,5,71,(5:38) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 28 for -1 yards (J.Johnson).,0,7,2012 20120924_GB@SEA,2,34,58,GB,SEA,3,6,72,(4:58) (Shotgun) A.Rodgers pass short middle to Ja.Jones to GB 42 for 14 yards (K.Wright).,0,7,2012 20120924_GB@SEA,2,34,20,GB,SEA,1,10,58,(4:20) A.Rodgers sacked at GB 38 for -4 yards (B.Mebane). PENALTY on SEA-B.Mebane Face Mask (15 Yards) 15 yards enforced at GB 38.,0,7,2012 20120924_GB@SEA,2,33,55,GB,SEA,1,10,47,(3:55) (Shotgun) A.Rodgers pass incomplete short middle. PENALTY on GB-J.Saturday Offensive Holding 10 yards enforced at SEA 47 - No Play.,0,7,2012 20120924_GB@SEA,2,33,51,GB,SEA,1,20,57,(3:51) (Shotgun) A.Rodgers sacked at GB 36 for -7 yards (C.Clemons).,0,7,2012 20120924_GB@SEA,2,33,21,GB,SEA,2,27,64,(3:21) (Shotgun) A.Rodgers sacked at GB 35 for -1 yards (C.Clemons).,0,7,2012 20120924_GB@SEA,2,32,46,GB,SEA,3,28,65,(2:46) (Shotgun) A.Rodgers pass short right to J.Kuhn to GB 44 for 9 yards (K.Wright).,0,7,2012 20120924_GB@SEA,2,32,28,GB,SEA,4,19,56,(2:28) T.Masthay punts 55 yards to SEA 1 Center-B.Goode downed by GB-J.Bush.,0,7,2012 20120924_GB@SEA,2,32,17,SEA,GB,1,10,99,(2:17) M.Lynch left tackle to SEA 5 for 4 yards (R.Pickett; C.Matthews).,7,0,2012 20120924_GB@SEA,2,32,0,SEA,GB,2,6,95,(2:00) M.Lynch right tackle to SEA 5 for no gain (M.Burnett; E.Walden).,7,0,2012 20120924_GB@SEA,2,31,19,SEA,GB,3,6,95,(1:19) M.Lynch right tackle to SEA 14 for 9 yards (C.Woodson).,7,0,2012 20120924_GB@SEA,2,31,5,SEA,GB,1,10,86,(1:05) M.Lynch right tackle to SEA 20 for 6 yards (E.Walden).,7,0,2012 20120924_GB@SEA,2,30,32,SEA,GB,2,4,80,(:32) M.Lynch left tackle to SEA 22 for 2 yards (R.Pickett; S.Shields).,7,0,2012 20120924_GB@SEA,3,30,0,SEA,GB,,,80,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,7,0,2012 20120924_GB@SEA,3,30,0,GB,SEA,1,10,80,(15:00) C.Benson right tackle to GB 26 for 6 yards (B.Mebane).,0,7,2012 20120924_GB@SEA,3,29,27,GB,SEA,2,4,74,(14:27) C.Benson up the middle to GB 34 for 8 yards (B.Wagner R.Sherman).,0,7,2012 20120924_GB@SEA,3,28,56,GB,SEA,1,10,66,(13:56) A.Rodgers pass incomplete short right to D.Williams.,0,7,2012 20120924_GB@SEA,3,28,51,GB,SEA,2,10,66,(13:51) C.Benson right tackle to GB 40 for 6 yards (K.Wright).,0,7,2012 20120924_GB@SEA,3,28,9,GB,SEA,3,4,60,(13:09) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 45 for 5 yards (K.Chancellor).,0,7,2012 20120924_GB@SEA,3,27,31,GB,SEA,1,10,55,(12:31) C.Benson up the middle to SEA 46 for 9 yards (B.Browner).,0,7,2012 20120924_GB@SEA,3,26,57,GB,SEA,2,1,46,(11:57) C.Benson left guard to SEA 43 for 3 yards (B.Wagner).,0,7,2012 20120924_GB@SEA,3,26,22,GB,SEA,1,10,43,(11:22) A.Rodgers pass incomplete short middle to J.Finley (E.Thomas) [B.Wagner]. PENALTY on SEA-B.Wagner Roughing the Passer 15 yards enforced at SEA 43 - No Play.,0,7,2012 20120924_GB@SEA,3,26,18,GB,SEA,1,10,28,(11:18) C.Benson right tackle to SEA 25 for 3 yards (C.McDonald).,0,7,2012 20120924_GB@SEA,3,25,39,GB,SEA,2,7,25,(10:39) (Shotgun) A.Rodgers pass short right to C.Benson to SEA 20 for 5 yards (L.Hill).,0,7,2012 20120924_GB@SEA,3,24,59,GB,SEA,3,2,20,(9:59) PENALTY on SEA Defensive 12 On-field 5 yards enforced at SEA 20 - No Play.,0,7,2012 20120924_GB@SEA,3,24,43,GB,SEA,1,10,15,(9:43) C.Benson right tackle to SEA 16 for -1 yards (K.Wright).,0,7,2012 20120924_GB@SEA,3,24,5,GB,SEA,2,11,16,(9:05) A.Rodgers pass short right to J.Kuhn to SEA 10 for 6 yards (R.Sherman).,0,7,2012 20120924_GB@SEA,3,23,20,GB,SEA,3,5,10,(8:20) (Shotgun) A.Rodgers pass incomplete short middle to D.Driver.,0,7,2012 20120924_GB@SEA,3,23,11,GB,SEA,4,5,10,(8:11) M.Crosby 29 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,0,7,2012 20120924_GB@SEA,3,23,11,GB,SEA,,,10,M.Crosby kicks 59 yards from GB 35 to SEA 6. L.Washington to SEA 27 for 21 yards (R.Taylor). PENALTY on GB-R.Francois Unnecessary Roughness 15 yards enforced at SEA 27.,3,7,2012 20120924_GB@SEA,3,23,1,SEA,GB,1,10,58,(8:01) PENALTY on SEA-A.McCoy False Start 5 yards enforced at SEA 42 - No Play.,7,3,2012 20120924_GB@SEA,3,23,1,SEA,GB,1,15,63,(8:01) M.Lynch right tackle to SEA 39 for 2 yards (R.Pickett; N.Perry).,7,3,2012 20120924_GB@SEA,3,22,23,SEA,GB,2,13,61,(7:23) R.Wilson sacked at SEA 20 for -19 yards (N.Perry).,7,3,2012 20120924_GB@SEA,3,21,48,SEA,GB,3,32,80,(6:48) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at SEA 20 - No Play.,7,3,2012 20120924_GB@SEA,3,21,38,SEA,GB,3,37,85,(6:38) L.Washington left tackle to SEA 26 for 11 yards (E.Walden).,7,3,2012 20120924_GB@SEA,3,21,5,SEA,GB,4,26,74,(6:05) J.Ryan punts 66 yards to GB 8 Center-C.Gresham. R.Cobb to GB 12 for 4 yards (C.Maragos; H.Farwell).,7,3,2012 20120924_GB@SEA,3,20,50,GB,SEA,1,10,88,(5:50) C.Benson right tackle to GB 17 for 5 yards (R.Bryant).,3,7,2012 20120924_GB@SEA,3,20,14,GB,SEA,2,5,83,(5:14) A.Rodgers pass incomplete short left to J.Kuhn [B.Mebane].,3,7,2012 20120924_GB@SEA,3,20,10,GB,SEA,3,5,83,(5:10) (Shotgun) A.Rodgers pass deep left to J.Finley to GB 48 for 31 yards (E.Thomas).,3,7,2012 20120924_GB@SEA,3,19,33,GB,SEA,1,10,52,(4:33) (No Huddle Shotgun) A.Rodgers pass short right to Ja.Jones to SEA 43 for 9 yards (M.Trufant; K.Wright).,3,7,2012 20120924_GB@SEA,3,19,9,GB,SEA,2,1,43,(4:09) (No Huddle) A.Rodgers pass short left to G.Jennings to SEA 39 for 4 yards (M.Trufant).,3,7,2012 20120924_GB@SEA,3,18,45,GB,SEA,1,10,39,(3:45) (Shotgun) A.Rodgers pass short right to G.Jennings to SEA 36 for 3 yards (K.Chancellor).,3,7,2012 20120924_GB@SEA,3,18,9,GB,SEA,2,7,36,(3:09) C.Benson right end to SEA 34 for 2 yards (L.Hill; K.Chancellor).,3,7,2012 20120924_GB@SEA,3,17,27,GB,SEA,3,5,34,(2:27) (Shotgun) C.Benson right end to SEA 30 for 4 yards (K.Wright). PENALTY on SEA-B.Browner Illegal Use of Hands 5 yards enforced at SEA 34 - No Play.,3,7,2012 20120924_GB@SEA,3,17,0,GB,SEA,1,10,29,(2:00) (Shotgun) C.Benson up the middle to SEA 22 for 7 yards (K.Wright C.McDonald).,3,7,2012 20120924_GB@SEA,3,16,27,GB,SEA,2,3,22,(1:27) A.Rodgers pass incomplete short left to G.Jennings (C.Clemons).,3,7,2012 20120924_GB@SEA,3,16,23,GB,SEA,3,3,22,(1:23) (Shotgun) A.Rodgers pass incomplete short right to J.Finley (R.Sherman).,3,7,2012 20120924_GB@SEA,3,16,18,GB,SEA,4,3,22,(1:18) M.Crosby 40 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,3,7,2012 20120924_GB@SEA,3,16,18,GB,SEA,,,22,M.Crosby kicks 69 yards from GB 35 to SEA -4. L.Washington to SEA 17 for 21 yards (C.Hayward B.Saine).,6,7,2012 20120924_GB@SEA,3,16,8,SEA,GB,1,10,83,(1:08) M.Lynch left tackle to SEA 20 for 3 yards (D.Smith; A.Hawk).,7,6,2012 20120924_GB@SEA,3,15,27,SEA,GB,2,7,80,(:27) J.Sweezy reported in as eligible. M.Lynch right tackle to SEA 22 for 2 yards (C.Wilson; A.Hawk).,7,6,2012 20120924_GB@SEA,4,15,0,SEA,GB,3,5,78,(15:00) (Shotgun) R.Wilson pass incomplete short right to Z.Miller.,7,6,2012 20120924_GB@SEA,4,14,55,SEA,GB,4,5,78,(14:55) J.Ryan punts 44 yards to GB 34 Center-C.Gresham fair catch by R.Cobb. PENALTY on GB-J.Bush Unnecessary Roughness 15 yards enforced at GB 34.,7,6,2012 20120924_GB@SEA,4,14,46,GB,SEA,1,10,81,(14:46) A.Rodgers pass incomplete short right [A.Branch].,6,7,2012 20120924_GB@SEA,4,14,39,GB,SEA,2,10,81,(14:39) C.Benson right tackle to GB 19 for no gain (B.Wagner B.Mebane).,6,7,2012 20120924_GB@SEA,4,13,57,GB,SEA,3,10,81,(13:57) (Shotgun) A.Rodgers pass short right to J.Finley to GB 32 for 13 yards (K.Wright).,6,7,2012 20120924_GB@SEA,4,13,34,GB,SEA,1,10,68,(13:34) (No Huddle) A.Rodgers pass incomplete short left to G.Jennings.,6,7,2012 20120924_GB@SEA,4,13,29,GB,SEA,2,10,68,(13:29) A.Rodgers pass incomplete short left to Ja.Jones.,6,7,2012 20120924_GB@SEA,4,13,24,GB,SEA,3,10,68,(13:24) (Shotgun) A.Rodgers pass short right to Ja.Jones to GB 45 for 13 yards (R.Sherman; E.Thomas) [B.Irvin].,6,7,2012 20120924_GB@SEA,4,12,49,GB,SEA,1,10,55,(12:49) C.Benson left tackle to GB 42 for -3 yards (K.Wright; K.Chancellor).,6,7,2012 20120924_GB@SEA,4,12,9,GB,SEA,2,13,58,(12:09) (Shotgun) A.Rodgers pass short middle to J.Finley to SEA 47 for 11 yards (M.Trufant).,6,7,2012 20120924_GB@SEA,4,11,31,GB,SEA,3,2,47,(11:31) (Shotgun) A.Rodgers pass incomplete short right to J.Finley. PENALTY on SEA-K.Chancellor Defensive Pass Interference 8 yards enforced at SEA 47 - No Play.,6,7,2012 20120924_GB@SEA,4,11,28,GB,SEA,1,10,39,(11:28) A.Rodgers pass incomplete short left to J.Nelson.,6,7,2012 20120924_GB@SEA,4,11,21,GB,SEA,2,10,39,(11:21) (Shotgun) A.Rodgers pass short right to Ja.Jones to SEA 27 for 12 yards (R.Sherman).,6,7,2012 20120924_GB@SEA,4,10,41,GB,SEA,1,10,27,(10:41) (No Huddle Shotgun) A.Rodgers pass short middle to C.Benson to SEA 21 for 6 yards (K.Chancellor). Penalty on GB-G.Jennings Unsportsmanlike Conduct offsetting. Penalty on SEA-B.Browner Unsportsmanlike Conduct offsetting.,6,7,2012 20120924_GB@SEA,4,10,16,GB,SEA,2,4,21,(10:16) A.Rodgers pass short middle to J.Kuhn to SEA 11 for 10 yards (K.Wright).,6,7,2012 20120924_GB@SEA,4,9,42,GB,SEA,1,10,11,(9:42) (Shotgun) A.Rodgers pass incomplete short right to G.Jennings.,6,7,2012 20120924_GB@SEA,4,9,38,GB,SEA,2,10,11,(9:38) (Shotgun) A.Rodgers pass short right to G.Jennings for 11 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was REVERSED. (Shotgun) A.Rodgers pass short right to G.Jennings ran ob at SEA 2 for 9 yards.,6,7,2012 20120924_GB@SEA,4,9,24,GB,SEA,3,1,2,(9:24) A.Rodgers sacked at SEA 2 for 0 yards (C.McDonald B.Wagner). Green Bay challenged the first down ruling and the play was REVERSED. A.Rodgers scrambles right tackle to SEA 1 for 1 yard (C.McDonald B.Wagner).,6,7,2012 20120924_GB@SEA,4,8,53,GB,SEA,1,1,1,(8:53) C.Benson up the middle for 1 yard TOUCHDOWN.,6,7,2012 20120924_GB@SEA,4,8,53,GB,SEA,,,1,TWO-POINT CONVERSION ATTEMPT. A.Rodgers pass to Ja.Jones is incomplete. ATTEMPT FAILS. Thrown from shotgun formation. SS #39 pass defense.,6,7,2012 20120924_GB@SEA,4,8,53,GB,SEA,,,1,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,12,7,2012 20120924_GB@SEA,4,8,44,SEA,GB,1,10,80,(8:44) R.Wilson pass intended for E.Moore INTERCEPTED by J.McMillian [E.Walden] at SEA 26. J.McMillian ran ob at SEA 26 for no gain. PENALTY on GB-E.Walden Roughing the Passer 15 yards enforced at SEA 20 - No Play.,7,12,2012 20120924_GB@SEA,4,8,36,SEA,GB,1,10,65,(8:36) M.Lynch left tackle to SEA 41 for 6 yards (R.Pickett).,7,12,2012 20120924_GB@SEA,4,8,10,SEA,GB,2,4,59,(8:10) M.Lynch up the middle to SEA 46 for 5 yards (E.Walden; C.Matthews).,7,12,2012 20120924_GB@SEA,4,7,29,SEA,GB,1,10,54,(7:29) R.Wilson scrambles up the middle to GB 42 for 12 yards.,7,12,2012 20120924_GB@SEA,4,6,42,SEA,GB,1,10,42,(6:42) J.Sweezy reported in as eligible. M.Lynch right tackle to GB 40 for 2 yards (S.Shields). PENALTY on SEA-R.Okung Offensive Holding 10 yards enforced at GB 42 - No Play.,7,12,2012 20120924_GB@SEA,4,6,28,SEA,GB,1,20,52,(6:28) M.Lynch right tackle to GB 47 for 5 yards (A.Hawk). PENALTY on SEA-B.Obomanu Offensive Holding 10 yards enforced at GB 47.,7,12,2012 20120924_GB@SEA,4,6,14,SEA,GB,1,25,57,(6:14) R.Wilson pass incomplete deep right to S.Rice. PENALTY on GB-S.Shields Defensive Pass Interference 32 yards enforced at SEA 43 - No Play.,7,12,2012 20120924_GB@SEA,4,6,10,SEA,GB,1,10,25,(6:10) (Shotgun) R.Wilson pass short right to Z.Miller to GB 17 for 8 yards (A.Hawk).,7,12,2012 20120924_GB@SEA,4,5,46,SEA,GB,2,2,17,(5:46) M.Lynch right guard to GB 16 for 1 yard (A.Hawk; R.Pickett).,7,12,2012 20120924_GB@SEA,4,5,0,SEA,GB,3,1,16,(5:00) R.Wilson right tackle to GB 17 for -1 yards (D.Smith). Option run.,7,12,2012 20120924_GB@SEA,4,4,21,SEA,GB,4,2,17,(4:21) M.Lynch left guard to GB 14 for 3 yards (B.Raji; M.Burnett).,7,12,2012 20120924_GB@SEA,4,3,38,SEA,GB,1,10,14,(3:38) R.Wilson pass short right to Z.Miller to GB 10 for 4 yards (D.Smith).,7,12,2012 20120924_GB@SEA,4,3,2,SEA,GB,2,6,10,(3:02) M.Lynch left guard to GB 10 for no gain (E.Walden; A.Hawk).,7,12,2012 20120924_GB@SEA,4,2,22,SEA,GB,3,6,10,(2:22) (Shotgun) R.Wilson pass short middle to G.Tate to GB 7 for 3 yards (C.Hayward).,7,12,2012 20120924_GB@SEA,4,2,0,SEA,GB,4,3,7,(2:00) (Shotgun) R.Wilson pass incomplete short left to G.Tate.,7,12,2012 20120924_GB@SEA,4,1,54,GB,SEA,1,10,93,(1:54) C.Benson up the middle to GB 2 for -5 yards (E.Thomas). FUMBLES (E.Thomas) recovered by GB-J.Saturday at GB 2. J.Saturday to GB 2 for no gain (K.Chancellor).,12,7,2012 20120924_GB@SEA,4,1,45,GB,SEA,2,15,98,(1:45) C.Benson right guard to GB 2 for no gain (K.Chancellor).,12,7,2012 20120924_GB@SEA,4,1,41,GB,SEA,3,15,98,(1:41) J.Kuhn up the middle to GB 4 for 2 yards (B.Wagner; L.Hill).,12,7,2012 20120924_GB@SEA,4,0,57,GB,SEA,4,13,96,(:57) T.Masthay punts 41 yards to GB 45 Center-B.Goode. L.Washington to GB 46 for -1 yards (R.Francois; D.Moses).,12,7,2012 20120924_GB@SEA,4,0,46,SEA,GB,1,10,46,(:46) (Shotgun) R.Wilson pass incomplete deep middle to E.Moore (C.Woodson).,7,12,2012 20120924_GB@SEA,4,0,41,SEA,GB,2,10,46,(:41) (Shotgun) R.Wilson pass deep right to S.Rice to GB 24 for 22 yards (T.Williams).,7,12,2012 20120924_GB@SEA,4,0,24,SEA,GB,1,10,24,(:24) (No Huddle Shotgun) R.Wilson pass incomplete deep left to G.Tate (S.Shields).,7,12,2012 20120924_GB@SEA,4,0,18,SEA,GB,2,10,24,(:18) (Shotgun) R.Wilson pass incomplete deep middle to E.Moore.,7,12,2012 20120924_GB@SEA,4,0,12,SEA,GB,3,10,24,(:12) (Shotgun) R.Wilson pass incomplete deep right to G.Tate.,7,12,2012 20120924_GB@SEA,4,0,8,SEA,GB,4,10,24,(:08) (Shotgun) R.Wilson pass deep left to G.Tate for 24 yards TOUCHDOWN [C.Matthews]. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,7,12,2012 20120924_GB@SEA,4,0,8,SEA,GB,,,24,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,12,2012 20120924_GB@SEA,4,0,8,SEA,GB,,,24,                      ,14,12,2012 20120927_CLE@BAL,1,0,0,BAL,CLE,,,24,J.Tucker kicks 74 yards from BLT 35 to CLV -9. J.Cribbs Touchback.,0,0,2012 20120927_CLE@BAL,1,60,0,CLE,BAL,1,10,80,(15:00) T.Richardson right guard to CLV 27 for 7 yards (R.Lewis J.McClain).,0,0,2012 20120927_CLE@BAL,1,59,32,CLE,BAL,2,3,73,(14:32) B.Weeden pass short left to G.Little to CLV 34 for 7 yards (C.Williams).,0,0,2012 20120927_CLE@BAL,1,59,3,CLE,BAL,1,10,66,(14:03) (Shotgun) B.Weeden pass incomplete short right to G.Little.,0,0,2012 20120927_CLE@BAL,1,58,57,CLE,BAL,2,10,66,(13:57) T.Richardson left tackle to CLV 37 for 3 yards (D.Ellerbe).,0,0,2012 20120927_CLE@BAL,1,58,20,CLE,BAL,3,7,63,(13:20) (Shotgun) B.Weeden pass incomplete short left to C.Ogbonnaya (P.Kruger) [R.Lewis].,0,0,2012 20120927_CLE@BAL,1,58,16,CLE,BAL,4,7,63,(13:16) (Punt formation) R.Hodges punts 33 yards to BLT 30 Center-C.Yount out of bounds.,0,0,2012 20120927_CLE@BAL,1,58,8,BAL,CLE,1,10,70,(13:08) J.Flacco pass incomplete deep left to T.Smith.,0,0,2012 20120927_CLE@BAL,1,58,8,BAL,CLE,2,10,70,(13:08) (No Huddle) R.Rice left guard to BLT 40 for 10 yards (U.Young S.Brown).,0,0,2012 20120927_CLE@BAL,1,57,29,BAL,CLE,1,10,60,(12:29) (No Huddle) J.Flacco pass short left to V.Leach to BLT 47 for 7 yards (K.Maiava). PENALTY on CLV-S.Brown Illegal Contact 5 yards enforced at BLT 40 - No Play.,0,0,2012 20120927_CLE@BAL,1,57,4,BAL,CLE,1,10,55,(12:04) J.Flacco pass incomplete short right to T.Smith.,0,0,2012 20120927_CLE@BAL,1,56,59,BAL,CLE,2,10,55,(11:59) (No Huddle Shotgun) J.Flacco pass short left to R.Rice to CLV 47 for 8 yards (D.Patterson D.Jackson).,0,0,2012 20120927_CLE@BAL,1,56,24,BAL,CLE,3,2,47,(11:24) R.Rice left tackle to CLV 47 for no gain (B.Winn F.Rucker). Penalty on BLT-M.Oher Offensive Holding declined.,0,0,2012 20120927_CLE@BAL,1,56,12,BAL,CLE,4,2,47,(11:12) (Punt formation) S.Koch punts 47 yards to end zone Center-M.Cox Touchback.,0,0,2012 20120927_CLE@BAL,1,56,4,CLE,BAL,1,10,80,(11:04) (Shotgun) B.Weeden pass short right to J.Cribbs to CLV 22 for 2 yards (L.Webb A.McClellan).,0,0,2012 20120927_CLE@BAL,1,55,36,CLE,BAL,2,8,78,(10:36) T.Richardson left tackle to CLV 25 for 3 yards (T.Cody C.Upshaw).,0,0,2012 20120927_CLE@BAL,1,54,48,CLE,BAL,3,5,75,(9:48) B.Weeden pass short middle to J.Cribbs to CLV 34 for 9 yards (D.Ellerbe C.Upshaw) [R.Lewis].,0,0,2012 20120927_CLE@BAL,1,54,4,CLE,BAL,1,10,66,(9:04) G.Little left end to CLV 32 for -2 yards (A.McClellan).,0,0,2012 20120927_CLE@BAL,1,53,20,CLE,BAL,2,12,68,(8:20) T.Richardson left tackle to CLV 32 for no gain (P.McPhee).,0,0,2012 20120927_CLE@BAL,1,52,45,CLE,BAL,3,12,68,(7:45) (Shotgun) B.Weeden pass incomplete short right to J.Cameron (D.Ellerbe).,0,0,2012 20120927_CLE@BAL,1,52,43,CLE,BAL,4,12,68,(7:43) (Punt formation) R.Hodges punts 44 yards to BLT 24 Center-C.Yount fair catch by J.Jones.,0,0,2012 20120927_CLE@BAL,1,52,35,BAL,CLE,1,10,76,(7:35) T.Smith right end to BLT 24 for no gain. Reverse,0,0,2012 20120927_CLE@BAL,1,52,2,BAL,CLE,2,10,76,(7:02) (No Huddle) R.Rice right guard to BLT 28 for 4 yards (J.Hughes F.Rucker). PENALTY on BLT Illegal Formation 5 yards enforced at BLT 24 - No Play.,0,0,2012 20120927_CLE@BAL,1,51,40,BAL,CLE,2,15,81,(6:40) (Shotgun) R.Rice up the middle to BLT 17 for -2 yards (B.Winn).,0,0,2012 20120927_CLE@BAL,1,51,10,BAL,CLE,3,17,83,(6:10) (No Huddle Shotgun) PENALTY on BLT-K.Osemele False Start 5 yards enforced at BLT 17 - No Play.,0,0,2012 20120927_CLE@BAL,1,50,54,BAL,CLE,3,22,88,(5:54) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 20 for 8 yards (A.Rubin).,0,0,2012 20120927_CLE@BAL,1,50,18,BAL,CLE,4,14,80,(5:18) (Punt formation) S.Koch punts 54 yards to CLV 26 Center-M.Cox. J.Cribbs to CLV 40 for 14 yards (D.Ellerbe). FUMBLES (D.Ellerbe) RECOVERED by BLT-J.McClain at CLV 40. J.McClain to CLV 40 for no gain (K.Maiava). Penalty on BLT-J.Ihedigbo Personal Foul offsetting enforced at CLV 40. Penalty on CLV-J.Bademosi Personal Foul offsetting. #16 Josh Cribbs for Cleveland injured on the play The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,0,2012 20120927_CLE@BAL,1,50,7,BAL,CLE,1,10,40,(5:07) R.Rice left tackle to CLV 38 for 2 yards (B.Winn).,0,0,2012 20120927_CLE@BAL,1,49,30,BAL,CLE,2,8,38,(4:30) (No Huddle Shotgun) J.Flacco pass short left to R.Rice to CLV 29 for 9 yards (S.Brown).,0,0,2012 20120927_CLE@BAL,1,49,16,BAL,CLE,1,10,29,(4:16) (No Huddle Shotgun) J.Flacco pass short left to T.Smith to CLV 17 for 12 yards (D.Jackson).,0,0,2012 20120927_CLE@BAL,1,48,40,BAL,CLE,1,10,17,(3:40) (No Huddle Shotgun) J.Flacco pass short left to R.Rice to CLV 10 for 7 yards (B.Winn D.Jackson).,0,0,2012 20120927_CLE@BAL,1,48,28,BAL,CLE,2,3,10,(3:28) (No Huddle Shotgun) J.Flacco pass short right intended for A.Boldin INTERCEPTED by C.Robertson at CLV 0. Touchback.,0,0,2012 20120927_CLE@BAL,1,48,21,CLE,BAL,1,10,80,(3:21) B.Weeden pass short left to T.Richardson pushed ob at CLV 38 for 18 yards (L.Webb).,0,0,2012 20120927_CLE@BAL,1,47,50,CLE,BAL,1,10,62,(2:50) T.Richardson left tackle to CLV 48 for 10 yards (R.Lewis). PENALTY on CLV-J.Thomas Offensive Holding 10 yards enforced at CLV 38 - No Play.,0,0,2012 20120927_CLE@BAL,1,47,22,CLE,BAL,1,20,72,(2:22) B.Weeden pass incomplete short right to G.Little.,0,0,2012 20120927_CLE@BAL,1,47,16,CLE,BAL,2,20,72,(2:16) T.Richardson left guard to CLV 31 for 3 yards (H.Ngata A.McClellan).,0,0,2012 20120927_CLE@BAL,1,46,34,CLE,BAL,3,17,69,(1:34) (Shotgun) B.Weeden pass short left to J.Norwood to CLV 33 for 2 yards (C.Upshaw).,0,0,2012 20120927_CLE@BAL,1,46,0,CLE,BAL,4,15,67,(1:00) (Punt formation) R.Hodges punts 52 yards to BLT 15 Center-C.Yount. J.Jones to BLT 15 for no gain (J.Bademosi).,0,0,2012 20120927_CLE@BAL,1,45,50,BAL,CLE,1,10,85,(:50) B.Pierce left end to BLT 15 for no gain (D.Jackson).,0,0,2012 20120927_CLE@BAL,1,45,17,BAL,CLE,2,10,85,(:17) (No Huddle) B.Pierce right end to BLT 18 for 3 yards (D.Patterson).,0,0,2012 20120927_CLE@BAL,2,45,0,BAL,CLE,3,7,82,(15:00) (Shotgun) J.Flacco pass deep left to T.Doss to CLV 43 for 39 yards (S.Brown).,0,0,2012 20120927_CLE@BAL,2,44,35,BAL,CLE,1,10,43,(14:35) (No Huddle) J.Flacco pass deep right to T.Smith ran ob at CLV 9 for 34 yards.,0,0,2012 20120927_CLE@BAL,2,44,1,BAL,CLE,1,9,9,(14:01) (No Huddle) PENALTY on BLT-D.Pitta False Start 5 yards enforced at CLV 9 - No Play.,0,0,2012 20120927_CLE@BAL,2,43,43,BAL,CLE,1,14,14,(13:43) (Shotgun) J.Flacco pass short right to R.Rice to CLV 18 for -4 yards (B.Winn).,0,0,2012 20120927_CLE@BAL,2,43,3,BAL,CLE,2,18,18,(13:03) (Shotgun) J.Flacco pass deep middle to T.Smith for 18 yards TOUCHDOWN.,0,0,2012 20120927_CLE@BAL,2,43,3,BAL,CLE,,,18,J.Tucker extra point is Aborted Center-M.Cox Holder-S.Koch. Holder fumbled snap,0,0,2012 20120927_CLE@BAL,2,43,3,BAL,CLE,,,18,J.Tucker kicks 74 yards from BLT 35 to CLV -9. T.Benjamin Touchback.,0,0,2012 20120927_CLE@BAL,2,42,57,CLE,BAL,1,10,80,(12:57) B.Weeden pass incomplete short right to T.Benjamin.,0,0,2012 20120927_CLE@BAL,2,42,53,CLE,BAL,2,10,80,(12:53) T.Richardson left guard to CLV 25 for 5 yards (P.McPhee A.McClellan).,0,0,2012 20120927_CLE@BAL,2,42,17,CLE,BAL,3,5,75,(12:17) (Shotgun) B.Weeden pass incomplete short left to C.Ogbonnaya.,0,0,2012 20120927_CLE@BAL,2,42,12,CLE,BAL,4,5,75,(12:12) (Punt formation) R.Hodges punts 49 yards to BLT 26 Center-C.Yount fair catch by J.Jones. PENALTY on CLV-J.Bademosi Fair Catch Interference 15 yards enforced at BLT 26.,0,0,2012 20120927_CLE@BAL,2,42,1,BAL,CLE,1,10,59,(12:01) J.Flacco pass short right to V.Leach to BLT 49 for 8 yards (S.Fujita).,0,0,2012 20120927_CLE@BAL,2,41,46,BAL,CLE,2,2,51,(11:46) (No Huddle) R.Rice right guard to CLV 45 for 6 yards (J.Hughes E.Stephens).,0,0,2012 20120927_CLE@BAL,2,41,23,BAL,CLE,1,10,45,(11:23) (No Huddle Shotgun) J.Flacco pass short middle to T.Smith to CLV 30 for 15 yards (D.Patterson).,0,0,2012 20120927_CLE@BAL,2,40,51,BAL,CLE,1,10,30,(10:51) (No Huddle) J.Flacco pass incomplete deep right to T.Smith (D.Patterson).,0,0,2012 20120927_CLE@BAL,2,40,44,BAL,CLE,2,10,30,(10:44) (Shotgun) R.Rice left guard to CLV 27 for 3 yards (A.Rubin F.Rucker).,0,0,2012 20120927_CLE@BAL,2,40,17,BAL,CLE,3,7,27,(10:17) (No Huddle Shotgun) J.Flacco pass incomplete deep left to D.Pitta.,0,0,2012 20120927_CLE@BAL,2,40,8,BAL,CLE,4,7,27,(10:08) (Field Goal formation) J.Tucker 45 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 20120927_CLE@BAL,2,40,8,BAL,CLE,,,27,J.Tucker kicks 72 yards from BLT 35 to CLV -7. T.Benjamin to CLV 17 for 24 yards (J.Smith).,9,0,2012 20120927_CLE@BAL,2,39,57,CLE,BAL,1,10,83,(9:57) T.Richardson right end to CLV 20 for 3 yards (L.Webb).,0,9,2012 20120927_CLE@BAL,2,39,17,CLE,BAL,2,7,80,(9:17) B.Weeden pass incomplete short right to J.Cameron (E.Reed).,0,9,2012 20120927_CLE@BAL,2,39,12,CLE,BAL,3,7,80,(9:12) B.Weeden sacked at CLV 14 for -6 yards (P.Kruger).,0,9,2012 20120927_CLE@BAL,2,38,48,CLE,BAL,4,13,86,(8:48) (Punt formation) R.Hodges punts 32 yards to CLV 46 Center-C.Yount downed by CLV-C.Ogbonnaya. PENALTY on BLT-J.Smith Illegal Use of Hands 10 yards enforced at CLV 46.,0,9,2012 20120927_CLE@BAL,2,38,37,BAL,CLE,1,10,56,(8:37) B.Pierce right tackle to BLT 48 for 4 yards (A.Rubin T.Gipson).,9,0,2012 20120927_CLE@BAL,2,38,6,BAL,CLE,2,6,52,(8:06) (No Huddle) J.Flacco pass incomplete deep left to T.Smith [B.Winn].,9,0,2012 20120927_CLE@BAL,2,38,1,BAL,CLE,3,6,52,(8:01) (No Huddle Shotgun) J.Flacco sacked at BLT 44 for -4 yards (A.Rubin).,9,0,2012 20120927_CLE@BAL,2,37,34,BAL,CLE,4,10,56,(7:34) (Punt formation) S.Koch punts 50 yards to CLV 6 Center-M.Cox out of bounds.,9,0,2012 20120927_CLE@BAL,2,37,24,CLE,BAL,1,10,94,(7:24) B.Weeden pass incomplete deep right to J.Cameron.,0,9,2012 20120927_CLE@BAL,2,37,18,CLE,BAL,2,10,94,(7:18) T.Richardson left tackle to CLV 12 for 6 yards (B.Pollard).,0,9,2012 20120927_CLE@BAL,2,36,36,CLE,BAL,3,4,88,(6:36) (Shotgun) B.Weeden pass short middle to B.Watson to CLV 18 for 6 yards (R.Lewis).,0,9,2012 20120927_CLE@BAL,2,36,1,CLE,BAL,1,10,82,(6:01) B.Weeden pass incomplete short right to B.Watson (P.Kruger).,0,9,2012 20120927_CLE@BAL,2,35,57,CLE,BAL,2,10,82,(5:57) B.Weeden pass deep left to G.Little to BLT 39 for 43 yards (C.Williams).,0,9,2012 20120927_CLE@BAL,2,35,13,CLE,BAL,1,10,39,(5:13) B.Weeden pass incomplete short right to G.Little [J.McClain].,0,9,2012 20120927_CLE@BAL,2,35,7,CLE,BAL,2,10,39,(5:07) B.Weeden pass short right to T.Benjamin to BLT 27 for 12 yards (A.McClellan).,0,9,2012 20120927_CLE@BAL,2,34,31,CLE,BAL,1,10,27,(4:31) T.Richardson left guard to BLT 20 for 7 yards (A.McClellan B.Pollard).,0,9,2012 20120927_CLE@BAL,2,33,51,CLE,BAL,2,3,20,(3:51) B.Weeden pass short middle to C.Ogbonnaya to BLT 15 for 5 yards (R.Lewis).,0,9,2012 20120927_CLE@BAL,2,33,14,CLE,BAL,1,10,15,(3:14) B.Weeden pass short middle to T.Benjamin to BLT 1 for 14 yards (J.Smith).,0,9,2012 20120927_CLE@BAL,2,32,37,CLE,BAL,1,1,1,(2:37) T.Richardson left end for 1 yard TOUCHDOWN.,0,9,2012 20120927_CLE@BAL,2,32,37,CLE,BAL,,,1,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,9,2012 20120927_CLE@BAL,2,32,37,CLE,BAL,,,1,P.Dawson kicks 71 yards from CLV 35 to BLT -6. D.Thompson to BLT 19 for 25 yards (C.Robertson).,7,9,2012 20120927_CLE@BAL,2,32,26,BAL,CLE,1,10,81,(2:26) (No Huddle Shotgun) J.Flacco pass short right to R.Rice to BLT 30 for 11 yards (D.Jackson).,9,7,2012 20120927_CLE@BAL,2,32,7,BAL,CLE,1,10,70,(2:07) (No Huddle) J.Flacco pass short left to A.Boldin to BLT 36 for 6 yards (D.Patterson).,9,7,2012 20120927_CLE@BAL,2,32,0,BAL,CLE,2,4,64,(2:00) (Shotgun) J.Flacco pass short right to J.Jones to BLT 43 for 7 yards (B.Skrine).,9,7,2012 20120927_CLE@BAL,2,31,44,BAL,CLE,1,10,57,(1:44) (No Huddle Shotgun) PENALTY on BLT-M.Oher False Start 5 yards enforced at BLT 43 - No Play.,9,7,2012 20120927_CLE@BAL,2,31,41,BAL,CLE,1,15,62,(1:41) (No Huddle Shotgun) J.Flacco pass incomplete short right to J.Jones (B.Skrine).,9,7,2012 20120927_CLE@BAL,2,31,35,BAL,CLE,2,15,62,(1:35) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones.,9,7,2012 20120927_CLE@BAL,2,31,26,BAL,CLE,3,15,62,(1:26) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice to BLT 46 for 8 yards (C.Robertson).,9,7,2012 20120927_CLE@BAL,2,31,12,BAL,CLE,4,7,54,(1:12) (Punt formation) S.Koch punts 54 yards to end zone Center-M.Cox Touchback.,9,7,2012 20120927_CLE@BAL,2,31,3,CLE,BAL,1,10,80,(1:03) (Shotgun) C.Ogbonnaya up the middle to CLV 18 for -2 yards (H.Ngata).,7,9,2012 20120927_CLE@BAL,2,30,59,CLE,BAL,2,12,82,(:59) (Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CLV 23 for 5 yards (D.Ellerbe).,7,9,2012 20120927_CLE@BAL,2,30,52,CLE,BAL,3,7,77,(:52) B.Weeden pass incomplete short middle to J.Norwood (L.Webb).,7,9,2012 20120927_CLE@BAL,2,30,47,CLE,BAL,4,7,77,(:47) (Punt formation) R.Hodges punts 32 yards to BLT 45 Center-C.Yount out of bounds.,7,9,2012 20120927_CLE@BAL,2,30,40,BAL,CLE,1,10,55,(:40) (No Huddle Shotgun) J.Flacco sacked at BLT 36 for -9 yards (J.Sheard).,9,7,2012 20120927_CLE@BAL,2,30,15,BAL,CLE,2,19,64,(:15) (Shotgun) J.Flacco pass short right to R.Rice to BLT 36 for no gain (C.Robertson).,9,7,2012 20120927_CLE@BAL,2,30,10,BAL,CLE,3,19,64,(:10) (Shotgun) J.Flacco pass incomplete deep right to J.Jones.,9,7,2012 20120927_CLE@BAL,2,30,10,BAL,CLE,4,19,64,(:10) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones.,9,7,2012 20120927_CLE@BAL,3,30,0,CLE,BAL,,,64,P.Dawson kicks 73 yards from CLV 35 to BLT -8. D.Thompson to BLT 11 for 19 yards (T.Carder).,7,9,2012 20120927_CLE@BAL,3,29,56,BAL,CLE,1,10,89,(14:56) J.Flacco pass incomplete short left to R.Rice.,9,7,2012 20120927_CLE@BAL,3,29,50,BAL,CLE,2,10,89,(14:50) J.Flacco pass short right to T.Smith to BLT 19 for 8 yards (T.Ward S.Fujita).,9,7,2012 20120927_CLE@BAL,3,29,17,BAL,CLE,3,2,81,(14:17) (No Huddle) R.Rice right tackle to BLT 27 for 8 yards (T.Gipson).,9,7,2012 20120927_CLE@BAL,3,29,17,BAL,CLE,1,10,73,(14:17) (No Huddle Shotgun) PENALTY on CLV-B.Winn Neutral Zone Infraction 5 yards enforced at BLT 27 - No Play.,9,7,2012 20120927_CLE@BAL,3,28,36,BAL,CLE,1,5,68,(13:36) (No Huddle Shotgun) J.Flacco pass incomplete short left to J.Jones.,9,7,2012 20120927_CLE@BAL,3,28,32,BAL,CLE,2,5,68,(13:32) (No Huddle) J.Flacco pass short right to A.Boldin ran ob at BLT 50 for 18 yards.,9,7,2012 20120927_CLE@BAL,3,28,14,BAL,CLE,1,10,50,(13:14) (No Huddle) R.Rice left guard to CLV 47 for 3 yards (J.Parker S.Fujita).,9,7,2012 20120927_CLE@BAL,3,27,53,BAL,CLE,2,7,47,(12:53) (No Huddle Shotgun) J.Flacco pass incomplete short right to R.Rice.,9,7,2012 20120927_CLE@BAL,3,27,49,BAL,CLE,3,7,47,(12:49) (No Huddle Shotgun) J.Flacco pass deep right to A.Boldin to CLV 26 for 21 yards (D.Patterson).,9,7,2012 20120927_CLE@BAL,3,27,19,BAL,CLE,1,10,26,(12:19) (No Huddle Shotgun) R.Rice left end to CLV 23 for 3 yards (D.Jackson J.Sheard).,9,7,2012 20120927_CLE@BAL,3,26,50,BAL,CLE,2,7,23,(11:50) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to CLV 2 for 21 yards (S.Fujita U.Young).,9,7,2012 20120927_CLE@BAL,3,26,9,BAL,CLE,1,2,2,(11:09) (No Huddle) R.Rice left guard to CLV 2 for no gain (J.Hughes J.Sheard).,9,7,2012 20120927_CLE@BAL,3,25,31,BAL,CLE,2,2,2,(10:31) R.Rice left guard to CLV 1 for 1 yard (T.Ward L.Fort).,9,7,2012 20120927_CLE@BAL,3,25,0,BAL,CLE,3,1,1,(10:00) (No Huddle) J.Flacco right end for 1 yard TOUCHDOWN.,9,7,2012 20120927_CLE@BAL,3,25,0,BAL,CLE,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,9,7,2012 20120927_CLE@BAL,3,25,0,BAL,CLE,,,1,J.Tucker kicks 74 yards from BLT 35 to CLV -9. T.Benjamin to CLV 14 for 23 yards (C.Graham).,16,7,2012 20120927_CLE@BAL,3,24,49,CLE,BAL,1,10,86,(9:49) T.Richardson left tackle to CLV 17 for 3 yards (P.McPhee R.Lewis).,7,16,2012 20120927_CLE@BAL,3,24,8,CLE,BAL,2,7,83,(9:08) (Shotgun) B.Weeden pass short left to G.Little to CLV 22 for 5 yards (P.Kruger).,7,16,2012 20120927_CLE@BAL,3,23,37,CLE,BAL,3,2,78,(8:37) B.Weeden pass short right to T.Richardson to CLV 37 for 15 yards (J.McClain).,7,16,2012 20120927_CLE@BAL,3,23,7,CLE,BAL,1,10,63,(8:07) B.Weeden pass short middle to B.Watson to CLV 50 for 13 yards (B.Pollard). PENALTY on BLT-B.Pollard Unnecessary Roughness 15 yards enforced at CLV 50.,7,16,2012 20120927_CLE@BAL,3,22,5,CLE,BAL,1,10,35,(7:05) T.Richardson left guard to BLT 33 for 2 yards (A.McClellan H.Ngata).,7,16,2012 20120927_CLE@BAL,3,22,5,CLE,BAL,2,8,33,(7:05) B.Weeden pass incomplete deep middle to J.Norwood (L.Webb).,7,16,2012 20120927_CLE@BAL,3,22,2,CLE,BAL,3,8,33,(7:02) (Shotgun) B.Weeden pass incomplete short middle to J.Norwood.,7,16,2012 20120927_CLE@BAL,3,22,2,CLE,BAL,4,8,33,(7:02) (Field Goal formation) P.Dawson 51 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,7,16,2012 20120927_CLE@BAL,3,22,2,CLE,BAL,,,33,P.Dawson kicks 74 yards from CLV 35 to BLT -9. D.Thompson Touchback.,10,16,2012 20120927_CLE@BAL,3,21,52,BAL,CLE,1,10,80,(6:52) J.Flacco pass short right to V.Leach to BLT 37 for 17 yards (D.Patterson).,16,10,2012 20120927_CLE@BAL,3,21,14,BAL,CLE,1,10,63,(6:14) J.Flacco pass short right to A.Boldin to BLT 44 for 7 yards (D.Patterson).,16,10,2012 20120927_CLE@BAL,3,20,47,BAL,CLE,2,3,56,(5:47) (No Huddle) B.Pierce up the middle to CLV 35 for 21 yards (U.Young).,16,10,2012 20120927_CLE@BAL,3,20,14,BAL,CLE,1,10,35,(5:14) J.Flacco pass incomplete short left to A.Boldin. Flea flicker - Rice laterals back to Flacco.,16,10,2012 20120927_CLE@BAL,3,20,6,BAL,CLE,2,10,35,(5:06) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to CLV 28 for 7 yards (D.Jackson).,16,10,2012 20120927_CLE@BAL,3,19,32,BAL,CLE,3,3,28,(4:32) (No Huddle Shotgun) J.Flacco pass short right to T.Smith to CLV 18 for 10 yards (B.Skrine).,16,10,2012 20120927_CLE@BAL,3,19,0,BAL,CLE,1,10,18,(4:00) (No Huddle Shotgun) J.Flacco sacked at CLV 24 for -6 yards (U.Young).,16,10,2012 20120927_CLE@BAL,3,18,24,BAL,CLE,2,16,24,(3:24) (No Huddle Shotgun) PENALTY on BLT-D.Pitta False Start 5 yards enforced at CLV 24 - No Play.,16,10,2012 20120927_CLE@BAL,3,18,9,BAL,CLE,2,21,29,(3:09) (No Huddle Shotgun) J.Flacco pass incomplete short right to R.Rice [J.Parker].,16,10,2012 20120927_CLE@BAL,3,18,1,BAL,CLE,3,21,29,(3:01) (No Huddle Shotgun) J.Flacco pass incomplete short left to T.Smith. PENALTY on BLT-K.Osemele Illegal Use of Hands 10 yards enforced at CLV 29 - No Play.,16,10,2012 20120927_CLE@BAL,3,17,55,BAL,CLE,3,31,39,(2:55) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to CLV 29 for 10 yards (D.Patterson D.Jackson).,16,10,2012 20120927_CLE@BAL,3,17,13,BAL,CLE,4,21,29,(2:13) (Field Goal formation) J.Tucker 47 yard field goal is No Good Wide Right Center-M.Cox Holder-S.Koch. First miss of career for Tucker. made 8 in row.,16,10,2012 20120927_CLE@BAL,3,17,7,CLE,BAL,1,10,63,(2:07) B.Weeden pass incomplete deep right to T.Benjamin.,10,16,2012 20120927_CLE@BAL,3,17,1,CLE,BAL,2,10,63,(2:01) (Shotgun) B.Weeden pass short right to J.Cameron to BLT 48 for 15 yards (D.Ellerbe E.Reed).,10,16,2012 20120927_CLE@BAL,3,16,34,CLE,BAL,1,10,48,(1:34) T.Richardson right guard to BLT 43 for 5 yards (A.Jones T.Cody).,10,16,2012 20120927_CLE@BAL,3,15,56,CLE,BAL,2,5,43,(:56) T.Benjamin right end to BLT 43 for no gain (L.Webb). Benjamin reverse.,10,16,2012 20120927_CLE@BAL,3,15,27,CLE,BAL,3,5,43,(:27) B.Weeden pass short left intended for T.Benjamin INTERCEPTED by C.Williams at BLT 37. C.Williams for 63 yards TOUCHDOWN. Cary Williams' first interception of career is returned for touchdown.,10,16,2012 20120927_CLE@BAL,3,15,27,BAL,CLE,,,43,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,16,10,2012 20120927_CLE@BAL,3,15,27,BAL,CLE,,,43,J.Tucker kicks 74 yards from BLT 35 to CLV -9. T.Benjamin Touchback.,23,10,2012 20120927_CLE@BAL,3,15,15,CLE,BAL,1,10,80,(:15) B.Weeden pass short left to B.Watson to CLV 23 for 3 yards (J.McClain).,10,23,2012 20120927_CLE@BAL,4,15,0,CLE,BAL,2,7,77,(15:00) B.Weeden pass short right to T.Richardson to CLV 43 for 20 yards (J.McClain).,10,23,2012 20120927_CLE@BAL,4,14,19,CLE,BAL,1,10,57,(14:19) B.Weeden pass short middle to T.Richardson to CLV 47 for 4 yards (J.McClain).,10,23,2012 20120927_CLE@BAL,4,13,38,CLE,BAL,2,6,53,(13:38) B.Weeden pass deep left to G.Little to BLT 31 for 22 yards (C.Williams).,10,23,2012 20120927_CLE@BAL,4,13,11,CLE,BAL,1,10,31,(13:11) B.Weeden pass incomplete short right to J.Cameron.,10,23,2012 20120927_CLE@BAL,4,13,4,CLE,BAL,2,10,31,(13:04) T.Richardson left tackle to BLT 32 for -1 yards (A.McClellan).,10,23,2012 20120927_CLE@BAL,4,12,20,CLE,BAL,3,11,32,(12:20) (Shotgun) B.Weeden pass incomplete short left to T.Richardson.,10,23,2012 20120927_CLE@BAL,4,12,16,CLE,BAL,4,11,32,(12:16) (Field Goal formation) P.Dawson 50 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,10,23,2012 20120927_CLE@BAL,4,12,16,CLE,BAL,,,32,P.Dawson kicks 66 yards from CLV 35 to BLT -1. D.Thompson to BLT 23 for 24 yards (O.Marecic).,13,23,2012 20120927_CLE@BAL,4,12,5,BAL,CLE,1,10,77,(12:05) R.Rice left guard to BLT 28 for 5 yards (F.Rucker C.Robertson).,23,13,2012 20120927_CLE@BAL,4,11,31,BAL,CLE,2,5,72,(11:31) (No Huddle) J.Flacco pass short middle to A.Boldin to BLT 41 for 13 yards (D.Patterson).,23,13,2012 20120927_CLE@BAL,4,10,59,BAL,CLE,1,10,59,(10:59) (No Huddle) J.Flacco pass incomplete short right to D.Pitta (D.Patterson).,23,13,2012 20120927_CLE@BAL,4,10,52,BAL,CLE,2,10,59,(10:52) (No Huddle Shotgun) R.Rice left guard to BLT 48 for 7 yards (A.Rubin D.Jackson).,23,13,2012 20120927_CLE@BAL,4,10,15,BAL,CLE,3,3,52,(10:15) (No Huddle) J.Flacco pass incomplete short left to A.Boldin.,23,13,2012 20120927_CLE@BAL,4,10,9,BAL,CLE,4,3,52,(10:09) (Punt formation) S.Koch punts 36 yards to CLV 16 Center-M.Cox fair catch by T.Benjamin. PENALTY on BLT-A.Allen Fair Catch Interference 15 yards enforced at CLV 16.,23,13,2012 20120927_CLE@BAL,4,10,1,CLE,BAL,1,10,69,(10:01) B.Weeden pass incomplete short left to J.Norwood.,13,23,2012 20120927_CLE@BAL,4,9,55,CLE,BAL,2,10,69,(9:55) (Shotgun) B.Weeden pass incomplete short right to T.Richardson [P.McPhee].,13,23,2012 20120927_CLE@BAL,4,9,51,CLE,BAL,3,10,69,(9:51) (Shotgun) B.Weeden pass short left to J.Norwood to CLV 36 for 5 yards (E.Reed).,13,23,2012 20120927_CLE@BAL,4,9,18,CLE,BAL,4,5,64,(9:18) (Punt formation) R.Hodges punts 48 yards to BLT 16 Center-C.Yount fair catch by L.Webb.,13,23,2012 20120927_CLE@BAL,4,9,10,BAL,CLE,1,10,84,(9:10) B.Pierce left end to BLT 20 for 4 yards (S.Fujita).,23,13,2012 20120927_CLE@BAL,4,8,24,BAL,CLE,2,6,80,(8:24) J.Flacco pass short right to J.Jones to BLT 30 for 10 yards (D.Patterson).,23,13,2012 20120927_CLE@BAL,4,7,47,BAL,CLE,1,10,70,(7:47) R.Rice right tackle to BLT 31 for 1 yard (J.Sheard D.Jackson).,23,13,2012 20120927_CLE@BAL,4,7,12,BAL,CLE,2,9,69,(7:12) J.Flacco sacked at BLT 31 for 0 yards (S.Fujita).,23,13,2012 20120927_CLE@BAL,4,6,31,BAL,CLE,3,9,69,(6:31) (Shotgun) J.Flacco pass incomplete deep middle to T.Doss (B.Skrine).,23,13,2012 20120927_CLE@BAL,4,6,25,BAL,CLE,4,9,69,(6:25) (Punt formation) S.Koch punts 55 yards to CLV 14 Center-M.Cox. T.Benjamin to BLT 46 for 40 yards (S.Koch).,23,13,2012 20120927_CLE@BAL,4,6,8,CLE,BAL,1,10,46,(6:08) B.Weeden pass short right to J.Gordon to BLT 30 for 16 yards (L.Webb).,13,23,2012 20120927_CLE@BAL,4,5,32,CLE,BAL,1,10,30,(5:32) B.Weeden pass incomplete short right [H.Ngata]. PENALTY on CLV-B.Weeden Intentional Grounding 11 yards enforced at BLT 30. PENALTY on CLV Unsportsmanlike Conduct 15 yards enforced between downs. Unsportsmanlike conduct called on CLV bench.,13,23,2012 20120927_CLE@BAL,4,5,27,CLE,BAL,2,36,56,(5:27) B.Weeden pass deep middle to J.Norwood to BLT 34 for 22 yards (L.Webb).,13,23,2012 20120927_CLE@BAL,4,4,45,CLE,BAL,3,14,34,(4:45) (Shotgun) B.Weeden pass incomplete deep middle to G.Little.,13,23,2012 20120927_CLE@BAL,4,4,38,CLE,BAL,4,14,34,(4:38) (Field Goal formation) P.Dawson 52 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,13,23,2012 20120927_CLE@BAL,4,4,38,CLE,BAL,,,34,P.Dawson kicks 73 yards from CLV 35 to BLT -8. D.Thompson Touchback.,16,23,2012 20120927_CLE@BAL,4,4,33,BAL,CLE,1,10,80,(4:33) R.Rice right guard to BLT 18 for -2 yards (J.Sheard).,23,16,2012 20120927_CLE@BAL,4,3,56,BAL,CLE,2,12,82,(3:56) J.Flacco pass deep right to A.Boldin to BLT 46 for 28 yards (D.Patterson).,23,16,2012 20120927_CLE@BAL,4,3,46,BAL,CLE,1,10,54,(3:46) R.Rice left end to BLT 47 for 1 yard (S.Brown).,23,16,2012 20120927_CLE@BAL,4,3,41,BAL,CLE,2,9,53,(3:41) R.Rice left end to CLV 32 for 21 yards (T.Ward). PENALTY on BLT-M.Oher Offensive Holding 10 yards enforced at BLT 47 - No Play.,23,16,2012 20120927_CLE@BAL,4,3,33,BAL,CLE,2,19,63,(3:33) (Shotgun) B.Pierce left guard to CLV 47 for 16 yards (T.Ward).,23,16,2012 20120927_CLE@BAL,4,3,27,BAL,CLE,3,3,47,(3:27) J.Flacco pass incomplete deep left to J.Jones. PENALTY on CLV-B.Skrine Defensive Holding 5 yards enforced at CLV 47 - No Play.,23,16,2012 20120927_CLE@BAL,4,3,21,BAL,CLE,1,10,42,(3:21) R.Rice up the middle to CLV 40 for 2 yards (A.Rubin K.Maiava).,23,16,2012 20120927_CLE@BAL,4,2,38,BAL,CLE,2,8,40,(2:38) R.Rice right guard to CLV 39 for 1 yard (K.Maiava D.Jackson).,23,16,2012 20120927_CLE@BAL,4,2,0,BAL,CLE,3,7,39,(2:00) J.Flacco right end to CLV 36 for 3 yards (J.Sheard).,23,16,2012 20120927_CLE@BAL,4,1,13,BAL,CLE,4,4,36,(1:13) (Punt formation) S.Koch punts 26 yards to CLV 10 Center-M.Cox out of bounds.,23,16,2012 20120927_CLE@BAL,4,1,5,CLE,BAL,1,10,90,(1:05) (Shotgun) B.Weeden pass short middle to B.Watson ran ob at CLV 23 for 13 yards [B.Pollard].,16,23,2012 20120927_CLE@BAL,4,0,56,CLE,BAL,1,10,77,(:56) (Shotgun) B.Weeden pass incomplete short right to J.Norwood (L.Webb).,16,23,2012 20120927_CLE@BAL,4,0,53,CLE,BAL,2,10,77,(:53) (Shotgun) B.Weeden pass short right to J.Norwood to CLV 50 for 27 yards (B.Pollard).,16,23,2012 20120927_CLE@BAL,4,0,45,CLE,BAL,1,10,50,(:45) (Shotgun) B.Weeden pass short right to B.Watson to BLT 33 for 17 yards (H.Ngata).,16,23,2012 20120927_CLE@BAL,4,0,23,CLE,BAL,1,10,33,(:23) (No Huddle) B.Weeden spiked the ball to stop the clock.,16,23,2012 20120927_CLE@BAL,4,0,23,CLE,BAL,2,10,33,(:23) (Shotgun) B.Weeden pass incomplete deep middle to J.Norwood (E.Reed).,16,23,2012 20120927_CLE@BAL,4,0,15,CLE,BAL,3,10,33,(:15) B.Weeden pass incomplete deep right to G.Little (J.Smith).,16,23,2012 20120927_CLE@BAL,4,0,10,CLE,BAL,4,10,33,(:10) (Shotgun) B.Weeden pass incomplete deep left to J.Cameron (E.Reed). PENALTY on BLT-P.Kruger Unnecessary Roughness 15 yards enforced at BLT 33.,16,23,2012 20120927_CLE@BAL,4,0,2,CLE,BAL,1,10,18,(:02) (Shotgun) B.Weeden pass incomplete deep left to G.Little [P.McPhee].,16,23,2012 20120927_CLE@BAL,4,0,2,CLE,BAL,,,18,                      ,16,23,2012 20120930_CAR@ATL,1,0,0,CAR,ATL,,,18,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 20120930_CAR@ATL,1,60,0,ATL,CAR,1,10,80,(15:00) M.Ryan pass incomplete short middle to R.White (L.Kuechly) [J.Beason].,0,0,2012 20120930_CAR@ATL,1,59,56,ATL,CAR,2,10,80,(14:56) M.Ryan pass incomplete short right to R.White (C.Johnson).,0,0,2012 20120930_CAR@ATL,1,59,53,ATL,CAR,3,10,80,(14:53) (Shotgun) M.Ryan sacked at ATL 9 for -11 yards (sack split by C.Johnson and F.Alexander).,0,0,2012 20120930_CAR@ATL,1,59,26,ATL,CAR,4,21,91,(14:26) M.Bosher punts 45 yards to CAR 46 Center-J.Harris. C.Munnerlyn ran ob at CAR 47 for 1 yard (J.Harris).,0,0,2012 20120930_CAR@ATL,1,59,14,CAR,ATL,1,10,53,(14:14) (Shotgun) C.Newton pass short right to G.Olsen pushed ob at 50 for 3 yards (W.Moore).,0,0,2012 20120930_CAR@ATL,1,58,46,CAR,ATL,2,7,50,(13:46) (Shotgun) C.Newton left end pushed ob at ATL 18 for 32 yards (T.DeCoud).,0,0,2012 20120930_CAR@ATL,1,58,13,CAR,ATL,1,10,18,(13:13) J.Stewart right end to ATL 19 for -1 yards (J.Babineaux).,0,0,2012 20120930_CAR@ATL,1,57,34,CAR,ATL,2,11,19,(12:34) C.Newton pass short left to D.Williams pushed ob at ATL 17 for 2 yards (D.Robinson).,0,0,2012 20120930_CAR@ATL,1,56,54,CAR,ATL,3,9,17,(11:54) (Shotgun) C.Newton pass short left to G.Olsen for 17 yards TOUCHDOWN.,0,0,2012 20120930_CAR@ATL,1,56,54,CAR,ATL,,,17,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,0,2012 20120930_CAR@ATL,1,56,54,CAR,ATL,,,17,J.Medlock kicks 68 yards from CAR 35 to ATL -3. Jz. Rodgers to ATL 24 for 27 yards (J.Phillips).,7,0,2012 20120930_CAR@ATL,1,56,39,ATL,CAR,1,10,76,(11:39) M.Ryan pass short right to R.White ran ob at ATL 37 for 13 yards.,0,7,2012 20120930_CAR@ATL,1,56,14,ATL,CAR,1,10,63,(11:14) M.Turner right end to ATL 38 for 1 yard (J.Norman; J.Beason).,0,7,2012 20120930_CAR@ATL,1,55,29,ATL,CAR,2,9,62,(10:29) (Shotgun) M.Ryan pass short right to T.Gonzalez to CAR 49 for 13 yards (H.Nakamura).,0,7,2012 20120930_CAR@ATL,1,54,54,ATL,CAR,1,10,49,(9:54) M.Ryan pass short right to J.Snelling pushed ob at CAR 46 for 3 yards (H.Nakamura).,0,7,2012 20120930_CAR@ATL,1,54,26,ATL,CAR,2,7,46,(9:26) M.Turner right guard to CAR 40 for 6 yards (D.Edwards).,0,7,2012 20120930_CAR@ATL,1,53,48,ATL,CAR,3,1,40,(8:48) M.Turner right tackle to CAR 28 for 12 yards (J.Anderson; C.Gamble).,0,7,2012 20120930_CAR@ATL,1,53,8,ATL,CAR,1,10,28,(8:08) Jz. Rodgers right end to CAR 27 for 1 yard (L.Kuechly).,0,7,2012 20120930_CAR@ATL,1,52,27,ATL,CAR,2,9,27,(7:27) M.Ryan pass short right to R.White to CAR 14 for 13 yards (C.Gamble).,0,7,2012 20120930_CAR@ATL,1,51,42,ATL,CAR,1,10,14,(6:42) Jz. Rodgers right tackle to CAR 10 for 4 yards (C.Godfrey).,0,7,2012 20120930_CAR@ATL,1,50,57,ATL,CAR,2,6,10,(5:57) M.Turner right end to CAR 4 for 6 yards (C.Godfrey; L.Kuechly).,0,7,2012 20120930_CAR@ATL,1,50,11,ATL,CAR,1,4,4,(5:11) M.Turner right end to CAR 1 for 3 yards (J.Anderson).,0,7,2012 20120930_CAR@ATL,1,49,37,ATL,CAR,2,1,1,(4:37) J.Snelling right guard to CAR 1 for no gain. PENALTY on CAR-G.Hardy Defensive Offside 0 yards enforced at CAR 1 - No Play. Penalty on CAR Defensive 12 On-field declined.,0,7,2012 20120930_CAR@ATL,1,49,22,ATL,CAR,2,1,1,(4:22) M.Ryan pass short middle to T.Gallarda for 1 yard TOUCHDOWN NULLIFIED by Penalty. PENALTY on ATL-T.Gallarda Offensive Pass Interference 10 yards enforced at CAR 1 - No Play.,0,7,2012 20120930_CAR@ATL,1,49,16,ATL,CAR,2,11,11,(4:16) M.Ryan pass incomplete short right to R.White. PENALTY on CAR-J.Norman Personal Foul 6 yards enforced at CAR 11 - No Play.,0,7,2012 20120930_CAR@ATL,1,49,10,ATL,CAR,1,5,5,(4:10) M.Ryan pass incomplete short middle to R.White.,0,7,2012 20120930_CAR@ATL,1,49,6,ATL,CAR,2,5,5,(4:06) (Shotgun) M.Ryan sacked at CAR 13 for -8 yards (R.Edwards).,0,7,2012 20120930_CAR@ATL,1,48,32,ATL,CAR,3,13,13,(3:32) (Shotgun) M.Ryan pass short middle intended for J.Jones INTERCEPTED by H.Nakamura at CAR 0. H.Nakamura pushed ob at CAR 21 for 21 yards (J.Snelling).,0,7,2012 20120930_CAR@ATL,1,48,24,CAR,ATL,1,10,79,(3:24) C.Newton pass short right to G.Olsen ran ob at CAR 32 for 11 yards.,7,0,2012 20120930_CAR@ATL,1,48,0,CAR,ATL,1,10,68,(3:00) (Shotgun) J.Stewart right end to CAR 33 for 1 yard (K.Biermann).,7,0,2012 20120930_CAR@ATL,1,47,17,CAR,ATL,2,9,67,(2:17) C.Newton pass incomplete short left to D.Williams.,7,0,2012 20120930_CAR@ATL,1,47,10,CAR,ATL,3,9,67,(2:10) C.Newton pass incomplete short middle to M.Tolbert.,7,0,2012 20120930_CAR@ATL,1,47,3,CAR,ATL,4,9,67,(2:03) B.Nortman punts 44 yards to ATL 23 Center-J.Jansen fair catch by D.Franks.,7,0,2012 20120930_CAR@ATL,1,46,56,ATL,CAR,1,10,77,(1:56) M.Turner left end to ATL 40 for 17 yards (C.Munnerlyn).,0,7,2012 20120930_CAR@ATL,1,46,7,ATL,CAR,1,10,60,(1:07) M.Turner right guard to CAR 49 for 11 yards (C.Godfrey).,0,7,2012 20120930_CAR@ATL,1,45,33,ATL,CAR,1,10,49,(:33) M.Ryan pass deep right to R.White for 49 yards TOUCHDOWN.,0,7,2012 20120930_CAR@ATL,1,45,33,ATL,CAR,,,49,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,7,2012 20120930_CAR@ATL,1,45,33,ATL,CAR,,,49,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,7,7,2012 20120930_CAR@ATL,1,45,26,CAR,ATL,1,10,80,(:26) S.Smith left end to CAR 30 for 10 yards (D.Robinson). FUMBLES (D.Robinson) RECOVERED by ATL-R.Edwards at CAR 30. CAR-R.Kalil was injured during the play. His return is Probable.,7,7,2012 20120930_CAR@ATL,1,45,16,ATL,CAR,1,10,30,(:16) M.Ryan pass short right to Jz. Rodgers to CAR 21 for 9 yards (J.Beason).,7,7,2012 20120930_CAR@ATL,2,45,0,ATL,CAR,2,1,21,(15:00) M.Ryan sacked at CAR 34 for -13 yards (C.Johnson). PENALTY on CAR-C.Johnson Face Mask (15 Yards) 15 yards enforced at CAR 34.,7,7,2012 20120930_CAR@ATL,2,44,33,ATL,CAR,1,10,19,(14:33) M.Ryan pass short left to J.Snelling to CAR 22 for -3 yards (L.Kuechly).,7,7,2012 20120930_CAR@ATL,2,43,58,ATL,CAR,2,13,22,(13:58) M.Ryan pass short right to R.White to CAR 23 for -1 yards (L.Kuechly) [C.Johnson].,7,7,2012 20120930_CAR@ATL,2,43,22,ATL,CAR,3,14,23,(13:22) (Shotgun) M.Ryan pass incomplete deep right to J.Jones (H.Nakamura).,7,7,2012 20120930_CAR@ATL,2,43,16,ATL,CAR,4,14,23,(13:16) M.Bryant 41 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,7,2012 20120930_CAR@ATL,2,43,16,ATL,CAR,,,23,M.Bosher kicks 72 yards from ATL 35 to CAR -7. K.Pilares to CAR 21 for 28 yards (T.Gallarda).,10,7,2012 20120930_CAR@ATL,2,43,7,CAR,ATL,1,10,79,(13:07) (Shotgun) D.Williams right end to CAR 31 for 10 yards (S.Nicholas).,7,10,2012 20120930_CAR@ATL,2,42,23,CAR,ATL,1,10,69,(12:23) D.Williams right end to CAR 44 for 13 yards (A.Samuel).,7,10,2012 20120930_CAR@ATL,2,41,40,CAR,ATL,1,10,56,(11:40) (Shotgun) D.Williams right guard to CAR 46 for 2 yards (V.Walker).,7,10,2012 20120930_CAR@ATL,2,40,58,CAR,ATL,2,8,54,(10:58) (Shotgun) C.Newton pass short left to L.Murphy to ATL 46 for 8 yards (D.Robinson).,7,10,2012 20120930_CAR@ATL,2,40,14,CAR,ATL,1,10,46,(10:14) (Shotgun) J.Stewart left end pushed ob at ATL 40 for 6 yards (A.Dent).,7,10,2012 20120930_CAR@ATL,2,39,39,CAR,ATL,2,4,40,(9:39) C.Newton pass deep left to S.Smith to ATL 13 for 27 yards (T.DeCoud).,7,10,2012 20120930_CAR@ATL,2,38,50,CAR,ATL,1,10,13,(8:50) (Shotgun) D.Williams left guard for 13 yards TOUCHDOWN.,7,10,2012 20120930_CAR@ATL,2,38,50,CAR,ATL,,,13,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,10,2012 20120930_CAR@ATL,2,38,50,CAR,ATL,,,13,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,14,10,2012 20120930_CAR@ATL,2,38,44,ATL,CAR,1,10,80,(8:44) M.Turner right tackle to ATL 21 for 1 yard (C.Johnson).,10,14,2012 20120930_CAR@ATL,2,38,0,ATL,CAR,2,9,79,(8:00) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 27 for 6 yards (C.Munnerlyn).,10,14,2012 20120930_CAR@ATL,2,37,30,ATL,CAR,3,3,73,(7:30) (No Huddle) M.Ryan pass incomplete short left to J.Jones (C.Godfrey).,10,14,2012 20120930_CAR@ATL,2,37,24,ATL,CAR,4,3,73,(7:24) M.Bosher punts 56 yards to CAR 17 Center-J.Harris. C.Munnerlyn to CAR 19 for 2 yards (M.Peterson).,10,14,2012 20120930_CAR@ATL,2,37,13,CAR,ATL,1,10,81,(7:13) (Shotgun) J.Stewart right tackle to CAR 26 for 7 yards (S.Weatherspoon).,14,10,2012 20120930_CAR@ATL,2,36,35,CAR,ATL,2,3,74,(6:35) D.Williams right end to CAR 24 for -2 yards (D.Robinson).,14,10,2012 20120930_CAR@ATL,2,35,49,CAR,ATL,3,5,76,(5:49) (Shotgun) C.Newton pass incomplete short left to B.LaFell.,14,10,2012 20120930_CAR@ATL,2,35,44,CAR,ATL,4,5,76,(5:44) B.Nortman punts 45 yards to ATL 31 Center-J.Jansen. D.Franks to ATL 49 for 18 yards (J.Phillips).,14,10,2012 20120930_CAR@ATL,2,35,29,ATL,CAR,1,10,51,(5:29) M.Turner right tackle to CAR 48 for 3 yards (D.Edwards).,10,14,2012 20120930_CAR@ATL,2,34,47,ATL,CAR,2,7,48,(4:47) M.Ryan pass short right to T.Gonzalez to CAR 34 for 14 yards (C.Gamble).,10,14,2012 20120930_CAR@ATL,2,34,12,ATL,CAR,1,10,34,(4:12) M.Ryan pass incomplete deep left to R.White.,10,14,2012 20120930_CAR@ATL,2,34,5,ATL,CAR,2,10,34,(4:05) (No Huddle) Jz. Rodgers right tackle to CAR 29 for 5 yards (C.Munnerlyn).,10,14,2012 20120930_CAR@ATL,2,33,21,ATL,CAR,3,5,29,(3:21) (Shotgun) M.Ryan pass short middle to R.White to CAR 20 for 9 yards (C.Godfrey).,10,14,2012 20120930_CAR@ATL,2,32,39,ATL,CAR,1,10,20,(2:39) M.Ryan pass short right to J.Snelling to CAR 15 for 5 yards (J.Beason; J.Anderson).,10,14,2012 20120930_CAR@ATL,2,32,2,ATL,CAR,2,5,15,(2:02) M.Turner right end to CAR 14 for 1 yard (L.Kuechly; C.Johnson).,10,14,2012 20120930_CAR@ATL,2,31,55,ATL,CAR,3,4,14,(1:55) (Shotgun) M.Ryan pass short middle to R.White for 14 yards TOUCHDOWN. Penalty on CAR-F.Alexander Defensive Offside declined.,10,14,2012 20120930_CAR@ATL,2,31,55,ATL,CAR,,,14,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,14,2012 20120930_CAR@ATL,2,31,55,ATL,CAR,,,14,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,14,2012 20120930_CAR@ATL,2,31,49,CAR,ATL,1,10,80,(1:49) (Shotgun) C.Newton pass short left to S.Smith to CAR 28 for 8 yards (D.Robinson).,14,17,2012 20120930_CAR@ATL,2,31,25,CAR,ATL,2,2,72,(1:25) (No Huddle Shotgun) M.Tolbert right guard to CAR 32 for 4 yards (S.Nicholas).,14,17,2012 20120930_CAR@ATL,2,31,2,CAR,ATL,1,10,68,(1:02) (Shotgun) C.Newton pass short middle to M.Tolbert to CAR 40 for 8 yards (R.McClain).,14,17,2012 20120930_CAR@ATL,2,30,41,CAR,ATL,2,2,60,(:41) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 46 for 6 yards (W.Moore).,14,17,2012 20120930_CAR@ATL,2,30,35,CAR,ATL,1,10,54,(:35) (Shotgun) C.Newton pass incomplete short left to B.LaFell [K.Biermann].,14,17,2012 20120930_CAR@ATL,2,30,31,CAR,ATL,2,10,54,(:31) (Shotgun) C.Newton pass incomplete short left to S.Smith. PENALTY on CAR-S.Smith Offensive Pass Interference 10 yards enforced at CAR 46 - No Play.,14,17,2012 20120930_CAR@ATL,2,30,26,CAR,ATL,2,20,64,(:26) (Shotgun) C.Newton scrambles right end to CAR 42 for 6 yards (W.Moore).,14,17,2012 20120930_CAR@ATL,2,30,17,CAR,ATL,3,14,58,(:17) (Shotgun) C.Newton scrambles right end to CAR 44 for 2 yards (S.Nicholas).,14,17,2012 20120930_CAR@ATL,3,30,0,ATL,CAR,,,58,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,14,2012 20120930_CAR@ATL,3,30,0,CAR,ATL,1,10,80,(15:00) (Shotgun) C.Newton pass short middle to J.Stewart to CAR 28 for 8 yards (R.McClain).,14,17,2012 20120930_CAR@ATL,3,29,18,CAR,ATL,2,2,72,(14:18) (Shotgun) J.Stewart right guard to CAR 29 for 1 yard (J.Abraham).,14,17,2012 20120930_CAR@ATL,3,28,37,CAR,ATL,3,1,71,(13:37) (Shotgun) J.Stewart left guard to CAR 30 for 1 yard (J.Babineaux).,14,17,2012 20120930_CAR@ATL,3,27,55,CAR,ATL,1,10,70,(12:55) C.Newton pass incomplete short right to M.Tolbert.,14,17,2012 20120930_CAR@ATL,3,27,49,CAR,ATL,2,10,70,(12:49) (Shotgun) M.Tolbert up the middle to CAR 31 for 1 yard (K.Biermann; S.Nicholas).,14,17,2012 20120930_CAR@ATL,3,27,8,CAR,ATL,3,9,69,(12:08) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,14,17,2012 20120930_CAR@ATL,3,27,1,CAR,ATL,4,9,69,(12:01) B.Nortman punts 41 yards to ATL 28 Center-J.Jansen fair catch by D.Franks.,14,17,2012 20120930_CAR@ATL,3,26,54,ATL,CAR,1,10,72,(11:54) M.Turner right end to ATL 29 for 1 yard (C.Johnson).,17,14,2012 20120930_CAR@ATL,3,26,9,ATL,CAR,2,9,71,(11:09) (Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 40 for 11 yards (H.Nakamura).,17,14,2012 20120930_CAR@ATL,3,25,29,ATL,CAR,1,10,60,(10:29) M.Ryan pass short middle to M.Turner for 60 yards TOUCHDOWN.,17,14,2012 20120930_CAR@ATL,3,25,29,ATL,CAR,,,60,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,17,14,2012 20120930_CAR@ATL,3,25,29,ATL,CAR,,,60,M.Bosher kicks 69 yards from ATL 35 to CAR -4. K.Pilares to CAR 23 for 27 yards (R.James; C.Hope).,24,14,2012 20120930_CAR@ATL,3,25,11,CAR,ATL,1,10,77,(10:11) (Shotgun) D.Williams right end to CAR 26 for 3 yards (R.Edwards).,14,24,2012 20120930_CAR@ATL,3,24,31,CAR,ATL,2,7,74,(9:31) PENALTY on CAR-R.Kalil False Start 5 yards enforced at CAR 26 - No Play.,14,24,2012 20120930_CAR@ATL,3,24,13,CAR,ATL,2,12,79,(9:13) (Shotgun) C.Newton pass deep right to S.Smith to CAR 38 for 17 yards (A.Samuel).,14,24,2012 20120930_CAR@ATL,3,23,31,CAR,ATL,1,10,62,(8:31) (Shotgun) M.Tolbert left end to CAR 44 for 6 yards (S.Nicholas).,14,24,2012 20120930_CAR@ATL,3,22,52,CAR,ATL,2,4,56,(7:52) (Shotgun) C.Newton left end to CAR 49 for 5 yards (R.Edwards).,14,24,2012 20120930_CAR@ATL,3,22,12,CAR,ATL,1,10,51,(7:12) C.Newton sacked at CAR 49 for 0 yards (S.Weatherspoon).,14,24,2012 20120930_CAR@ATL,3,21,23,CAR,ATL,2,10,51,(6:23) (Shotgun) C.Newton pass short left to A.Edwards to ATL 39 for 12 yards (P.Jerry).,14,24,2012 20120930_CAR@ATL,3,20,45,CAR,ATL,1,10,39,(5:45) (Shotgun) A.Edwards pass incomplete deep right to S.Smith.,14,24,2012 20120930_CAR@ATL,3,20,39,CAR,ATL,2,10,39,(5:39) (Shotgun) C.Newton pass short left to G.Olsen to ATL 21 for 18 yards (T.DeCoud).,14,24,2012 20120930_CAR@ATL,3,19,58,CAR,ATL,1,10,21,(4:58) D.Williams right end to ATL 19 for 2 yards (V.Walker).,14,24,2012 20120930_CAR@ATL,3,19,15,CAR,ATL,2,8,19,(4:15) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,14,24,2012 20120930_CAR@ATL,3,19,9,CAR,ATL,3,8,19,(4:09) (Shotgun) C.Newton scrambles up the middle to ATL 4 for 15 yards (R.McClain).,14,24,2012 20120930_CAR@ATL,3,18,23,CAR,ATL,1,4,4,(3:23) C.Newton up the middle for 4 yards TOUCHDOWN.,14,24,2012 20120930_CAR@ATL,3,18,23,CAR,ATL,,,4,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,24,2012 20120930_CAR@ATL,3,18,23,CAR,ATL,,,4,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,21,24,2012 20120930_CAR@ATL,3,18,16,ATL,CAR,1,10,80,(3:16) M.Ryan pass incomplete short left to J.Snelling.,24,21,2012 20120930_CAR@ATL,3,18,10,ATL,CAR,2,10,80,(3:10) (Shotgun) M.Ryan pass short left to M.Turner to ATL 21 for 1 yard (J.Norman).,24,21,2012 20120930_CAR@ATL,3,17,31,ATL,CAR,3,9,79,(2:31) (Shotgun) M.Ryan pass short left to R.White to ATL 34 for 13 yards (J.Norman).,24,21,2012 20120930_CAR@ATL,3,16,55,ATL,CAR,1,10,66,(1:55) Jz. Rodgers left tackle to ATL 37 for 3 yards (C.Johnson).,24,21,2012 20120930_CAR@ATL,3,16,18,ATL,CAR,2,7,63,(1:18) M.Ryan sacked at ATL 28 for -9 yards (C.Johnson).,24,21,2012 20120930_CAR@ATL,3,15,47,ATL,CAR,3,16,72,(:47) (Shotgun) M.Ryan pass incomplete short left to H.Douglas.,24,21,2012 20120930_CAR@ATL,3,15,42,ATL,CAR,4,16,72,(:42) M.Bosher punts 59 yards to CAR 13 Center-J.Harris. C.Munnerlyn to CAR 33 for 20 yards (K.Biermann).,24,21,2012 20120930_CAR@ATL,3,15,29,CAR,ATL,1,10,67,(:29) D.Williams right end to CAR 32 for -1 yards (A.Dent).,21,24,2012 20120930_CAR@ATL,4,15,0,CAR,ATL,2,11,68,(15:00) (Shotgun) PENALTY on CAR-A.Silatolu False Start 5 yards enforced at CAR 32 - No Play.,21,24,2012 20120930_CAR@ATL,4,15,0,CAR,ATL,2,16,73,(15:00) (Shotgun) C.Newton scrambles right end ran ob at CAR 38 for 11 yards (S.Weatherspoon).,21,24,2012 20120930_CAR@ATL,4,14,23,CAR,ATL,3,5,62,(14:23) (Shotgun) C.Newton pass short right to S.Smith pushed ob at CAR 44 for 6 yards (A.Samuel). Play Challenged by ATL and REVERSED. (Shotgun) C.Newton pass incomplete short right to S.Smith.,21,24,2012 20120930_CAR@ATL,4,14,20,CAR,ATL,4,5,62,(14:20) B.Nortman punts 44 yards to ATL 18 Center-J.Jansen fair catch by D.Franks.,21,24,2012 20120930_CAR@ATL,4,14,13,ATL,CAR,1,10,82,(14:13) M.Ryan pass incomplete short middle to M.Turner.,24,21,2012 20120930_CAR@ATL,4,14,7,ATL,CAR,2,10,82,(14:07) M.Turner right tackle to ATL 32 for 14 yards (J.Beason).,24,21,2012 20120930_CAR@ATL,4,13,26,ATL,CAR,1,10,68,(13:26) M.Turner left end pushed ob at CAR 41 for 27 yards (C.Munnerlyn).,24,21,2012 20120930_CAR@ATL,4,12,58,ATL,CAR,1,10,41,(12:58) Jz. Rodgers left tackle to CAR 39 for 2 yards (H.Nakamura).,24,21,2012 20120930_CAR@ATL,4,12,28,ATL,CAR,2,8,39,(12:28) (No Huddle) Jz. Rodgers left guard to CAR 36 for 3 yards (J.Anderson; D.Edwards).,24,21,2012 20120930_CAR@ATL,4,11,49,ATL,CAR,3,5,36,(11:49) (Shotgun) M.Ryan sacked at CAR 42 for -6 yards (G.Hardy).,24,21,2012 20120930_CAR@ATL,4,11,25,ATL,CAR,4,11,42,(11:25) M.Bosher punts 30 yards to CAR 12 Center-J.Harris fair catch by C.Munnerlyn.,24,21,2012 20120930_CAR@ATL,4,11,18,CAR,ATL,1,10,88,(11:18) (Shotgun) C.Newton pass deep right to G.Olsen ran ob at CAR 46 for 34 yards (W.Moore).,21,24,2012 20120930_CAR@ATL,4,10,47,CAR,ATL,1,10,54,(10:47) (Shotgun) M.Tolbert right guard to CAR 49 for 3 yards (R.Edwards; S.Nicholas).,21,24,2012 20120930_CAR@ATL,4,10,3,CAR,ATL,2,7,51,(10:03) J.Stewart right end pushed ob at ATL 36 for 15 yards (T.DeCoud).,21,24,2012 20120930_CAR@ATL,4,9,32,CAR,ATL,1,10,36,(9:32) (Shotgun) J.Stewart left guard to ATL 31 for 5 yards (A.Dent; S.Weatherspoon).,21,24,2012 20120930_CAR@ATL,4,8,51,CAR,ATL,2,5,31,(8:51) (Shotgun) C.Newton sacked at ATL 38 for -7 yards (V.Walker). FUMBLES (V.Walker) recovered by CAR-B.Hartsock at ATL 36. B.Hartsock to ATL 36 for no gain (J.Babineaux).,21,24,2012 20120930_CAR@ATL,4,8,3,CAR,ATL,3,10,36,(8:03) (Shotgun) C.Newton pass short left to K.Pilares for 36 yards TOUCHDOWN. Penalty on ATL-T.DeCoud Defensive Offside declined.,21,24,2012 20120930_CAR@ATL,4,8,3,CAR,ATL,,,36,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,21,24,2012 20120930_CAR@ATL,4,8,3,CAR,ATL,,,36,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,28,24,2012 20120930_CAR@ATL,4,7,55,ATL,CAR,1,10,80,(7:55) M.Ryan pass incomplete short left to J.Jones (J.Norman).,24,28,2012 20120930_CAR@ATL,4,7,50,ATL,CAR,2,10,80,(7:50) (Shotgun) M.Ryan pass incomplete short middle to M.Turner.,24,28,2012 20120930_CAR@ATL,4,7,45,ATL,CAR,3,10,80,(7:45) M.Ryan pass deep middle to J.Jones to 50 for 30 yards (C.Godfrey).,24,28,2012 20120930_CAR@ATL,4,6,59,ATL,CAR,1,10,50,(6:59) (No Huddle Shotgun) M.Ryan pass short left to Jz. Rodgers pushed ob at CAR 35 for 15 yards (T.Davis).,24,28,2012 20120930_CAR@ATL,4,6,36,ATL,CAR,1,10,35,(6:36) (No Huddle Shotgun) M.Ryan pass short left to Jz. Rodgers to CAR 26 for 9 yards (T.Davis; J.Norman). PENALTY on CAR-J.Norman Face Mask (15 Yards) 13 yards enforced at CAR 26. Penalty on CAR-F.Alexander Defensive Offside declined.,24,28,2012 20120930_CAR@ATL,4,6,20,ATL,CAR,1,10,13,(6:20) M.Ryan sacked at CAR 22 for -9 yards (F.Alexander).,24,28,2012 20120930_CAR@ATL,4,5,51,ATL,CAR,2,19,22,(5:51) (No Huddle) M.Ryan pass incomplete short left to J.Jones (J.Norman).,24,28,2012 20120930_CAR@ATL,4,5,46,ATL,CAR,3,19,22,(5:46) M.Ryan pass short middle to Jz. Rodgers to CAR 15 for 7 yards (T.Davis; J.Beason) [G.Hardy].,24,28,2012 20120930_CAR@ATL,4,5,0,ATL,CAR,4,12,15,(5:00) M.Bryant 33 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,24,28,2012 20120930_CAR@ATL,4,5,0,ATL,CAR,,,15,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,27,28,2012 20120930_CAR@ATL,4,4,57,CAR,ATL,1,10,80,(4:57) D.Williams right end to CAR 21 for 1 yard (S.Nicholas).,28,27,2012 20120930_CAR@ATL,4,4,12,CAR,ATL,2,9,79,(4:12) (Shotgun) J.Stewart up the middle to CAR 22 for 1 yard (W.Moore).,28,27,2012 20120930_CAR@ATL,4,3,31,CAR,ATL,3,8,78,(3:31) (Shotgun) C.Newton pass incomplete short left to S.Smith.,28,27,2012 20120930_CAR@ATL,4,3,25,CAR,ATL,4,8,78,(3:25) B.Nortman punts 48 yards to ATL 30 Center-J.Jansen. D.Franks to ATL 29 for -1 yards (J.Senn).,28,27,2012 20120930_CAR@ATL,4,3,16,ATL,CAR,1,10,71,(3:16) M.Ryan pass incomplete deep left to J.Jones.,27,28,2012 20120930_CAR@ATL,4,3,8,ATL,CAR,2,10,71,(3:08) (Shotgun) M.Ryan pass short left to M.Turner to ATL 36 for 7 yards (J.Norman) [F.Alexander].,27,28,2012 20120930_CAR@ATL,4,2,41,ATL,CAR,3,3,64,(2:41) (No Huddle Shotgun) M.Ryan sacked at ATL 28 for -8 yards (C.Johnson).,27,28,2012 20120930_CAR@ATL,4,2,34,ATL,CAR,4,11,72,(2:34) M.Bosher punts 45 yards to CAR 27 Center-J.Harris fair catch by C.Munnerlyn. PENALTY on ATL-K.Cone Player Out of Bounds on Punt 5 yards enforced at CAR 27.,27,28,2012 20120930_CAR@ATL,4,2,26,CAR,ATL,1,10,68,(2:26) (Shotgun) J.Stewart right guard to CAR 36 for 4 yards (A.Dent).,28,27,2012 20120930_CAR@ATL,4,2,21,CAR,ATL,2,6,64,(2:21) C.Newton left end to CAR 46 for 10 yards (J.Abraham).,28,27,2012 20120930_CAR@ATL,4,2,0,CAR,ATL,1,10,54,(2:00) (Shotgun) D.Williams left guard to 50 for 4 yards (J.Abraham).,28,27,2012 20120930_CAR@ATL,4,1,55,CAR,ATL,2,6,50,(1:55) (Shotgun) D.Williams right guard to ATL 46 for 4 yards (S.Nicholas).,28,27,2012 20120930_CAR@ATL,4,1,51,CAR,ATL,3,2,46,(1:51) (Shotgun) C.Newton left tackle to ATL 44 for 2 yards (J.Abraham). FUMBLES (J.Abraham) recovered by CAR-M.Tolbert at ATL 44. The Replay Assistant challenged the first down ruling and the play was REVERSED. (Shotgun) C.Newton left tackle to ATL 44 for 2 yards (J.Abraham). FUMBLES (J.Abraham) recovered by CAR-M.Tolbert at ATL 45.,28,27,2012 20120930_CAR@ATL,4,1,44,CAR,ATL,4,1,45,(1:44) (Punt formation) PENALTY on CAR-C.Newton Delay of Game 5 yards enforced at ATL 45 - No Play.,28,27,2012 20120930_CAR@ATL,4,1,9,CAR,ATL,4,6,50,(1:09) B.Nortman punts 49 yards to ATL 1 Center-J.Jansen downed by CAR-K.Onatolu.,28,27,2012 20120930_CAR@ATL,4,0,59,ATL,CAR,1,10,99,(:59) M.Ryan pass deep left to R.White to CAR 40 for 59 yards (J.Norman).,27,28,2012 20120930_CAR@ATL,4,0,27,ATL,CAR,1,10,40,(:27) (No Huddle Shotgun) M.Ryan pass incomplete short left to J.Jones.,27,28,2012 20120930_CAR@ATL,4,0,22,ATL,CAR,2,10,40,(:22) (Shotgun) M.Ryan pass incomplete short left to J.Jones. PENALTY on CAR-C.Munnerlyn Defensive Pass Interference 5 yards enforced at CAR 40 - No Play.,27,28,2012 20120930_CAR@ATL,4,0,19,ATL,CAR,1,10,35,(:19) (Shotgun) M.Ryan pass short left to T.Gonzalez pushed ob at CAR 28 for 7 yards (J.Norman).,27,28,2012 20120930_CAR@ATL,4,0,14,ATL,CAR,2,3,28,(:14) (Shotgun) M.Ryan pass short left to H.Douglas ran ob at CAR 22 for 6 yards.,27,28,2012 20120930_CAR@ATL,4,0,10,ATL,CAR,1,10,22,(:10) M.Bryant 40 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,27,28,2012 20120930_CAR@ATL,4,0,10,ATL,CAR,,,22,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,30,28,2012 20120930_CAR@ATL,4,0,5,CAR,ATL,1,10,80,(:05) (Shotgun) C.Newton sacked at CAR 15 for -5 yards (J.Abraham).,28,30,2012 20120930_CAR@ATL,4,0,5,CAR,ATL,,,80,                      ,28,30,2012 20120930_NE@BUF,1,0,0,NE,BUF,,,80,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,0,0,2012 20120930_NE@BUF,1,60,0,BUF,NE,1,10,80,(15:00) (Shotgun) F.Jackson up the middle to BUF 31 for 11 yards (J.Mayo R.Ninkovich).,0,0,2012 20120930_NE@BUF,1,59,21,BUF,NE,1,10,69,(14:21) (Shotgun) R.Fitzpatrick pass short left to T.Graham pushed ob at BUF 41 for 10 yards (S.Gregory). Screen pass caught at BUF 30.,0,0,2012 20120930_NE@BUF,1,58,56,BUF,NE,1,10,59,(13:56) (Shotgun) F.Jackson left end to BUF 41 for no gain (R.Ninkovich; J.Mayo).,0,0,2012 20120930_NE@BUF,1,58,15,BUF,NE,2,10,59,(13:15) (Shotgun) R.Fitzpatrick scrambles right end ran ob at BUF 48 for 7 yards.,0,0,2012 20120930_NE@BUF,1,57,38,BUF,NE,3,3,52,(12:38) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to NE 46 for 6 yards (J.Mayo P.Chung). Caught at NE 47 crossing from left.,0,0,2012 20120930_NE@BUF,1,56,58,BUF,NE,1,10,46,(11:58) F.Jackson right guard to NE 41 for 5 yards (C.Jones; J.Mayo).,0,0,2012 20120930_NE@BUF,1,56,18,BUF,NE,2,5,41,(11:18) (Shotgun) F.Jackson up the middle to NE 38 for 3 yards (J.Mayo C.Jones).,0,0,2012 20120930_NE@BUF,1,55,37,BUF,NE,3,2,38,(10:37) F.Jackson left guard to NE 41 for -3 yards (C.Jones).,0,0,2012 20120930_NE@BUF,1,55,4,BUF,NE,4,5,41,(10:04) S.Powell punts 31 yards to NE 10 Center-G.Sanborn fair catch by W.Welker.,0,0,2012 20120930_NE@BUF,1,54,56,NE,BUF,1,10,90,(9:56) T.Brady pass short right to D.Fells pushed ob at NE 28 for 18 yards (J.Byrd). Out-pattern caught at NE 11.,0,0,2012 20120930_NE@BUF,1,54,33,NE,BUF,1,10,72,(9:33) (Shotgun) T.Brady pass short left to S.Vereen to NE 33 for 5 yards (J.Rogers J.Byrd). Flat pass caught at NE 31.,0,0,2012 20120930_NE@BUF,1,53,57,NE,BUF,2,5,67,(8:57) (Shotgun) T.Brady pass deep right to R.Gronkowski to BUF 26 for 41 yards (J.Rogers). Caught at BUF 32 slanting to sideline.,0,0,2012 20120930_NE@BUF,1,53,16,NE,BUF,1,10,26,(8:16) (No Huddle Shotgun) T.Brady pass short left to R.Gronkowski to BUF 19 for 7 yards (B.Scott; S.Gilmore). Screen pass caught at BUF 29.,0,0,2012 20120930_NE@BUF,1,52,43,NE,BUF,2,3,19,(7:43) S.Ridley up the middle to BUF 15 for 4 yards (M.Williams).,0,0,2012 20120930_NE@BUF,1,52,16,NE,BUF,1,10,15,(7:16) (Shotgun) T.Brady pass short left to W.Welker to BUF 6 for 9 yards (N.Barnett). Screen pass caught at BUF 18.,0,0,2012 20120930_NE@BUF,1,51,52,NE,BUF,2,1,6,(6:52) (Shotgun) S.Ridley left tackle for 6 yards TOUCHDOWN.,0,0,2012 20120930_NE@BUF,1,51,52,NE,BUF,,,6,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 20120930_NE@BUF,1,51,52,NE,BUF,,,6,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick rolled out of bounds 6 yds. into end zone.,7,0,2012 20120930_NE@BUF,1,51,49,BUF,NE,1,10,80,(6:49) (Shotgun) R.Fitzpatrick pass short right to T.Graham pushed ob at BUF 28 for 8 yards (D.McCourty). Screen pass caught at BUF 19.,0,7,2012 20120930_NE@BUF,1,51,24,BUF,NE,2,2,72,(6:24) C.Spiller right tackle pushed ob at BUF 24 for -4 yards (D.Hightower).,0,7,2012 20120930_NE@BUF,1,50,49,BUF,NE,3,6,76,(5:49) (Shotgun) R.Fitzpatrick pass short left to St.Johnson pushed ob at BUF 40 for 16 yards (P.Chung). Caught at BUF 35 slanting from middle.,0,7,2012 20120930_NE@BUF,1,50,22,BUF,NE,1,10,60,(5:22) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 43 for 3 yards (R.Ninkovich). Screen pass caught at BUF 40.,0,7,2012 20120930_NE@BUF,1,49,42,BUF,NE,2,7,57,(4:42) R.Fitzpatrick sacked at BUF 43 for 0 yards (D.Hightower).,0,7,2012 20120930_NE@BUF,1,49,13,BUF,NE,3,7,57,(4:13) (Shotgun) R.Fitzpatrick pass short middle intended for St.Johnson INTERCEPTED by J.Mayo (V.Wilfork) at BUF 49. J.Mayo to BUF 49 for no gain (St.Johnson). Pass tipped at line prior to INT.,0,7,2012 20120930_NE@BUF,1,49,6,NE,BUF,1,10,49,(4:06) T.Brady pass incomplete short right to R.Gronkowski (M.Dareus). Pass tipped at line receiver at BUF 40.,7,0,2012 20120930_NE@BUF,1,49,0,NE,BUF,2,10,49,(4:00) (Shotgun) S.Ridley up the middle to BUF 41 for 8 yards (N.Barnett).,7,0,2012 20120930_NE@BUF,1,48,30,NE,BUF,3,2,41,(3:30) (Shotgun) T.Brady pass incomplete short left to B.Lloyd. Thrown wide of receiver near sideline at BUF 33.,7,0,2012 20120930_NE@BUF,1,48,26,NE,BUF,4,2,41,(3:26) Z.Mesko punts 35 yards to BUF 6 Center-D.Aiken downed by NE-M.Slater.,7,0,2012 20120930_NE@BUF,1,48,18,BUF,NE,1,10,94,(3:18) R.Fitzpatrick pass short left to D.Dickerson to BUF 30 for 24 yards (S.Gregory). Screen pass caught at BUF 5. Key block: E.Wood.,0,7,2012 20120930_NE@BUF,1,47,32,BUF,NE,1,10,70,(2:32) F.Jackson up the middle to BUF 35 for 5 yards (K.Love P.Chung).,0,7,2012 20120930_NE@BUF,1,46,57,BUF,NE,2,5,65,(1:57) F.Jackson right guard to BUF 36 for 1 yard (T.Wilson). BUF-K.Urbik was injured during the play. K.Urbik walks off.,0,7,2012 20120930_NE@BUF,1,46,15,BUF,NE,3,4,64,(1:15) (Shotgun) R.Fitzpatrick sacked at BUF 31 for -5 yards (C.Jones).,0,7,2012 20120930_NE@BUF,1,45,53,BUF,NE,4,9,69,(:53) S.Powell punts 54 yards to NE 15 Center-G.Sanborn. W.Welker to NE 29 for 14 yards (C.White).,0,7,2012 20120930_NE@BUF,1,45,42,NE,BUF,1,10,71,(:42) T.Brady pass incomplete deep left to B.Lloyd (S.Gilmore). Receiver and coverage along sideline at NE 49.,7,0,2012 20120930_NE@BUF,1,45,36,NE,BUF,2,10,71,(:36) (No Huddle) B.Bolden left tackle to NE 41 for 12 yards (G.Wilson).,7,0,2012 20120930_NE@BUF,2,45,0,NE,BUF,1,10,59,(15:00) (Shotgun) T.Brady pass incomplete short right to W.Welker. Thrown wide of receiver at BUF 49.,7,0,2012 20120930_NE@BUF,2,44,55,NE,BUF,2,10,59,(14:55) B.Bolden left tackle pushed ob at NE 43 for 2 yards (B.Scott).,7,0,2012 20120930_NE@BUF,2,44,27,NE,BUF,3,8,57,(14:27) (Shotgun) T.Brady pass short middle to D.Woodhead to NE 49 for 6 yards (N.Barnett J.Byrd). Caught at NE 49.,7,0,2012 20120930_NE@BUF,2,43,52,NE,BUF,4,2,51,(13:52) Z.Mesko punts 49 yards to BUF 2 Center-D.Aiken downed by NE-M.Slater. Kick kept in play by M.Cole.,7,0,2012 20120930_NE@BUF,2,43,41,BUF,NE,1,10,98,(13:41) C.Spiller left guard to BUF 4 for 2 yards (K.Arrington).,0,7,2012 20120930_NE@BUF,2,43,4,BUF,NE,2,8,96,(13:04) R.Fitzpatrick pass deep right intended for T.Graham INTERCEPTED by D.McCourty [C.Jones] at BUF 42. D.McCourty to BUF 42 for no gain (T.Graham). Coverage near sideline thrown under pressure.,0,7,2012 20120930_NE@BUF,2,42,56,NE,BUF,1,10,42,(12:56) B.Bolden right guard to BUF 30 for 12 yards (S.Gilmore J.Byrd). BUF-S.Gilmore was injured during the play. S.Gilmore assisted off.,7,0,2012 20120930_NE@BUF,2,42,18,NE,BUF,1,10,30,(12:18) T.Brady pass incomplete short right to R.Gronkowski. Thrown wide of receiver near sideline at BUF 28. Pressure on QB: K.Williams.,7,0,2012 20120930_NE@BUF,2,42,9,NE,BUF,2,10,30,(12:09) B.Bolden right guard to BUF 31 for -1 yards (K.Williams).,7,0,2012 20120930_NE@BUF,2,41,27,NE,BUF,3,11,31,(11:27) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd (A.Williams). Receiver and coverage along sideline at BUF 12.,7,0,2012 20120930_NE@BUF,2,41,21,NE,BUF,4,11,31,(11:21) S.Gostkowski 49 yard field goal is No Good Wide Right Center-D.Aiken Holder-Z.Mesko.,7,0,2012 20120930_NE@BUF,2,41,16,BUF,NE,1,10,61,(11:16) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to NE 49 for 12 yards (P.Chung). Caught at BUF 45 slanting from right.,0,7,2012 20120930_NE@BUF,2,40,41,BUF,NE,1,10,49,(10:41) (No Huddle Shotgun) F.Jackson right tackle to BUF 49 for -2 yards (D.McCourty). Penalty on BUF-E.Pears Offensive Holding declined.,0,7,2012 20120930_NE@BUF,2,40,18,BUF,NE,2,12,51,(10:18) (Shotgun) R.Fitzpatrick pass incomplete deep left to T.Graham [J.Cunningham]. Overthrown receiver at NE 10.,0,7,2012 20120930_NE@BUF,2,40,13,BUF,NE,3,12,51,(10:13) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler. Overthrown receiver at NE 38.,0,7,2012 20120930_NE@BUF,2,40,7,BUF,NE,4,12,51,(10:07) S.Powell punts 42 yards to NE 9 Center-G.Sanborn fair catch by W.Welker.,0,7,2012 20120930_NE@BUF,2,40,0,NE,BUF,1,10,91,(10:00) T.Brady pass short middle to R.Gronkowski to NE 24 for 15 yards (J.Byrd). FUMBLES (J.Byrd) RECOVERED by BUF-J.Byrd at NE 24. J.Byrd to NE 24 for no gain (R.Gronkowski). Caught at NE 20 slanting from left.,7,0,2012 20120930_NE@BUF,2,39,51,BUF,NE,1,10,24,(9:51) (Shotgun) R.Fitzpatrick pass deep right to S.Chandler for 24 yards TOUCHDOWN. Caught in coverage in front corner of end zone.,0,7,2012 20120930_NE@BUF,2,39,51,BUF,NE,,,24,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,0,7,2012 20120930_NE@BUF,2,39,51,BUF,NE,,,24,J.Potter kicks 66 yards from BUF 35 to NE -1. D.McCourty to NE 19 for 20 yards (J.White).,7,7,2012 20120930_NE@BUF,2,39,38,NE,BUF,1,10,81,(9:38) T.Brady pass short left to W.Welker pushed ob at NE 28 for 9 yards (S.Gilmore). Caught near sideline at NE 25.,7,7,2012 20120930_NE@BUF,2,39,27,NE,BUF,2,1,72,(9:27) (No Huddle) S.Ridley left guard to NE 37 for 9 yards (S.Gilmore M.Anderson).,7,7,2012 20120930_NE@BUF,2,39,2,NE,BUF,1,10,63,(9:02) (No Huddle) S.Ridley up the middle to NE 44 for 7 yards (A.Williams B.Scott).,7,7,2012 20120930_NE@BUF,2,38,40,NE,BUF,2,3,56,(8:40) (No Huddle) S.Ridley up the middle to 50 for 6 yards (J.Byrd N.Barnett).,7,7,2012 20120930_NE@BUF,2,38,15,NE,BUF,1,10,50,(8:15) (No Huddle Shotgun) S.Vereen up the middle to 50 for no gain (N.Barnett B.Scott).,7,7,2012 20120930_NE@BUF,2,37,45,NE,BUF,2,10,50,(7:45) (No Huddle Shotgun) T.Brady pass incomplete short middle to S.Vereen. Underthrown receiver at NE 47.,7,7,2012 20120930_NE@BUF,2,37,41,NE,BUF,3,10,50,(7:41) (Shotgun) T.Brady pass short middle to B.Lloyd to BUF 33 for 17 yards (S.Gilmore). Caught at BUF 35 slanting from left.,7,7,2012 20120930_NE@BUF,2,36,57,NE,BUF,1,10,33,(6:57) (No Huddle Shotgun) T.Brady pass incomplete short left to R.Gronkowski. Underthrown receiver at BUF 29. Thrown under pressure: K.Williams.,7,7,2012 20120930_NE@BUF,2,36,52,NE,BUF,2,10,33,(6:52) S.Ridley left guard to BUF 25 for 8 yards (N.Barnett).,7,7,2012 20120930_NE@BUF,2,36,29,NE,BUF,3,2,25,(6:29) (No Huddle) S.Ridley left guard to BUF 24 for 1 yard (B.Scott N.Barnett).,7,7,2012 20120930_NE@BUF,2,35,46,NE,BUF,4,1,24,(5:46) S.Gostkowski 42 yard field goal is No Good Wide Left Center-D.Aiken Holder-Z.Mesko.,7,7,2012 20120930_NE@BUF,2,35,42,BUF,NE,1,10,68,(5:42) (Shotgun) R.Fitzpatrick pass short right to T.Graham to BUF 39 for 7 yards (B.Spikes). Screen pass caught at BUF 30.,7,7,2012 20120930_NE@BUF,2,35,25,BUF,NE,2,3,61,(5:25) (No Huddle Shotgun) R.Fitzpatrick pass short right to F.Jackson to BUF 39 for no gain (D.McCourty B.Spikes). Out-pattern caught at BUF 37.,7,7,2012 20120930_NE@BUF,2,34,40,BUF,NE,3,3,61,(4:40) (Shotgun) R.Fitzpatrick pass deep left to F.Jackson to NE 27 for 34 yards (S.Ridley). Caught along sideline at NE 30.,7,7,2012 20120930_NE@BUF,2,34,0,BUF,NE,1,10,27,(4:00) (No Huddle Shotgun) C.Spiller up the middle pushed ob at NE 20 for 7 yards (D.McCourty).,7,7,2012 20120930_NE@BUF,2,33,35,BUF,NE,2,3,20,(3:35) (No Huddle Shotgun) R.Fitzpatrick pass deep middle to S.Chandler for 20 yards TOUCHDOWN. Caught at goal line.,7,7,2012 20120930_NE@BUF,2,33,35,BUF,NE,,,20,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,7,7,2012 20120930_NE@BUF,2,33,35,BUF,NE,,,20,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,14,7,2012 20120930_NE@BUF,2,33,30,NE,BUF,1,10,80,(3:30) S.Ridley right guard to NE 20 for no gain (B.Scott).,7,14,2012 20120930_NE@BUF,2,32,59,NE,BUF,2,10,80,(2:59) T.Brady sacked at NE 13 for -7 yards (sack split by M.Dareus and K.Williams).,7,14,2012 20120930_NE@BUF,2,32,24,NE,BUF,3,17,87,(2:24) (Shotgun) T.Brady pass short middle to W.Welker to NE 27 for 14 yards (J.Byrd). FUMBLES (J.Byrd) RECOVERED by BUF-B.Scott at NE 29. B.Scott to NE 21 for 8 yards (R.Wendell). The Replay Assistant challenged the fumble ruling and the play was Upheld.,7,14,2012 20120930_NE@BUF,2,32,15,BUF,NE,1,10,21,(2:15) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler (P.Chung). Receiver and coverage along sideline at NE 9.,14,7,2012 20120930_NE@BUF,2,32,10,BUF,NE,2,10,21,(2:10) (Shotgun) R.Fitzpatrick pass incomplete deep middle to St.Johnson. Overthrown receiver at NE 3.,14,7,2012 20120930_NE@BUF,2,32,6,BUF,NE,3,10,21,(2:06) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to NE 7 for 14 yards (T.Wilson). Caught at NE 7 crossing from right.,14,7,2012 20120930_NE@BUF,2,31,59,BUF,NE,1,7,7,(1:59) C.Spiller up the middle to NE 4 for 3 yards (B.Spikes K.Love).,14,7,2012 20120930_NE@BUF,2,31,19,BUF,NE,2,4,4,(1:19) (Shotgun) C.Spiller up the middle to NE 1 for 3 yards (V.Wilfork). FUMBLES (V.Wilfork) RECOVERED by NE-V.Wilfork at NE 2. V.Wilfork to NE 4 for 2 yards (R.Fitzpatrick).,14,7,2012 20120930_NE@BUF,2,31,11,NE,BUF,1,10,96,(1:11) S.Ridley up the middle to NE 13 for 9 yards (G.Wilson S.Gilmore).,7,14,2012 20120930_NE@BUF,2,30,43,NE,BUF,2,1,87,(:43) S.Ridley up the middle to NE 18 for 5 yards (M.Anderson N.Barnett).,7,14,2012 20120930_NE@BUF,3,30,0,BUF,NE,,,87,J.Potter kicks 73 yards from BUF 35 to NE -8. D.McCourty Touchback.,14,7,2012 20120930_NE@BUF,3,30,0,NE,BUF,1,10,80,(15:00) (Shotgun) T.Brady pass short left to W.Welker pushed ob at NE 46 for 26 yards (J.Byrd). Out-pattern caught at NE 23.,7,14,2012 20120930_NE@BUF,3,29,38,NE,BUF,1,10,54,(14:38) B.Bolden up the middle to NE 48 for 2 yards (B.Scott; N.Barnett).,7,14,2012 20120930_NE@BUF,3,29,7,NE,BUF,2,8,52,(14:07) (Shotgun) T.Brady pass incomplete deep left to R.Gronkowski (S.Gilmore). Receiver and coverage at BUF 5.,7,14,2012 20120930_NE@BUF,3,28,58,NE,BUF,3,8,52,(13:58) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker (K.Williams). Pass batted at line.,7,14,2012 20120930_NE@BUF,3,28,54,NE,BUF,4,8,52,(13:54) Z.Mesko punts 35 yards to BUF 17 Center-D.Aiken fair catch by L.McKelvin.,7,14,2012 20120930_NE@BUF,3,28,45,BUF,NE,1,10,83,(13:45) (Shotgun) F.Jackson left tackle to BUF 17 for no gain (T.White).,14,7,2012 20120930_NE@BUF,3,28,6,BUF,NE,2,10,83,(13:06) (Shotgun) PENALTY on BUF-E.Pears False Start 5 yards enforced at BUF 17 - No Play.,14,7,2012 20120930_NE@BUF,3,27,45,BUF,NE,2,15,88,(12:45) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler (B.Spikes). Pass tipped at BUF 23 receiver at BUF 27.,14,7,2012 20120930_NE@BUF,3,27,40,BUF,NE,3,15,88,(12:40) (Shotgun) R.Fitzpatrick pass short left to F.Jackson to BUF 28 for 16 yards (K.Arrington). Screen pass caught at BUF 10.,14,7,2012 20120930_NE@BUF,3,26,56,BUF,NE,1,10,72,(11:56) F.Jackson left guard to BUF 32 for 4 yards (V.Wilfork).,14,7,2012 20120930_NE@BUF,3,26,18,BUF,NE,2,6,68,(11:18) (Shotgun) R.Fitzpatrick pass short middle to D.Jones for 68 yards TOUCHDOWN. Caught at BUF 39 crossing from right.,14,7,2012 20120930_NE@BUF,3,26,18,BUF,NE,,,68,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,14,7,2012 20120930_NE@BUF,3,26,18,BUF,NE,,,68,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,21,7,2012 20120930_NE@BUF,3,26,8,NE,BUF,1,10,80,(11:08) (Shotgun) T.Brady pass short middle to B.Bolden to NE 31 for 11 yards (S.Gilmore). Caught at NE 25 crossing from left.,7,21,2012 20120930_NE@BUF,3,25,41,NE,BUF,1,10,69,(10:41) (Shotgun) B.Bolden right guard pushed ob at BUF 42 for 27 yards (G.Wilson).,7,21,2012 20120930_NE@BUF,3,25,11,NE,BUF,1,10,42,(10:11) (No Huddle) B.Bolden right tackle to BUF 29 for 13 yards (N.Barnett A.Williams).,7,21,2012 20120930_NE@BUF,3,24,47,NE,BUF,1,10,29,(9:47) (No Huddle) S.Ridley up the middle to BUF 22 for 7 yards (G.Wilson; J.Byrd).,7,21,2012 20120930_NE@BUF,3,24,22,NE,BUF,2,3,22,(9:22) S.Ridley up the middle to BUF 18 for 4 yards (B.Scott).,7,21,2012 20120930_NE@BUF,3,23,54,NE,BUF,1,10,18,(8:54) T.Brady pass incomplete short middle to R.Gronkowski. Pass dropped at BUF 4 crossing from left.,7,21,2012 20120930_NE@BUF,3,23,51,NE,BUF,2,10,18,(8:51) S.Ridley left guard to BUF 17 for 1 yard (B.Scott M.Dareus).,7,21,2012 20120930_NE@BUF,3,23,18,NE,BUF,3,9,17,(8:18) (Shotgun) T.Brady pass short left to D.Woodhead for 17 yards TOUCHDOWN. Caught in flat at BUF 10 slanted toward middle after catch.,7,21,2012 20120930_NE@BUF,3,23,18,NE,BUF,,,17,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,21,2012 20120930_NE@BUF,3,23,18,NE,BUF,,,17,S.Gostkowski kicks 68 yards from NE 35 to BUF -3. L.McKelvin Touchback.,14,21,2012 20120930_NE@BUF,3,23,10,BUF,NE,1,10,80,(8:10) (Shotgun) R.Fitzpatrick pass incomplete deep right to T.Graham. Overthrown receiver along sideline at BUF 48.,21,14,2012 20120930_NE@BUF,3,23,5,BUF,NE,2,10,80,(8:05) (Shotgun) C.Spiller up the middle to BUF 21 for 1 yard (V.Wilfork).,21,14,2012 20120930_NE@BUF,3,22,24,BUF,NE,3,9,79,(7:24) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler. Thrown wide of receiver in flat at BUF 31.,21,14,2012 20120930_NE@BUF,3,22,19,BUF,NE,4,9,79,(7:19) S.Powell punts 54 yards to NE 25 Center-G.Sanborn out of bounds. PENALTY on NE-T.Wilson Offensive Holding 10 yards enforced at NE 25.,21,14,2012 20120930_NE@BUF,3,22,12,NE,BUF,1,10,85,(7:12) (Shotgun) T.Brady pass short left to W.Welker pushed ob at NE 28 for 13 yards (J.Rogers). Caught near sideline at NE 25.,14,21,2012 20120930_NE@BUF,3,21,57,NE,BUF,1,10,72,(6:57) S.Ridley left guard to NE 30 for 2 yards (M.Dareus; A.Carrington).,14,21,2012 20120930_NE@BUF,3,21,24,NE,BUF,2,8,70,(6:24) (Shotgun) T.Brady pass short middle to W.Welker to NE 44 for 14 yards (B.Scott). Caught at NE 35.,14,21,2012 20120930_NE@BUF,3,20,53,NE,BUF,1,10,56,(5:53) B.Bolden up the middle to BUF 36 for 20 yards (G.Wilson J.Rogers).,14,21,2012 20120930_NE@BUF,3,20,24,NE,BUF,1,10,36,(5:24) (No Huddle) B.Bolden left guard to BUF 32 for 4 yards (K.Williams B.Scott).,14,21,2012 20120930_NE@BUF,3,19,49,NE,BUF,2,6,32,(4:49) (Shotgun) T.Brady pass deep middle to W.Welker to BUF 13 for 19 yards (G.Wilson) [K.Williams]. Caught at BUF 15 slanting from right. PENALTY on BUF-K.Williams Roughing the Passer 7 yards enforced at BUF 13.,14,21,2012 20120930_NE@BUF,3,19,24,NE,BUF,1,6,6,(4:24) (Shotgun) B.Bolden up the middle to BUF 4 for 2 yards (B.Scott).,14,21,2012 20120930_NE@BUF,3,18,59,NE,BUF,2,4,4,(3:59) (No Huddle Shotgun) T.Brady scrambles left tackle for 4 yards TOUCHDOWN.,14,21,2012 20120930_NE@BUF,3,18,59,NE,BUF,,,4,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,21,2012 20120930_NE@BUF,3,18,59,NE,BUF,,,4,S.Gostkowski kicks 72 yards from NE 35 to BUF -7. L.McKelvin Touchback.,21,21,2012 20120930_NE@BUF,3,18,53,BUF,NE,1,10,80,(3:53) R.Fitzpatrick pass deep left to D.Jones to BUF 42 for 22 yards (P.Chung). Caught in flat at BUF 37.,21,21,2012 20120930_NE@BUF,3,18,12,BUF,NE,1,10,58,(3:12) (Shotgun) F.Jackson up the middle to BUF 40 for -2 yards (R.Ninkovich; B.Spikes).,21,21,2012 20120930_NE@BUF,3,17,31,BUF,NE,2,12,60,(2:31) (Shotgun) R.Fitzpatrick sacked at BUF 34 for -6 yards (R.Ninkovich). FUMBLES (R.Ninkovich) and recovers at BUF 35. BUF-C.Glenn was injured during the play. Sack credited for 5 yds. (to point of recovery). C.Glenn walks off.,21,21,2012 20120930_NE@BUF,3,17,7,BUF,NE,3,17,65,(2:07) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson. Overthrown receiver along sideline at NE 45.,21,21,2012 20120930_NE@BUF,3,17,3,BUF,NE,4,17,65,(2:03) S.Powell punts 28 yards to NE 37 Center-G.Sanborn out of bounds.,21,21,2012 20120930_NE@BUF,3,16,56,NE,BUF,1,10,63,(1:56) (Shotgun) T.Brady pass short left to W.Welker pushed ob at NE 45 for 8 yards (J.Rogers). Caught along sideline at NE 42.,21,21,2012 20120930_NE@BUF,3,16,34,NE,BUF,2,2,55,(1:34) S.Ridley right guard to NE 48 for 3 yards (N.Barnett K.Williams).,21,21,2012 20120930_NE@BUF,3,15,48,NE,BUF,1,10,52,(:48) (Shotgun) T.Brady pass short left to R.Gronkowski to BUF 39 for 13 yards (N.Barnett). Caught at BUF 44 crossing from middle.,21,21,2012 20120930_NE@BUF,3,15,15,NE,BUF,1,10,39,(:15) S.Ridley left guard to BUF 28 for 11 yards (G.Wilson N.Barnett).,21,21,2012 20120930_NE@BUF,4,15,0,NE,BUF,1,10,28,(15:00) T.Brady pass deep middle to R.Gronkowski for 28 yards TOUCHDOWN. Caught at BUF 10.,21,21,2012 20120930_NE@BUF,4,15,0,NE,BUF,,,28,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,21,2012 20120930_NE@BUF,4,15,0,NE,BUF,,,28,S.Gostkowski kicks 70 yards from NE 35 to BUF -5. L.McKelvin to BUF 21 for 26 yards (N.Ebner M.Slater).,28,21,2012 20120930_NE@BUF,4,14,49,BUF,NE,1,10,79,(14:49) (Shotgun) C.Spiller up the middle to BUF 35 for 14 yards (R.Ninkovich).,21,28,2012 20120930_NE@BUF,4,14,12,BUF,NE,1,10,65,(14:12) (Shotgun) F.Jackson right guard to BUF 37 for 2 yards (R.Ninkovich B.Spikes).,21,28,2012 20120930_NE@BUF,4,13,33,BUF,NE,2,8,63,(13:33) (Shotgun) F.Jackson right guard to BUF 42 for 5 yards (B.Spikes). FUMBLES (B.Spikes) RECOVERED by NE-T.Wilson at BUF 42. T.Wilson to BUF 42 for no gain (E.Pears).,21,28,2012 20120930_NE@BUF,4,13,26,NE,BUF,1,10,42,(13:26) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd (S.Gilmore). Receiver and coverage near sideline at BUF 25.,28,21,2012 20120930_NE@BUF,4,13,21,NE,BUF,2,10,42,(13:21) S.Ridley left guard to BUF 29 for 13 yards (G.Wilson A.Williams).,28,21,2012 20120930_NE@BUF,4,12,48,NE,BUF,1,10,29,(12:48) B.Bolden left guard to BUF 16 for 13 yards (G.Wilson B.Scott). BUF-M.Anderson was injured during the play. M.Anderson walks off.,28,21,2012 20120930_NE@BUF,4,12,17,NE,BUF,1,10,16,(12:17) B.Bolden left tackle to BUF 2 for 14 yards (G.Wilson D.Searcy).,28,21,2012 20120930_NE@BUF,4,11,49,NE,BUF,1,2,2,(11:49) (No Huddle) T.Brady pass incomplete short left to R.Gronkowski (S.Gilmore). Receiver and coverage in rear corner of end zone.,28,21,2012 20120930_NE@BUF,4,11,46,NE,BUF,2,2,2,(11:46) S.Ridley left tackle for 2 yards TOUCHDOWN. Penalty on BUF Defensive 12 On-field declined.,28,21,2012 20120930_NE@BUF,4,11,46,NE,BUF,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,28,21,2012 20120930_NE@BUF,4,11,46,NE,BUF,,,2,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,35,21,2012 20120930_NE@BUF,4,11,42,BUF,NE,1,10,80,(11:42) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones (V.Wilfork). Receiver and breakup at BUF 18.,21,35,2012 20120930_NE@BUF,4,11,37,BUF,NE,2,10,80,(11:37) (Shotgun) PENALTY on BUF-E.Pears False Start 5 yards enforced at BUF 20 - No Play.,21,35,2012 20120930_NE@BUF,4,11,37,BUF,NE,2,15,85,(11:37) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Dropped at BUF 21.,21,35,2012 20120930_NE@BUF,4,11,33,BUF,NE,3,15,85,(11:33) (Shotgun) R.Fitzpatrick pass deep right intended for St.Johnson INTERCEPTED by D.McCourty at BUF 46. D.McCourty pushed ob at BUF 12 for 34 yards (E.Wood). Receiver underthrown in flat.,21,35,2012 20120930_NE@BUF,4,11,19,NE,BUF,1,10,12,(11:19) B.Bolden left guard to BUF 7 for 5 yards (A.Moats).,35,21,2012 20120930_NE@BUF,4,10,34,NE,BUF,2,5,7,(10:34) B.Bolden left tackle for 7 yards TOUCHDOWN.,35,21,2012 20120930_NE@BUF,4,10,34,NE,BUF,,,7,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,35,21,2012 20120930_NE@BUF,4,10,34,NE,BUF,,,7,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,42,21,2012 20120930_NE@BUF,4,10,29,BUF,NE,1,10,80,(10:29) (Shotgun) R.Fitzpatrick pass short middle to T.Graham to BUF 29 for 9 yards (K.Arrington). Caught at BUF 23 slanting from right.,21,42,2012 20120930_NE@BUF,4,9,58,BUF,NE,2,1,71,(9:58) (No Huddle Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 36 for 7 yards (S.Gregory). Caught in flat at BUF 34 turned to middle after catch.,21,42,2012 20120930_NE@BUF,4,9,24,BUF,NE,1,10,64,(9:24) (No Huddle Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at BUF 38 for 2 yards (S.Moore). Screen pass caught at BUF 30.,21,42,2012 20120930_NE@BUF,4,9,5,BUF,NE,2,8,62,(9:05) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson. Overthrown receiver along sideline at NE 45.,21,42,2012 20120930_NE@BUF,4,9,0,BUF,NE,3,8,62,(9:00) (Shotgun) R.Fitzpatrick pass short left to D.Dickerson to 50 for 12 yards (S.Gregory). Caught at 50 crossing from middle.,21,42,2012 20120930_NE@BUF,4,8,27,BUF,NE,1,10,50,(8:27) (No Huddle Shotgun) R.Fitzpatrick pass incomplete short right to T.Graham (K.Arrington). Receiver and breakup along sideline at NE 41.,21,42,2012 20120930_NE@BUF,4,8,20,BUF,NE,2,10,50,(8:20) (Shotgun) R.Fitzpatrick up the middle to NE 45 for 5 yards (J.Mayo T.Wilson).,21,42,2012 20120930_NE@BUF,4,7,47,BUF,NE,3,5,45,(7:47) (Shotgun) C.Spiller up the middle to NE 37 for 8 yards (C.Jones B.Spikes).,21,42,2012 20120930_NE@BUF,4,7,17,BUF,NE,1,10,37,(7:17) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson. Caught out of bounds at NE 11.,21,42,2012 20120930_NE@BUF,4,7,12,BUF,NE,2,10,37,(7:12) (Shotgun) R.Fitzpatrick scrambles up the middle to NE 35 for 2 yards.,21,42,2012 20120930_NE@BUF,4,6,39,BUF,NE,3,8,35,(6:39) (No Huddle Shotgun) R.Fitzpatrick pass deep right to B.Smith for 35 yards TOUCHDOWN. Caught in flat at NE 10.,21,42,2012 20120930_NE@BUF,4,6,39,BUF,NE,,,35,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,21,42,2012 20120930_NE@BUF,4,6,39,BUF,NE,,,35,J.Potter kicks onside 13 yards from BUF 35 to BUF 48. R.Gronkowski (didn't try to advance) to BUF 48 for no gain.,28,42,2012 20120930_NE@BUF,4,6,31,NE,BUF,1,10,48,(6:31) T.Brady pass incomplete deep right to D.Fells. Overthrown receiver along sideline at BUF 27.,42,28,2012 20120930_NE@BUF,4,6,24,NE,BUF,2,10,48,(6:24) S.Ridley up the middle to BUF 47 for 1 yard (N.Barnett).,42,28,2012 20120930_NE@BUF,4,5,47,NE,BUF,3,9,47,(5:47) (Shotgun) T.Brady pass deep middle to W.Welker to BUF 30 for 17 yards (B.Scott). Caught at BUF 30 crossing from left.,42,28,2012 20120930_NE@BUF,4,5,1,NE,BUF,1,10,30,(5:01) B.Bolden up the middle to BUF 24 for 6 yards (N.Barnett A.Carrington).,42,28,2012 20120930_NE@BUF,4,4,13,NE,BUF,2,4,24,(4:13) B.Bolden right guard to BUF 25 for -1 yards (M.Williams K.Sheppard).,42,28,2012 20120930_NE@BUF,4,4,9,NE,BUF,3,5,25,(4:09) (Shotgun) T.Brady pass deep right to B.Lloyd for 25 yards TOUCHDOWN. Caught in front corner of end zone. Penalty on BUF-J.Rogers Defensive Holding declined.,42,28,2012 20120930_NE@BUF,4,4,9,NE,BUF,,,25,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,42,28,2012 20120930_NE@BUF,4,4,9,NE,BUF,,,25,S.Gostkowski kicks 72 yards from NE 35 to BUF -7. B.Smith Touchback.,49,28,2012 20120930_NE@BUF,4,4,2,BUF,NE,1,10,80,(4:02) (Shotgun) R.Fitzpatrick pass deep left intended for St.Johnson INTERCEPTED by T.Wilson at BUF 41. T.Wilson to BUF 19 for 22 yards (F.Jackson).,28,49,2012 20120930_NE@BUF,4,3,54,NE,BUF,1,10,19,(3:54) S.Ridley left guard to BUF 21 for -2 yards (A.Carrington).,49,28,2012 20120930_NE@BUF,4,3,11,NE,BUF,2,12,21,(3:11) S.Ridley left tackle to BUF 20 for 1 yard (D.Searcy). FUMBLES (D.Searcy) ball out of bounds at BUF 20.,49,28,2012 20120930_NE@BUF,4,2,41,NE,BUF,3,11,20,(2:41) (Shotgun) T.Brady pass short left to B.Lloyd to BUF 12 for 8 yards (K.Williams). Screen pass caught at BUF 20.,49,28,2012 20120930_NE@BUF,4,2,0,NE,BUF,4,3,12,(2:00) S.Gostkowski 30 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,49,28,2012 20120930_NE@BUF,4,2,0,NE,BUF,,,12,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,52,28,2012 20120930_NE@BUF,4,1,56,BUF,NE,1,10,80,(1:56) (Shotgun) T.Choice left guard to BUF 22 for 2 yards (J.Cunningham).,28,52,2012 20120930_NE@BUF,4,1,18,BUF,NE,2,8,78,(1:18) (Shotgun) T.Choice right guard pushed ob at BUF 34 for 12 yards (D.McCourty).,28,52,2012 20120930_NE@BUF,4,1,10,BUF,NE,1,10,66,(1:10) (Shotgun) R.Fitzpatrick pass short right to T.Choice to BUF 35 for 1 yard (R.Dowling). Screen pass caught at BUF 29.,28,52,2012 20120930_NE@BUF,4,0,29,BUF,NE,2,9,65,(:29) J.White up the middle to BUF 43 for 8 yards (P.Chung).,28,52,2012 20120930_NE@BUF,4,0,29,BUF,NE,,,65,                      ,28,52,2012 20120930_MIN@DET,1,0,0,DET,MIN,,,65,J.Hanson kicks 70 yards from DET 35 to MIN -5. P.Harvin for 105 yards TOUCHDOWN.,0,0,2012 20120930_MIN@DET,1,0,0,MIN,DET,,,65,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 20120930_MIN@DET,1,0,0,MIN,DET,,,65,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,7,0,2012 20120930_MIN@DET,1,59,48,DET,MIN,1,10,80,(14:48) R.Reiff reported in as eligible. M.Stafford pass incomplete deep middle to C.Johnson (C.Cook). PENALTY on MIN-J.Sanford Defensive Pass Interference 56 yards enforced at DET 20 - No Play. Penalty on MIN-K.Williams Defensive Offside declined.,0,7,2012 20120930_MIN@DET,1,59,40,DET,MIN,1,10,24,(14:40) (Shotgun) M.Stafford scrambles left end to MIN 23 for 1 yard (J.Brinkley; J.Allen).,0,7,2012 20120930_MIN@DET,1,58,57,DET,MIN,2,9,23,(13:57) M.Leshoure right tackle to MIN 22 for 1 yard (B.Robison).,0,7,2012 20120930_MIN@DET,1,58,16,DET,MIN,3,8,22,(13:16) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (J.Robinson).,0,7,2012 20120930_MIN@DET,1,58,10,DET,MIN,4,8,22,(13:10) J.Hanson 40 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,7,2012 20120930_MIN@DET,1,58,10,DET,MIN,,,22,J.Hanson kicks 37 yards from DET 35 to MIN 28. C.Ballard to MIN 32 for 4 yards (J.Lacey).,3,7,2012 20120930_MIN@DET,1,58,2,MIN,DET,1,10,68,(13:02) A.Peterson up the middle to MIN 44 for 12 yards (E.Coleman K.Vanden Bosch).,7,3,2012 20120930_MIN@DET,1,57,25,MIN,DET,1,10,56,(12:25) P.Harvin right end to MIN 41 for -3 yards (C.Avril).,7,3,2012 20120930_MIN@DET,1,56,49,MIN,DET,2,13,59,(11:49) C.Ponder pass short right to A.Peterson to 50 for 9 yards (D.Levy).,7,3,2012 20120930_MIN@DET,1,56,11,MIN,DET,3,4,50,(11:11) (Shotgun) C.Ponder pass short right to J.Simpson to DET 44 for 6 yards (C.Houston).,7,3,2012 20120930_MIN@DET,1,55,37,MIN,DET,1,10,44,(10:37) C.Ponder pass short left to J.Carlson to DET 45 for -1 yards (D.Levy).,7,3,2012 20120930_MIN@DET,1,55,3,MIN,DET,2,11,45,(10:03) A.Peterson left tackle to DET 42 for 3 yards (E.Coleman C.Houston).,7,3,2012 20120930_MIN@DET,1,54,23,MIN,DET,3,8,42,(9:23) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins.,7,3,2012 20120930_MIN@DET,1,54,18,MIN,DET,4,8,42,(9:18) C.Kluwe punts 32 yards to DET 10 Center-C.Loeffler. S.Logan to DET 19 for 9 yards (C.Loeffler).,7,3,2012 20120930_MIN@DET,1,54,9,DET,MIN,1,10,81,(9:09) (Shotgun) M.Leshoure up the middle to DET 22 for 3 yards (J.Brinkley; J.Allen).,3,7,2012 20120930_MIN@DET,1,53,35,DET,MIN,2,7,78,(8:35) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 30 for 8 yards (J.Brinkley).,3,7,2012 20120930_MIN@DET,1,52,56,DET,MIN,1,10,70,(7:56) (Shotgun) M.Stafford pass short right to M.Leshoure to DET 43 for 13 yards (H.Smith).,3,7,2012 20120930_MIN@DET,1,52,11,DET,MIN,1,10,57,(7:11) M.Leshoure left tackle to DET 40 for -3 yards (J.Allen).,3,7,2012 20120930_MIN@DET,1,51,28,DET,MIN,2,13,60,(6:28) (Shotgun) M.Stafford sacked at DET 34 for -6 yards (L.Guion).,3,7,2012 20120930_MIN@DET,1,50,51,DET,MIN,3,19,66,(5:51) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 49 for 15 yards (A.Winfield).,3,7,2012 20120930_MIN@DET,1,50,17,DET,MIN,4,4,51,(5:17) N.Harris punts 42 yards to MIN 9 Center-D.Muhlbach fair catch by M.Sherels.,3,7,2012 20120930_MIN@DET,1,50,9,MIN,DET,1,10,91,(5:09) PENALTY on DET-N.Fairley Neutral Zone Infraction 5 yards enforced at MIN 9 - No Play.,7,3,2012 20120930_MIN@DET,1,50,9,MIN,DET,1,5,86,(5:09) A.Peterson right tackle to MIN 18 for 4 yards (R.Silva).,7,3,2012 20120930_MIN@DET,1,49,27,MIN,DET,2,1,82,(4:27) A.Peterson up the middle to MIN 25 for 7 yards (E.Coleman D.Bentley).,7,3,2012 20120930_MIN@DET,1,48,53,MIN,DET,1,10,75,(3:53) C.Ponder pass short right to P.Harvin to MIN 32 for 7 yards (R.Silva).,7,3,2012 20120930_MIN@DET,1,48,18,MIN,DET,2,3,68,(3:18) C.Ponder pass incomplete deep left to J.Simpson. PENALTY on DET-D.Bentley Defensive Pass Interference 31 yards enforced at MIN 32 - No Play.,7,3,2012 20120930_MIN@DET,1,48,11,MIN,DET,1,10,37,(3:11) A.Peterson up the middle to DET 33 for 4 yards (D.Levy).,7,3,2012 20120930_MIN@DET,1,47,35,MIN,DET,2,6,33,(2:35) C.Ponder pass short right to M.Jenkins to DET 29 for 4 yards (J.Durant).,7,3,2012 20120930_MIN@DET,1,46,53,MIN,DET,3,2,29,(1:53) C.Ponder pass short left to P.Harvin to DET 31 for -2 yards (C.Houston).,7,3,2012 20120930_MIN@DET,1,46,21,MIN,DET,4,4,31,(1:21) B.Walsh 49 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,3,2012 20120930_MIN@DET,1,46,21,MIN,DET,,,31,B.Walsh kicks 71 yards from MIN 35 to DET -6. S.Logan Touchback.,10,3,2012 20120930_MIN@DET,1,46,16,DET,MIN,1,10,80,(1:16) R.Reiff reported in as eligible. M.Stafford pass short right to M.Leshoure to DET 24 for 4 yards (M.Mitchell).,3,10,2012 20120930_MIN@DET,1,45,40,DET,MIN,2,6,76,(:40) (Shotgun) M.Stafford pass incomplete deep left to M.Leshoure.,3,10,2012 20120930_MIN@DET,1,45,32,DET,MIN,3,6,76,(:32) (Shotgun) M.Stafford pass short right to C.Johnson to DET 31 for 7 yards (J.Robinson).,3,10,2012 20120930_MIN@DET,2,45,0,DET,MIN,1,10,69,(15:00) M.Leshoure left end to DET 26 for -5 yards (E.Griffen C.Ballard).,3,10,2012 20120930_MIN@DET,2,44,21,DET,MIN,2,15,74,(14:21) (Shotgun) M.Stafford pass short right to N.Burleson pushed ob at DET 34 for 8 yards (J.Robinson).,3,10,2012 20120930_MIN@DET,2,43,50,DET,MIN,3,7,66,(13:50) (Shotgun) M.Stafford pass short left to C.Johnson to DET 40 for 6 yards (J.Brinkley).,3,10,2012 20120930_MIN@DET,2,43,17,DET,MIN,4,1,60,(13:17) N.Harris punts 51 yards to MIN 9 Center-D.Muhlbach out of bounds.,3,10,2012 20120930_MIN@DET,2,43,10,MIN,DET,1,10,91,(13:10) PENALTY on MIN-C.Johnson False Start 4 yards enforced at MIN 9 - No Play.,10,3,2012 20120930_MIN@DET,2,43,10,MIN,DET,1,14,95,(13:10) A.Peterson left tackle pushed ob at MIN 23 for 18 yards (D.Bentley).,10,3,2012 20120930_MIN@DET,2,42,40,MIN,DET,1,10,77,(12:40) C.Ponder pass short left to A.Peterson to MIN 27 for 4 yards (S.Tulloch).,10,3,2012 20120930_MIN@DET,2,42,7,MIN,DET,2,6,73,(12:07) A.Peterson up the middle to MIN 31 for 4 yards (S.Tulloch).,10,3,2012 20120930_MIN@DET,2,41,31,MIN,DET,3,2,69,(11:31) (Shotgun) C.Ponder pass short middle to P.Harvin to MIN 48 for 17 yards (D.Levy).,10,3,2012 20120930_MIN@DET,2,40,52,MIN,DET,1,10,52,(10:52) T.Gerhart left tackle to DET 49 for 3 yards (L.Jackson).,10,3,2012 20120930_MIN@DET,2,40,13,MIN,DET,2,7,49,(10:13) C.Ponder pass incomplete deep right to M.Jenkins.,10,3,2012 20120930_MIN@DET,2,40,6,MIN,DET,3,7,49,(10:06) (Shotgun) C.Ponder pass incomplete deep left to J.Simpson [S.Tulloch]. PENALTY on DET-D.Bentley Defensive Pass Interference 26 yards enforced at DET 49 - No Play.,10,3,2012 20120930_MIN@DET,2,40,0,MIN,DET,1,10,23,(10:00) P.Harvin left tackle to DET 9 for 14 yards (K.Vanden Bosch).,10,3,2012 20120930_MIN@DET,2,39,24,MIN,DET,1,9,9,(9:24) C.Ponder pass incomplete short right to P.Harvin (R.Silva).,10,3,2012 20120930_MIN@DET,2,39,18,MIN,DET,2,9,9,(9:18) (Shotgun) Direct snap to P.Harvin. P.Harvin up the middle to DET 8 for 1 yard (J.Durant).,10,3,2012 20120930_MIN@DET,2,38,42,MIN,DET,3,8,8,(8:42) C.Ponder sacked at DET 9 for -1 yards (K.Vanden Bosch).,10,3,2012 20120930_MIN@DET,2,38,14,MIN,DET,4,9,9,(8:14) B.Walsh 27 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,10,3,2012 20120930_MIN@DET,2,38,14,MIN,DET,,,9,B.Walsh kicks 71 yards from MIN 35 to DET -6. S.Logan Touchback.,13,3,2012 20120930_MIN@DET,2,38,14,DET,MIN,1,10,80,(8:14) (Shotgun) M.Leshoure right tackle to DET 24 for 4 yards (J.Robinson).,3,13,2012 20120930_MIN@DET,2,37,34,DET,MIN,2,6,76,(7:34) (Shotgun) PENALTY on DET-D.Raiola False Start 5 yards enforced at DET 24 - No Play.,3,13,2012 20120930_MIN@DET,2,37,12,DET,MIN,2,11,81,(7:12) M.Stafford pass short right to K.Williams pushed ob at DET 24 for 5 yards (J.Robinson C.Greenway).,3,13,2012 20120930_MIN@DET,2,36,40,DET,MIN,3,6,76,(6:40) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 32 for 8 yards (J.Brinkley).,3,13,2012 20120930_MIN@DET,2,36,4,DET,MIN,1,10,68,(6:04) (Shotgun) M.Leshoure left tackle to DET 31 for -1 yards (J.Allen).,3,13,2012 20120930_MIN@DET,2,35,25,DET,MIN,2,11,69,(5:25) (Shotgun) M.Stafford pass deep middle to C.Johnson to 50 for 19 yards (J.Sanford).,3,13,2012 20120930_MIN@DET,2,34,41,DET,MIN,1,10,50,(4:41) (Shotgun) M.Stafford pass deep right to T.Young to MIN 33 for 17 yards (J.Robinson).,3,13,2012 20120930_MIN@DET,2,34,4,DET,MIN,1,10,33,(4:04) M.Leshoure right tackle to MIN 30 for 3 yards (J.Brinkley; K.Williams).,3,13,2012 20120930_MIN@DET,2,33,28,DET,MIN,2,7,30,(3:28) N.Burleson right end to MIN 22 for 8 yards (C.Greenway).,3,13,2012 20120930_MIN@DET,2,32,47,DET,MIN,1,10,22,(2:47) (Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew (J.Sanford).,3,13,2012 20120930_MIN@DET,2,32,42,DET,MIN,2,10,22,(2:42) (Shotgun) M.Stafford pass short right to N.Burleson to MIN 16 for 6 yards (J.Robinson). PENALTY on MIN-J.Robinson Unnecessary Roughness 8 yards enforced at MIN 16.,3,13,2012 20120930_MIN@DET,2,32,17,DET,MIN,1,8,8,(2:17) (Shotgun) M.Stafford sacked at MIN 13 for -5 yards (J.Allen).,3,13,2012 20120930_MIN@DET,2,32,0,DET,MIN,2,13,13,(2:00) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson (H.Smith J.Sanford).,3,13,2012 20120930_MIN@DET,2,31,55,DET,MIN,3,13,13,(1:55) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew [K.Williams].,3,13,2012 20120930_MIN@DET,2,31,50,DET,MIN,4,13,13,(1:50) J.Hanson 31 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,3,13,2012 20120930_MIN@DET,2,31,50,DET,MIN,,,13,J.Hanson kicks 44 yards from DET 35 to MIN 21 fair catch by R.Ellison.,6,13,2012 20120930_MIN@DET,2,31,46,MIN,DET,1,10,79,(1:46) (Shotgun) C.Ponder pass incomplete short right to P.Harvin (C.Avril).,13,6,2012 20120930_MIN@DET,2,31,42,MIN,DET,2,10,79,(1:42) (Shotgun) C.Ponder pass short left to J.Simpson to MIN 33 for 12 yards (D.Bentley) [K.Vanden Bosch].,13,6,2012 20120930_MIN@DET,2,31,19,MIN,DET,1,10,67,(1:19) (No Huddle Shotgun) C.Ponder sacked at MIN 23 for -10 yards (sack split by C.Avril and N.Suh).,13,6,2012 20120930_MIN@DET,2,30,41,MIN,DET,2,20,77,(:41) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins (C.Houston).,13,6,2012 20120930_MIN@DET,2,30,35,MIN,DET,3,20,77,(:35) (Shotgun) C.Ponder pass short right to A.Peterson to MIN 26 for 3 yards (S.Tulloch).,13,6,2012 20120930_MIN@DET,2,30,29,MIN,DET,4,17,74,(:29) C.Kluwe punts 52 yards to DET 22 Center-C.Loeffler. S.Logan to DET 21 for -1 yards (J.Sanford).,13,6,2012 20120930_MIN@DET,2,30,16,DET,MIN,1,10,79,(:16) (Shotgun) M.Leshoure left end to DET 25 for 4 yards (A.Winfield).,6,13,2012 20120930_MIN@DET,3,30,0,MIN,DET,,,79,B.Walsh kicks 72 yards from MIN 35 to DET -7. S.Logan Touchback.,13,6,2012 20120930_MIN@DET,3,30,0,DET,MIN,1,10,80,(15:00) (Shotgun) M.Stafford pass deep middle to T.Scheffler to DET 36 for 16 yards (J.Brinkley).,6,13,2012 20120930_MIN@DET,3,29,25,DET,MIN,1,10,64,(14:25) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 36 for no gain (C.Greenway).,6,13,2012 20120930_MIN@DET,3,28,44,DET,MIN,2,10,64,(13:44) (Shotgun) M.Stafford pass incomplete deep right to N.Burleson.,6,13,2012 20120930_MIN@DET,3,28,38,DET,MIN,3,10,64,(13:38) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson (H.Smith).,6,13,2012 20120930_MIN@DET,3,28,30,DET,MIN,4,10,64,(13:30) N.Harris punts 41 yards to MIN 23 Center-D.Muhlbach. M.Sherels for 77 yards TOUCHDOWN.,6,13,2012 20120930_MIN@DET,3,28,30,MIN,DET,,,64,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,6,2012 20120930_MIN@DET,3,28,30,MIN,DET,,,64,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,20,6,2012 20120930_MIN@DET,3,28,9,DET,MIN,1,10,80,(13:09) R.Reiff reported in as eligible. T.Young left end to DET 25 for 5 yards (J.Sanford).,6,20,2012 20120930_MIN@DET,3,27,35,DET,MIN,2,5,75,(12:35) (Shotgun) M.Stafford pass deep right to N.Burleson to MIN 49 for 26 yards (J.Robinson).,6,20,2012 20120930_MIN@DET,3,27,6,DET,MIN,1,10,49,(12:06) (No Huddle Shotgun) M.Leshoure up the middle to MIN 45 for 4 yards (A.Winfield; C.Greenway).,6,20,2012 20120930_MIN@DET,3,26,43,DET,MIN,2,6,45,(11:43) (No Huddle Shotgun) M.Stafford pass short right to C.Johnson to MIN 40 for 5 yards (A.Winfield).,6,20,2012 20120930_MIN@DET,3,26,21,DET,MIN,3,1,40,(11:21) (No Huddle) M.Leshoure up the middle to MIN 40 for no gain (J.Sanford).,6,20,2012 20120930_MIN@DET,3,25,40,DET,MIN,4,1,40,(10:40) N.Harris punts 30 yards to MIN 10 Center-D.Muhlbach fair catch by M.Sherels.,6,20,2012 20120930_MIN@DET,3,25,33,MIN,DET,1,10,90,(10:33) C.Ponder pass short right to K.Rudolph pushed ob at MIN 17 for 7 yards (J.Durant).,20,6,2012 20120930_MIN@DET,3,25,10,MIN,DET,2,3,83,(10:10) A.Peterson right tackle to MIN 24 for 7 yards (D.Levy E.Coleman).,20,6,2012 20120930_MIN@DET,3,24,32,MIN,DET,1,10,76,(9:32) C.Ponder pass incomplete deep right to P.Harvin [C.Avril].,20,6,2012 20120930_MIN@DET,3,24,24,MIN,DET,2,10,76,(9:24) A.Peterson up the middle to MIN 27 for 3 yards (D.Levy).,20,6,2012 20120930_MIN@DET,3,23,52,MIN,DET,3,7,73,(8:52) (Shotgun) C.Ponder pass short right to K.Rudolph to MIN 28 for 1 yard (D.Levy).,20,6,2012 20120930_MIN@DET,3,23,16,MIN,DET,4,6,72,(8:16) C.Kluwe punts 51 yards to DET 21 Center-C.Loeffler. S.Logan to DET 48 for 27 yards (M.Mitchell).,20,6,2012 20120930_MIN@DET,3,23,2,DET,MIN,1,10,52,(8:02) M.Stafford pass incomplete short right to N.Burleson (A.Winfield).,6,20,2012 20120930_MIN@DET,3,22,53,DET,MIN,2,10,52,(7:53) (Shotgun) M.Stafford pass short left to J.Bell to MIN 47 for 5 yards (C.Greenway J.Brinkley).,6,20,2012 20120930_MIN@DET,3,22,8,DET,MIN,3,5,47,(7:08) (Shotgun) M.Stafford pass incomplete short left to T.Young (C.Cook).,6,20,2012 20120930_MIN@DET,3,22,3,DET,MIN,4,5,47,(7:03) N.Harris punts 34 yards to MIN 13 Center-D.Muhlbach fair catch by M.Sherels.,6,20,2012 20120930_MIN@DET,3,21,56,MIN,DET,1,10,87,(6:56) C.Ponder scrambles left end ran ob at MIN 18 for 5 yards (J.Lacey).,20,6,2012 20120930_MIN@DET,3,21,27,MIN,DET,2,5,82,(6:27) A.Peterson up the middle to MIN 20 for 2 yards (S.Tulloch).,20,6,2012 20120930_MIN@DET,3,20,50,MIN,DET,3,3,80,(5:50) (Shotgun) C.Ponder pass incomplete short right to J.Simpson [C.Avril].,20,6,2012 20120930_MIN@DET,3,20,44,MIN,DET,4,3,80,(5:44) C.Kluwe punts 37 yards to DET 43 Center-C.Loeffler fair catch by S.Logan.,20,6,2012 20120930_MIN@DET,3,20,38,DET,MIN,1,10,57,(5:38) M.Leshoure right tackle to DET 45 for 2 yards (B.Robison; C.Ballard).,6,20,2012 20120930_MIN@DET,3,20,3,DET,MIN,2,8,55,(5:03) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,6,20,2012 20120930_MIN@DET,3,19,59,DET,MIN,3,8,55,(4:59) (Shotgun) M.Stafford pass short left to B.Pettigrew to MIN 45 for 10 yards (C.Greenway).,6,20,2012 20120930_MIN@DET,3,19,30,DET,MIN,1,10,45,(4:30) (No Huddle Shotgun) M.Leshoure right tackle to MIN 31 for 14 yards (J.Sanford). FUMBLES (J.Sanford) RECOVERED by MIN-J.Sanford at MIN 29. J.Sanford to MIN 29 for no gain (T.Young).,6,20,2012 20120930_MIN@DET,3,19,22,MIN,DET,1,10,71,(4:22) A.Peterson left tackle to MIN 30 for 1 yard (E.Coleman).,20,6,2012 20120930_MIN@DET,3,18,45,MIN,DET,2,9,70,(3:45) A.Peterson up the middle to MIN 40 for 10 yards (S.Tulloch).,20,6,2012 20120930_MIN@DET,3,18,1,MIN,DET,1,10,60,(3:01) A.Peterson right tackle to MIN 39 for -1 yards (J.Durant).,20,6,2012 20120930_MIN@DET,3,17,16,MIN,DET,2,11,61,(2:16) A.Peterson left tackle to DET 46 for 15 yards (R.Silva).,20,6,2012 20120930_MIN@DET,3,16,35,MIN,DET,1,10,46,(1:35) PENALTY on DET-L.Jackson Neutral Zone Infraction 5 yards enforced at DET 46 - No Play.,20,6,2012 20120930_MIN@DET,3,16,12,MIN,DET,1,5,41,(1:12) T.Gerhart up the middle to DET 40 for 1 yard (L.Jackson; J.Durant).,20,6,2012 20120930_MIN@DET,3,15,35,MIN,DET,2,4,40,(:35) A.Peterson up the middle to DET 37 for 3 yards (N.Fairley).,20,6,2012 20120930_MIN@DET,4,15,0,MIN,DET,3,1,37,(15:00) A.Peterson right end to DET 32 for 5 yards (C.Avril).,20,6,2012 20120930_MIN@DET,4,14,16,MIN,DET,1,10,32,(14:16) T.Gerhart right tackle to DET 28 for 4 yards (C.Houston; R.Silva).,20,6,2012 20120930_MIN@DET,4,13,32,MIN,DET,2,6,28,(13:32) C.Ponder pass incomplete short right to K.Rudolph. DET-C.Avril was injured during the play. His return is Questionable.,20,6,2012 20120930_MIN@DET,4,13,25,MIN,DET,3,6,28,(13:25) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph [K.Vanden Bosch].,20,6,2012 20120930_MIN@DET,4,13,19,MIN,DET,4,6,28,(13:19) B.Walsh 46 yard field goal is No Good Wide Left Center-C.Loeffler Holder-C.Kluwe.,20,6,2012 20120930_MIN@DET,4,13,15,DET,MIN,1,10,64,(13:15) (Shotgun) M.Stafford pass short right to M.Leshoure to DET 41 for 5 yards (J.Allen). MIN-L.Guion was injured during the play. His return is Probable.,6,20,2012 20120930_MIN@DET,4,12,33,DET,MIN,2,5,59,(12:33) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson (F.Evans).,6,20,2012 20120930_MIN@DET,4,12,29,DET,MIN,3,5,59,(12:29) (Shotgun) M.Stafford pass short middle to N.Burleson to DET 47 for 6 yards (A.Winfield).,6,20,2012 20120930_MIN@DET,4,12,2,DET,MIN,1,10,53,(12:02) (No Huddle Shotgun) M.Stafford pass incomplete short left to C.Johnson. DET-C.Johnson was injured during the play. His return is Probable. PENALTY on MIN-C.Greenway Unnecessary Roughness 15 yards enforced at DET 47.,6,20,2012 20120930_MIN@DET,4,11,58,DET,MIN,1,10,38,(11:58) (Shotgun) M.Stafford pass short middle to B.Pettigrew to MIN 27 for 11 yards (A.Winfield; J.Brinkley).,6,20,2012 20120930_MIN@DET,4,11,33,DET,MIN,1,10,27,(11:33) (No Huddle Shotgun) M.Stafford pass short middle to M.Leshoure pushed ob at MIN 12 for 15 yards (J.Brinkley).,6,20,2012 20120930_MIN@DET,4,11,8,DET,MIN,1,10,12,(11:08) (No Huddle Shotgun) J.Bell up the middle to MIN 10 for 2 yards (F.Evans).,6,20,2012 20120930_MIN@DET,4,10,43,DET,MIN,2,8,10,(10:43) (No Huddle Shotgun) M.Stafford scrambles up the middle to MIN 7 for 3 yards (B.Robison).,6,20,2012 20120930_MIN@DET,4,9,57,DET,MIN,3,5,7,(9:57) (Shotgun) M.Stafford pass incomplete short middle to J.Bell (H.Smith).,6,20,2012 20120930_MIN@DET,4,9,51,DET,MIN,4,5,7,(9:51) (Shotgun) M.Stafford sacked at MIN 17 for -10 yards (E.Griffen).,6,20,2012 20120930_MIN@DET,4,9,48,MIN,DET,1,10,83,(9:48) C.Ponder pass short left to A.Peterson to MIN 21 for 4 yards (E.Coleman).,20,6,2012 20120930_MIN@DET,4,9,5,MIN,DET,2,6,79,(9:05) A.Peterson right end to MIN 29 for 8 yards (S.Tulloch).,20,6,2012 20120930_MIN@DET,4,8,21,MIN,DET,1,10,71,(8:21) A.Peterson up the middle to MIN 28 for -1 yards (N.Suh).,20,6,2012 20120930_MIN@DET,4,7,40,MIN,DET,2,11,72,(7:40) A.Peterson right tackle to MIN 27 for -1 yards (D.Levy; SamL.Hill).,20,6,2012 20120930_MIN@DET,4,7,2,MIN,DET,3,12,73,(7:02) (Shotgun) C.Ponder pass short right to T.Gerhart to MIN 35 for 8 yards (D.Levy).,20,6,2012 20120930_MIN@DET,4,6,21,MIN,DET,4,4,65,(6:21) C.Kluwe punts 40 yards to DET 25 Center-C.Loeffler downed by MIN-L.Dean.,20,6,2012 20120930_MIN@DET,4,6,8,DET,MIN,1,10,75,(6:08) (Shotgun) M.Stafford pass incomplete short right to J.Bell [E.Griffen].,6,20,2012 20120930_MIN@DET,4,6,2,DET,MIN,2,10,75,(6:02) (Shotgun) M.Stafford pass short right to J.Bell to DET 29 for 4 yards (C.Greenway).,6,20,2012 20120930_MIN@DET,4,5,36,DET,MIN,3,6,71,(5:36) (No Huddle Shotgun) M.Stafford pass incomplete short middle to C.Johnson (A.Winfield). PENALTY on MIN-A.Winfield Defensive Pass Interference 4 yards enforced at DET 29 - No Play.,6,20,2012 20120930_MIN@DET,4,5,33,DET,MIN,1,10,67,(5:33) (No Huddle Shotgun) M.Stafford scrambles left end to DET 42 for 9 yards (C.Greenway).,6,20,2012 20120930_MIN@DET,4,5,7,DET,MIN,2,1,58,(5:07) (No Huddle Shotgun) M.Stafford pass short left to J.Bell to MIN 42 for 16 yards (J.Sanford).,6,20,2012 20120930_MIN@DET,4,4,35,DET,MIN,1,10,42,(4:35) (No Huddle Shotgun) M.Stafford pass short middle to J.Bell to MIN 29 for 13 yards (A.Winfield).,6,20,2012 20120930_MIN@DET,4,4,12,DET,MIN,1,10,29,(4:12) (No Huddle Shotgun) M.Stafford pass incomplete short left to R.Broyles [C.Ballard].,6,20,2012 20120930_MIN@DET,4,4,6,DET,MIN,2,10,29,(4:06) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler (J.Sanford A.Winfield).,6,20,2012 20120930_MIN@DET,4,4,0,DET,MIN,3,10,29,(4:00) (Shotgun) M.Stafford pass short middle to J.Bell to MIN 6 for 23 yards (K.Williams).,6,20,2012 20120930_MIN@DET,4,3,27,DET,MIN,1,6,6,(3:27) (No Huddle Shotgun) M.Stafford pass incomplete short right to T.Young [J.Allen].,6,20,2012 20120930_MIN@DET,4,3,21,DET,MIN,2,6,6,(3:21) (Shotgun) M.Stafford pass short middle to N.Burleson to MIN 1 for 5 yards (C.Greenway).,6,20,2012 20120930_MIN@DET,4,2,58,DET,MIN,3,1,1,(2:58) (No Huddle) M.Stafford up the middle for 1 yard TOUCHDOWN.,6,20,2012 20120930_MIN@DET,4,2,58,DET,MIN,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,6,20,2012 20120930_MIN@DET,4,2,58,DET,MIN,,,1,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,13,20,2012 20120930_MIN@DET,4,2,56,MIN,DET,1,10,80,(2:56) A.Peterson up the middle to MIN 19 for -1 yards (J.Durant).,20,13,2012 20120930_MIN@DET,4,2,53,MIN,DET,2,11,81,(2:53) (Shotgun) C.Ponder pass deep left to J.Simpson to MIN 46 for 27 yards (D.Bentley).,20,13,2012 20120930_MIN@DET,4,2,47,MIN,DET,1,10,54,(2:47) A.Peterson left tackle to MIN 46 for no gain (E.Coleman; W.Young).,20,13,2012 20120930_MIN@DET,4,2,3,MIN,DET,2,10,54,(2:03) C.Ponder pass incomplete short right to K.Rudolph.,20,13,2012 20120930_MIN@DET,4,1,58,MIN,DET,3,10,54,(1:58) (Shotgun) C.Ponder pass short left to J.Simpson to DET 49 for 5 yards (D.Bentley R.Silva).,20,13,2012 20120930_MIN@DET,4,1,53,MIN,DET,4,5,49,(1:53) C.Kluwe punts 47 yards to DET 2 Center-C.Loeffler downed by MIN-R.Blanton.,20,13,2012 20120930_MIN@DET,4,1,42,DET,MIN,1,10,98,(1:42) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 11 for 9 yards (A.Winfield; C.Greenway).,13,20,2012 20120930_MIN@DET,4,1,20,DET,MIN,2,1,89,(1:20) (No Huddle Shotgun) M.Stafford pass short middle to J.Bell to DET 22 for 11 yards (A.Winfield; C.Greenway).,13,20,2012 20120930_MIN@DET,4,0,59,DET,MIN,1,10,78,(:59) (No Huddle Shotgun) M.Stafford pass incomplete deep left to N.Burleson.,13,20,2012 20120930_MIN@DET,4,0,54,DET,MIN,2,10,78,(:54) (Shotgun) M.Stafford pass incomplete deep middle to C.Johnson.,13,20,2012 20120930_MIN@DET,4,0,49,DET,MIN,3,10,78,(:49) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson.,13,20,2012 20120930_MIN@DET,4,0,44,DET,MIN,4,10,78,(:44) (Shotgun) M.Stafford pass deep right to C.Johnson to DET 39 for 17 yards (A.Winfield).,13,20,2012 20120930_MIN@DET,4,0,24,DET,MIN,1,10,61,(:24) (No Huddle) M.Stafford spiked the ball to stop the clock.,13,20,2012 20120930_MIN@DET,4,0,23,DET,MIN,2,10,61,(:23) (Shotgun) M.Stafford sacked at DET 38 for -1 yards (L.Guion). FUMBLES (L.Guion) RECOVERED by MIN-J.Brinkley at DET 47. The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) M.Stafford sacked at DET 38 for -1 yards (L.Guion).,13,20,2012 20120930_MIN@DET,4,0,9,DET,MIN,3,11,62,(:09) (Shotgun) M.Stafford pass short right to B.Pettigrew pushed ob at DET 44 for 6 yards (C.Cook).,13,20,2012 20120930_MIN@DET,4,0,5,DET,MIN,4,5,56,(:05) (Shotgun) M.Stafford sacked at DET 33 for -11 yards (E.Griffen).,13,20,2012 20120930_MIN@DET,4,0,5,DET,MIN,,,56,                      ,13,20,2012 20120930_TEN@HOU,1,0,0,TEN,HOU,,,56,R.Bironas kicks 72 yards from TEN 35 to HST -7. T.Holliday pushed ob at HST 23 for 30 yards (R.Johnson).,0,0,2012 20120930_TEN@HOU,1,59,54,HOU,TEN,1,10,77,(14:54) M.Schaub pass incomplete short left to K.Walter.,0,0,2012 20120930_TEN@HOU,1,59,48,HOU,TEN,2,10,77,(14:48) M.Schaub pass short left to A.Johnson to TEN 44 for 33 yards (J.Babineaux).,0,0,2012 20120930_TEN@HOU,1,59,2,HOU,TEN,1,10,44,(14:02) M.Schaub pass short middle to A.Johnson to TEN 24 for 20 yards (W.Witherspoon).,0,0,2012 20120930_TEN@HOU,1,58,26,HOU,TEN,1,10,24,(13:26) A.Foster right tackle to TEN 19 for 5 yards (W.Witherspoon).,0,0,2012 20120930_TEN@HOU,1,57,57,HOU,TEN,2,5,19,(12:57) A.Foster left end pushed ob at TEN 14 for 5 yards (J.McCourty).,0,0,2012 20120930_TEN@HOU,1,57,22,HOU,TEN,1,10,14,(12:22) A.Foster right tackle to TEN 11 for 3 yards (D.Morgan A.Ayers).,0,0,2012 20120930_TEN@HOU,1,56,46,HOU,TEN,2,7,11,(11:46) M.Schaub pass short middle to J.Casey for 11 yards TOUCHDOWN.,0,0,2012 20120930_TEN@HOU,1,56,46,HOU,TEN,,,11,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 20120930_TEN@HOU,1,56,46,HOU,TEN,,,11,S.Graham kicks 69 yards from HST 35 to TEN -4. D.Reynaud to TEN 18 for 22 yards (B.Braman).,7,0,2012 20120930_TEN@HOU,1,56,35,TEN,HOU,1,10,82,(11:35) C.Johnson up the middle to TEN 31 for 13 yards (J.Joseph B.Cushing).,0,7,2012 20120930_TEN@HOU,1,55,58,TEN,HOU,1,10,69,(10:58) (Shotgun) J.Locker pass incomplete short middle to K.Wright.,0,7,2012 20120930_TEN@HOU,1,55,53,TEN,HOU,2,10,69,(10:53) C.Johnson up the middle to TEN 36 for 5 yards (B.Cushing B.James).,0,7,2012 20120930_TEN@HOU,1,55,12,TEN,HOU,3,5,64,(10:12) (Shotgun) J.Locker pass incomplete short right to J.Cook (B.Reed).,0,7,2012 20120930_TEN@HOU,1,55,7,TEN,HOU,4,5,64,(10:07) B.Kern punts 50 yards to HST 14 Center-B.Brinkley. T.Holliday to HST 23 for 9 yards (T.Thompson T.Shaw). (The punt hang time was 4.4 seconds.),0,7,2012 20120930_TEN@HOU,1,54,56,HOU,TEN,1,10,77,(9:56) M.Schaub pass incomplete deep right to K.Walter.,7,0,2012 20120930_TEN@HOU,1,54,49,HOU,TEN,2,10,77,(9:49) M.Schaub pass short middle to B.Tate to HST 32 for 9 yards (Z.Brown).,7,0,2012 20120930_TEN@HOU,1,54,10,HOU,TEN,3,1,68,(9:10) A.Foster right guard to HST 32 for no gain (D.Morgan J.Casey).,7,0,2012 20120930_TEN@HOU,1,53,24,HOU,TEN,4,1,68,(8:24) D.Jones punts 61 yards to TEN 7 Center-J.Weeks. D.Reynaud to TEN 17 for 10 yards (B.Braman). PENALTY on TEN-T.Campbell Illegal Block Above the Waist 8 yards enforced at TEN 17. (The punt hang time was 4.7 seconds.),7,0,2012 20120930_TEN@HOU,1,53,12,TEN,HOU,1,10,91,(8:12) C.Johnson left guard to TEN 8 for -1 yards (J.Watt).,0,7,2012 20120930_TEN@HOU,1,52,35,TEN,HOU,2,11,92,(7:35) C.Johnson left tackle to TEN 12 for 4 yards (B.James E.Mitchell).,0,7,2012 20120930_TEN@HOU,1,51,53,TEN,HOU,3,7,88,(6:53) (Shotgun) J.Locker sacked at TEN 4 for -8 yards (G.Quin). TEN-J.Locker was injured during the play. His return is Questionable.,0,7,2012 20120930_TEN@HOU,1,51,29,TEN,HOU,4,15,96,(6:29) B.Kern punts 50 yards to HST 46 Center-B.Brinkley. T.Holliday to TEN 47 for 7 yards (W.Witherspoon J.Babineaux). (The punt hang time was 4.5 seconds.),0,7,2012 20120930_TEN@HOU,1,51,16,HOU,TEN,1,10,47,(6:16) A.Foster right end to TEN 44 for 3 yards (W.Witherspoon).,7,0,2012 20120930_TEN@HOU,1,50,41,HOU,TEN,2,7,44,(5:41) A.Foster left end to TEN 38 for 6 yards (A.Verner).,7,0,2012 20120930_TEN@HOU,1,50,1,HOU,TEN,3,1,38,(5:01) A.Foster left tackle to TEN 38 for no gain (J.Casey A.Ayers).,7,0,2012 20120930_TEN@HOU,1,49,19,HOU,TEN,4,1,38,(4:19) B.Tate right end to TEN 33 for 5 yards (W.Witherspoon A.Verner).,7,0,2012 20120930_TEN@HOU,1,48,45,HOU,TEN,1,10,33,(3:45) M.Schaub pass short right to J.Casey to TEN 22 for 11 yards (J.McCourty Z.Brown).,7,0,2012 20120930_TEN@HOU,1,48,4,HOU,TEN,1,10,22,(3:04) M.Schaub pass short left to J.Casey to TEN 16 for 6 yards (A.Verner).,7,0,2012 20120930_TEN@HOU,1,47,23,HOU,TEN,2,4,16,(2:23) A.Foster right tackle to TEN 13 for 3 yards (D.Morgan M.Martin).,7,0,2012 20120930_TEN@HOU,1,46,36,HOU,TEN,3,1,13,(1:36) (Shotgun) M.Schaub pass short right to K.Martin pushed ob at TEN 13 for no gain (R.Mouton) [D.Morgan]. Houston challenged the first down ruling and the play was REVERSED. (Shotgun) M.Schaub pass short right to K.Martin pushed ob at TEN 11 for 2 yards (R.Mouton) [D.Morgan].,7,0,2012 20120930_TEN@HOU,1,45,59,HOU,TEN,1,10,11,(:59) A.Foster right guard to TEN 4 for 7 yards (J.Casey).,7,0,2012 20120930_TEN@HOU,1,45,23,HOU,TEN,2,3,4,(:23) A.Foster up the middle for 4 yards TOUCHDOWN.,7,0,2012 20120930_TEN@HOU,1,45,23,HOU,TEN,,,4,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,0,2012 20120930_TEN@HOU,1,45,23,HOU,TEN,,,4,S.Graham kicks 70 yards from HST 35 to TEN -5. D.Reynaud to TEN 17 for 22 yards (B.Braman).,14,0,2012 20120930_TEN@HOU,1,45,10,TEN,HOU,1,10,83,(:10) (Shotgun) M.Hasselbeck pass short left to J.Cook to TEN 42 for 25 yards (D.Manning).,0,14,2012 20120930_TEN@HOU,2,45,0,TEN,HOU,1,10,58,(15:00) C.Johnson right end to TEN 36 for -6 yards (J.Watt; J.Joseph).,0,14,2012 20120930_TEN@HOU,2,44,13,TEN,HOU,2,16,64,(14:13) (Shotgun) M.Hasselbeck pass incomplete deep middle to N.Washington.,0,14,2012 20120930_TEN@HOU,2,44,9,TEN,HOU,3,16,64,(14:09) (Shotgun) M.Hasselbeck pass incomplete short middle to K.Wright. Penalty on TEN Illegal Formation declined.,0,14,2012 20120930_TEN@HOU,2,44,3,TEN,HOU,4,16,64,(14:03) B.Kern punts 52 yards to HST 12 Center-B.Brinkley downed by TEN-J.Babineaux. (The punt hang time was 5.0 seconds.),0,14,2012 20120930_TEN@HOU,2,43,50,HOU,TEN,1,10,88,(13:50) M.Schaub pass incomplete short left to A.Johnson (A.Verner).,14,0,2012 20120930_TEN@HOU,2,43,45,HOU,TEN,2,10,88,(13:45) M.Schaub pass short left to B.Tate to HST 6 for -6 yards (J.Casey).,14,0,2012 20120930_TEN@HOU,2,43,4,HOU,TEN,3,16,94,(13:04) (Shotgun) A.Foster left tackle to HST 13 for 7 yards (A.Verner J.Babineaux). HST-A.Caldwell was injured during the play. His return is Questionable.,14,0,2012 20120930_TEN@HOU,2,42,37,HOU,TEN,4,9,87,(12:37) D.Jones punts 54 yards to TEN 33 Center-J.Weeks. D.Reynaud to TEN 35 for 2 yards (A.Ball). FUMBLES (A.Ball) recovered by TEN-T.Campbell at TEN 32. T.Campbell to TEN 32 for no gain (T.Dobbins). PENALTY on TEN-T.Campbell Illegal Block Above the Waist 10 yards enforced at TEN 32.,14,0,2012 20120930_TEN@HOU,2,42,23,TEN,HOU,1,10,78,(12:23) C.Johnson up the middle to TEN 31 for 9 yards (B.James).,0,14,2012 20120930_TEN@HOU,2,41,50,TEN,HOU,2,1,69,(11:50) C.Johnson right guard to TEN 36 for 5 yards (B.Cushing).,0,14,2012 20120930_TEN@HOU,2,41,16,TEN,HOU,1,10,64,(11:16) (Shotgun) M.Hasselbeck pass short right to D.Williams to TEN 41 for 5 yards (D.Manning). PENALTY on TEN-J.Cook Offensive Pass Interference 10 yards enforced at TEN 36 - No Play.,0,14,2012 20120930_TEN@HOU,2,40,45,TEN,HOU,1,20,74,(10:45) C.Johnson up the middle to TEN 32 for 6 yards (B.Cushing).,0,14,2012 20120930_TEN@HOU,2,40,0,TEN,HOU,2,14,68,(10:00) (Shotgun) M.Hasselbeck pass short middle to N.Washington to TEN 45 for 13 yards (B.James G.Quin).,0,14,2012 20120930_TEN@HOU,2,39,17,TEN,HOU,3,1,55,(9:17) M.Hasselbeck pass short right to Q.Johnson to HST 38 for 17 yards (K.Jackson).,0,14,2012 20120930_TEN@HOU,2,38,41,TEN,HOU,1,10,38,(8:41) C.Johnson up the middle to HST 19 for 19 yards (G.Quin).,0,14,2012 20120930_TEN@HOU,2,38,0,TEN,HOU,1,10,19,(8:00) M.Hasselbeck pass short middle to C.Stevens for 19 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,14,2012 20120930_TEN@HOU,2,38,0,TEN,HOU,,,19,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,14,2012 20120930_TEN@HOU,2,38,0,TEN,HOU,,,19,R.Bironas kicks 68 yards from TEN 35 to HST -3. T.Holliday pushed ob at HST 23 for 26 yards (R.Johnson).,7,14,2012 20120930_TEN@HOU,2,37,44,HOU,TEN,1,10,77,(7:44) A.Foster left end pushed ob at HST 28 for 5 yards (A.Ayers).,14,7,2012 20120930_TEN@HOU,2,37,18,HOU,TEN,2,5,72,(7:18) A.Foster right guard to HST 31 for 3 yards (A.Ayers).,14,7,2012 20120930_TEN@HOU,2,36,36,HOU,TEN,3,2,69,(6:36) M.Schaub pass short right to O.Daniels to HST 38 for 7 yards (J.McCourty) [M.Griffin].,14,7,2012 20120930_TEN@HOU,2,36,4,HOU,TEN,1,10,62,(6:04) M.Schaub pass short left to O.Daniels pushed ob at HST 49 for 11 yards (J.Babineaux). Penalty on TEN-A.Ayers Defensive Holding declined.,14,7,2012 20120930_TEN@HOU,2,35,38,HOU,TEN,1,10,51,(5:38) B.Tate right end to 50 for 1 yard (Z.Diles).,14,7,2012 20120930_TEN@HOU,2,34,57,HOU,TEN,2,9,50,(4:57) M.Schaub pass short middle to J.Casey to TEN 45 for 5 yards (Z.Diles).,14,7,2012 20120930_TEN@HOU,2,34,11,HOU,TEN,3,4,45,(4:11) (Shotgun) A.Foster up the middle to TEN 48 for -3 yards (J.Casey).,14,7,2012 20120930_TEN@HOU,2,33,33,HOU,TEN,4,7,48,(3:33) D.Jones punts 33 yards to TEN 15 Center-J.Weeks fair catch by D.Reynaud.,14,7,2012 20120930_TEN@HOU,2,33,24,TEN,HOU,1,10,85,(3:24) C.Johnson left guard to TEN 19 for 4 yards (J.Watt B.Cushing).,7,14,2012 20120930_TEN@HOU,2,32,50,TEN,HOU,2,6,81,(2:50) (Shotgun) M.Hasselbeck sacked at TEN 8 for -11 yards (J.Watt). Penalty on TEN-D.Stewart Offensive Holding declined.,7,14,2012 20120930_TEN@HOU,2,32,20,TEN,HOU,3,17,92,(2:20) (Shotgun) M.Hasselbeck pass short left to C.Johnson to TEN 16 for 8 yards (B.Cushing) [C.Barwin].,7,14,2012 20120930_TEN@HOU,2,32,7,TEN,HOU,4,9,84,(2:07) B.Kern punts 46 yards to HST 38 Center-B.Brinkley. T.Holliday to HST 45 for 7 yards (C.Stevens).,7,14,2012 20120930_TEN@HOU,2,31,55,HOU,TEN,1,10,55,(1:55) (Shotgun) M.Schaub pass incomplete short right to K.Martin.,14,7,2012 20120930_TEN@HOU,2,31,51,HOU,TEN,2,10,55,(1:51) (Shotgun) M.Schaub pass short middle to A.Johnson to HST 48 for 3 yards (J.Babineaux).,14,7,2012 20120930_TEN@HOU,2,31,15,HOU,TEN,3,7,52,(1:15) (Shotgun) M.Schaub pass short middle to O.Daniels to TEN 46 for 6 yards (J.Babineaux).,14,7,2012 20120930_TEN@HOU,2,30,28,HOU,TEN,4,1,46,(:28) D.Jones punts 39 yards to TEN 7 Center-J.Weeks fair catch by D.Reynaud. (The punt hang time was 4.2 seconds.),14,7,2012 20120930_TEN@HOU,2,30,21,TEN,HOU,1,10,93,(:21) M.Hasselbeck kneels to TEN 6 for -1 yards.,7,14,2012 20120930_TEN@HOU,3,30,0,HOU,TEN,,,93,S.Graham kicks 55 yards from HST 35 to TEN 10. C.Stevens to TEN 28 for 18 yards (T.Dobbins).,14,7,2012 20120930_TEN@HOU,3,30,0,TEN,HOU,1,10,72,(15:00) C.Johnson up the middle to TEN 33 for 5 yards (G.Quin).,7,14,2012 20120930_TEN@HOU,3,29,29,TEN,HOU,2,5,67,(14:29) C.Johnson right guard to TEN 33 for no gain (B.Cushing).,7,14,2012 20120930_TEN@HOU,3,28,47,TEN,HOU,3,5,67,(13:47) (Shotgun) M.Hasselbeck pass short middle to N.Washington to HST 42 for 25 yards (Q.Demps).,7,14,2012 20120930_TEN@HOU,3,28,10,TEN,HOU,1,10,42,(13:10) C.Johnson left guard to HST 40 for 2 yards (B.James).,7,14,2012 20120930_TEN@HOU,3,27,35,TEN,HOU,2,8,40,(12:35) M.Hasselbeck pass incomplete short right to K.Wright.,7,14,2012 20120930_TEN@HOU,3,27,31,TEN,HOU,3,8,40,(12:31) (Shotgun) M.Hasselbeck pass incomplete short right.,7,14,2012 20120930_TEN@HOU,3,27,25,TEN,HOU,4,8,40,(12:25) B.Kern punts 33 yards to HST 7 Center-B.Brinkley downed by TEN-B.Brinkley. (The punt hang time was 4.7 seconds.),7,14,2012 20120930_TEN@HOU,3,27,12,HOU,TEN,1,10,93,(12:12) M.Schaub pass short middle to A.Johnson to HST 19 for 12 yards (Z.Diles). PENALTY on HST-K.Walter Illegal Crackback 3 yards enforced at HST 7 - No Play.,14,7,2012 20120930_TEN@HOU,3,26,49,HOU,TEN,1,13,96,(11:49) M.Schaub pass incomplete short right to A.Johnson (A.Ayers).,14,7,2012 20120930_TEN@HOU,3,26,13,HOU,TEN,2,13,96,(11:13) A.Foster right tackle to HST 3 for -1 yards (D.Morgan S.Marks).,14,7,2012 20120930_TEN@HOU,3,25,31,HOU,TEN,3,14,97,(10:31) (Shotgun) M.Schaub pass short middle to O.Daniels to HST 14 for 11 yards (J.Babineaux).,14,7,2012 20120930_TEN@HOU,3,24,52,HOU,TEN,4,3,86,(9:52) D.Jones punts 44 yards to TEN 42 Center-J.Weeks. D.Reynaud pushed ob at HST 30 for 28 yards (D.Jones). PENALTY on TEN-T.Thompson Offensive Holding 10 yards enforced at TEN 42.,14,7,2012 20120930_TEN@HOU,3,24,39,TEN,HOU,1,10,68,(9:39) M.Hasselbeck pass deep left intended for T.Thompson INTERCEPTED by D.Manning at HST 45. D.Manning for 55 yards TOUCHDOWN. PENALTY on TEN-D.Stewart Personal Foul 15 yards enforced between downs.,7,14,2012 20120930_TEN@HOU,3,24,39,HOU,TEN,,,68,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,14,7,2012 20120930_TEN@HOU,3,24,39,HOU,TEN,,,68,S.Graham kicks 50 yards from 50 to end zone Touchback.,21,7,2012 20120930_TEN@HOU,3,24,21,TEN,HOU,1,10,80,(9:21) C.Johnson right tackle to TEN 22 for 2 yards (S.Cody B.Cushing).,7,21,2012 20120930_TEN@HOU,3,23,51,TEN,HOU,2,8,78,(8:51) C.Johnson up the middle to TEN 31 for 9 yards (D.Manning).,7,21,2012 20120930_TEN@HOU,3,23,11,TEN,HOU,1,10,69,(8:11) (Shotgun) C.Johnson up the middle to TEN 36 for 5 yards (B.James B.Reed).,7,21,2012 20120930_TEN@HOU,3,22,35,TEN,HOU,2,5,64,(7:35) D.Reynaud right guard to TEN 36 for no gain (S.Cody). PENALTY on TEN-D.Stewart Personal Foul 15 yards enforced at TEN 36 - No Play.,7,21,2012 20120930_TEN@HOU,3,22,20,TEN,HOU,2,20,79,(7:20) (Shotgun) M.Hasselbeck pass short right to L.Hawkins to TEN 26 for 5 yards (G.Quin).,7,21,2012 20120930_TEN@HOU,3,22,20,TEN,HOU,3,15,74,(7:20) (Shotgun) PENALTY on TEN-M.Hasselbeck Delay of Game 5 yards enforced at TEN 26 - No Play.,7,21,2012 20120930_TEN@HOU,3,21,17,TEN,HOU,3,20,79,(6:17) (Shotgun) J.Ringer left guard to TEN 26 for 5 yards (B.Cushing).,7,21,2012 20120930_TEN@HOU,3,20,37,TEN,HOU,4,15,74,(5:37) B.Kern punts 60 yards to HST 14 Center-B.Brinkley. T.Holliday to HST 25 for 11 yards (J.Babineaux). (the punt hang time was 4.4 seconds.),7,21,2012 20120930_TEN@HOU,3,20,24,HOU,TEN,1,10,75,(5:24) B.Tate left tackle to HST 25 for no gain (D.Morgan Z.Brown).,21,7,2012 20120930_TEN@HOU,3,19,56,HOU,TEN,2,10,75,(4:56) M.Schaub pass short middle to O.Daniels to HST 34 for 9 yards (Z.Brown A.Ayers).,21,7,2012 20120930_TEN@HOU,3,19,28,HOU,TEN,3,1,66,(4:28) A.Foster left tackle to 50 for 16 yards (R.Johnson).,21,7,2012 20120930_TEN@HOU,3,19,0,HOU,TEN,1,10,50,(4:00) M.Schaub pass deep middle to K.Martin to TEN 33 for 17 yards (Z.Brown).,21,7,2012 20120930_TEN@HOU,3,18,30,HOU,TEN,1,10,33,(3:30) A.Foster left guard to TEN 28 for 5 yards (J.McCourty J.Babineaux).,21,7,2012 20120930_TEN@HOU,3,18,1,HOU,TEN,2,5,28,(3:01) M.Schaub pass incomplete short middle to A.Foster.,21,7,2012 20120930_TEN@HOU,3,17,56,HOU,TEN,3,5,28,(2:56) (Shotgun) M.Schaub pass short left to O.Daniels for 28 yards TOUCHDOWN.,21,7,2012 20120930_TEN@HOU,3,17,56,HOU,TEN,,,28,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,21,7,2012 20120930_TEN@HOU,3,17,56,HOU,TEN,,,28,S.Graham kicks 62 yards from HST 35 to TEN 3. D.Reynaud to TEN 26 for 23 yards (J.Forsett).,28,7,2012 20120930_TEN@HOU,3,17,38,TEN,HOU,1,10,74,(2:38) (Shotgun) M.Hasselbeck pass short right to J.Cook to TEN 35 for 9 yards (B.Reed).,7,28,2012 20120930_TEN@HOU,3,17,8,TEN,HOU,2,1,65,(2:08) (Shotgun) M.Hasselbeck pass short right to D.Williams to TEN 41 for 6 yards (J.Joseph).,7,28,2012 20120930_TEN@HOU,3,16,43,TEN,HOU,1,10,59,(1:43) (Shotgun) M.Hasselbeck pass incomplete deep left to K.Wright (K.Jackson) [E.Mitchell].,7,28,2012 20120930_TEN@HOU,3,16,36,TEN,HOU,2,10,59,(1:36) (Shotgun) C.Johnson up the middle to TEN 46 for 5 yards (B.Reed).,7,28,2012 20120930_TEN@HOU,3,16,12,TEN,HOU,3,5,54,(1:12) (Shotgun) M.Hasselbeck sacked at TEN 40 for -6 yards (J.Watt).,7,28,2012 20120930_TEN@HOU,3,15,46,TEN,HOU,4,11,60,(:46) B.Kern punts 35 yards to HST 25 Center-B.Brinkley out of bounds. (The punt hang time was 3.3 seconds.),7,28,2012 20120930_TEN@HOU,3,15,36,HOU,TEN,1,10,75,(:36) M.Schaub pass short right to A.Foster to HST 33 for 8 yards (A.Ayers).,28,7,2012 20120930_TEN@HOU,4,15,0,HOU,TEN,2,2,67,(15:00) A.Foster left guard to HST 34 for 1 yard (J.Casey Z.Brown).,28,7,2012 20120930_TEN@HOU,4,14,24,HOU,TEN,3,1,66,(14:24) M.Schaub pass short right to J.Casey to HST 37 for 3 yards (J.Babineaux).,28,7,2012 20120930_TEN@HOU,4,13,55,HOU,TEN,1,10,63,(13:55) A.Foster left end to HST 40 for 3 yards (A.Ayers).,28,7,2012 20120930_TEN@HOU,4,13,18,HOU,TEN,2,7,60,(13:18) M.Schaub pass incomplete short right to G.Graham.,28,7,2012 20120930_TEN@HOU,4,13,13,HOU,TEN,3,7,60,(13:13) (Shotgun) M.Schaub pass short left to K.Walter to HST 48 for 8 yards (J.Babineaux).,28,7,2012 20120930_TEN@HOU,4,12,30,HOU,TEN,1,10,52,(12:30) A.Foster left tackle to TEN 49 for 3 yards (A.Ayers Z.Diles).,28,7,2012 20120930_TEN@HOU,4,11,47,HOU,TEN,2,7,49,(11:47) A.Foster right tackle to TEN 41 for 8 yards (J.McCourty J.Babineaux).,28,7,2012 20120930_TEN@HOU,4,11,2,HOU,TEN,1,10,41,(11:02) B.Tate left end to TEN 34 for 7 yards (M.Griffin).,28,7,2012 20120930_TEN@HOU,4,10,19,HOU,TEN,2,3,34,(10:19) B.Tate right end to TEN 36 for -2 yards (P.Egboh).,28,7,2012 20120930_TEN@HOU,4,9,37,HOU,TEN,3,5,36,(9:37) M.Schaub pass incomplete deep left to A.Johnson [M.Martin]. Penalty on HST-B.Jones Offensive Holding declined.,28,7,2012 20120930_TEN@HOU,4,9,30,HOU,TEN,4,5,36,(9:30) D.Jones punts 28 yards to TEN 8 Center-J.Weeks downed by HST-S.Keo. (The punt hang time was 4.3 seconds.),28,7,2012 20120930_TEN@HOU,4,9,20,TEN,HOU,1,10,92,(9:20) (Shotgun) M.Hasselbeck pass short middle to N.Washington to TEN 13 for 5 yards (B.McCain).,7,28,2012 20120930_TEN@HOU,4,8,46,TEN,HOU,2,5,87,(8:46) (Shotgun) M.Hasselbeck pass short right to J.Cook to TEN 15 for 2 yards (Q.Demps).,7,28,2012 20120930_TEN@HOU,4,8,15,TEN,HOU,3,3,85,(8:15) (Shotgun) M.Hasselbeck pass incomplete short right to N.Washington (D.Manning).,7,28,2012 20120930_TEN@HOU,4,8,11,TEN,HOU,4,3,85,(8:11) (Shotgun) M.Hasselbeck pass short left to C.Stevens to TEN 20 for 5 yards (B.Cushing).,7,28,2012 20120930_TEN@HOU,4,7,45,TEN,HOU,1,10,80,(7:45) (Shotgun) C.Johnson up the middle to TEN 25 for 5 yards (G.Quin).,7,28,2012 20120930_TEN@HOU,4,7,22,TEN,HOU,2,5,75,(7:22) (Shotgun) M.Hasselbeck sacked at TEN 24 for -1 yards (A.Smith). FUMBLES (A.Smith) RECOVERED by HST-J.Watt at TEN 24. J.Watt to TEN 17 for 7 yards (F.Velasco).,7,28,2012 20120930_TEN@HOU,4,7,10,HOU,TEN,1,10,17,(7:10) A.Foster up the middle to TEN 15 for 2 yards (P.Egboh).,28,7,2012 20120930_TEN@HOU,4,6,29,HOU,TEN,2,8,15,(6:29) A.Foster right end pushed ob at TEN 13 for 2 yards (Z.Diles).,28,7,2012 20120930_TEN@HOU,4,5,54,HOU,TEN,3,6,13,(5:54) A.Foster right end to TEN 14 for -1 yards (J.McCourty).,28,7,2012 20120930_TEN@HOU,4,5,42,HOU,TEN,4,7,14,(5:42) S.Graham 33 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,28,7,2012 20120930_TEN@HOU,4,5,42,HOU,TEN,,,14,S.Graham kicks 70 yards from HST 35 to TEN -5. D.Reynaud Touchback.,31,7,2012 20120930_TEN@HOU,4,5,38,TEN,HOU,1,10,80,(5:38) (Shotgun) M.Hasselbeck pass short left to K.Wright to TEN 40 for 20 yards (E.Mitchell). HST-S.Keo was injured during the play.,7,31,2012 20120930_TEN@HOU,4,5,25,TEN,HOU,1,10,60,(5:25) (Shotgun) M.Hasselbeck pass short middle to C.Johnson to TEN 48 for 8 yards (K.Jackson).,7,31,2012 20120930_TEN@HOU,4,4,56,TEN,HOU,2,2,52,(4:56) (Shotgun) C.Johnson up the middle to HST 46 for 6 yards (T.Dobbins).,7,31,2012 20120930_TEN@HOU,4,4,31,TEN,HOU,1,10,46,(4:31) (Shotgun) M.Hasselbeck scrambles up the middle to HST 42 for 4 yards (T.Dobbins).,7,31,2012 20120930_TEN@HOU,4,4,8,TEN,HOU,2,6,42,(4:08) (Shotgun) M.Hasselbeck pass short left intended for D.Williams INTERCEPTED by K.Jackson at HST 37. K.Jackson for 63 yards TOUCHDOWN.,7,31,2012 20120930_TEN@HOU,4,4,8,HOU,TEN,,,42,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,31,7,2012 20120930_TEN@HOU,4,4,8,HOU,TEN,,,42,S.Graham kicks 66 yards from HST 35 to TEN -1. D.Reynaud to TEN 21 for 22 yards (J.Nading T.Dobbins).,38,7,2012 20120930_TEN@HOU,4,3,49,TEN,HOU,1,10,79,(3:49) (Shotgun) C.Johnson left guard to TEN 33 for 12 yards (A.Ball).,7,38,2012 20120930_TEN@HOU,4,3,26,TEN,HOU,1,10,67,(3:26) (Shotgun) C.Johnson up the middle to TEN 39 for 6 yards (B.Braman).,7,38,2012 20120930_TEN@HOU,4,3,3,TEN,HOU,2,4,61,(3:03) (Shotgun) C.Johnson right guard to TEN 40 for 1 yard (D.Manning).,7,38,2012 20120930_TEN@HOU,4,2,32,TEN,HOU,3,3,60,(2:32) (Shotgun) M.Hasselbeck pass short right to K.Wright to 50 for 10 yards (J.Joseph).,7,38,2012 20120930_TEN@HOU,4,2,9,TEN,HOU,1,10,50,(2:09) (Shotgun) J.Ringer left guard to HST 41 for 9 yards (A.Ball).,7,38,2012 20120930_TEN@HOU,4,2,0,TEN,HOU,2,1,41,(2:00) C.Johnson right guard to HST 26 for 15 yards (D.Manning).,7,38,2012 20120930_TEN@HOU,4,1,40,TEN,HOU,1,10,26,(1:40) (Shotgun) M.Hasselbeck pass short left to K.Wright to HST 21 for 5 yards (W.Mercilus).,7,38,2012 20120930_TEN@HOU,4,1,16,TEN,HOU,2,5,21,(1:16) C.Johnson right end to HST 18 for 3 yards (E.Mitchell T.Jamison).,7,38,2012 20120930_TEN@HOU,4,1,9,TEN,HOU,3,2,18,(1:09) (Shotgun) C.Johnson up the middle to HST 11 for 7 yards (D.Manning).,7,38,2012 20120930_TEN@HOU,4,1,1,TEN,HOU,1,10,11,(1:01) (Shotgun) M.Hasselbeck pass short left to K.Wright for 11 yards TOUCHDOWN.,7,38,2012 20120930_TEN@HOU,4,1,1,TEN,HOU,,,11,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,7,38,2012 20120930_TEN@HOU,4,1,1,TEN,HOU,,,11,R.Bironas kicks 69 yards from TEN 35 to HST -4. J.Forsett Touchback.,14,38,2012 20120930_TEN@HOU,4,0,57,HOU,TEN,1,10,80,(:57) M.Schaub kneels to HST 19 for -1 yards.,38,14,2012 20120930_TEN@HOU,4,0,34,HOU,TEN,2,11,81,(:34) M.Schaub kneels to HST 18 for -1 yards.,38,14,2012 20120930_TEN@HOU,4,0,34,HOU,TEN,,,81,                      ,38,14,2012 20120930_SD@KC,1,0,0,KC,SD,,,81,R.Succop kicks 74 yards from KC 35 to SD -9. R.Goodman to SD 24 for 33 yards (J.Brown).,0,0,2012 20120930_SD@KC,1,59,56,SD,KC,1,10,76,(14:56) P.Rivers pass short right to J.Battle to SD 38 for 14 yards (J.Belcher).,0,0,2012 20120930_SD@KC,1,59,17,SD,KC,1,10,62,(14:17) J.Battle up the middle to SD 38 for no gain (R.Pitoitua).,0,0,2012 20120930_SD@KC,1,58,35,SD,KC,2,10,62,(13:35) J.Battle right guard to SD 38 for no gain (T.Hali).,0,0,2012 20120930_SD@KC,1,57,46,SD,KC,3,10,62,(12:46) (Shotgun) P.Rivers pass incomplete short right to A.Gates. PENALTY on KC-E.Berry Defensive Pass Interference 15 yards enforced at SD 38 - No Play.,0,0,2012 20120930_SD@KC,1,57,41,SD,KC,1,10,47,(12:41) P.Rivers pass short left to L.McClain to KC 49 for -2 yards (E.Berry).,0,0,2012 20120930_SD@KC,1,56,58,SD,KC,2,12,49,(11:58) P.Rivers pass incomplete deep left to R.Meachem (A.Elam).,0,0,2012 20120930_SD@KC,1,56,50,SD,KC,3,12,49,(11:50) (Shotgun) P.Rivers pass deep left to M.Floyd to KC 22 for 27 yards (A.Elam). Kansas City challenged the runner was in bounds ruling and the play was REVERSED. (Shotgun) P.Rivers pass deep left to M.Floyd to KC 28 for 21 yards (S.Routt).,0,0,2012 20120930_SD@KC,1,56,25,SD,KC,1,10,28,(11:25) (Shotgun) P.Rivers pass incomplete deep left to A.Gates [J.Houston]. PENALTY on KC-E.Berry Defensive Pass Interference 13 yards enforced at KC 28 - No Play.,0,0,2012 20120930_SD@KC,1,56,20,SD,KC,1,10,15,(11:20) J.Battle right guard to KC 3 for 12 yards (T.Hali).,0,0,2012 20120930_SD@KC,1,55,46,SD,KC,1,3,3,(10:46) J.Battle up the middle to KC 4 for -1 yards (D.Johnson).,0,0,2012 20120930_SD@KC,1,55,8,SD,KC,2,4,4,(10:08) (Shotgun) P.Rivers pass short middle to E.Royal for 4 yards TOUCHDOWN.,0,0,2012 20120930_SD@KC,1,55,8,SD,KC,,,4,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 20120930_SD@KC,1,55,8,SD,KC,,,4,N.Novak kicks 72 yards from SD 35 to KC -7. S.Draughn to KC 22 for 29 yards (M.Ingram).,7,0,2012 20120930_SD@KC,1,54,56,KC,SD,1,10,78,(9:56) M.Cassel pass short left to D.Bowe pushed ob at KC 29 for 7 yards (A.Cason) [A.Bigby].,0,7,2012 20120930_SD@KC,1,54,35,KC,SD,2,3,71,(9:35) M.Cassel pass short right to D.Bowe to KC 37 for 8 yards (Q.Jammer).,0,7,2012 20120930_SD@KC,1,53,53,KC,SD,1,10,63,(8:53) M.Cassel pass short left intended for D.Bowe INTERCEPTED by E.Weddle at KC 49. E.Weddle to KC 28 for 21 yards (D.McCluster).,0,7,2012 20120930_SD@KC,1,53,39,SD,KC,1,10,28,(8:39) P.Rivers pass short right to R.Mathews to KC 15 for 13 yards (B.Flowers).,7,0,2012 20120930_SD@KC,1,52,55,SD,KC,1,10,15,(7:55) R.Mathews up the middle to KC 19 for -4 yards (T.Hali).,7,0,2012 20120930_SD@KC,1,52,16,SD,KC,2,14,19,(7:16) P.Rivers pass short middle to A.Gates to KC 6 for 13 yards (E.Berry).,7,0,2012 20120930_SD@KC,1,51,38,SD,KC,3,1,6,(6:38) (Shotgun) P.Rivers pass incomplete short right to E.Royal (B.Flowers).,7,0,2012 20120930_SD@KC,1,51,29,SD,KC,4,1,6,(6:29) N.Novak 24 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,7,0,2012 20120930_SD@KC,1,51,29,SD,KC,,,6,N.Novak kicks 68 yards from SD 35 to KC -3. S.Draughn to KC 21 for 24 yards (R.Goodman).,10,0,2012 20120930_SD@KC,1,51,21,KC,SD,1,10,79,(6:21) PENALTY on KC-T.Moeaki False Start 5 yards enforced at KC 21 - No Play.,0,10,2012 20120930_SD@KC,1,51,21,KC,SD,1,15,84,(6:21) J.Charles left tackle to KC 12 for -4 yards (T.Spikes). FUMBLES (T.Spikes) RECOVERED by SD-S.Phillips at KC 5. S.Phillips to KC 5 for no gain (T.Moeaki).,0,10,2012 20120930_SD@KC,1,51,12,SD,KC,1,5,5,(6:12) J.Battle up the middle to KC 1 for 4 yards (A.Elam).,10,0,2012 20120930_SD@KC,1,50,32,SD,KC,2,1,1,(5:32) J.Battle right guard for 1 yard TOUCHDOWN.,10,0,2012 20120930_SD@KC,1,50,32,SD,KC,,,1,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,10,0,2012 20120930_SD@KC,1,50,32,SD,KC,,,1,N.Novak kicks 68 yards from SD 35 to KC -3. S.Draughn to KC 20 for 23 yards (R.Goodman).,17,0,2012 20120930_SD@KC,1,50,23,KC,SD,1,10,80,(5:23) (Shotgun) J.Charles up the middle to KC 21 for 1 yard (E.Weddle; D.Butler).,0,17,2012 20120930_SD@KC,1,49,50,KC,SD,2,9,79,(4:50) M.Cassel pass short right to J.Charles to KC 27 for 6 yards (Q.Jammer).,0,17,2012 20120930_SD@KC,1,49,4,KC,SD,3,3,73,(4:04) (Shotgun) M.Cassel pass short left to D.McCluster pushed ob at KC 31 for 4 yards (A.Bigby).,0,17,2012 20120930_SD@KC,1,48,41,KC,SD,1,10,69,(3:41) (No Huddle) M.Cassel pass incomplete short right to S.Maneri [V.Martin].,0,17,2012 20120930_SD@KC,1,48,35,KC,SD,2,10,69,(3:35) M.Cassel pass incomplete short middle to J.Charles.,0,17,2012 20120930_SD@KC,1,48,30,KC,SD,3,10,69,(3:30) (Shotgun) M.Cassel pass short right to J.Baldwin to KC 34 for 3 yards (S.Phillips).,0,17,2012 20120930_SD@KC,1,47,54,KC,SD,4,7,66,(2:54) D.Colquitt punts 60 yards to SD 6 Center-T.Gafford downed by KC-J.Brown.,0,17,2012 20120930_SD@KC,1,47,44,SD,KC,1,10,94,(2:44) J.Battle right guard to SD 9 for 3 yards (J.Powe).,17,0,2012 20120930_SD@KC,1,47,8,SD,KC,2,7,91,(2:08) J.Battle right tackle to SD 11 for 2 yards (J.Belcher).,17,0,2012 20120930_SD@KC,1,46,23,SD,KC,3,5,89,(1:23) (Shotgun) P.Rivers pass short right to R.Brown ran ob at SD 32 for 21 yards (T.Daniels).,17,0,2012 20120930_SD@KC,1,45,37,SD,KC,1,10,68,(:37) P.Rivers pass short left to J.Battle pushed ob at 50 for 18 yards (J.Belcher).,17,0,2012 20120930_SD@KC,1,45,5,SD,KC,1,10,50,(:05) P.Rivers pass incomplete short left to M.Floyd. PENALTY on SD-P.Rivers Intentional Grounding 13 yards enforced at 50.,17,0,2012 20120930_SD@KC,2,45,0,SD,KC,2,23,63,(15:00) (Shotgun) R.Mathews right guard to SD 39 for 2 yards (J.Houston). Penalty on SD-T.Green Offensive Holding declined.,17,0,2012 20120930_SD@KC,2,44,36,SD,KC,3,21,61,(14:36) (Shotgun) P.Rivers pass short right to R.Brown to KC 48 for 13 yards (J.Brown).,17,0,2012 20120930_SD@KC,2,43,58,SD,KC,4,8,48,(13:58) M.Scifres punts 27 yards to KC 21 Center-M.Windt out of bounds.,17,0,2012 20120930_SD@KC,2,43,51,KC,SD,1,10,79,(13:51) J.Charles up the middle to KC 27 for 6 yards (T.Spikes).,0,17,2012 20120930_SD@KC,2,43,8,KC,SD,2,4,73,(13:08) M.Cassel pass incomplete short left to D.McCluster [C.Liuget]. San Diego challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),0,17,2012 20120930_SD@KC,2,42,59,KC,SD,3,4,73,(12:59) (Shotgun) M.Cassel pass deep right to D.Bowe to SD 36 for 37 yards (E.Weddle). PENALTY on KC-E.Winston Illegal Formation 5 yards enforced at KC 27 - No Play.,0,17,2012 20120930_SD@KC,2,42,32,KC,SD,3,9,78,(12:32) (Shotgun) M.Cassel sacked at KC 13 for -9 yards (S.Phillips). FUMBLES (S.Phillips) and recovers at KC 12. M.Cassel to KC 12 for no gain (S.Phillips).,0,17,2012 20120930_SD@KC,2,42,2,KC,SD,4,19,88,(12:02) D.Colquitt punts 49 yards to SD 39 Center-T.Gafford fair catch by E.Royal. PENALTY on SD-R.Goodman Offensive Holding 10 yards enforced at SD 39.,0,17,2012 20120930_SD@KC,2,41,56,SD,KC,1,10,71,(11:56) R.Mathews right end to SD 29 for no gain (E.Berry).,17,0,2012 20120930_SD@KC,2,41,14,SD,KC,2,10,71,(11:14) (Shotgun) P.Rivers pass short right to A.Gates to KC 38 for 33 yards (T.Daniels).,17,0,2012 20120930_SD@KC,2,40,25,SD,KC,1,10,38,(10:25) (Shotgun) P.Rivers pass short left to M.Floyd to KC 36 for 2 yards (B.Flowers).,17,0,2012 20120930_SD@KC,2,39,42,SD,KC,2,8,36,(9:42) R.Mathews left tackle to KC 33 for 3 yards (D.Johnson).,17,0,2012 20120930_SD@KC,2,38,57,SD,KC,3,5,33,(8:57) (Shotgun) P.Rivers pass short left to E.Royal to KC 29 for 4 yards (J.Arenas).,17,0,2012 20120930_SD@KC,2,38,13,SD,KC,4,1,29,(8:13) N.Novak 47 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,17,0,2012 20120930_SD@KC,2,38,13,SD,KC,,,29,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,20,0,2012 20120930_SD@KC,2,38,9,KC,SD,1,10,80,(8:09) J.Charles right tackle to KC 25 for 5 yards (V.Martin). FUMBLES (V.Martin) RECOVERED by SD-C.Liuget at KC 28. C.Liuget to KC 28 for no gain (J.Charles).,0,20,2012 20120930_SD@KC,2,38,2,SD,KC,1,10,28,(8:02) P.Rivers FUMBLES (Aborted) at KC 28 ball out of bounds at KC 36.,20,0,2012 20120930_SD@KC,2,37,57,SD,KC,2,18,36,(7:57) (Shotgun) P.Rivers pass short left to A.Gates pushed ob at KC 23 for 13 yards (E.Berry).,20,0,2012 20120930_SD@KC,2,37,37,SD,KC,3,5,23,(7:37) (Shotgun) P.Rivers pass short right intended for R.Meachem INTERCEPTED by B.Flowers at KC 14. B.Flowers to KC 15 for 1 yard (R.Meachem).,20,0,2012 20120930_SD@KC,2,37,28,KC,SD,1,10,85,(7:28) M.Cassel pass short left to D.Bowe to KC 28 for 13 yards (A.Cason).,0,20,2012 20120930_SD@KC,2,36,46,KC,SD,1,10,72,(6:46) M.Cassel pass incomplete deep right to J.Baldwin.,0,20,2012 20120930_SD@KC,2,36,40,KC,SD,2,10,72,(6:40) J.Charles up the middle to KC 36 for 8 yards (E.Weddle).,0,20,2012 20120930_SD@KC,2,36,3,KC,SD,3,2,64,(6:03) (Shotgun) M.Cassel pass incomplete short right to D.Bowe. PENALTY on SD-Q.Jammer Defensive Pass Interference 12 yards enforced at KC 36 - No Play.,0,20,2012 20120930_SD@KC,2,35,58,KC,SD,1,10,52,(5:58) M.Cassel pass short left to D.Bowe to SD 37 for 15 yards (Q.Jammer).,0,20,2012 20120930_SD@KC,2,35,22,KC,SD,1,10,37,(5:22) J.Charles left end for 37 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,20,2012 20120930_SD@KC,2,35,22,KC,SD,,,37,(Kick formation) TWO-POINT CONVERSION ATTEMPT. D.Colquitt pass is incomplete. ATTEMPT FAILS. Pass intercepted in endzone.,0,20,2012 20120930_SD@KC,2,35,22,KC,SD,,,37,R.Succop kicks 67 yards from KC 35 to SD -2. R.Goodman to SD 18 for 20 yards (E.Jones).,6,20,2012 20120930_SD@KC,2,35,3,SD,KC,1,10,82,(5:03) (Shotgun) P.Rivers pass incomplete short left to M.Floyd. PENALTY on KC-S.Routt Defensive Pass Interference 12 yards enforced at SD 18 - No Play.,20,6,2012 20120930_SD@KC,2,34,59,SD,KC,1,10,70,(4:59) (Shotgun) P.Rivers sacked at SD 24 for -6 yards (R.Pitoitua).,20,6,2012 20120930_SD@KC,2,34,34,SD,KC,2,16,76,(4:34) J.Battle up the middle to SD 26 for 2 yards (J.Belcher).,20,6,2012 20120930_SD@KC,2,33,49,SD,KC,3,14,74,(3:49) (Shotgun) P.Rivers pass short left to E.Royal to SD 34 for 8 yards (J.Arenas).,20,6,2012 20120930_SD@KC,2,33,13,SD,KC,4,6,66,(3:13) M.Scifres punts 66 yards to end zone Center-M.Windt Touchback.,20,6,2012 20120930_SD@KC,2,33,4,KC,SD,1,10,80,(3:04) (Shotgun) PENALTY on KC-T.Moeaki False Start 5 yards enforced at KC 20 - No Play.,6,20,2012 20120930_SD@KC,2,33,4,KC,SD,1,15,85,(3:04) (Shotgun) M.Cassel pass incomplete short left to C.Gray.,6,20,2012 20120930_SD@KC,2,32,59,KC,SD,2,15,85,(2:59) M.Cassel pass short left intended for T.Moeaki INTERCEPTED by D.Butler at KC 21. D.Butler for 21 yards TOUCHDOWN.,6,20,2012 20120930_SD@KC,2,32,59,SD,KC,,,85,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,20,6,2012 20120930_SD@KC,2,32,59,SD,KC,,,85,N.Novak kicks 73 yards from SD 35 to KC -8. C.Gray Touchback.,27,6,2012 20120930_SD@KC,2,32,51,KC,SD,1,10,80,(2:51) M.Cassel pass short right to D.Bowe ran ob at KC 32 for 12 yards. PENALTY on KC-E.Winston Offensive Holding 10 yards enforced at KC 20 - No Play. Penalty on KC-D.Bowe Illegal Touch Pass declined.,6,27,2012 20120930_SD@KC,2,32,34,KC,SD,1,20,90,(2:34) J.Charles right tackle to KC 10 for no gain (D.Butler).,6,27,2012 20120930_SD@KC,2,32,0,KC,SD,2,20,90,(2:00) (Shotgun) M.Cassel pass incomplete deep left to D.Bowe. PENALTY on SD-A.Cason Defensive Pass Interference 15 yards enforced at KC 10 - No Play.,6,27,2012 20120930_SD@KC,2,31,54,KC,SD,1,10,75,(1:54) (No Huddle Shotgun) M.Cassel pass deep left to D.Bowe to SD 49 for 26 yards (A.Bigby).,6,27,2012 20120930_SD@KC,2,31,22,KC,SD,1,10,49,(1:22) (No Huddle Shotgun) M.Cassel pass short middle to S.Draughn ran ob at SD 40 for 9 yards (M.Gilchrist).,6,27,2012 20120930_SD@KC,2,31,15,KC,SD,2,1,40,(1:15) (No Huddle Shotgun) S.Draughn up the middle to SD 37 for 3 yards (D.Butler).,6,27,2012 20120930_SD@KC,2,31,10,KC,SD,1,10,37,(1:10) (Shotgun) M.Cassel pass incomplete short left to D.McCluster [A.Bigby]. PENALTY on SD-Q.Jammer Illegal Contact 5 yards enforced at SD 37 - No Play.,6,27,2012 20120930_SD@KC,2,31,5,KC,SD,1,10,32,(1:05) (Shotgun) M.Cassel pass short left to D.Bowe to SD 22 for 10 yards (M.Ingram) [D.Williams].,6,27,2012 20120930_SD@KC,2,30,49,KC,SD,1,10,22,(:49) (Shotgun) M.Cassel pass short left intended for D.McCluster INTERCEPTED by A.Cason at SD 13. A.Cason ran ob at SD 44 for 31 yards (J.Allen). PENALTY on SD-D.Butler Personal Foul 15 yards enforced at SD 44.,6,27,2012 20120930_SD@KC,2,30,33,SD,KC,1,10,71,(:33) P.Rivers kneels to SD 28 for -1 yards.,27,6,2012 20120930_SD@KC,3,30,0,SD,KC,,,71,N.Novak kicks 74 yards from SD 35 to KC -9. C.Gray Touchback.,27,6,2012 20120930_SD@KC,3,30,0,KC,SD,1,10,80,(15:00) J.Charles right end to KC 20 for no gain (A.Franklin).,6,27,2012 20120930_SD@KC,3,29,21,KC,SD,2,10,80,(14:21) M.Cassel pass incomplete short right to N.Eachus.,6,27,2012 20120930_SD@KC,3,29,17,KC,SD,3,10,80,(14:17) (Shotgun) M.Cassel pass short right to S.Breaston to KC 32 for 12 yards (Q.Jammer).,6,27,2012 20120930_SD@KC,3,28,51,KC,SD,1,10,68,(13:51) M.Cassel pass short middle to J.Baldwin to SD 43 for 25 yards (E.Weddle).,6,27,2012 20120930_SD@KC,3,28,15,KC,SD,1,10,43,(13:15) J.Charles left end pushed ob at SD 36 for 7 yards (D.Butler).,6,27,2012 20120930_SD@KC,3,27,49,KC,SD,2,3,36,(12:49) J.Charles left end ran ob at SD 32 for 4 yards.,6,27,2012 20120930_SD@KC,3,27,23,KC,SD,1,10,32,(12:23) (Shotgun) M.Cassel sacked at SD 39 for -7 yards (sack split by D.Butler and L.English).,6,27,2012 20120930_SD@KC,3,26,47,KC,SD,2,17,39,(11:47) (Shotgun) M.Cassel pass short right to D.McCluster to SD 37 for 2 yards (M.Gilchrist).,6,27,2012 20120930_SD@KC,3,26,4,KC,SD,3,15,37,(11:04) (Shotgun) M.Cassel pass incomplete short middle to T.Moeaki. PENALTY on SD-D.Butler Illegal Contact 5 yards enforced at SD 37 - No Play.,6,27,2012 20120930_SD@KC,3,25,58,KC,SD,1,10,32,(10:58) J.Charles right end to SD 30 for 2 yards (D.Williams).,6,27,2012 20120930_SD@KC,3,25,19,KC,SD,2,8,30,(10:19) (Shotgun) M.Cassel pass short right to S.Draughn to SD 12 for 18 yards (D.Williams).,6,27,2012 20120930_SD@KC,3,24,32,KC,SD,1,10,12,(9:32) M.Cassel pass incomplete to S.Maneri (M.Ingram).,6,27,2012 20120930_SD@KC,3,24,27,KC,SD,2,10,12,(9:27) S.Draughn up the middle to SD 13 for -1 yards (M.Ingram).,6,27,2012 20120930_SD@KC,3,23,48,KC,SD,3,11,13,(8:48) (Shotgun) M.Cassel pass short left to J.Charles for 13 yards TOUCHDOWN.,6,27,2012 20120930_SD@KC,3,23,48,KC,SD,,,13,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,6,27,2012 20120930_SD@KC,3,23,48,KC,SD,,,13,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,13,27,2012 20120930_SD@KC,3,23,40,SD,KC,1,10,80,(8:40) P.Rivers scrambles right end to SD 21 for 1 yard (D.Johnson).,27,13,2012 20120930_SD@KC,3,22,53,SD,KC,2,9,79,(7:53) J.Battle up the middle to SD 21 for no gain (E.Berry).,27,13,2012 20120930_SD@KC,3,22,11,SD,KC,3,9,79,(7:11) (Shotgun) P.Rivers pass incomplete short left to E.Royal (J.Arenas).,27,13,2012 20120930_SD@KC,3,22,7,SD,KC,4,9,79,(7:07) M.Scifres punts 59 yards to KC 20 Center-M.Windt. J.Arenas to KC 35 for 15 yards (M.Spurlock).,27,13,2012 20120930_SD@KC,3,21,56,KC,SD,1,10,65,(6:56) J.Charles up the middle to KC 38 for 3 yards (C.Liuget; E.Weddle).,13,27,2012 20120930_SD@KC,3,21,23,KC,SD,2,7,62,(6:23) M.Cassel pass incomplete short right to D.Bowe.,13,27,2012 20120930_SD@KC,3,21,19,KC,SD,3,7,62,(6:19) (Shotgun) M.Cassel pass incomplete short left to D.Bowe (A.Cason).,13,27,2012 20120930_SD@KC,3,21,14,KC,SD,4,7,62,(6:14) D.Colquitt punts 54 yards to SD 8 Center-T.Gafford. E.Royal MUFFS catch recovered by SD-D.Stuckey at SD 8. D.Stuckey ran ob at SD 13 for 5 yards.,13,27,2012 20120930_SD@KC,3,21,5,SD,KC,1,10,87,(6:05) J.Battle right guard to SD 16 for 3 yards (J.Belcher).,27,13,2012 20120930_SD@KC,3,20,29,SD,KC,2,7,84,(5:29) P.Rivers sacked at SD 12 for -4 yards (R.Pitoitua).,27,13,2012 20120930_SD@KC,3,19,49,SD,KC,3,11,88,(4:49) (Shotgun) P.Rivers sacked at SD 2 for -10 yards (T.Hali).,27,13,2012 20120930_SD@KC,3,19,17,SD,KC,4,21,98,(4:17) M.Scifres punts 56 yards to KC 42 Center-M.Windt. J.Arenas to SD 30 for 28 yards (M.Windt). PENALTY on KC-T.Hartman Offensive Holding 10 yards enforced at KC 48.,27,13,2012 20120930_SD@KC,3,19,6,KC,SD,1,10,62,(4:06) M.Cassel pass short right to T.Moeaki to KC 42 for 4 yards (D.Butler).,13,27,2012 20120930_SD@KC,3,18,32,KC,SD,2,6,58,(3:32) S.Draughn up the middle to KC 45 for 3 yards (C.Thomas).,13,27,2012 20120930_SD@KC,3,17,56,KC,SD,3,3,55,(2:56) (Shotgun) M.Cassel pass incomplete short left to D.Bowe.,13,27,2012 20120930_SD@KC,3,17,50,KC,SD,4,3,55,(2:50) D.Colquitt punts 42 yards to SD 13 Center-T.Gafford downed by KC-T.Copper.,13,27,2012 20120930_SD@KC,3,17,38,SD,KC,1,10,87,(2:38) J.Battle right guard to SD 16 for 3 yards (D.Johnson).,27,13,2012 20120930_SD@KC,3,16,57,SD,KC,2,7,84,(1:57) (Shotgun) P.Rivers pass short middle to J.Battle to SD 22 for 6 yards (J.Houston).,27,13,2012 20120930_SD@KC,3,16,16,SD,KC,3,1,78,(1:16) L.McClain up the middle to SD 22 for no gain (R.Pitoitua).,27,13,2012 20120930_SD@KC,3,15,33,SD,KC,4,1,78,(:33) M.Scifres punts 61 yards to KC 17 Center-M.Windt. J.Arenas to KC 35 for 18 yards (M.Ingram).,27,13,2012 20120930_SD@KC,3,15,18,KC,SD,1,10,65,(:18) J.Charles left end to KC 45 for 10 yards (A.Bigby).,13,27,2012 20120930_SD@KC,4,15,0,KC,SD,1,10,55,(15:00) J.Charles left end to KC 46 for 1 yard (K.Reyes).,13,27,2012 20120930_SD@KC,4,14,20,KC,SD,2,9,54,(14:20) (Shotgun) M.Cassel pass short right to S.Draughn to KC 42 for -4 yards (Q.Jammer).,13,27,2012 20120930_SD@KC,4,13,36,KC,SD,3,13,58,(13:36) (Shotgun) S.Draughn up the middle to 50 for 8 yards (Q.Jammer). FUMBLES (Q.Jammer) RECOVERED by SD-A.Bigby at KC 49. A.Bigby to KC 49 for no gain (S.Draughn).,13,27,2012 20120930_SD@KC,4,13,25,SD,KC,1,10,49,(13:25) (Shotgun) R.Mathews up the middle to KC 43 for 6 yards (D.Johnson).,27,13,2012 20120930_SD@KC,4,12,50,SD,KC,2,4,43,(12:50) R.Mathews up the middle to KC 39 for 4 yards (D.Johnson).,27,13,2012 20120930_SD@KC,4,12,7,SD,KC,1,10,39,(12:07) (Shotgun) P.Rivers pass short right to R.Mathews to KC 31 for 8 yards (B.Flowers).,27,13,2012 20120930_SD@KC,4,11,22,SD,KC,2,2,31,(11:22) R.Mathews right end to KC 27 for 4 yards (J.Houston).,27,13,2012 20120930_SD@KC,4,10,43,SD,KC,1,10,27,(10:43) R.Mathews left end to KC 23 for 4 yards (J.Belcher).,27,13,2012 20120930_SD@KC,4,10,0,SD,KC,2,6,23,(10:00) J.Battle up the middle to KC 20 for 3 yards (C.Greenwood).,27,13,2012 20120930_SD@KC,4,9,15,SD,KC,3,3,20,(9:15) (Shotgun) P.Rivers pass short left to R.Brown to KC 4 for 16 yards (S.Routt).,27,13,2012 20120930_SD@KC,4,8,47,SD,KC,1,4,4,(8:47) J.Battle left end to KC 4 for no gain (D.Poe).,27,13,2012 20120930_SD@KC,4,7,59,SD,KC,2,4,4,(7:59) (Shotgun) P.Rivers pass short left to J.Battle for 4 yards TOUCHDOWN.,27,13,2012 20120930_SD@KC,4,7,59,SD,KC,,,4,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,27,13,2012 20120930_SD@KC,4,7,59,SD,KC,,,4,N.Novak kicks 69 yards from SD 35 to KC -4. C.Gray to KC 29 for 33 yards (M.Ingram).,34,13,2012 20120930_SD@KC,4,7,48,KC,SD,1,10,71,(7:48) (Shotgun) M.Cassel pass short right to J.Baldwin to KC 41 for 12 yards (D.Williams).,13,34,2012 20120930_SD@KC,4,7,32,KC,SD,1,10,59,(7:32) (No Huddle Shotgun) J.Charles up the middle to SD 46 for 13 yards (D.Williams).,13,34,2012 20120930_SD@KC,4,7,2,KC,SD,1,10,46,(7:02) (No Huddle Shotgun) M.Cassel pass incomplete short right to D.Bowe.,13,34,2012 20120930_SD@KC,4,6,57,KC,SD,2,10,46,(6:57) (Shotgun) C.Gray left end to SD 31 for 15 yards (S.Phillips).,13,34,2012 20120930_SD@KC,4,6,29,KC,SD,1,10,31,(6:29) (No Huddle Shotgun) J.Charles up the middle to SD 33 for -2 yards (A.Barnes).,13,34,2012 20120930_SD@KC,4,6,6,KC,SD,2,12,33,(6:06) (No Huddle Shotgun) M.Cassel pass short middle to J.Charles to SD 29 for 4 yards (D.Williams).,13,34,2012 20120930_SD@KC,4,5,37,KC,SD,3,8,29,(5:37) (No Huddle Shotgun) M.Cassel pass deep left to D.Bowe for 29 yards TOUCHDOWN.,13,34,2012 20120930_SD@KC,4,5,37,KC,SD,,,29,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,13,34,2012 20120930_SD@KC,4,5,37,KC,SD,,,29,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,20,34,2012 20120930_SD@KC,4,5,29,SD,KC,1,10,80,(5:29) J.Battle right end to SD 27 for 7 yards (Ty.Jackson; C.Greenwood).,34,20,2012 20120930_SD@KC,4,4,44,SD,KC,2,3,73,(4:44) R.Mathews left end pushed ob at SD 35 for 8 yards (J.Belcher).,34,20,2012 20120930_SD@KC,4,4,37,SD,KC,1,10,65,(4:37) R.Mathews left end to SD 44 for 9 yards (C.Greenwood).,34,20,2012 20120930_SD@KC,4,3,54,SD,KC,2,1,56,(3:54) R.Mathews left tackle to 50 for 6 yards (E.Berry).,34,20,2012 20120930_SD@KC,4,3,38,SD,KC,1,10,50,(3:38) R.Mathews up the middle to KC 36 for 14 yards (A.Elam).,34,20,2012 20120930_SD@KC,4,3,26,SD,KC,1,10,36,(3:26) L.McClain left tackle to KC 32 for 4 yards (R.Pitoitua).,34,20,2012 20120930_SD@KC,4,3,18,SD,KC,2,6,32,(3:18) R.Mathews up the middle to KC 27 for 5 yards (T.Hali).,34,20,2012 20120930_SD@KC,4,2,32,SD,KC,3,1,27,(2:32) R.Mathews up the middle to KC 27 for no gain (R.Pitoitua).,34,20,2012 20120930_SD@KC,4,2,0,SD,KC,4,1,27,(2:00) N.Novak 45 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,34,20,2012 20120930_SD@KC,4,2,0,SD,KC,,,27,N.Novak kicks 22 yards from SD 35 to KC 43 out of bounds.,37,20,2012 20120930_SD@KC,4,1,56,KC,SD,1,10,57,(1:56) (Shotgun) J.Charles up the middle to SD 49 for 8 yards (E.Weddle).,20,37,2012 20120930_SD@KC,4,1,32,KC,SD,2,2,49,(1:32) (No Huddle Shotgun) M.Cassel pass short right to T.Moeaki to SD 47 for 2 yards (Q.Jammer). KC-J.Allen was injured during the play. 4th timeout due to injury 10 second runoff forf KC.,20,37,2012 20120930_SD@KC,4,0,51,KC,SD,1,10,47,(:51) M.Cassel pass incomplete to S.Draughn.,20,37,2012 20120930_SD@KC,4,0,51,KC,SD,2,10,47,(:51) (Shotgun) M.Cassel pass short middle to T.Moeaki to SD 35 for 12 yards (A.Bigby).,20,37,2012 20120930_SD@KC,4,0,36,KC,SD,1,10,35,(:36) M.Cassel spiked the ball to stop the clock.,20,37,2012 20120930_SD@KC,4,0,35,KC,SD,2,10,35,(:35) M.Cassel pass short right to S.Draughn to SD 24 for 11 yards (A.Bigby; C.Thomas).,20,37,2012 20120930_SD@KC,4,0,35,KC,SD,1,10,24,(:35) M.Cassel spiked the ball to stop the clock.,20,37,2012 20120930_SD@KC,4,0,19,KC,SD,2,10,24,(:19) (Shotgun) M.Cassel pass incomplete short middle to S.Maneri.,20,37,2012 20120930_SD@KC,4,0,11,KC,SD,3,10,24,(:11) (Shotgun) PENALTY on KC-M.Cassel Delay of Game 5 yards enforced at SD 24 - No Play.,20,37,2012 20120930_SD@KC,4,0,9,KC,SD,3,15,29,(:09) (Shotgun) M.Cassel pass short right to J.Baldwin to SD 19 for 10 yards (Q.Jammer).,20,37,2012 20120930_SD@KC,4,0,9,KC,SD,,,29,                      ,20,37,2012 20120930_SF@NYJ,1,0,0,NYJ,SF,,,29,N.Folk kicks 70 yards from NYJ 35 to SF -5. K.Williams to SF 20 for 25 yards (N.Bellore).,0,0,2012 20120930_SF@NYJ,1,59,56,SF,NYJ,1,10,80,(14:56) A.Smith pass incomplete deep right to M.Crabtree. PENALTY on NYJ-K.Wilson Defensive Pass Interference 14 yards enforced at SF 20 - No Play.,0,0,2012 20120930_SF@NYJ,1,59,50,SF,NYJ,1,10,66,(14:50) F.Gore right end to SF 36 for 2 yards (D.Harris).,0,0,2012 20120930_SF@NYJ,1,59,15,SF,NYJ,2,8,64,(14:15) F.Gore right tackle to SF 39 for 3 yards (K.Wilson).,0,0,2012 20120930_SF@NYJ,1,58,35,SF,NYJ,3,5,61,(13:35) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,0,0,2012 20120930_SF@NYJ,1,58,32,SF,NYJ,4,5,61,(13:32) A.Lee punts 61 yards to end zone Center-B.Jennings Touchback. PENALTY on SF-C.Spillman Illegal Touch Kick 5 yards enforced at NYJ 20.,0,0,2012 20120930_SF@NYJ,1,58,21,NYJ,SF,1,10,75,(13:21) M.Sanchez pass short right to S.Holmes pushed ob at NYJ 36 for 11 yards (D.Whitner).,0,0,2012 20120930_SF@NYJ,1,57,54,NYJ,SF,1,10,64,(12:54) Direct snap to T.Tebow. T.Tebow up the middle to NYJ 38 for 2 yards (N.Bowman).,0,0,2012 20120930_SF@NYJ,1,57,14,NYJ,SF,2,8,62,(12:14) S.Greene right guard to NYJ 41 for 3 yards (J.Smith).,0,0,2012 20120930_SF@NYJ,1,56,35,NYJ,SF,3,5,59,(11:35) (Shotgun) M.Sanchez pass short left to J.Kerley to SF 49 for 10 yards. PENALTY on NYJ Offensive Holding 10 yards enforced at NYJ 41 - No Play.,0,0,2012 20120930_SF@NYJ,1,56,7,NYJ,SF,3,15,69,(11:07) (Shotgun) M.Sanchez pass short left to C.Schilens pushed ob at SF 47 for 22 yards (D.Goldson).,0,0,2012 20120930_SF@NYJ,1,55,40,NYJ,SF,1,10,47,(10:40) S.Greene right tackle to SF 42 for 5 yards (N.Bowman).,0,0,2012 20120930_SF@NYJ,1,55,5,NYJ,SF,2,5,42,(10:05) S.Greene up the middle to SF 40 for 2 yards (R.McDonald).,0,0,2012 20120930_SF@NYJ,1,54,23,NYJ,SF,3,3,40,(9:23) (Shotgun) M.Sanchez sacked at SF 45 for -5 yards (Ald.Smith).,0,0,2012 20120930_SF@NYJ,1,53,57,NYJ,SF,4,8,45,(8:57) R.Malone punts 37 yards to SF 8 Center-T.Purdum fair catch by T.Ginn.,0,0,2012 20120930_SF@NYJ,1,53,49,SF,NYJ,1,10,92,(8:49) F.Gore left tackle to SF 13 for 5 yards (Y.Bell; M.Devito).,0,0,2012 20120930_SF@NYJ,1,53,11,SF,NYJ,2,5,87,(8:11) F.Gore right tackle to SF 19 for 6 yards (S.Pouha).,0,0,2012 20120930_SF@NYJ,1,52,31,SF,NYJ,1,10,81,(7:31) Direct snap to C.Kaepernick. C.Kaepernick left tackle to SF 36 for 17 yards (Y.Bell).,0,0,2012 20120930_SF@NYJ,1,51,43,SF,NYJ,1,10,64,(6:43) F.Gore up the middle to SF 49 for 13 yards (Y.Bell). PENALTY on SF Offensive Holding 10 yards enforced at SF 36 - No Play.,0,0,2012 20120930_SF@NYJ,1,51,13,SF,NYJ,1,20,74,(6:13) A.Smith pass deep left to M.Manningham pushed ob at NYJ 48 for 26 yards (L.Landry).,0,0,2012 20120930_SF@NYJ,1,50,47,SF,NYJ,1,10,48,(5:47) #7 Kaepenick in at QB C.Kaepernick pass incomplete deep left to R.Moss (L.Landry).,0,0,2012 20120930_SF@NYJ,1,50,39,SF,NYJ,2,10,48,(5:39) F.Gore left end to NYJ 45 for 3 yards (B.Scott).,0,0,2012 20120930_SF@NYJ,1,49,56,SF,NYJ,3,7,45,(4:56) (Shotgun) A.Smith pass incomplete deep left to M.Manningham.,0,0,2012 20120930_SF@NYJ,1,49,52,SF,NYJ,4,7,45,(4:52) A.Lee punts 42 yards to NYJ 3 Center-B.Jennings downed by SF-C.Spillman.,0,0,2012 20120930_SF@NYJ,1,49,42,NYJ,SF,1,10,97,(4:42) S.Greene right guard to NYJ 4 for 1 yard (P.Willis).,0,0,2012 20120930_SF@NYJ,1,49,3,NYJ,SF,2,9,96,(4:03) S.Greene right end to NYJ 9 for 5 yards (P.Willis; D.Whitner).,0,0,2012 20120930_SF@NYJ,1,48,20,NYJ,SF,3,4,91,(3:20) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes.,0,0,2012 20120930_SF@NYJ,1,48,17,NYJ,SF,4,4,91,(3:17) R.Malone punts 54 yards to SF 37 Center-T.Purdum. T.Ginn to SF 46 for 9 yards (T.Purdum; R.Malone). PENALTY on SF-A.Dixon Illegal Block Above the Waist 10 yards enforced at SF 42.,0,0,2012 20120930_SF@NYJ,1,48,4,SF,NYJ,1,10,68,(3:04) A.Smith pass short middle to F.Gore to SF 37 for 5 yards (G.McIntyre).,0,0,2012 20120930_SF@NYJ,1,47,24,SF,NYJ,2,5,63,(2:24) (Shotgun) A.Smith scrambles right end ran ob at SF 46 for 9 yards.,0,0,2012 20120930_SF@NYJ,1,46,48,SF,NYJ,1,10,54,(1:48) F.Gore up the middle to 50 for 4 yards (K.Ellis).,0,0,2012 20120930_SF@NYJ,1,46,11,SF,NYJ,2,6,50,(1:11) M.Manningham right end to NYJ 22 for 28 yards (D.Harris). End around,0,0,2012 20120930_SF@NYJ,1,45,31,SF,NYJ,1,10,22,(:31) K.Hunter left end to NYJ 11 for 11 yards (L.Landry).,0,0,2012 20120930_SF@NYJ,2,45,0,SF,NYJ,1,10,11,(15:00) A.Smith pass incomplete short right to M.Crabtree [B.Scott].,0,0,2012 20120930_SF@NYJ,2,44,54,SF,NYJ,2,10,11,(14:54) (Shotgun) K.Williams right end to NYJ 2 for 9 yards (B.Scott).,0,0,2012 20120930_SF@NYJ,2,44,7,SF,NYJ,3,1,2,(14:07) PENALTY on SF-L.Davis False Start 5 yards enforced at NYJ 2 - No Play.,0,0,2012 20120930_SF@NYJ,2,43,43,SF,NYJ,3,6,7,(13:43) Direct snap to C.Kaepernick. C.Kaepernick left end for 7 yards TOUCHDOWN.,0,0,2012 20120930_SF@NYJ,2,43,43,SF,NYJ,,,7,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 20120930_SF@NYJ,2,43,43,SF,NYJ,,,7,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,7,0,2012 20120930_SF@NYJ,2,43,37,NYJ,SF,1,10,80,(13:37) M.Sanchez pass incomplete short right to J.Conner (P.Willis).,0,7,2012 20120930_SF@NYJ,2,43,28,NYJ,SF,2,10,80,(13:28) (Shotgun) M.Sanchez pass short right to C.Schilens to NYJ 29 for 9 yards (D.Whitner).,0,7,2012 20120930_SF@NYJ,2,42,48,NYJ,SF,3,1,71,(12:48) S.Greene up the middle to NYJ 30 for 1 yard (P.Willis; N.Bowman).,0,7,2012 20120930_SF@NYJ,2,42,5,NYJ,SF,1,10,70,(12:05) (Shotgun) M.Sanchez pass short left to S.Holmes pushed ob at NYJ 36 for 6 yards (C.Rogers).,0,7,2012 20120930_SF@NYJ,2,41,35,NYJ,SF,2,4,64,(11:35) B.Powell left tackle to NYJ 39 for 3 yards (Ald.Smith; P.Willis).,0,7,2012 20120930_SF@NYJ,2,40,51,NYJ,SF,3,1,61,(10:51) Direct snap to T.Tebow. T.Tebow pass short right to D.Epps to NYJ 48 for 9 yards (D.Goldson). FUMBLES (D.Goldson) RECOVERED by SF-C.Rogers at NYJ 48. C.Rogers to NYJ 47 for 1 yard (B.Powell). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,7,2012 20120930_SF@NYJ,2,40,39,SF,NYJ,1,10,47,(10:39) A.Smith pass short right to B.Miller to NYJ 38 for 9 yards (K.Wilson).,7,0,2012 20120930_SF@NYJ,2,39,51,SF,NYJ,2,1,38,(9:51) A.Smith pass short left to M.Manningham pushed ob at NYJ 29 for 9 yards (K.Wilson).,7,0,2012 20120930_SF@NYJ,2,39,17,SF,NYJ,1,10,29,(9:17) F.Gore left end to NYJ 28 for 1 yard (K.Wilson; D.Harris).,7,0,2012 20120930_SF@NYJ,2,38,37,SF,NYJ,2,9,28,(8:37) A.Smith sacked at NYJ 32 for -4 yards (B.Thomas).,7,0,2012 20120930_SF@NYJ,2,37,57,SF,NYJ,3,13,32,(7:57) (Shotgun) A.Smith sacked at NYJ 37 for -5 yards (C.Pace).,7,0,2012 20120930_SF@NYJ,2,37,28,SF,NYJ,4,18,37,(7:28) D.Akers 55 yard field goal is No Good Wide Right Center-B.Jennings Holder-A.Lee.,7,0,2012 20120930_SF@NYJ,2,37,22,NYJ,SF,1,10,55,(7:22) Direct snap to T.Tebow. S.Greene left guard to NYJ 49 for 4 yards (J.Smith).,0,7,2012 20120930_SF@NYJ,2,36,48,NYJ,SF,2,6,51,(6:48) S.Greene left guard to SF 46 for 5 yards (J.Smith; D.Whitner).,0,7,2012 20120930_SF@NYJ,2,36,12,NYJ,SF,3,1,46,(6:12) M.Sanchez sacked at NYJ 48 for -6 yards (A.Brooks).,0,7,2012 20120930_SF@NYJ,2,35,44,NYJ,SF,4,7,52,(5:44) R.Malone punts 41 yards to SF 11 Center-T.Purdum fair catch by T.Ginn.,0,7,2012 20120930_SF@NYJ,2,35,36,SF,NYJ,1,10,89,(5:36) F.Gore up the middle to SF 17 for 6 yards (Y.Bell; M.Devito).,7,0,2012 20120930_SF@NYJ,2,34,59,SF,NYJ,2,4,83,(4:59) F.Gore left guard to SF 23 for 6 yards (L.Landry; B.Scott).,7,0,2012 20120930_SF@NYJ,2,34,19,SF,NYJ,1,10,77,(4:19) (Shotgun) Direct snap to C.Kaepernick. F.Gore right tackle to SF 22 for -1 yards (Q.Coples).,7,0,2012 20120930_SF@NYJ,2,33,44,SF,NYJ,2,11,78,(3:44) (Shotgun) A.Smith pass short right to M.Crabtree to SF 25 for 3 yards (B.Scott).,7,0,2012 20120930_SF@NYJ,2,33,1,SF,NYJ,3,8,75,(3:01) (Shotgun) A.Smith pass incomplete deep left to M.Crabtree. PENALTY on SF-A.Davis Unnecessary Roughness 12 yards enforced at SF 25.,7,0,2012 20120930_SF@NYJ,2,32,57,SF,NYJ,4,20,87,(2:57) A.Lee punts 34 yards to SF 47 Center-B.Jennings out of bounds.,7,0,2012 20120930_SF@NYJ,2,32,49,NYJ,SF,1,10,47,(2:49) (Shotgun) M.Sanchez pass short middle to J.Kerley to SF 43 for 4 yards (P.Willis).,0,7,2012 20120930_SF@NYJ,2,32,49,NYJ,SF,2,6,43,(2:49) M.Sanchez pass incomplete short middle to S.Holmes (D.Goldson).,0,7,2012 20120930_SF@NYJ,2,32,1,NYJ,SF,3,6,43,(2:01) (Shotgun) M.Sanchez pass incomplete short middle to P.Turner. PENALTY on SF-Ald.Smith Unnecessary Roughness 15 yards enforced at SF 43.,0,7,2012 20120930_SF@NYJ,2,31,57,NYJ,SF,1,10,28,(1:57) B.Powell left guard to SF 25 for 3 yards (N.Bowman; P.Willis).,0,7,2012 20120930_SF@NYJ,2,31,26,NYJ,SF,2,7,25,(1:26) (Shotgun) M.Sanchez pass incomplete short left to J.Kerley (J.Smith).,0,7,2012 20120930_SF@NYJ,2,31,22,NYJ,SF,3,7,25,(1:22) (Shotgun) M.Sanchez sacked at SF 25 for 0 yards (Ald.Smith). FUMBLES (Ald.Smith) RECOVERED by SF-J.Smith at SF 26.,0,7,2012 20120930_SF@NYJ,2,31,11,SF,NYJ,1,10,74,(1:11) (Shotgun) A.Smith pass short left to V.Davis pushed ob at SF 49 for 23 yards (L.Landry).,7,0,2012 20120930_SF@NYJ,2,31,5,SF,NYJ,1,10,51,(1:05) (Shotgun) A.Smith pass short right to M.Crabtree to NYJ 45 for 6 yards (K.Wilson; D.Harris). PENALTY on NYJ-A.Cromartie Illegal Contact 5 yards enforced at SF 49 - No Play.,7,0,2012 20120930_SF@NYJ,2,30,59,SF,NYJ,1,10,46,(:59) (Shotgun) A.Smith pass short left to F.Gore to NYJ 38 for 8 yards (E.Lankster; M.Wilkerson).,7,0,2012 20120930_SF@NYJ,2,30,34,SF,NYJ,2,2,38,(:34) (No Huddle Shotgun) A.Smith pass short left to V.Davis pushed ob at NYJ 33 for 5 yards (E.Lankster).,7,0,2012 20120930_SF@NYJ,2,30,31,SF,NYJ,1,10,33,(:31) (Shotgun) A.Smith pass short right to M.Crabtree to NYJ 21 for 12 yards (D.Davis).,7,0,2012 20120930_SF@NYJ,2,30,23,SF,NYJ,1,10,21,(:23) (Shotgun) A.Smith left end to NYJ 18 for 3 yards (A.Maybin).,7,0,2012 20120930_SF@NYJ,2,30,2,SF,NYJ,2,7,18,(:02) D.Akers 36 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,7,0,2012 20120930_SF@NYJ,3,30,0,SF,NYJ,,,18,D.Akers kicks 73 yards from SF 35 to NYJ -8. J.McKnight to NYJ 21 for 29 yards (T.Gooden).,10,0,2012 20120930_SF@NYJ,3,29,55,NYJ,SF,1,10,79,(14:55) S.Greene left guard to NYJ 23 for 2 yards (P.Willis; N.Bowman).,0,10,2012 20120930_SF@NYJ,3,29,18,NYJ,SF,2,8,77,(14:18) (Shotgun) M.Sanchez pass short left to J.Cumberland to NYJ 32 for 9 yards (D.Whitner; P.Willis).,0,10,2012 20120930_SF@NYJ,3,28,52,NYJ,SF,1,10,68,(13:52) M.Sanchez pass short left to C.Schilens to NYJ 46 for 14 yards (C.Culliver).,0,10,2012 20120930_SF@NYJ,3,28,25,NYJ,SF,1,10,54,(13:25) M.Sanchez pass short right INTERCEPTED by P.Willis (R.McDonald) at NYJ 41. P.Willis to NYJ 41 for no gain (N.Mangold). Ball tipped by SF 91 - McDonald.,0,10,2012 20120930_SF@NYJ,3,28,19,SF,NYJ,1,10,41,(13:19) K.Hunter left tackle to NYJ 29 for 12 yards (L.Landry).,10,0,2012 20120930_SF@NYJ,3,27,40,SF,NYJ,1,10,29,(12:40) F.Gore right guard to NYJ 25 for 4 yards (S.Pouha).,10,0,2012 20120930_SF@NYJ,3,26,55,SF,NYJ,2,6,25,(11:55) F.Gore left end to NYJ 22 for 3 yards (M.Devito).,10,0,2012 20120930_SF@NYJ,3,26,22,SF,NYJ,3,3,22,(11:22) A.Smith pass incomplete short right to D.Walker.,10,0,2012 20120930_SF@NYJ,3,26,17,SF,NYJ,4,3,22,(11:17) D.Akers 40 yard field goal is No Good Wide Right Center-B.Jennings Holder-A.Lee.,10,0,2012 20120930_SF@NYJ,3,26,13,NYJ,SF,1,10,70,(11:13) S.Greene right tackle to NYJ 33 for 3 yards (A.Brooks; P.Willis).,0,10,2012 20120930_SF@NYJ,3,25,29,NYJ,SF,2,7,67,(10:29) (Shotgun) M.Sanchez pass incomplete deep middle to J.Cumberland (N.Bowman).,0,10,2012 20120930_SF@NYJ,3,25,23,NYJ,SF,3,7,67,(10:23) (Shotgun) M.Sanchez pass incomplete deep right to S.Holmes.,0,10,2012 20120930_SF@NYJ,3,25,19,NYJ,SF,4,7,67,(10:19) R.Malone punts 41 yards to SF 26 Center-T.Purdum. T.Ginn pushed ob at SF 40 for 14 yards (J.Mauga).,0,10,2012 20120930_SF@NYJ,3,25,11,SF,NYJ,1,10,60,(10:11) A.Smith pass incomplete short right to D.Walker.,10,0,2012 20120930_SF@NYJ,3,25,5,SF,NYJ,2,10,60,(10:05) A.Smith pass short right to D.Walker to SF 46 for 6 yards (K.Wilson; D.Harris).,10,0,2012 20120930_SF@NYJ,3,24,25,SF,NYJ,3,4,54,(9:25) (Shotgun) K.Hunter right tackle to NYJ 46 for 8 yards (L.Landry).,10,0,2012 20120930_SF@NYJ,3,23,50,SF,NYJ,1,10,46,(8:50) F.Gore to NYJ 48 for -2 yards (C.Pace; K.Ellis). FUMBLES (C.Pace) and recovers at NYJ 48.,10,0,2012 20120930_SF@NYJ,3,23,9,SF,NYJ,2,12,48,(8:09) F.Gore right guard to NYJ 49 for -1 yards (Q.Coples).,10,0,2012 20120930_SF@NYJ,3,22,31,SF,NYJ,3,13,49,(7:31) (Shotgun) A.Smith pass incomplete deep right to M.Manningham.,10,0,2012 20120930_SF@NYJ,3,22,19,SF,NYJ,4,13,49,(7:19) A.Lee punts 47 yards to NYJ 2 Center-B.Jennings downed by SF-T.Brock.,10,0,2012 20120930_SF@NYJ,3,22,13,NYJ,SF,1,10,98,(7:13) B.Powell left guard to NYJ 4 for 2 yards (J.Smith; N.Bowman).,0,10,2012 20120930_SF@NYJ,3,21,35,NYJ,SF,2,8,96,(6:35) M.Sanchez pass incomplete short middle to B.Powell.,0,10,2012 20120930_SF@NYJ,3,21,31,NYJ,SF,3,8,96,(6:31) (Shotgun) M.Sanchez pass incomplete short right to B.Powell.,0,10,2012 20120930_SF@NYJ,3,21,18,NYJ,SF,4,8,96,(6:18) R.Malone punts 45 yards to NYJ 49 Center-T.Purdum. T.Ginn to NYJ 48 for 1 yard (D.Davis).,0,10,2012 20120930_SF@NYJ,3,21,15,SF,NYJ,1,10,48,(6:15) A.Smith pass short right to M.Manningham to NYJ 36 for 12 yards (D.Harris).,10,0,2012 20120930_SF@NYJ,3,20,40,SF,NYJ,1,10,36,(5:40) A.Smith pass deep left to D.Walker to NYJ 11 for 25 yards (A.Cromartie).,10,0,2012 20120930_SF@NYJ,3,19,58,SF,NYJ,1,10,11,(4:58) B.Miller left guard to NYJ 6 for 5 yards (B.Scott).,10,0,2012 20120930_SF@NYJ,3,19,17,SF,NYJ,2,5,6,(4:17) F.Gore left guard to NYJ 2 for 4 yards (M.Wilkerson; G.McIntyre).,10,0,2012 20120930_SF@NYJ,3,18,38,SF,NYJ,3,1,2,(3:38) F.Gore left guard to NYJ 2 for no gain (M.Wilkerson; K.Ellis).,10,0,2012 20120930_SF@NYJ,3,17,55,SF,NYJ,4,1,2,(2:55) F.Gore left guard for 2 yards TOUCHDOWN.,10,0,2012 20120930_SF@NYJ,3,17,55,SF,NYJ,,,2,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,10,0,2012 20120930_SF@NYJ,3,17,55,SF,NYJ,,,2,D.Akers kicks 73 yards from SF 35 to NYJ -8. J.McKnight pushed ob at NYJ 36 for 44 yards (P.Cox).,17,0,2012 20120930_SF@NYJ,3,17,42,NYJ,SF,1,10,64,(2:42) S.Greene right guard to NYJ 39 for 3 yards (N.Bowman; R.McDonald).,0,17,2012 20120930_SF@NYJ,3,17,5,NYJ,SF,2,7,61,(2:05) (Shotgun) M.Sanchez pass short left to S.Holmes to NYJ 47 for 8 yards (C.Rogers; N.Bowman).,0,17,2012 20120930_SF@NYJ,3,16,26,NYJ,SF,1,10,53,(1:26) M.Sanchez pass incomplete deep middle to S.Holmes (D.Goldson).,0,17,2012 20120930_SF@NYJ,3,16,17,NYJ,SF,2,10,53,(1:17) (Shotgun) M.Sanchez pass short left to J.Cumberland to SF 47 for 6 yards (P.Willis).,0,17,2012 20120930_SF@NYJ,3,15,35,NYJ,SF,3,4,47,(:35) (Shotgun) M.Sanchez sacked at SF 47 for 0 yards (R.McDonald). PENALTY on SF-C.Rogers Illegal Use of Hands 5 yards enforced at SF 47 - No Play.,0,17,2012 20120930_SF@NYJ,3,15,4,NYJ,SF,1,10,42,(:04) (Shotgun) Direct snap to T.Tebow. T.Tebow left end to SF 44 for -2 yards (P.Willis).,0,17,2012 20120930_SF@NYJ,4,15,0,NYJ,SF,2,12,44,(15:00) M.Sanchez pass short right to S.Holmes to SF 40 for 4 yards. FUMBLES touched at SF 40 RECOVERED by SF-C.Rogers at SF 49. C.Rogers for 51 yards TOUCHDOWN. NYJ-S.Holmes was injured during the play. The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,17,2012 20120930_SF@NYJ,4,15,0,SF,NYJ,,,44,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,17,0,2012 20120930_SF@NYJ,4,15,0,SF,NYJ,,,44,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,18,0,2012 20120930_SF@NYJ,4,14,46,NYJ,SF,1,10,80,(14:46) M.Sanchez pass incomplete short middle to B.Powell.,0,18,2012 20120930_SF@NYJ,4,14,42,NYJ,SF,2,10,80,(14:42) (Shotgun) M.Sanchez pass short middle to J.Kerley to NYJ 28 for 8 yards (C.Rogers).,0,18,2012 20120930_SF@NYJ,4,13,59,NYJ,SF,3,2,72,(13:59) M.Sanchez pass short right to J.Cumberland to NYJ 25 for -3 yards (D.Goldson; D.Whitner).,0,18,2012 20120930_SF@NYJ,4,13,28,NYJ,SF,4,5,75,(13:28) R.Malone punts 43 yards to SF 32 Center-T.Purdum fair catch by T.Ginn.,0,18,2012 20120930_SF@NYJ,4,13,21,SF,NYJ,1,10,68,(13:21) K.Hunter left end pushed ob at SF 45 for 13 yards (A.Cromartie).,18,0,2012 20120930_SF@NYJ,4,12,50,SF,NYJ,1,10,55,(12:50) F.Gore right tackle to SF 47 for 2 yards (D.Harris; C.Pace).,18,0,2012 20120930_SF@NYJ,4,12,9,SF,NYJ,2,8,53,(12:09) F.Gore left guard to NYJ 42 for 11 yards (Y.Bell).,18,0,2012 20120930_SF@NYJ,4,11,23,SF,NYJ,1,10,42,(11:23) F.Gore right tackle to NYJ 40 for 2 yards (K.Ellis; C.Pace).,18,0,2012 20120930_SF@NYJ,4,10,39,SF,NYJ,2,8,40,(10:39) (Shotgun) T.Ginn left end pushed ob at NYJ 33 for 7 yards (A.Cromartie). End around.,18,0,2012 20120930_SF@NYJ,4,10,14,SF,NYJ,3,1,33,(10:14) F.Gore right tackle to NYJ 31 for 2 yards (D.Harris).,18,0,2012 20120930_SF@NYJ,4,9,26,SF,NYJ,1,10,31,(9:26) K.Hunter left end to NYJ 22 for 9 yards (D.Harris).,18,0,2012 20120930_SF@NYJ,4,8,36,SF,NYJ,2,1,22,(8:36) A.Smith pass incomplete deep right to M.Crabtree (A.Cromartie).,18,0,2012 20120930_SF@NYJ,4,8,31,SF,NYJ,3,1,22,(8:31) A.Smith pass incomplete short right to M.Crabtree (A.Cromartie).,18,0,2012 20120930_SF@NYJ,4,8,27,SF,NYJ,4,1,22,(8:27) D.Akers 40 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,18,0,2012 20120930_SF@NYJ,4,8,27,SF,NYJ,,,22,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,21,0,2012 20120930_SF@NYJ,4,8,23,NYJ,SF,1,10,80,(8:23) (Shotgun) M.Sanchez sacked at NYJ 14 for -6 yards (Ald.Smith). PENALTY on SF-T.Brown Defensive Holding 5 yards enforced at NYJ 20 - No Play.,0,21,2012 20120930_SF@NYJ,4,7,58,NYJ,SF,1,10,75,(7:58) (Shotgun) M.Sanchez pass incomplete short right to P.Turner.,0,21,2012 20120930_SF@NYJ,4,7,54,NYJ,SF,2,10,75,(7:54) (Shotgun) M.Sanchez pass incomplete short right to P.Turner.,0,21,2012 20120930_SF@NYJ,4,7,49,NYJ,SF,3,10,75,(7:49) (Shotgun) M.Sanchez pass incomplete short left to P.Turner.,0,21,2012 20120930_SF@NYJ,4,7,43,NYJ,SF,4,10,75,(7:43) R.Malone punt is BLOCKED by L.Grant Center-T.Purdum ball out of bounds at NYJ 4.,0,21,2012 20120930_SF@NYJ,4,7,35,SF,NYJ,1,4,4,(7:35) K.Hunter left tackle to NYJ 2 for 2 yards (D.Harris).,21,0,2012 20120930_SF@NYJ,4,6,52,SF,NYJ,2,2,2,(6:52) K.Hunter left guard to NYJ 2 for no gain (S.Pouha).,21,0,2012 20120930_SF@NYJ,4,6,52,SF,NYJ,3,2,2,(6:52) A.Smith pass incomplete short right. PENALTY on NYJ-B.Scott Defensive Holding 1 yard enforced at NYJ 2 - No Play.,21,0,2012 20120930_SF@NYJ,4,6,6,SF,NYJ,1,1,1,(6:06) K.Hunter left guard for 1 yard TOUCHDOWN.,21,0,2012 20120930_SF@NYJ,4,6,6,SF,NYJ,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,21,0,2012 20120930_SF@NYJ,4,6,6,SF,NYJ,,,1,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,28,0,2012 20120930_SF@NYJ,4,6,3,NYJ,SF,1,10,80,(6:03) SF 7 - Kaepernick in at QB. (Shotgun) B.Powell up the middle to NYJ 23 for 3 yards (T.Gooden).,0,28,2012 20120930_SF@NYJ,4,5,23,NYJ,SF,2,7,77,(5:23) (Shotgun) M.Sanchez pass incomplete short right to P.Turner.,0,28,2012 20120930_SF@NYJ,4,5,19,NYJ,SF,3,7,77,(5:19) (Shotgun) M.Sanchez pass short left to J.Cumberland to NYJ 28 for 5 yards (C.Spillman).,0,28,2012 20120930_SF@NYJ,4,4,43,NYJ,SF,4,2,72,(4:43) R.Malone punts 42 yards to SF 30 Center-T.Purdum. T.Ginn to 50 for 20 yards (E.Lankster). FUMBLES (E.Lankster) recovered by SF-A.Dixon at NYJ 49. A.Dixon to NYJ 49 for no gain (T.Tebow).,0,28,2012 20120930_SF@NYJ,4,4,28,SF,NYJ,1,10,49,(4:28) A.Dixon right tackle to NYJ 42 for 7 yards (Y.Bell).,28,0,2012 20120930_SF@NYJ,4,3,46,SF,NYJ,2,3,42,(3:46) A.Dixon left guard to NYJ 39 for 3 yards (D.Harris).,28,0,2012 20120930_SF@NYJ,4,3,6,SF,NYJ,1,10,39,(3:06) A.Dixon right guard to NYJ 36 for 3 yards (L.Landry).,28,0,2012 20120930_SF@NYJ,4,2,25,SF,NYJ,2,7,36,(2:25) A.Dixon left end to NYJ 33 for 3 yards (D.Harris).,28,0,2012 20120930_SF@NYJ,4,2,0,SF,NYJ,3,4,33,(2:00) C.Kaepernick right end to NYJ 3 for 30 yards.,28,0,2012 20120930_SF@NYJ,4,1,12,SF,NYJ,1,3,3,(1:12) C.Kaepernick kneels to NYJ 5 for -2 yards.,28,0,2012 20120930_SF@NYJ,4,1,12,SF,NYJ,2,5,5,(1:12) C.Kaepernick kneels to NYJ 7 for -2 yards.,28,0,2012 20120930_SF@NYJ,4,1,12,SF,NYJ,,,5,                      ,28,0,2012 20120930_SEA@STL,1,1,0,STL,SEA,,,5,G.Zuerlein kicks 73 yards from SL 35 to SEA -8. L.Washington Touchback.,0,0,2012 20120930_SEA@STL,1,60,0,SEA,STL,1,10,80,(15:00) R.Wilson pass short right to S.Rice to SEA 37 for 17 yards (C.Finnegan).,0,0,2012 20120930_SEA@STL,1,59,23,SEA,STL,1,10,63,(14:23) R.Wilson scrambles right end to SEA 45 for 8 yards (R.McIntosh).,0,0,2012 20120930_SEA@STL,1,59,4,SEA,STL,2,2,55,(14:04) M.Lynch left tackle to SEA 49 for 4 yards (J.Laurinaitis).,0,0,2012 20120930_SEA@STL,1,58,29,SEA,STL,1,10,51,(13:29) M.Lynch left tackle to SL 48 for 3 yards (W.Hayes).,0,0,2012 20120930_SEA@STL,1,57,50,SEA,STL,2,7,48,(12:50) R.Wilson pass deep right to S.Rice to SL 32 for 16 yards (Q.Mikell).,0,0,2012 20120930_SEA@STL,1,57,10,SEA,STL,1,10,32,(12:10) (Shotgun) M.Lynch up the middle to SL 25 for 7 yards (J.Dunbar).,0,0,2012 20120930_SEA@STL,1,56,26,SEA,STL,2,3,25,(11:26) R.Wilson pass short right to G.Tate to SL 18 for 7 yards (C.Finnegan).,0,0,2012 20120930_SEA@STL,1,55,52,SEA,STL,1,10,18,(10:52) M.Lynch left tackle for 18 yards TOUCHDOWN. Penalty on SL-K.Langford Defensive Offside declined.,0,0,2012 20120930_SEA@STL,1,55,52,SEA,STL,,,18,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 20120930_SEA@STL,1,55,52,SEA,STL,,,18,S.Hauschka kicks 74 yards from SEA 35 to SL -9. C.Givens Touchback.,7,0,2012 20120930_SEA@STL,1,55,45,STL,SEA,1,10,80,(10:45) S.Jackson up the middle to SL 21 for 1 yard (K.Wright).,0,7,2012 20120930_SEA@STL,1,55,6,STL,SEA,2,9,79,(10:06) S.Jackson left tackle to SL 22 for 1 yard (B.Mebane).,0,7,2012 20120930_SEA@STL,1,54,21,STL,SEA,3,8,78,(9:21) (Shotgun) PENALTY on SL-W.Hunter False Start 5 yards enforced at SL 22 - No Play.,0,7,2012 20120930_SEA@STL,1,54,8,STL,SEA,3,13,83,(9:08) S.Bradford pass short right to B.Gibson to SL 31 for 14 yards (K.Chancellor). Pass tipped by 99 - A. Branch,0,7,2012 20120930_SEA@STL,1,53,33,STL,SEA,1,10,69,(8:33) S.Bradford pass incomplete short right to B.Quick.,0,7,2012 20120930_SEA@STL,1,53,26,STL,SEA,2,10,69,(8:26) S.Bradford pass short middle to B.Gibson to SL 45 for 14 yards (R.Turbin).,0,7,2012 20120930_SEA@STL,1,52,51,STL,SEA,1,10,55,(7:51) S.Jackson right tackle to SEA 32 for 23 yards (E.Thomas).,0,7,2012 20120930_SEA@STL,1,52,6,STL,SEA,1,10,32,(7:06) S.Bradford pass short left to L.Kendricks to SEA 36 for -4 yards (K.Wright).,0,7,2012 20120930_SEA@STL,1,51,20,STL,SEA,2,14,36,(6:20) (Shotgun) S.Bradford sacked at SEA 44 for -8 yards (J.Jones).,0,7,2012 20120930_SEA@STL,1,50,48,STL,SEA,3,22,44,(5:48) S.Jackson up the middle to SEA 40 for 4 yards (M.Smith).,0,7,2012 20120930_SEA@STL,1,50,3,STL,SEA,4,18,40,(5:03) G.Zuerlein 58 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,7,2012 20120930_SEA@STL,1,50,3,STL,SEA,,,40,G.Zuerlein kicks 68 yards from SL 35 to SEA -3. L.Washington Touchback.,3,7,2012 20120930_SEA@STL,1,49,59,SEA,STL,1,10,80,(4:59) M.Lynch up the middle to SEA 22 for 2 yards (R.Quinn).,7,3,2012 20120930_SEA@STL,1,49,23,SEA,STL,2,8,78,(4:23) (Shotgun) R.Wilson pass short middle to Z.Miller to SEA 31 for 9 yards (R.McIntosh; J.Laurinaitis). SEA-J.Carpenter was injured during the play.,7,3,2012 20120930_SEA@STL,1,48,47,SEA,STL,1,10,69,(3:47) R.Wilson pass short right to R.Turbin pushed ob at SEA 37 for 6 yards (R.McIntosh).,7,3,2012 20120930_SEA@STL,1,48,22,SEA,STL,2,4,63,(3:22) M.Lynch right guard to SEA 40 for 3 yards (R.McIntosh). SL-M.Brockers was injured during the play.,7,3,2012 20120930_SEA@STL,1,47,52,SEA,STL,3,1,60,(2:52) M.Lynch left end to SEA 38 for -2 yards (J.Jenkins).,7,3,2012 20120930_SEA@STL,1,47,9,SEA,STL,4,3,62,(2:09) J.Ryan punts 62 yards to end zone Center-C.Gresham Touchback. PENALTY on SL-T.Johnson Offensive Holding 10 yards enforced at SL 20.,7,3,2012 20120930_SEA@STL,1,46,59,STL,SEA,1,10,90,(1:59) S.Jackson right end to SL 14 for 4 yards (B.Wagner).,3,7,2012 20120930_SEA@STL,1,46,18,STL,SEA,2,6,86,(1:18) S.Bradford pass short left to D.Amendola to SL 20 for 6 yards (K.Chancellor).,3,7,2012 20120930_SEA@STL,1,45,32,STL,SEA,1,10,80,(:32) S.Bradford pass deep right to C.Givens to SEA 28 for 52 yards (E.Thomas).,3,7,2012 20120930_SEA@STL,2,45,0,STL,SEA,1,10,28,(15:00) S.Jackson right guard to SEA 28 for no gain (B.Mebane).,3,7,2012 20120930_SEA@STL,2,44,16,STL,SEA,2,10,28,(14:16) (Shotgun) S.Bradford pass short right intended for B.Gibson INTERCEPTED by R.Sherman at SEA 13. R.Sherman pushed ob at SEA 42 for 29 yards (H.Dahl). PENALTY on SEA-C.Clemons Personal Foul 15 yards enforced at SEA 42.,3,7,2012 20120930_SEA@STL,2,44,6,SEA,STL,1,10,73,(14:06) (Shotgun) R.Wilson pass short right to Z.Miller to SEA 37 for 10 yards (K.Langford). PENALTY on SEA-B.Giacomini Personal Foul 15 yards enforced at SEA 37.,7,3,2012 20120930_SEA@STL,2,43,34,SEA,STL,2,15,78,(13:34) (Shotgun) R.Wilson pass short middle to Z.Miller to SEA 35 for 13 yards (R.McIntosh).,7,3,2012 20120930_SEA@STL,2,43,4,SEA,STL,3,2,65,(13:04) (Shotgun) R.Wilson pass incomplete short middle to G.Tate [R.Quinn].,7,3,2012 20120930_SEA@STL,2,42,53,SEA,STL,4,2,65,(12:53) J.Ryan punts 62 yards to SL 3 Center-C.Gresham. D.Amendola to SL 21 for 18 yards (J.Lane).,7,3,2012 20120930_SEA@STL,2,42,40,STL,SEA,1,10,79,(12:40) S.Bradford pass short right to D.Amendola pushed ob at SL 27 for 6 yards (R.Sherman).,3,7,2012 20120930_SEA@STL,2,42,8,STL,SEA,2,4,73,(12:08) D.Richardson left end to SL 29 for 2 yards (K.Wright).,3,7,2012 20120930_SEA@STL,2,41,25,STL,SEA,3,2,71,(11:25) (Shotgun) S.Bradford pass incomplete short right to D.Amendola.,3,7,2012 20120930_SEA@STL,2,41,21,STL,SEA,4,2,71,(11:21) J.Hekker punts 47 yards to SEA 24 Center-J.McQuaide. L.Washington to SEA 21 for -3 yards (R.McLeod).,3,7,2012 20120930_SEA@STL,2,41,13,SEA,STL,1,10,79,(11:13) M.Lynch left tackle to SEA 30 for 9 yards (J.Laurinaitis).,7,3,2012 20120930_SEA@STL,2,40,34,SEA,STL,2,1,70,(10:34) M.Lynch right tackle to SEA 33 for 3 yards (C.Long).,7,3,2012 20120930_SEA@STL,2,39,54,SEA,STL,1,10,67,(9:54) R.Wilson scrambles right end to SEA 34 for 1 yard (W.Hayes).,7,3,2012 20120930_SEA@STL,2,39,9,SEA,STL,2,9,66,(9:09) M.Lynch left end to SEA 49 for 15 yards (J.Laurinaitis).,7,3,2012 20120930_SEA@STL,2,38,41,SEA,STL,1,10,51,(8:41) R.Wilson up the middle to SEA 44 for -5 yards (K.Heard).,7,3,2012 20120930_SEA@STL,2,38,11,SEA,STL,2,15,56,(8:11) (Shotgun) R.Wilson pass short right to R.Turbin to SL 49 for 7 yards (J.Dunbar).,7,3,2012 20120930_SEA@STL,2,37,35,SEA,STL,3,8,49,(7:35) (Shotgun) R.Wilson pass short left intended for D.Baldwin INTERCEPTED by T.Johnson at SL 44. T.Johnson to SL 48 for 4 yards (D.Baldwin).,7,3,2012 20120930_SEA@STL,2,37,23,STL,SEA,1,10,52,(7:23) S.Jackson up the middle to SEA 43 for 9 yards (B.Wagner).,3,7,2012 20120930_SEA@STL,2,36,40,STL,SEA,2,1,43,(6:40) D.Richardson right guard to SEA 42 for 1 yard (B.Wagner).,3,7,2012 20120930_SEA@STL,2,35,58,STL,SEA,1,10,42,(5:58) S.Bradford pass incomplete short right to B.Miller (A.Branch).,3,7,2012 20120930_SEA@STL,2,35,50,STL,SEA,2,10,42,(5:50) S.Bradford sacked at SEA 46 for -4 yards (A.Branch).,3,7,2012 20120930_SEA@STL,2,35,10,STL,SEA,3,14,46,(5:10) (Shotgun) S.Bradford pass short right to A.Pettis to SEA 29 for 17 yards (R.Sherman).,3,7,2012 20120930_SEA@STL,2,34,32,STL,SEA,1,10,29,(4:32) S.Jackson right tackle to SEA 24 for 5 yards (B.Wagner).,3,7,2012 20120930_SEA@STL,2,33,50,STL,SEA,2,5,24,(3:50) (Shotgun) S.Bradford pass short middle to A.Pettis to SEA 15 for 9 yards (B.Wagner). PENALTY on SL-B.Gibson Illegal Formation 5 yards enforced at SEA 24 - No Play.,3,7,2012 20120930_SEA@STL,2,33,21,STL,SEA,2,10,29,(3:21) S.Bradford pass incomplete short right to D.Richardson (C.McDonald).,3,7,2012 20120930_SEA@STL,2,33,16,STL,SEA,3,10,29,(3:16) (Shotgun) S.Bradford pass deep middle to B.Quick to SEA 10 for 19 yards (R.Sherman).,3,7,2012 20120930_SEA@STL,2,32,33,STL,SEA,1,10,10,(2:33) S.Jackson right end to SEA 3 for 7 yards (K.Wright).,3,7,2012 20120930_SEA@STL,2,32,0,STL,SEA,2,3,3,(2:00) S.Jackson right tackle for 3 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on SL-R.Turner Offensive Holding 10 yards enforced at SEA 3 - No Play.,3,7,2012 20120930_SEA@STL,2,31,56,STL,SEA,2,13,13,(1:56) (Shotgun) S.Bradford pass short left to D.Amendola to SEA 2 for 11 yards (K.Wright).,3,7,2012 20120930_SEA@STL,2,31,20,STL,SEA,3,2,2,(1:20) S.Bradford pass incomplete short right to D.Amendola.,3,7,2012 20120930_SEA@STL,2,31,16,STL,SEA,4,2,2,(1:16) (Field Goal formation) J.Hekker pass short right to D.Amendola for 2 yards TOUCHDOWN.,3,7,2012 20120930_SEA@STL,2,31,16,STL,SEA,,,2,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,3,7,2012 20120930_SEA@STL,2,31,16,STL,SEA,,,2,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,10,7,2012 20120930_SEA@STL,2,31,11,SEA,STL,1,10,80,(1:11) (Shotgun) L.Washington up the middle to SEA 22 for 2 yards (C.Finnegan).,7,10,2012 20120930_SEA@STL,2,30,53,SEA,STL,2,8,78,(:53) (No Huddle Shotgun) R.Wilson pass incomplete short right to S.Rice.,7,10,2012 20120930_SEA@STL,2,30,49,SEA,STL,3,8,78,(:49) (Shotgun) PENALTY on SL-R.Quinn Defensive Offside 5 yards enforced at SEA 22 - No Play.,7,10,2012 20120930_SEA@STL,2,30,49,SEA,STL,3,3,73,(:49) (Shotgun) R.Wilson sacked at SEA 15 for -12 yards (E.Sims).,7,10,2012 20120930_SEA@STL,2,30,40,SEA,STL,4,15,85,(:40) J.Ryan punts 31 yards to SEA 46 Center-C.Gresham out of bounds.,7,10,2012 20120930_SEA@STL,2,30,34,STL,SEA,1,10,46,(:34) S.Bradford pass short middle to D.Richardson to SEA 35 for 11 yards (M.Smith).,10,7,2012 20120930_SEA@STL,2,30,18,STL,SEA,1,10,35,(:18) S.Bradford spiked the ball to stop the clock.,10,7,2012 20120930_SEA@STL,2,30,18,STL,SEA,2,10,35,(:18) (Shotgun) D.Richardson up the middle to SEA 30 for 5 yards (C.Clemons).,10,7,2012 20120930_SEA@STL,2,30,3,STL,SEA,3,5,30,(:03) G.Zuerlein 48 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,10,7,2012 20120930_SEA@STL,3,30,0,SEA,STL,,,30,S.Hauschka kicks onside 13 yards from SEA 35 to SEA 48. J.Hull (didn't try to advance) to SEA 48 for no gain.,7,13,2012 20120930_SEA@STL,3,29,58,STL,SEA,1,10,48,(14:58) D.Amendola left end to SEA 42 for 6 yards (C.Maragos).,13,7,2012 20120930_SEA@STL,3,29,28,STL,SEA,2,4,42,(14:28) S.Jackson right tackle to SEA 42 for no gain (B.Mebane).,13,7,2012 20120930_SEA@STL,3,29,1,STL,SEA,3,4,42,(14:01) (Shotgun) S.Bradford pass incomplete short right to B.Quick (R.Sherman).,13,7,2012 20120930_SEA@STL,3,28,51,STL,SEA,4,4,42,(13:51) G.Zuerlein 60 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,13,7,2012 20120930_SEA@STL,3,28,51,STL,SEA,,,42,G.Zuerlein kicks 70 yards from SL 35 to SEA -5. L.Washington pushed ob at SL 36 for 69 yards (T.Johnson).,16,7,2012 20120930_SEA@STL,3,28,35,SEA,STL,1,10,36,(13:35) M.Lynch left tackle to SL 34 for 2 yards (C.Long).,7,16,2012 20120930_SEA@STL,3,27,57,SEA,STL,2,8,34,(12:57) R.Wilson pass short right intended for S.Rice INTERCEPTED by R.McIntosh at SL 19. R.McIntosh to SEA 47 for 34 yards (A.McCoy). J. Jenkins hit quaterback's arm,7,16,2012 20120930_SEA@STL,3,27,43,STL,SEA,1,10,47,(12:43) (Shotgun) S.Bradford pass incomplete short right to B.Gibson.,16,7,2012 20120930_SEA@STL,3,27,38,STL,SEA,2,10,47,(12:38) S.Jackson right end to SL 48 for -5 yards (B.Wagner).,16,7,2012 20120930_SEA@STL,3,26,58,STL,SEA,3,15,52,(11:58) (Shotgun) PENALTY on SEA-J.Jones Neutral Zone Infraction 5 yards enforced at SL 48 - No Play.,16,7,2012 20120930_SEA@STL,3,26,41,STL,SEA,3,10,47,(11:41) (Shotgun) S.Bradford pass incomplete deep left to C.Givens.,16,7,2012 20120930_SEA@STL,3,26,33,STL,SEA,4,10,47,(11:33) J.Hekker punts 34 yards to SEA 13 Center-J.McQuaide fair catch by L.Washington.,16,7,2012 20120930_SEA@STL,3,26,25,SEA,STL,1,10,87,(11:25) R.Wilson pass short right to M.Lynch to SEA 18 for 5 yards (J.Laurinaitis).,7,16,2012 20120930_SEA@STL,3,25,45,SEA,STL,2,5,82,(10:45) R.Wilson pass short middle to M.Lynch to SEA 34 for 16 yards (J.Dunbar).,7,16,2012 20120930_SEA@STL,3,25,1,SEA,STL,1,10,66,(10:01) R.Turbin left tackle to SEA 43 for 9 yards (C.Dahl; M.Haggan).,7,16,2012 20120930_SEA@STL,3,24,25,SEA,STL,2,1,57,(9:25) R.Turbin up the middle to SEA 45 for 2 yards (J.Laurinaitis).,7,16,2012 20120930_SEA@STL,3,23,47,SEA,STL,1,10,55,(8:47) (Shotgun) R.Turbin right tackle to SL 44 for 11 yards (C.Finnegan).,7,16,2012 20120930_SEA@STL,3,23,5,SEA,STL,1,10,44,(8:05) R.Wilson pass short left to A.McCoy ran ob at SL 29 for 15 yards (J.Jenkins).,7,16,2012 20120930_SEA@STL,3,22,46,SEA,STL,1,10,29,(7:46) M.Lynch left tackle to SL 20 for 9 yards (Q.Mikell).,7,16,2012 20120930_SEA@STL,3,22,8,SEA,STL,2,1,20,(7:08) PENALTY on SEA-B.Giacomini False Start 5 yards enforced at SL 20 - No Play.,7,16,2012 20120930_SEA@STL,3,21,56,SEA,STL,2,6,25,(6:56) R.Wilson pass short right to S.Rice to SL 20 for 5 yards (C.Finnegan).,7,16,2012 20120930_SEA@STL,3,21,22,SEA,STL,3,1,20,(6:22) R.Wilson up the middle to SL 18 for 2 yards (J.Dunbar).,7,16,2012 20120930_SEA@STL,3,20,46,SEA,STL,1,10,18,(5:46) M.Lynch right end to SL 16 for 2 yards (C.Finnegan).,7,16,2012 20120930_SEA@STL,3,20,0,SEA,STL,2,8,16,(5:00) (Shotgun) R.Wilson scrambles left end to SL 12 for 4 yards (M.Haggan).,7,16,2012 20120930_SEA@STL,3,19,23,SEA,STL,3,4,12,(4:23) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,7,16,2012 20120930_SEA@STL,3,19,14,SEA,STL,4,4,12,(4:14) S.Hauschka 31 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,7,16,2012 20120930_SEA@STL,3,19,14,SEA,STL,,,12,S.Hauschka kicks 70 yards from SEA 35 to SL -5. D.Amendola to SL 7 for 12 yards. Lateral to C.Givens to SL 5 for -2 yards (H.Farwell).,10,16,2012 20120930_SEA@STL,3,19,4,STL,SEA,1,10,95,(4:04) D.Richardson right tackle to SL 7 for 2 yards (L.Hill).,16,10,2012 20120930_SEA@STL,3,18,27,STL,SEA,2,8,93,(3:27) D.Richardson up the middle to SL 5 for -2 yards (B.Wagner).,16,10,2012 20120930_SEA@STL,3,17,35,STL,SEA,3,10,95,(2:35) (Shotgun) PENALTY on SL-S.Bradford Delay of Game 2 yards enforced at SL 5 - No Play.,16,10,2012 20120930_SEA@STL,3,17,19,STL,SEA,3,12,97,(2:19) D.Richardson left tackle to SL 11 for 8 yards (K.Chancellor). Penalty on SL-R.Turner Offensive Holding declined.,16,10,2012 20120930_SEA@STL,3,16,59,STL,SEA,4,4,89,(1:59) J.Hekker punts 48 yards to SEA 41 Center-J.McQuaide. L.Washington to SEA 45 for 4 yards (R.McIntosh).,16,10,2012 20120930_SEA@STL,3,16,48,SEA,STL,1,10,55,(1:48) M.Lynch left end pushed ob at SL 48 for 7 yards (C.Dahl).,10,16,2012 20120930_SEA@STL,3,16,19,SEA,STL,2,3,48,(1:19) R.Wilson pass short right to M.Lynch to SL 40 for 8 yards (Q.Mikell).,10,16,2012 20120930_SEA@STL,3,15,41,SEA,STL,1,10,40,(:41) R.Turbin right guard to SL 31 for 9 yards (J.Laurinaitis).,10,16,2012 20120930_SEA@STL,3,15,6,SEA,STL,2,1,31,(:06) R.Turbin left tackle to SL 18 for 13 yards (C.Dahl).,10,16,2012 20120930_SEA@STL,4,15,0,SEA,STL,1,10,18,(15:00) M.Lynch left tackle to SL 13 for 5 yards (J.Jenkins; C.Dahl).,10,16,2012 20120930_SEA@STL,4,14,24,SEA,STL,2,5,13,(14:24) M.Lynch left tackle to SL 10 for 3 yards (R.Quinn).,10,16,2012 20120930_SEA@STL,4,13,46,SEA,STL,3,2,10,(13:46) (Shotgun) R.Wilson right tackle to SL 12 for -2 yards (W.Hayes).,10,16,2012 20120930_SEA@STL,4,13,8,SEA,STL,4,4,12,(13:08) S.Hauschka 30 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,16,2012 20120930_SEA@STL,4,13,8,SEA,STL,,,12,S.Hauschka kicks 74 yards from SEA 35 to SL -9. C.Givens Touchback.,13,16,2012 20120930_SEA@STL,4,13,3,STL,SEA,1,10,80,(13:03) S.Bradford pass short right to D.Amendola to SL 35 for 15 yards (M.Trufant).,16,13,2012 20120930_SEA@STL,4,12,29,STL,SEA,1,10,65,(12:29) S.Bradford pass incomplete short right to C.Givens.,16,13,2012 20120930_SEA@STL,4,12,22,STL,SEA,2,10,65,(12:22) (Shotgun) S.Bradford pass incomplete short right to D.Amendola.,16,13,2012 20120930_SEA@STL,4,12,19,STL,SEA,3,10,65,(12:19) (Shotgun) S.Bradford pass short right to D.Amendola to 50 for 15 yards (E.Thomas).,16,13,2012 20120930_SEA@STL,4,11,42,STL,SEA,1,10,50,(11:42) S.Jackson up the middle to SEA 45 for 5 yards (R.Bryant).,16,13,2012 20120930_SEA@STL,4,10,56,STL,SEA,2,5,45,(10:56) S.Bradford pass short right to A.Pettis to SEA 40 for 5 yards (K.Chancellor).,16,13,2012 20120930_SEA@STL,4,10,18,STL,SEA,1,10,40,(10:18) S.Jackson right guard to SEA 45 for -5 yards (B.Mebane).,16,13,2012 20120930_SEA@STL,4,9,32,STL,SEA,2,15,45,(9:32) (Shotgun) S.Bradford pass short right to D.Richardson to SEA 43 for 2 yards (M.Morgan). Penalty on SL Illegal Shift declined.,16,13,2012 20120930_SEA@STL,4,9,9,STL,SEA,3,13,43,(9:09) (Shotgun) S.Bradford pass deep right to L.Kendricks to SEA 17 for 26 yards (E.Thomas). Penalty on SEA-C.McDonald Illegal Use of Hands declined.,16,13,2012 20120930_SEA@STL,4,8,37,STL,SEA,1,10,17,(8:37) S.Jackson up the middle to SEA 19 for -2 yards (B.Mebane).,16,13,2012 20120930_SEA@STL,4,7,56,STL,SEA,2,12,19,(7:56) (Shotgun) S.Bradford pass short left to S.Jackson to SEA 7 for 12 yards (M.Morgan).,16,13,2012 20120930_SEA@STL,4,7,10,STL,SEA,1,7,7,(7:10) S.Jackson right tackle to SEA 6 for 1 yard (C.McDonald).,16,13,2012 20120930_SEA@STL,4,6,24,STL,SEA,2,6,6,(6:24) (Shotgun) S.Bradford pass incomplete short right to D.Amendola [E.Thomas].,16,13,2012 20120930_SEA@STL,4,6,16,STL,SEA,3,6,6,(6:16) (Shotgun) S.Bradford pass incomplete short left to S.Jackson.,16,13,2012 20120930_SEA@STL,4,6,10,STL,SEA,4,6,6,(6:10) G.Zuerlein 24 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,16,13,2012 20120930_SEA@STL,4,6,10,STL,SEA,,,6,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,19,13,2012 20120930_SEA@STL,4,6,7,SEA,STL,1,10,80,(6:07) M.Lynch left tackle to SEA 29 for 9 yards (K.Langford).,13,19,2012 20120930_SEA@STL,4,5,32,SEA,STL,2,1,71,(5:32) M.Lynch left tackle to SEA 35 for 6 yards (J.Laurinaitis). PENALTY on SEA-B.Giacomini Personal Foul 15 yards enforced between downs.,13,19,2012 20120930_SEA@STL,4,5,11,SEA,STL,1,10,80,(5:11) R.Turbin left guard to SEA 21 for 1 yard (W.Hayes).,13,19,2012 20120930_SEA@STL,4,4,27,SEA,STL,2,9,79,(4:27) R.Wilson pass incomplete deep left to G.Tate (J.Jenkins).,13,19,2012 20120930_SEA@STL,4,4,20,SEA,STL,3,9,79,(4:20) (Shotgun) R.Wilson sacked at SEA 13 for -8 yards (R.Quinn).,13,19,2012 20120930_SEA@STL,4,3,49,SEA,STL,4,17,87,(3:49) J.Ryan punts 41 yards to SL 46 Center-C.Gresham out of bounds.,13,19,2012 20120930_SEA@STL,4,3,35,STL,SEA,1,10,54,(3:35) S.Jackson right tackle to SL 45 for -1 yards (B.Wagner).,19,13,2012 20120930_SEA@STL,4,3,29,STL,SEA,2,11,55,(3:29) S.Jackson up the middle to SEA 45 for 10 yards (J.Lane).,19,13,2012 20120930_SEA@STL,4,3,22,STL,SEA,3,1,45,(3:22) S.Jackson right tackle to SEA 47 for -2 yards (E.Thomas).,19,13,2012 20120930_SEA@STL,4,3,17,STL,SEA,4,3,47,(3:17) J.Hekker punts 27 yards to SEA 20 Center-J.McQuaide fair catch by L.Washington.,19,13,2012 20120930_SEA@STL,4,3,9,SEA,STL,1,10,80,(3:09) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin.,13,19,2012 20120930_SEA@STL,4,3,4,SEA,STL,2,10,80,(3:04) (Shotgun) R.Wilson pass short right to D.Baldwin pushed ob at SEA 30 for 10 yards (C.Finnegan).,13,19,2012 20120930_SEA@STL,4,2,59,SEA,STL,1,10,70,(2:59) (Shotgun) R.Wilson right end to SEA 36 for 6 yards (C.Finnegan).,13,19,2012 20120930_SEA@STL,4,2,48,SEA,STL,2,4,64,(2:48) R.Wilson pass short right to S.Rice to SEA 39 for 3 yards (J.Dunbar).,13,19,2012 20120930_SEA@STL,4,2,27,SEA,STL,3,1,61,(2:27) M.Lynch left guard to SEA 47 for 8 yards (Q.Mikell).,13,19,2012 20120930_SEA@STL,4,2,6,SEA,STL,1,10,53,(2:06) R.Wilson pass short middle to M.Lynch to SL 45 for 8 yards (J.Dunbar).,13,19,2012 20120930_SEA@STL,4,2,0,SEA,STL,2,2,45,(2:00) M.Lynch left end to SL 40 for 5 yards (Q.Mikell).,13,19,2012 20120930_SEA@STL,4,1,36,SEA,STL,1,10,40,(1:36) (Shotgun) R.Wilson pass short left to A.McCoy to SL 35 for 5 yards (J.Laurinaitis) [J.Dunbar].,13,19,2012 20120930_SEA@STL,4,1,8,SEA,STL,2,5,35,(1:08) (Shotgun) R.Wilson pass short right intended for A.McCoy INTERCEPTED by B.Fletcher at SL 23. B.Fletcher to SL 25 for 2 yards.,13,19,2012 20120930_SEA@STL,4,1,0,STL,SEA,1,10,75,(1:00) S.Bradford kneels to SL 24 for -1 yards.,19,13,2012 20120930_SEA@STL,4,0,27,STL,SEA,2,11,76,(:27) S.Bradford kneels to SL 23 for -1 yards.,19,13,2012 20120930_SEA@STL,4,0,27,STL,SEA,,,76,                      ,19,13,2012 20120930_MIA@ARI,1,0,0,MIA,ARI,,,76,D.Carpenter kicks 71 yards from MIA 35 to ARZ -6. W.Powell to ARZ 18 for 24 yards (O.Vernon). FUMBLES (O.Vernon) recovered by ARZ-A.Sherman at ARZ 20. A.Sherman to ARZ 31 for 11 yards (R.Marshall).,0,0,2012 20120930_MIA@ARI,1,60,0,ARI,MIA,1,10,69,(15:00) K.Kolb pass short left to J.King to ARZ 33 for 2 yards (R.Marshall).,0,0,2012 20120930_MIA@ARI,1,59,51,ARI,MIA,2,8,67,(14:51) R.Williams up the middle to ARZ 38 for 5 yards (R.Starks; K.Dansby).,0,0,2012 20120930_MIA@ARI,1,59,11,ARI,MIA,3,3,62,(14:11) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 41 for 3 yards (S.Smith).,0,0,2012 20120930_MIA@ARI,1,57,55,ARI,MIA,1,10,59,(12:55) K.Kolb pass short middle to J.King to MIA 39 for 20 yards (R.Jones).,0,0,2012 20120930_MIA@ARI,1,57,17,ARI,MIA,1,10,39,(12:17) R.Williams left end to MIA 35 for 4 yards (R.Marshall R.Jones).,0,0,2012 20120930_MIA@ARI,1,56,37,ARI,MIA,2,6,35,(11:37) (Shotgun) W.Powell left tackle to MIA 35 for no gain (J.Odrick).,0,0,2012 20120930_MIA@ARI,1,55,54,ARI,MIA,3,6,35,(10:54) (Shotgun) K.Kolb sacked at MIA 42 for -7 yards (C.Wake).,0,0,2012 20120930_MIA@ARI,1,55,26,ARI,MIA,4,13,42,(10:26) D.Zastudil punts 31 yards to MIA 11 Center-M.Leach fair catch by M.Thigpen.,0,0,2012 20120930_MIA@ARI,1,55,19,MIA,ARI,1,10,89,(10:19) R.Tannehill pass incomplete short left to D.Bess.,0,0,2012 20120930_MIA@ARI,1,55,16,MIA,ARI,2,10,89,(10:16) PENALTY on MIA-J.Martin False Start 5 yards enforced at MIA 11 - No Play.,0,0,2012 20120930_MIA@ARI,1,55,16,MIA,ARI,2,15,94,(10:16) R.Bush left tackle to MIA 11 for 5 yards (P.Lenon).,0,0,2012 20120930_MIA@ARI,1,54,34,MIA,ARI,3,10,89,(9:34) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 27 for 16 yards (A.Wilson).,0,0,2012 20120930_MIA@ARI,1,54,10,MIA,ARI,1,10,73,(9:10) R.Tannehill pass short right to A.Fasano to MIA 29 for 2 yards (K.Rhodes).,0,0,2012 20120930_MIA@ARI,1,53,37,MIA,ARI,2,8,71,(8:37) R.Bush left end to MIA 32 for 3 yards (W.Gay). FUMBLES (W.Gay) and recovers at MIA 35. R.Bush to MIA 35 for no gain (S.Acho). PENALTY on MIA-D.Bess Illegal Shift 5 yards enforced at MIA 29 - No Play.,0,0,2012 20120930_MIA@ARI,1,53,37,MIA,ARI,2,13,76,(8:37) R.Tannehill pass short middle to B.Hartline to MIA 31 for 7 yards (A.Wilson).,0,0,2012 20120930_MIA@ARI,1,52,43,MIA,ARI,3,6,69,(7:43) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 39 for 8 yards (A.Wilson).,0,0,2012 20120930_MIA@ARI,1,52,10,MIA,ARI,1,10,61,(7:10) L.Miller left tackle to MIA 41 for 2 yards (P.Lenon).,0,0,2012 20120930_MIA@ARI,1,51,35,MIA,ARI,2,8,59,(6:35) R.Tannehill sacked at MIA 35 for -6 yards (S.Acho).,0,0,2012 20120930_MIA@ARI,1,50,59,MIA,ARI,3,14,65,(5:59) (Shotgun) R.Tannehill pass short middle to D.Thomas to MIA 41 for 6 yards (P.Lenon) [A.Wilson].,0,0,2012 20120930_MIA@ARI,1,50,13,MIA,ARI,4,8,59,(5:13) B.Fields punts 39 yards to ARZ 20 Center-J.Denney. P.Peterson to ARZ 22 for 2 yards (J.Wilson).,0,0,2012 20120930_MIA@ARI,1,50,3,ARI,MIA,1,10,78,(5:03) (Shotgun) K.Kolb pass incomplete deep left to M.Floyd.,0,0,2012 20120930_MIA@ARI,1,49,56,ARI,MIA,2,10,78,(4:56) R.Williams left tackle to ARZ 27 for 5 yards (K.Misi).,0,0,2012 20120930_MIA@ARI,1,49,16,ARI,MIA,3,5,73,(4:16) (Shotgun) K.Kolb pass incomplete short right to L.Fitzgerald (C.Clemons).,0,0,2012 20120930_MIA@ARI,1,49,12,ARI,MIA,4,5,73,(4:12) D.Zastudil punts 51 yards to MIA 22 Center-M.Leach out of bounds.,0,0,2012 20120930_MIA@ARI,1,49,4,MIA,ARI,1,10,78,(4:04) R.Bush left tackle to MIA 21 for -1 yards (A.Wilson).,0,0,2012 20120930_MIA@ARI,1,49,4,MIA,ARI,2,11,79,(4:04) R.Tannehill pass short left to D.Bess to MIA 42 for 21 yards (A.Wilson W.Gay).,0,0,2012 20120930_MIA@ARI,1,47,49,MIA,ARI,1,10,58,(2:49) R.Bush up the middle to MIA 46 for 4 yards (W.Gay).,0,0,2012 20120930_MIA@ARI,1,47,2,MIA,ARI,2,6,54,(2:02) (Shotgun) R.Tannehill pass incomplete deep middle to C.Clay (A.Wilson).,0,0,2012 20120930_MIA@ARI,1,46,56,MIA,ARI,3,6,54,(1:56) (Shotgun) R.Tannehill pass short left to D.Bess to ARZ 40 for 14 yards (J.Fleming).,0,0,2012 20120930_MIA@ARI,1,46,8,MIA,ARI,1,10,40,(1:08) R.Bush up the middle to ARZ 39 for 1 yard (C.Campbell).,0,0,2012 20120930_MIA@ARI,1,45,35,MIA,ARI,2,9,39,(:35) R.Tannehill pass short right to B.Hartline to ARZ 27 for 12 yards (P.Peterson).,0,0,2012 20120930_MIA@ARI,2,45,0,MIA,ARI,1,10,27,(15:00) R.Tannehill pass incomplete short right to B.Hartline (A.Wilson).,0,0,2012 20120930_MIA@ARI,2,44,44,MIA,ARI,2,10,27,(14:44) R.Tannehill pass incomplete short left to D.Bess.,0,0,2012 20120930_MIA@ARI,2,44,42,MIA,ARI,3,10,27,(14:42) (Shotgun) R.Tannehill pass short left to B.Hartline to ARZ 14 for 13 yards (J.Fleming).,0,0,2012 20120930_MIA@ARI,2,44,9,MIA,ARI,1,10,14,(14:09) D.Thomas left tackle to ARZ 14 for no gain (K.Rhodes).,0,0,2012 20120930_MIA@ARI,2,43,29,MIA,ARI,2,10,14,(13:29) (Shotgun) R.Tannehill pass incomplete short left to R.Bush.,0,0,2012 20120930_MIA@ARI,2,43,25,MIA,ARI,3,10,14,(13:25) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (P.Peterson).,0,0,2012 20120930_MIA@ARI,2,43,25,MIA,ARI,4,10,14,(13:25) D.Carpenter 32 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 20120930_MIA@ARI,2,43,25,MIA,ARI,,,14,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,3,0,2012 20120930_MIA@ARI,2,43,15,ARI,MIA,1,10,80,(13:15) K.Kolb pass short right to W.Powell to ARZ 22 for 2 yards (K.Burnett).,0,3,2012 20120930_MIA@ARI,2,42,32,ARI,MIA,2,8,78,(12:32) (Shotgun) K.Kolb pass short middle to L.Fitzgerald to ARZ 31 for 9 yards (S.Smith K.Dansby).,0,3,2012 20120930_MIA@ARI,2,41,53,ARI,MIA,1,10,69,(11:53) R.Williams right tackle to ARZ 35 for 4 yards (K.Dansby).,0,3,2012 20120930_MIA@ARI,2,41,17,ARI,MIA,2,6,65,(11:17) K.Kolb pass short right to R.Williams to ARZ 35 for no gain (K.Burnett).,0,3,2012 20120930_MIA@ARI,2,40,30,ARI,MIA,3,6,65,(10:30) (Shotgun) K.Kolb sacked at ARZ 28 for -7 yards (C.Wake).,0,3,2012 20120930_MIA@ARI,2,40,11,ARI,MIA,4,13,72,(10:11) D.Zastudil punts 51 yards to MIA 21 Center-M.Leach. M.Thigpen to MIA 39 for 18 yards (J.Sanders). PENALTY on MIA-R.Jones Offensive Holding 10 yards enforced at MIA 21.,0,3,2012 20120930_MIA@ARI,2,39,56,MIA,ARI,1,10,89,(9:56) R.Tannehill pass short left to D.Bess to MIA 28 for 17 yards (P.Lenon).,3,0,2012 20120930_MIA@ARI,2,39,27,MIA,ARI,1,10,72,(9:27) L.Miller left tackle to MIA 35 for 7 yards (P.Lenon A.Wilson).,3,0,2012 20120930_MIA@ARI,2,38,51,MIA,ARI,2,3,65,(8:51) R.Tannehill pass short right to B.Hartline to MIA 37 for 2 yards (P.Peterson A.Wilson).,3,0,2012 20120930_MIA@ARI,2,38,22,MIA,ARI,3,1,63,(8:22) D.Thomas left tackle to MIA 37 for no gain (P.Lenon).,3,0,2012 20120930_MIA@ARI,2,37,54,MIA,ARI,4,1,63,(7:54) B.Fields punts 42 yards to ARZ 21 Center-J.Denney. P.Peterson MUFFS catch touched at ARZ 21 and recovers at ARZ 25. PENALTY on ARZ-M.Adams Illegal Block Above the Waist 10 yards enforced at ARZ 21.,3,0,2012 20120930_MIA@ARI,2,37,45,ARI,MIA,1,10,89,(7:45) K.Kolb pass incomplete deep right to L.Fitzgerald. PENALTY on MIA-S.Smith Defensive Pass Interference 20 yards enforced at ARZ 11 - No Play.,0,3,2012 20120930_MIA@ARI,2,37,39,ARI,MIA,1,10,69,(7:39) K.Kolb pass short left to E.Doucet to ARZ 34 for 3 yards (J.Wilson).,0,3,2012 20120930_MIA@ARI,2,37,6,ARI,MIA,2,7,66,(7:06) W.Powell up the middle to ARZ 36 for 2 yards (K.Burnett).,0,3,2012 20120930_MIA@ARI,2,36,27,ARI,MIA,3,5,64,(6:27) (Shotgun) K.Kolb sacked at ARZ 27 for -9 yards (C.Wake).,0,3,2012 20120930_MIA@ARI,2,35,59,ARI,MIA,4,14,73,(5:59) D.Zastudil punts 68 yards to MIA 5 Center-M.Leach downed by ARZ-M.Adams.,0,3,2012 20120930_MIA@ARI,2,35,45,MIA,ARI,1,10,95,(5:45) R.Bush left tackle to MIA 26 for 21 yards (P.Peterson).,3,0,2012 20120930_MIA@ARI,2,35,9,MIA,ARI,1,10,74,(5:09) R.Bush left tackle to MIA 35 for 9 yards (A.Wilson).,3,0,2012 20120930_MIA@ARI,2,34,39,MIA,ARI,2,1,65,(4:39) J.Lane up the middle to MIA 36 for 1 yard (V.Holliday; C.Campbell).,3,0,2012 20120930_MIA@ARI,2,34,1,MIA,ARI,1,10,64,(4:01) R.Tannehill pass deep right to B.Hartline to ARZ 7 for 57 yards (W.Gay). Penalty on ARZ-W.Gay Illegal Contact declined.,3,0,2012 20120930_MIA@ARI,2,33,32,MIA,ARI,1,7,7,(3:32) D.Thomas left tackle to ARZ 6 for 1 yard (O.Schofield).,3,0,2012 20120930_MIA@ARI,2,32,52,MIA,ARI,2,6,6,(2:52) R.Tannehill sacked at ARZ 20 for -14 yards (O.Schofield).,3,0,2012 20120930_MIA@ARI,2,32,14,MIA,ARI,3,20,20,(2:14) (Shotgun) R.Tannehill pass short right to B.Hartline to ARZ 1 for 19 yards (P.Lenon; J.Fleming).,3,0,2012 20120930_MIA@ARI,2,32,0,MIA,ARI,4,1,1,(2:00) J.Lane up the middle for 1 yard TOUCHDOWN.,3,0,2012 20120930_MIA@ARI,2,32,0,MIA,ARI,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,0,2012 20120930_MIA@ARI,2,32,0,MIA,ARI,,,1,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,10,0,2012 20120930_MIA@ARI,2,31,56,ARI,MIA,1,10,80,(1:56) (Shotgun) K.Kolb pass short left to M.Floyd to ARZ 30 for 10 yards (N.Carroll).,0,10,2012 20120930_MIA@ARI,2,31,34,ARI,MIA,1,10,70,(1:34) (Shotgun) K.Kolb pass short right to M.Floyd to ARZ 40 for 10 yards (N.Carroll).,0,10,2012 20120930_MIA@ARI,2,31,9,ARI,MIA,1,10,60,(1:09) (Shotgun) K.Kolb pass short right to M.Floyd to ARZ 45 for 5 yards (N.Carroll).,0,10,2012 20120930_MIA@ARI,2,30,48,ARI,MIA,2,5,55,(:48) (Shotgun) K.Kolb pass short right to A.Roberts to MIA 48 for 7 yards (K.Burnett).,0,10,2012 20120930_MIA@ARI,2,30,40,ARI,MIA,1,10,48,(:40) (Shotgun) K.Kolb pass short right intended for L.Fitzgerald INTERCEPTED by S.Smith at MIA 35. S.Smith to ARZ 34 for 31 yards (D.Colledge).,0,10,2012 20120930_MIA@ARI,2,30,27,MIA,ARI,1,10,34,(:27) (Shotgun) R.Tannehill pass short left to A.Fasano to ARZ 27 for 7 yards (D.Washington) [S.Acho].,10,0,2012 20120930_MIA@ARI,2,30,14,MIA,ARI,2,3,27,(:14) (Shotgun) R.Tannehill pass short left to D.Bess to ARZ 9 for 18 yards (K.Rhodes) [O.Schofield].,10,0,2012 20120930_MIA@ARI,2,30,6,MIA,ARI,1,9,9,(:06) D.Carpenter 27 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,10,0,2012 20120930_MIA@ARI,2,30,6,MIA,ARI,,,9,D.Carpenter kicks 65 yards from MIA 35 to ARZ 0. W.Powell to ARZ 25 for 25 yards (N.Carroll).,13,0,2012 20120930_MIA@ARI,3,30,0,MIA,ARI,1,10,65,(15:00) R.Tannehill pass short right to B.Hartline pushed ob at MIA 41 for 6 yards (G.Toler).,13,0,2012 20120930_MIA@ARI,3,29,35,MIA,ARI,2,4,59,(14:35) R.Bush right tackle to MIA 42 for 1 yard (V.Holliday; P.Lenon).,13,0,2012 20120930_MIA@ARI,3,29,2,MIA,ARI,3,3,58,(14:02) (Shotgun) R.Tannehill pass deep right to B.Hartline to ARZ 28 for 30 yards (P.Peterson).,13,0,2012 20120930_MIA@ARI,3,28,30,MIA,ARI,1,10,28,(13:30) R.Bush left tackle to ARZ 33 for -5 yards (C.Campbell).,13,0,2012 20120930_MIA@ARI,3,27,58,MIA,ARI,2,15,33,(12:58) (Shotgun) R.Tannehill pass incomplete deep left to D.Bess.,13,0,2012 20120930_MIA@ARI,3,27,52,MIA,ARI,3,15,33,(12:52) (Shotgun) R.Tannehill pass incomplete short left to D.Bess (G.Toler).,13,0,2012 20120930_MIA@ARI,3,27,48,MIA,ARI,4,15,33,(12:48) D.Carpenter 51 yard field goal is No Good Wide Right Center-J.Denney Holder-B.Fields.,13,0,2012 20120930_MIA@ARI,3,27,43,ARI,MIA,1,10,59,(12:43) (Shotgun) K.Kolb pass short left to L.Fitzgerald to MIA 47 for 12 yards (S.Smith).,0,13,2012 20120930_MIA@ARI,3,27,5,ARI,MIA,1,10,47,(12:05) (Shotgun) K.Kolb pass incomplete deep middle to E.Doucet.,0,13,2012 20120930_MIA@ARI,3,27,1,ARI,MIA,2,10,47,(12:01) (Shotgun) K.Kolb pass short left to R.Housler to MIA 32 for 15 yards (K.Burnett).,0,13,2012 20120930_MIA@ARI,3,26,18,ARI,MIA,1,10,32,(11:18) (No Huddle Shotgun) K.Kolb pass incomplete short right to A.Roberts.,0,13,2012 20120930_MIA@ARI,3,26,14,ARI,MIA,2,10,32,(11:14) K.Kolb pass deep left to A.Roberts to MIA 7 for 25 yards (N.Carroll).,0,13,2012 20120930_MIA@ARI,3,25,31,ARI,MIA,1,7,7,(10:31) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald (R.Marshall).,0,13,2012 20120930_MIA@ARI,3,25,26,ARI,MIA,2,7,7,(10:26) (Shotgun) K.Kolb pass short right to L.Fitzgerald to MIA 3 for 4 yards (S.Smith).,0,13,2012 20120930_MIA@ARI,3,24,50,ARI,MIA,3,3,3,(9:50) (Shotgun) K.Kolb pass short left to L.Fitzgerald for 3 yards TOUCHDOWN.,0,13,2012 20120930_MIA@ARI,3,24,50,ARI,MIA,,,3,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,0,13,2012 20120930_MIA@ARI,3,24,50,ARI,MIA,,,3,J.Feely kicks 72 yards from ARZ 35 to MIA -7. M.Thigpen to MIA 16 for 23 yards (A.Smith).,7,13,2012 20120930_MIA@ARI,3,24,41,MIA,ARI,1,10,84,(9:41) R.Tannehill pass deep left to D.Bess to MIA 33 for 17 yards (P.Peterson).,13,7,2012 20120930_MIA@ARI,3,24,6,MIA,ARI,1,10,67,(9:06) R.Bush right tackle to MIA 29 for -4 yards (G.Toler).,13,7,2012 20120930_MIA@ARI,3,23,25,MIA,ARI,2,14,71,(8:25) R.Tannehill pass short left intended for D.Bess INTERCEPTED by A.Wilson at MIA 36. A.Wilson to MIA 36 for no gain (D.Bess). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. R.Tannehill pass incomplete short left to D.Bess (A.Wilson).,13,7,2012 20120930_MIA@ARI,3,23,20,MIA,ARI,3,14,71,(8:20) R.Tannehill pass incomplete deep right to B.Hartline. PENALTY on ARZ-G.Toler Defensive Pass Interference 17 yards enforced at MIA 29 - No Play.,13,7,2012 20120930_MIA@ARI,3,23,10,MIA,ARI,1,10,54,(8:10) R.Bush up the middle to 50 for 4 yards (D.Williams D.Washington).,13,7,2012 20120930_MIA@ARI,3,22,33,MIA,ARI,2,6,50,(7:33) L.Miller up the middle to ARZ 48 for 2 yards (N.Eason S.Acho).,13,7,2012 20120930_MIA@ARI,3,21,50,MIA,ARI,3,4,48,(6:50) (Shotgun) R.Tannehill pass incomplete deep right to L.Naanee (K.Rhodes) [V.Holliday]. Penalty on MIA-R.Bush Offensive Pass Interference declined.,13,7,2012 20120930_MIA@ARI,3,21,41,MIA,ARI,4,4,48,(6:41) B.Fields punts 45 yards to ARZ 3 Center-J.Denney fair catch by P.Peterson.,13,7,2012 20120930_MIA@ARI,3,21,33,ARI,MIA,1,10,97,(6:33) R.Williams up the middle to ARZ 1 for -2 yards (K.Dansby).,7,13,2012 20120930_MIA@ARI,3,20,51,ARI,MIA,2,12,99,(5:51) K.Kolb pass incomplete short right to L.Fitzgerald (S.Smith).,7,13,2012 20120930_MIA@ARI,3,20,48,ARI,MIA,3,12,99,(5:48) (Shotgun) K.Kolb pass short right to E.Doucet to ARZ 10 for 9 yards (R.Jones).,7,13,2012 20120930_MIA@ARI,3,20,12,ARI,MIA,4,3,90,(5:12) D.Zastudil punts 56 yards to MIA 34 Center-M.Leach downed by ARZ-J.Bethel.,7,13,2012 20120930_MIA@ARI,3,19,59,MIA,ARI,1,10,66,(4:59) R.Tannehill pass short left to B.Hartline pushed ob at MIA 45 for 11 yards (G.Toler).,13,7,2012 20120930_MIA@ARI,3,19,32,MIA,ARI,1,10,55,(4:32) D.Thomas up the middle to MIA 48 for 3 yards (D.Williams).,13,7,2012 20120930_MIA@ARI,3,18,52,MIA,ARI,2,7,52,(3:52) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline (C.Campbell).,13,7,2012 20120930_MIA@ARI,3,18,48,MIA,ARI,3,7,52,(3:48) (No Huddle Shotgun) R.Tannehill pass short right intended for B.Hartline INTERCEPTED by G.Toler at ARZ 39. G.Toler to ARZ 39 for no gain (B.Hartline).,13,7,2012 20120930_MIA@ARI,3,18,42,ARI,MIA,1,10,61,(3:42) (Shotgun) R.Williams right tackle to ARZ 40 for 1 yard (K.Dansby).,7,13,2012 20120930_MIA@ARI,3,18,4,ARI,MIA,2,9,60,(3:04) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald (S.Smith).,7,13,2012 20120930_MIA@ARI,3,17,59,ARI,MIA,3,9,60,(2:59) (Shotgun) K.Kolb pass short right to L.Fitzgerald to MIA 49 for 11 yards (R.Marshall).,7,13,2012 20120930_MIA@ARI,3,17,23,ARI,MIA,1,10,49,(2:23) K.Kolb pass short right to L.Fitzgerald to MIA 36 for 13 yards (S.Smith).,7,13,2012 20120930_MIA@ARI,3,16,53,ARI,MIA,1,10,36,(1:53) (No Huddle Shotgun) K.Kolb pass incomplete short right to M.Floyd.,7,13,2012 20120930_MIA@ARI,3,16,53,ARI,MIA,2,10,36,(1:53) (Shotgun) PENALTY on ARZ-D.Batiste False Start 5 yards enforced at MIA 36 - No Play.,7,13,2012 20120930_MIA@ARI,3,16,50,ARI,MIA,2,15,41,(1:50) K.Kolb pass incomplete short right to L.Fitzgerald.,7,13,2012 20120930_MIA@ARI,3,16,44,ARI,MIA,3,15,41,(1:44) (Shotgun) K.Kolb pass incomplete short left to E.Doucet.,7,13,2012 20120930_MIA@ARI,3,16,41,ARI,MIA,4,15,41,(1:41) D.Zastudil punts 24 yards to MIA 17 Center-M.Leach fair catch by D.Bess.,7,13,2012 20120930_MIA@ARI,3,16,33,MIA,ARI,1,10,83,(1:33) R.Bush up the middle to MIA 29 for 12 yards (O.Schofield).,13,7,2012 20120930_MIA@ARI,3,16,1,MIA,ARI,1,10,71,(1:01) R.Tannehill pass short right to B.Hartline to MIA 37 for 8 yards (G.Toler).,13,7,2012 20120930_MIA@ARI,3,15,22,MIA,ARI,2,2,63,(:22) R.Bush left tackle to MIA 28 for -9 yards (S.Acho).,13,7,2012 20120930_MIA@ARI,4,15,0,MIA,ARI,3,11,72,(15:00) (Shotgun) R.Tannehill sacked at MIA 19 for -9 yards (A.Wilson).,13,7,2012 20120930_MIA@ARI,4,14,22,MIA,ARI,4,20,81,(14:22) B.Fields punts 47 yards to ARZ 34 Center-J.Denney. P.Peterson MUFFS catch touched at ARZ 34 and recovers at ARZ 34. P.Peterson to ARZ 42 for 8 yards (K.Misi). FUMBLES (K.Misi) and recovers at ARZ 42. P.Peterson to ARZ 42 for no gain (J.Denney).,13,7,2012 20120930_MIA@ARI,4,14,11,ARI,MIA,1,10,58,(14:11) (Shotgun) K.Kolb pass incomplete short right to R.Housler.,7,13,2012 20120930_MIA@ARI,4,14,7,ARI,MIA,2,10,58,(14:07) (Shotgun) K.Kolb sacked at ARZ 33 for -9 yards (K.Dansby).,7,13,2012 20120930_MIA@ARI,4,13,31,ARI,MIA,3,19,67,(13:31) (Shotgun) K.Kolb sacked at ARZ 27 for -6 yards (C.Wake).,7,13,2012 20120930_MIA@ARI,4,13,5,ARI,MIA,4,25,73,(13:05) D.Zastudil punts 51 yards to MIA 22 Center-M.Leach fair catch by D.Bess.,7,13,2012 20120930_MIA@ARI,4,12,56,MIA,ARI,1,10,78,(12:56) R.Bush right tackle to MIA 23 for 1 yard (C.Campbell).,13,7,2012 20120930_MIA@ARI,4,12,15,MIA,ARI,2,9,77,(12:15) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 31 for 8 yards (G.Toler).,13,7,2012 20120930_MIA@ARI,4,11,43,MIA,ARI,3,1,69,(11:43) J.Lane right tackle to MIA 31 for no gain (Q.Groves).,13,7,2012 20120930_MIA@ARI,4,11,23,MIA,ARI,4,1,69,(11:23) B.Fields punts 48 yards to ARZ 21 Center-J.Denney. P.Peterson to ARZ 29 for 8 yards (J.Freeny). PENALTY on ARZ-A.Smith Illegal Block Above the Waist 10 yards enforced at ARZ 29.,13,7,2012 20120930_MIA@ARI,4,11,12,ARI,MIA,1,10,81,(11:12) R.Williams right tackle to ARZ 21 for 2 yards (K.Randall).,7,13,2012 20120930_MIA@ARI,4,10,35,ARI,MIA,2,8,79,(10:35) K.Kolb pass short left to R.Housler to MIA 46 for 33 yards (C.Clemons).,7,13,2012 20120930_MIA@ARI,4,9,54,ARI,MIA,1,10,46,(9:54) K.Kolb pass deep right to A.Roberts for 46 yards TOUCHDOWN.,7,13,2012 20120930_MIA@ARI,4,9,54,ARI,MIA,,,46,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,7,13,2012 20120930_MIA@ARI,4,9,54,ARI,MIA,,,46,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,14,13,2012 20120930_MIA@ARI,4,9,45,MIA,ARI,1,10,80,(9:45) R.Tannehill pass incomplete deep right to B.Hartline [D.Williams].,13,14,2012 20120930_MIA@ARI,4,9,37,MIA,ARI,2,10,80,(9:37) L.Miller left tackle to MIA 22 for 2 yards (D.Washington).,13,14,2012 20120930_MIA@ARI,4,8,52,MIA,ARI,3,8,78,(8:52) (Shotgun) R.Tannehill pass short left to D.Bess ran ob at MIA 42 for 20 yards (K.Rhodes).,13,14,2012 20120930_MIA@ARI,4,8,25,MIA,ARI,1,10,58,(8:25) R.Tannehill pass deep left to L.Naanee to ARZ 39 for 19 yards (A.Wilson). FUMBLES (A.Wilson) RECOVERED by ARZ-P.Peterson at ARZ 37. P.Peterson to MIA 3 for 60 yards (L.Naanee). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,14,2012 20120930_MIA@ARI,4,8,5,ARI,MIA,1,3,3,(8:05) R.Williams left tackle to MIA 2 for 1 yard (P.Soliai; K.Misi).,14,13,2012 20120930_MIA@ARI,4,7,24,ARI,MIA,2,2,2,(7:24) K.Kolb pass short right intended for L.Fitzgerald INTERCEPTED by S.Smith at MIA 0. Touchback (L.Fitzgerald).,14,13,2012 20120930_MIA@ARI,4,7,17,MIA,ARI,1,10,80,(7:17) R.Tannehill pass deep left to B.Hartline for 80 yards TOUCHDOWN.,13,14,2012 20120930_MIA@ARI,4,7,17,MIA,ARI,,,80,TWO-POINT CONVERSION ATTEMPT. R.Tannehill pass to J.Lane is complete. ATTEMPT SUCCEEDS.,13,14,2012 20120930_MIA@ARI,4,7,17,MIA,ARI,,,80,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,21,14,2012 20120930_MIA@ARI,4,7,5,ARI,MIA,1,10,80,(7:05) (Shotgun) PENALTY on ARZ-B.Massie False Start 5 yards enforced at ARZ 20 - No Play.,14,21,2012 20120930_MIA@ARI,4,7,5,ARI,MIA,1,15,85,(7:05) (Shotgun) K.Kolb sacked at ARZ 6 for -9 yards (J.Odrick).,14,21,2012 20120930_MIA@ARI,4,6,30,ARI,MIA,2,24,94,(6:30) (Shotgun) K.Kolb pass short left to W.Powell to ARZ 10 for 4 yards (K.Burnett) [R.Starks].,14,21,2012 20120930_MIA@ARI,4,5,56,ARI,MIA,3,20,90,(5:56) (Shotgun) K.Kolb pass short right to E.Doucet to ARZ 19 for 9 yards (C.Clemons).,14,21,2012 20120930_MIA@ARI,4,5,23,ARI,MIA,4,11,81,(5:23) D.Zastudil punts 46 yards to MIA 35 Center-M.Leach fair catch by D.Bess.,14,21,2012 20120930_MIA@ARI,4,5,14,MIA,ARI,1,10,65,(5:14) R.Bush up the middle to MIA 42 for 7 yards (G.Toler).,21,14,2012 20120930_MIA@ARI,4,4,31,MIA,ARI,2,3,58,(4:31) R.Bush left tackle to ARZ 43 for 15 yards (D.Washington).,21,14,2012 20120930_MIA@ARI,4,3,45,MIA,ARI,1,10,43,(3:45) R.Bush up the middle to ARZ 41 for 2 yards (K.Rhodes).,21,14,2012 20120930_MIA@ARI,4,3,0,MIA,ARI,2,8,41,(3:00) R.Tannehill sacked at ARZ 48 for -7 yards (D.Washington). FUMBLES (D.Washington) RECOVERED by ARZ-V.Holliday at ARZ 49. V.Holliday to ARZ 49 for no gain (J.Jerry).,21,14,2012 20120930_MIA@ARI,4,2,51,ARI,MIA,1,10,51,(2:51) (Shotgun) K.Kolb sacked at ARZ 44 for -5 yards (K.Misi).,14,21,2012 20120930_MIA@ARI,4,2,18,ARI,MIA,2,15,56,(2:18) (Shotgun) K.Kolb sacked at ARZ 41 for -3 yards (sack split by K.Misi and C.Wake).,14,21,2012 20120930_MIA@ARI,4,1,59,ARI,MIA,3,18,59,(1:59) (Shotgun) K.Kolb pass short right to A.Roberts to MIA 43 for 16 yards (R.Marshall K.Dansby).,14,21,2012 20120930_MIA@ARI,4,1,50,ARI,MIA,4,2,43,(1:50) (Shotgun) K.Kolb pass short left to A.Roberts to MIA 34 for 9 yards (N.Carroll).,14,21,2012 20120930_MIA@ARI,4,1,26,ARI,MIA,1,10,34,(1:26) (No Huddle Shotgun) K.Kolb pass short left to L.Fitzgerald to MIA 25 for 9 yards (S.Smith).,14,21,2012 20120930_MIA@ARI,4,1,5,ARI,MIA,2,1,25,(1:05) (No Huddle Shotgun) K.Kolb pass short right to M.Floyd to MIA 15 for 10 yards (N.Carroll).,14,21,2012 20120930_MIA@ARI,4,0,42,ARI,MIA,1,10,15,(:42) (No Huddle Shotgun) K.Kolb pass incomplete short right to M.Floyd.,14,21,2012 20120930_MIA@ARI,4,0,38,ARI,MIA,2,10,15,(:38) (Shotgun) K.Kolb pass incomplete short left to E.Doucet (K.Dansby).,14,21,2012 20120930_MIA@ARI,4,0,34,ARI,MIA,3,10,15,(:34) (Shotgun) K.Kolb pass incomplete short right to M.Floyd.,14,21,2012 20120930_MIA@ARI,4,0,29,ARI,MIA,4,10,15,(:29) (Shotgun) K.Kolb pass short left to A.Roberts for 15 yards TOUCHDOWN.,14,21,2012 20120930_MIA@ARI,4,0,29,ARI,MIA,,,15,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,14,21,2012 20120930_MIA@ARI,4,0,29,ARI,MIA,,,15,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,21,21,2012 20120930_MIA@ARI,4,0,22,MIA,ARI,1,10,80,(:22) R.Tannehill kneels to MIA 20 for no gain.,21,21,2012 20120930_MIA@ARI,5,0,0,MIA,ARI,,,80,D.Carpenter kicks 72 yards from MIA 35 to ARZ -7. W.Powell to ARZ 34 for 41 yards (D.Carpenter).,21,21,2012 20120930_MIA@ARI,5,-1,55,ARI,MIA,1,10,66,(14:55) R.Williams left tackle to ARZ 31 for -3 yards (P.Soliai).,21,21,2012 20120930_MIA@ARI,5,-1,22,ARI,MIA,2,13,69,(14:22) (Shotgun) K.Kolb pass incomplete short left to R.Williams.,21,21,2012 20120930_MIA@ARI,5,-1,17,ARI,MIA,3,13,69,(14:17) (Shotgun) K.Kolb pass incomplete short left to A.Roberts.,21,21,2012 20120930_MIA@ARI,5,-1,12,ARI,MIA,4,13,69,(14:12) D.Zastudil punts 57 yards to MIA 12 Center-M.Leach. D.Bess to MIA 21 for 9 yards (J.Bethel).,21,21,2012 20120930_MIA@ARI,5,-1,0,MIA,ARI,1,10,79,(14:00) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 29 for 8 yards (G.Toler).,21,21,2012 20120930_MIA@ARI,5,-2,26,MIA,ARI,2,2,71,(13:26) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 34 for 5 yards (O.Schofield).,21,21,2012 20120930_MIA@ARI,5,-3,57,MIA,ARI,1,10,66,(12:57) R.Bush up the middle to MIA 38 for 4 yards (C.Campbell).,21,21,2012 20120930_MIA@ARI,5,-3,13,MIA,ARI,2,6,62,(12:13) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,21,21,2012 20120930_MIA@ARI,5,-3,9,MIA,ARI,3,6,62,(12:09) (No Huddle Shotgun) R.Tannehill pass short right intended for B.Hartline INTERCEPTED by K.Rhodes [P.Lenon] at ARZ 48. K.Rhodes to MIA 47 for 5 yards (A.Fasano).,21,21,2012 20120930_MIA@ARI,5,-4,59,ARI,MIA,1,10,47,(11:59) R.Williams left tackle to MIA 45 for 2 yards (K.Burnett).,21,21,2012 20120930_MIA@ARI,5,-4,15,ARI,MIA,2,8,45,(11:15) (Shotgun) K.Kolb pass incomplete deep right to A.Roberts.,21,21,2012 20120930_MIA@ARI,5,-4,11,ARI,MIA,3,8,45,(11:11) (Shotgun) K.Kolb pass short left to E.Doucet to MIA 35 for 10 yards (R.Jones).,21,21,2012 20120930_MIA@ARI,5,-5,27,ARI,MIA,1,10,35,(10:27) R.Williams right tackle to MIA 33 for 2 yards (K.Burnett).,21,21,2012 20120930_MIA@ARI,5,-6,47,ARI,MIA,2,8,33,(9:47) (Shotgun) R.Williams up the middle to MIA 29 for 4 yards (J.Wilson).,21,21,2012 20120930_MIA@ARI,5,-6,8,ARI,MIA,3,4,29,(9:08) (Shotgun) R.Williams up the middle to MIA 28 for 1 yard (J.Odrick).,21,21,2012 20120930_MIA@ARI,5,-7,34,ARI,MIA,4,3,28,(8:34) J.Feely 46 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,21,21,2012 20120930_MIA@ARI,5,-7,34,ARI,MIA,,,28,                      ,24,21,2012 20120930_OAK@DEN,1,-7,0,OAK,DEN,,,28,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,0,0,2012 20120930_OAK@DEN,1,60,0,DEN,OAK,1,10,80,(15:00) P.Manning pass incomplete deep middle to J.Dreessen (P.Wheeler).,0,0,2012 20120930_OAK@DEN,1,59,55,DEN,OAK,2,10,80,(14:55) (Shotgun) W.McGahee left guard to DEN 24 for 4 yards (M.Shaughnessy).,0,0,2012 20120930_OAK@DEN,1,59,19,DEN,OAK,3,6,76,(14:19) (Shotgun) P.Manning pass short middle to B.Stokley to 50 for 26 yards (M.Giordano).,0,0,2012 20120930_OAK@DEN,1,58,57,DEN,OAK,1,10,50,(13:57) (Shotgun) W.McGahee left guard to 50 for no gain (M.Shaughnessy; R.McClain).,0,0,2012 20120930_OAK@DEN,1,58,32,DEN,OAK,2,10,50,(13:32) (Shotgun) P.Manning pass short right to E.Decker to OAK 41 for 9 yards (J.Hanson; M.Huff).,0,0,2012 20120930_OAK@DEN,1,58,32,DEN,OAK,3,1,41,(13:32) (Shotgun) W.McGahee left guard to OAK 39 for 2 yards (R.McClain).,0,0,2012 20120930_OAK@DEN,1,57,31,DEN,OAK,1,10,39,(12:31) (Shotgun) P.Manning pass incomplete short middle to D.Thomas (P.Lee).,0,0,2012 20120930_OAK@DEN,1,57,26,DEN,OAK,2,10,39,(12:26) P.Manning pass short left to R.Hillman to OAK 36 for 3 yards (P.Lee).,0,0,2012 20120930_OAK@DEN,1,56,55,DEN,OAK,3,7,36,(11:55) (Shotgun) P.Manning pass short middle to J.Tamme to OAK 30 for 6 yards (R.McClain).,0,0,2012 20120930_OAK@DEN,1,56,8,DEN,OAK,4,1,30,(11:08) P.Manning pass short middle to J.Tamme to OAK 22 for 8 yards (T.Branch).,0,0,2012 20120930_OAK@DEN,1,55,39,DEN,OAK,1,10,22,(10:39) (Shotgun) P.Manning pass deep middle to J.Dreessen for 22 yards TOUCHDOWN.,0,0,2012 20120930_OAK@DEN,1,55,39,DEN,OAK,,,22,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 20120930_OAK@DEN,1,55,39,DEN,OAK,,,22,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,0,2012 20120930_OAK@DEN,1,55,32,OAK,DEN,1,10,80,(10:32) D.McFadden right end pushed ob at OAK 22 for 2 yards (C.Bailey).,0,7,2012 20120930_OAK@DEN,1,55,5,OAK,DEN,2,8,78,(10:05) D.McFadden left end to OAK 30 for 8 yards (K.Brooking).,0,7,2012 20120930_OAK@DEN,1,54,38,OAK,DEN,1,10,70,(9:38) C.Palmer pass short right to M.Reece pushed ob at DEN 39 for 31 yards (R.Moore).,0,7,2012 20120930_OAK@DEN,1,54,6,OAK,DEN,1,10,39,(9:06) C.Palmer pass short right to M.Reece to DEN 35 for 4 yards (V.Miller).,0,7,2012 20120930_OAK@DEN,1,53,27,OAK,DEN,2,6,35,(8:27) (Shotgun) C.Palmer pass short left to D.Hagan to DEN 25 for 10 yards (W.Woodyard).,0,7,2012 20120930_OAK@DEN,1,52,43,OAK,DEN,1,10,25,(7:43) (Shotgun) C.Palmer pass incomplete deep right to D.Moore.,0,7,2012 20120930_OAK@DEN,1,52,37,OAK,DEN,2,10,25,(7:37) D.McFadden up the middle to DEN 20 for 5 yards (R.Moore).,0,7,2012 20120930_OAK@DEN,1,51,56,OAK,DEN,3,5,20,(6:56) (Shotgun) C.Palmer pass incomplete short right to D.Moore [E.Dumervil].,0,7,2012 20120930_OAK@DEN,1,51,51,OAK,DEN,4,5,20,(6:51) S.Janikowski 38 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,7,2012 20120930_OAK@DEN,1,51,51,OAK,DEN,,,20,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,3,7,2012 20120930_OAK@DEN,1,51,47,DEN,OAK,1,10,80,(6:47) W.McGahee right tackle to DEN 25 for 5 yards (P.Wheeler).,7,3,2012 20120930_OAK@DEN,1,51,22,DEN,OAK,2,5,75,(6:22) P.Manning pass short left to W.McGahee to DEN 29 for 4 yards (P.Lee).,7,3,2012 20120930_OAK@DEN,1,50,40,DEN,OAK,3,1,71,(5:40) P.Manning pass short middle to J.Tamme to DEN 39 for 10 yards (T.Branch).,7,3,2012 20120930_OAK@DEN,1,50,7,DEN,OAK,1,10,61,(5:07) PENALTY on DEN-O.Franklin False Start 5 yards enforced at DEN 39 - No Play.,7,3,2012 20120930_OAK@DEN,1,49,53,DEN,OAK,1,15,66,(4:53) (Shotgun) P.Manning pass short left to L.Ball pushed ob at DEN 39 for 5 yards (P.Lee). PENALTY on DEN-J.Tamme Illegal Formation 5 yards enforced at DEN 34 - No Play.,7,3,2012 20120930_OAK@DEN,1,49,27,DEN,OAK,1,20,71,(4:27) P.Manning pass short left to J.Tamme to DEN 39 for 10 yards (T.Branch).,7,3,2012 20120930_OAK@DEN,1,48,56,DEN,OAK,2,10,61,(3:56) P.Manning pass deep right to D.Thomas to OAK 38 for 23 yards (T.Branch).,7,3,2012 20120930_OAK@DEN,1,48,8,DEN,OAK,1,10,38,(3:08) P.Manning pass short right to W.McGahee to OAK 35 for 3 yards (R.McClain).,7,3,2012 20120930_OAK@DEN,1,47,27,DEN,OAK,2,7,35,(2:27) A.Caldwell right end pushed ob at OAK 21 for 14 yards (M.Giordano).,7,3,2012 20120930_OAK@DEN,1,46,57,DEN,OAK,1,10,21,(1:57) (Shotgun) P.Manning pass short left to E.Decker to OAK 12 for 9 yards (M.Giordano).,7,3,2012 20120930_OAK@DEN,1,46,26,DEN,OAK,2,1,12,(1:26) (Shotgun) W.McGahee up the middle to OAK 4 for 8 yards (L.Houston; J.Hanson).,7,3,2012 20120930_OAK@DEN,1,45,48,DEN,OAK,1,4,4,(:48) (Shotgun) P.Manning pass short right to W.McGahee to OAK 3 for 1 yard (T.Branch).,7,3,2012 20120930_OAK@DEN,1,45,11,DEN,OAK,2,3,3,(:11) P.Manning pass incomplete short middle to E.Decker.,7,3,2012 20120930_OAK@DEN,1,45,6,DEN,OAK,3,3,3,(:06) (Shotgun) P.Manning pass incomplete short middle to J.Tamme (R.Seymour).,7,3,2012 20120930_OAK@DEN,1,45,3,DEN,OAK,4,3,3,(:03) M.Prater 21 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,7,3,2012 20120930_OAK@DEN,2,45,0,DEN,OAK,,,3,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,10,3,2012 20120930_OAK@DEN,2,45,0,OAK,DEN,1,10,80,(15:00) D.McFadden right tackle to OAK 22 for 2 yards (K.Brooking; V.Miller).,3,10,2012 20120930_OAK@DEN,2,44,22,OAK,DEN,2,8,78,(14:22) C.Palmer pass short left to B.Myers pushed ob at OAK 44 for 22 yards (M.Adams).,3,10,2012 20120930_OAK@DEN,2,43,51,OAK,DEN,1,10,56,(13:51) C.Palmer pass short right to M.Reece to DEN 41 for 15 yards (R.Moore).,3,10,2012 20120930_OAK@DEN,2,42,58,OAK,DEN,1,10,41,(12:58) D.McFadden right guard to DEN 35 for 6 yards (K.Brooking). PENALTY on OAK-C.Carlisle Offensive Holding 10 yards enforced at DEN 41 - No Play.,3,10,2012 20120930_OAK@DEN,2,42,35,OAK,DEN,1,20,51,(12:35) M.Goodson left guard to DEN 43 for 8 yards (M.Adams).,3,10,2012 20120930_OAK@DEN,2,41,58,OAK,DEN,2,12,43,(11:58) C.Palmer pass incomplete deep middle to D.Moore [M.Adams].,3,10,2012 20120930_OAK@DEN,2,41,51,OAK,DEN,3,12,43,(11:51) (Shotgun) C.Palmer sacked at OAK 46 for -11 yards (C.Harris).,3,10,2012 20120930_OAK@DEN,2,41,39,OAK,DEN,4,23,54,(11:39) S.Lechler punts 46 yards to DEN 8 Center-J.Condo. J.Leonhard to DEN 7 for -1 yards (T.Jones).,3,10,2012 20120930_OAK@DEN,2,41,29,DEN,OAK,1,10,93,(11:29) (Shotgun) W.McGahee left guard to DEN 24 for 17 yards (P.Lee).,10,3,2012 20120930_OAK@DEN,2,41,2,DEN,OAK,1,10,76,(11:02) (Shotgun) R.Hillman up the middle to DEN 29 for 5 yards (M.Shaughnessy).,10,3,2012 20120930_OAK@DEN,2,40,34,DEN,OAK,2,5,71,(10:34) (Shotgun) P.Manning pass short left to E.Decker to DEN 38 for 9 yards (P.Lee). Oakland challenged the pass completion ruling and the play was REVERSED. (Shotgun) P.Manning pass incomplete short left.,10,3,2012 20120930_OAK@DEN,2,40,30,DEN,OAK,3,5,71,(10:30) (Shotgun) P.Manning pass short left to D.Thomas to OAK 31 for 40 yards. FUMBLES RECOVERED by OAK-L.Houston at OAK 4. L.Houston to OAK 4 for no gain (J.Tamme). Thomas dropped the ball. No force on the fuimble.,10,3,2012 20120930_OAK@DEN,2,40,18,OAK,DEN,1,10,96,(10:18) D.McFadden right guard to OAK 1 for -3 yards (D.Wolfe; W.Woodyard).,3,10,2012 20120930_OAK@DEN,2,39,39,OAK,DEN,2,13,99,(9:39) C.Palmer pass short right to D.Moore to OAK 12 for 11 yards (C.Bailey).,3,10,2012 20120930_OAK@DEN,2,38,58,OAK,DEN,3,2,88,(8:58) M.Goodson right end pushed ob at OAK 15 for 3 yards (C.Harris). Denver challenged the first down ruling and the play was REVERSED. M.Goodson right end pushed ob at OAK 13 for 1 yard (C.Harris).,3,10,2012 20120930_OAK@DEN,2,38,24,OAK,DEN,4,1,87,(8:24) S.Lechler punts 54 yards to DEN 33 Center-J.Condo. J.Leonhard to DEN 33 for no gain (T.Jones).,3,10,2012 20120930_OAK@DEN,2,38,13,DEN,OAK,1,10,67,(8:13) R.Hillman left end to DEN 36 for 3 yards (P.Lee).,10,3,2012 20120930_OAK@DEN,2,37,53,DEN,OAK,2,7,64,(7:53) (Shotgun) P.Manning pass short right to B.Stokley to DEN 42 for 6 yards (M.Giordano).,10,3,2012 20120930_OAK@DEN,2,37,12,DEN,OAK,3,1,58,(7:12) W.McGahee up the middle to DEN 43 for 1 yard (P.Wheeler; J.Crawford).,10,3,2012 20120930_OAK@DEN,2,36,33,DEN,OAK,1,10,57,(6:33) P.Manning pass short middle to W.McGahee to OAK 48 for 9 yards (R.Seymour).,10,3,2012 20120930_OAK@DEN,2,36,7,DEN,OAK,2,1,48,(6:07) W.McGahee up the middle to OAK 45 for 3 yards (M.Shaughnessy).,10,3,2012 20120930_OAK@DEN,2,35,23,DEN,OAK,1,10,45,(5:23) (Shotgun) PENALTY on DEN-O.Franklin False Start 5 yards enforced at OAK 45 - No Play.,10,3,2012 20120930_OAK@DEN,2,35,3,DEN,OAK,1,15,50,(5:03) (Shotgun) R.Hillman up the middle to OAK 47 for 3 yards (D.Bryant).,10,3,2012 20120930_OAK@DEN,2,34,29,DEN,OAK,2,12,47,(4:29) (Shotgun) P.Manning pass short right to E.Decker to OAK 40 for 7 yards (M.Huff).,10,3,2012 20120930_OAK@DEN,2,33,44,DEN,OAK,3,5,40,(3:44) (Shotgun) L.Ball up the middle to OAK 36 for 4 yards (J.Crawford).,10,3,2012 20120930_OAK@DEN,2,33,21,DEN,OAK,4,1,36,(3:21) M.Prater pass incomplete deep left to Z.Beadles.,10,3,2012 20120930_OAK@DEN,2,33,14,OAK,DEN,1,10,64,(3:14) D.McFadden left end pushed ob at OAK 37 for 1 yard (V.Miller).,3,10,2012 20120930_OAK@DEN,2,32,54,OAK,DEN,2,9,63,(2:54) C.Palmer pass short right to M.Reece pushed ob at OAK 45 for 8 yards (M.Adams).,3,10,2012 20120930_OAK@DEN,2,32,24,OAK,DEN,3,1,55,(2:24) C.Palmer pass short right to D.McFadden pushed ob at OAK 49 for 4 yards (K.Brooking) [E.Dumervil].,3,10,2012 20120930_OAK@DEN,2,32,1,OAK,DEN,1,10,51,(2:01) D.McFadden right tackle to 50 for 1 yard (E.Dumervil; M.Unrein).,3,10,2012 20120930_OAK@DEN,2,31,56,OAK,DEN,2,9,50,(1:56) C.Palmer pass deep left to D.Moore to DEN 13 for 37 yards (R.Moore).,3,10,2012 20120930_OAK@DEN,2,31,11,OAK,DEN,1,10,13,(1:11) D.McFadden up the middle to DEN 11 for 2 yards (K.Brooking).,3,10,2012 20120930_OAK@DEN,2,30,35,OAK,DEN,2,8,11,(:35) D.McFadden right tackle to DEN 6 for 5 yards (E.Dumervil).,3,10,2012 20120930_OAK@DEN,2,30,29,OAK,DEN,3,3,6,(:29) C.Palmer pass incomplete short right to D.Ausberry.,3,10,2012 20120930_OAK@DEN,2,30,25,OAK,DEN,4,3,6,(:25) S.Janikowski 24 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,3,10,2012 20120930_OAK@DEN,2,30,25,OAK,DEN,,,6,S.Janikowski kicks 66 yards from OAK 35 to DEN -1. O.Bolden to DEN 15 for 16 yards (C.Francies).,6,10,2012 20120930_OAK@DEN,2,30,15,DEN,OAK,1,10,85,(:15) P.Manning kneels to DEN 14 for -1 yards.,10,6,2012 20120930_OAK@DEN,3,30,0,DEN,OAK,,,85,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,10,6,2012 20120930_OAK@DEN,3,30,0,OAK,DEN,1,10,80,(15:00) C.Palmer pass incomplete short right to M.Reece (C.Bailey).,6,10,2012 20120930_OAK@DEN,3,29,57,OAK,DEN,2,10,80,(14:57) D.McFadden right end to OAK 25 for 5 yards (K.Brooking; M.Adams).,6,10,2012 20120930_OAK@DEN,3,29,57,OAK,DEN,3,5,75,(14:57) C.Palmer pass to D.Moore to OAK 29 for 4 yards (C.Harris).,6,10,2012 20120930_OAK@DEN,3,29,10,OAK,DEN,4,1,71,(14:10) S.Lechler punts 62 yards to DEN 9 Center-J.Condo. J.Leonhard to DEN 21 for 12 yards (T.Goethel; T.Jones).,6,10,2012 20120930_OAK@DEN,3,28,59,DEN,OAK,1,10,79,(13:59) (Shotgun) W.McGahee left tackle to DEN 24 for 3 yards (L.Houston; T.Kelly).,10,6,2012 20120930_OAK@DEN,3,28,35,DEN,OAK,2,7,76,(13:35) P.Manning pass short left to W.McGahee to DEN 28 for 4 yards (P.Lee).,10,6,2012 20120930_OAK@DEN,3,28,6,DEN,OAK,3,3,72,(13:06) (Shotgun) P.Manning pass short right to J.Tamme to DEN 32 for 4 yards (J.Hanson).,10,6,2012 20120930_OAK@DEN,3,27,37,DEN,OAK,1,10,68,(12:37) W.McGahee up the middle to DEN 43 for 11 yards (L.Houston; M.Huff).,10,6,2012 20120930_OAK@DEN,3,27,11,DEN,OAK,1,10,57,(12:11) R.Hillman right guard to DEN 46 for 3 yards (T.Branch).,10,6,2012 20120930_OAK@DEN,3,26,43,DEN,OAK,2,7,54,(11:43) (Shotgun) P.Manning pass short right to R.Hillman to OAK 25 for 29 yards (J.Hanson).,10,6,2012 20120930_OAK@DEN,3,26,18,DEN,OAK,1,10,25,(11:18) (Shotgun) P.Manning pass short right to E.Decker to OAK 19 for 6 yards (T.Branch).,10,6,2012 20120930_OAK@DEN,3,25,53,DEN,OAK,2,4,19,(10:53) L.Ball up the middle to OAK 17 for 2 yards (R.McClain).,10,6,2012 20120930_OAK@DEN,3,25,17,DEN,OAK,3,2,17,(10:17) (Shotgun) P.Manning pass short left to E.Decker for 17 yards TOUCHDOWN.,10,6,2012 20120930_OAK@DEN,3,25,17,DEN,OAK,,,17,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,10,6,2012 20120930_OAK@DEN,3,25,17,DEN,OAK,,,17,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,17,6,2012 20120930_OAK@DEN,3,25,8,OAK,DEN,1,10,80,(10:08) C.Palmer pass short right to M.Reece to OAK 16 for -4 yards (C.Bailey).,6,17,2012 20120930_OAK@DEN,3,24,42,OAK,DEN,2,14,84,(9:42) C.Palmer pass incomplete deep middle to D.Hagan.,6,17,2012 20120930_OAK@DEN,3,24,35,OAK,DEN,3,14,84,(9:35) (Shotgun) C.Palmer pass incomplete short right to B.Myers (M.Adams).,6,17,2012 20120930_OAK@DEN,3,24,28,OAK,DEN,4,14,84,(9:28) (Shotgun) S.Lechler punts 2 yards to OAK 18 Center-J.Condo downed by OAK-J.Condo. Ball was deflected by Bruton,6,17,2012 20120930_OAK@DEN,3,24,17,DEN,OAK,1,10,18,(9:17) W.McGahee left end to OAK 15 for 3 yards (P.Wheeler; T.Branch).,17,6,2012 20120930_OAK@DEN,3,23,41,DEN,OAK,2,7,15,(8:41) W.McGahee up the middle to OAK 4 for 11 yards (P.Wheeler).,17,6,2012 20120930_OAK@DEN,3,23,11,DEN,OAK,1,4,4,(8:11) (Shotgun) W.McGahee right tackle to OAK 2 for 2 yards (L.Houston).,17,6,2012 20120930_OAK@DEN,3,22,36,DEN,OAK,2,2,2,(7:36) (Shotgun) W.McGahee up the middle for 2 yards TOUCHDOWN.,17,6,2012 20120930_OAK@DEN,3,22,36,DEN,OAK,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,17,6,2012 20120930_OAK@DEN,3,22,36,DEN,OAK,,,2,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,24,6,2012 20120930_OAK@DEN,3,22,30,OAK,DEN,1,10,80,(7:30) D.McFadden left tackle to OAK 23 for 3 yards (K.Vickerson).,6,24,2012 20120930_OAK@DEN,3,21,53,OAK,DEN,2,7,77,(6:53) D.McFadden right tackle to OAK 28 for 5 yards (C.Bailey).,6,24,2012 20120930_OAK@DEN,3,21,12,OAK,DEN,3,2,72,(6:12) D.McFadden left end to OAK 26 for -2 yards (V.Miller W.Woodyard).,6,24,2012 20120930_OAK@DEN,3,20,38,OAK,DEN,4,4,74,(5:38) S.Lechler punts 68 yards to DEN 6 Center-J.Condo. J.Leonhard to DEN 22 for 16 yards (M.Goodson). PENALTY on OAK-T.Jones Face Mask (15 Yards) 15 yards enforced at DEN 22.,6,24,2012 20120930_OAK@DEN,3,20,22,DEN,OAK,1,10,63,(5:22) (Shotgun) P.Manning pass short right to D.Thomas to OAK 38 for 25 yards (M.Giordano).,24,6,2012 20120930_OAK@DEN,3,20,3,DEN,OAK,1,10,38,(5:03) (Shotgun) W.McGahee up the middle to OAK 14 for 24 yards (M.Giordano). OAK-M.Giordano was injured during the play.,24,6,2012 20120930_OAK@DEN,3,19,24,DEN,OAK,1,10,14,(4:24) (Shotgun) L.Ball left tackle to OAK 14 for no gain (M.Shaughnessy).,24,6,2012 20120930_OAK@DEN,3,18,59,DEN,OAK,2,10,14,(3:59) (Shotgun) P.Manning pass incomplete short right to E.Decker.,24,6,2012 20120930_OAK@DEN,3,18,52,DEN,OAK,3,10,14,(3:52) (Shotgun) P.Manning pass short left to L.Ball for 14 yards TOUCHDOWN.,24,6,2012 20120930_OAK@DEN,3,18,52,DEN,OAK,,,14,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,24,6,2012 20120930_OAK@DEN,3,18,52,DEN,OAK,,,14,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,6,2012 20120930_OAK@DEN,3,18,46,OAK,DEN,1,10,80,(3:46) C.Palmer pass short middle to M.Goodson to OAK 20 for no gain (K.Vickerson).,6,31,2012 20120930_OAK@DEN,3,18,9,OAK,DEN,2,10,80,(3:09) C.Palmer pass incomplete short right to M.Reece.,6,31,2012 20120930_OAK@DEN,3,18,5,OAK,DEN,3,10,80,(3:05) (Shotgun) PENALTY on OAK-C.Palmer Delay of Game 6 yards enforced at OAK 20 - No Play.,6,31,2012 20120930_OAK@DEN,3,18,5,OAK,DEN,3,16,86,(3:05) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,6,31,2012 20120930_OAK@DEN,3,17,58,OAK,DEN,4,16,86,(2:58) S.Lechler punts 55 yards to DEN 31 Center-J.Condo downed by OAK-M.Goodson.,6,31,2012 20120930_OAK@DEN,3,17,45,DEN,OAK,1,10,69,(2:45) (Shotgun) W.McGahee up the middle to DEN 35 for 4 yards (R.Seymour; P.Wheeler).,31,6,2012 20120930_OAK@DEN,3,17,9,DEN,OAK,2,6,65,(2:09) (Shotgun) P.Manning pass short left to W.McGahee to DEN 37 for 2 yards (P.Wheeler).,31,6,2012 20120930_OAK@DEN,3,17,9,DEN,OAK,3,4,63,(2:09) (Shotgun) PENALTY on OAK-R.Seymour Defensive Offside 5 yards enforced at DEN 37 - No Play.,31,6,2012 20120930_OAK@DEN,3,16,21,DEN,OAK,1,10,58,(1:21) (Shotgun) R.Hillman right tackle to DEN 45 for 3 yards (P.Wheeler).,31,6,2012 20120930_OAK@DEN,3,15,52,DEN,OAK,2,7,55,(:52) (Shotgun) P.Manning pass incomplete short right to A.Caldwell.,31,6,2012 20120930_OAK@DEN,3,15,48,DEN,OAK,3,7,55,(:48) (Shotgun) P.Manning pass short right to E.Decker to OAK 43 for 12 yards (J.Hanson).,31,6,2012 20120930_OAK@DEN,3,15,9,DEN,OAK,1,10,43,(:09) L.Ball right tackle to OAK 44 for -1 yards (T.Kelly; R.McClain).,31,6,2012 20120930_OAK@DEN,4,15,0,DEN,OAK,2,11,44,(15:00) P.Manning pass short right to E.Decker to OAK 25 for 19 yards (M.Giordano).,31,6,2012 20120930_OAK@DEN,4,14,30,DEN,OAK,1,10,25,(14:30) (Shotgun) W.McGahee left tackle to OAK 20 for 5 yards (P.Wheeler).,31,6,2012 20120930_OAK@DEN,4,13,45,DEN,OAK,2,5,20,(13:45) (Shotgun) P.Manning pass short left to J.Dreessen to OAK 25 for -5 yards (T.Branch).,31,6,2012 20120930_OAK@DEN,4,13,5,DEN,OAK,3,10,25,(13:05) (Shotgun) P.Manning pass incomplete short middle to L.Ball.,31,6,2012 20120930_OAK@DEN,4,13,0,DEN,OAK,4,10,25,(13:00) M.Prater 43 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,31,6,2012 20120930_OAK@DEN,4,13,0,DEN,OAK,,,25,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,34,6,2012 20120930_OAK@DEN,4,12,56,OAK,DEN,1,10,80,(12:56) C.Palmer pass incomplete deep right to D.Moore.,6,34,2012 20120930_OAK@DEN,4,12,51,OAK,DEN,2,10,80,(12:51) (Shotgun) C.Palmer pass deep right to D.Moore to OAK 39 for 19 yards (C.Bailey).,6,34,2012 20120930_OAK@DEN,4,12,20,OAK,DEN,1,10,61,(12:20) C.Palmer sacked at OAK 37 for -2 yards (sack split by W.Woodyard and E.Dumervil).,6,34,2012 20120930_OAK@DEN,4,11,53,OAK,DEN,2,12,63,(11:53) C.Palmer pass incomplete short right to M.Reece [V.Miller].,6,34,2012 20120930_OAK@DEN,4,11,48,OAK,DEN,3,12,63,(11:48) (Shotgun) C.Palmer pass short right to M.Goodson to OAK 32 for -5 yards (W.Woodyard; R.Ayers).,6,34,2012 20120930_OAK@DEN,4,11,12,OAK,DEN,4,17,68,(11:12) S.Lechler punts 59 yards to DEN 9 Center-J.Condo. J.Leonhard to DEN 24 for 15 yards (J.Condo).,6,34,2012 20120930_OAK@DEN,4,11,0,DEN,OAK,1,10,76,(11:00) W.McGahee up the middle to DEN 28 for 4 yards (R.McClain).,34,6,2012 20120930_OAK@DEN,4,10,16,DEN,OAK,2,6,72,(10:16) W.McGahee right tackle to DEN 31 for 3 yards (D.Bryant).,34,6,2012 20120930_OAK@DEN,4,9,31,DEN,OAK,3,3,69,(9:31) (Shotgun) P.Manning pass short left to D.Thomas to DEN 36 for 5 yards (M.Giordano).,34,6,2012 20120930_OAK@DEN,4,8,47,DEN,OAK,1,10,64,(8:47) R.Hillman right end to DEN 36 for no gain (R.McClain).,34,6,2012 20120930_OAK@DEN,4,8,13,DEN,OAK,2,10,64,(8:13) R.Hillman up the middle to DEN 48 for 12 yards (M.Huff).,34,6,2012 20120930_OAK@DEN,4,7,26,DEN,OAK,1,10,52,(7:26) R.Hillman up the middle to OAK 46 for 6 yards (L.Houston).,34,6,2012 20120930_OAK@DEN,4,6,43,DEN,OAK,2,4,46,(6:43) R.Hillman up the middle to OAK 48 for -2 yards (M.Shaughnessy).,34,6,2012 20120930_OAK@DEN,4,5,58,DEN,OAK,3,6,48,(5:58) (Shotgun) P.Manning pass short left to D.Thomas ran ob at OAK 38 for 10 yards.,34,6,2012 20120930_OAK@DEN,4,5,26,DEN,OAK,1,10,38,(5:26) R.Hillman up the middle to OAK 40 for -2 yards (L.Houston).,34,6,2012 20120930_OAK@DEN,4,4,43,DEN,OAK,2,12,40,(4:43) L.Ball up the middle to OAK 38 for 2 yards (T.Kelly; L.Houston).,34,6,2012 20120930_OAK@DEN,4,3,59,DEN,OAK,3,10,38,(3:59) (Shotgun) L.Ball right tackle to OAK 35 for 3 yards (P.Wheeler).,34,6,2012 20120930_OAK@DEN,4,3,48,DEN,OAK,4,7,35,(3:48) M.Prater 53 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,34,6,2012 20120930_OAK@DEN,4,3,48,DEN,OAK,,,35,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,37,6,2012 20120930_OAK@DEN,4,3,43,OAK,DEN,1,10,80,(3:43) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan.,6,37,2012 20120930_OAK@DEN,4,3,39,OAK,DEN,2,10,80,(3:39) (Shotgun) C.Palmer pass incomplete deep left to R.Streater.,6,37,2012 20120930_OAK@DEN,4,3,34,OAK,DEN,3,10,80,(3:34) (Shotgun) C.Palmer pass short right to D.Ausberry to OAK 29 for 9 yards (V.Miller).,6,37,2012 20120930_OAK@DEN,4,3,0,OAK,DEN,4,1,71,(3:00) (Shotgun) C.Palmer pass short left to J.Criner to OAK 42 for 13 yards (T.Porter).,6,37,2012 20120930_OAK@DEN,4,2,28,OAK,DEN,1,10,58,(2:28) (Shotgun) M.Goodson up the middle to DEN 45 for 13 yards (R.Moore).,6,37,2012 20120930_OAK@DEN,4,2,3,OAK,DEN,1,10,45,(2:03) (Shotgun) PENALTY on OAK-M.Brisiel False Start 5 yards enforced at DEN 45 - No Play.,6,37,2012 20120930_OAK@DEN,4,2,1,OAK,DEN,1,15,50,(2:01) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan.,6,37,2012 20120930_OAK@DEN,4,1,55,OAK,DEN,2,15,50,(1:55) C.Palmer pass short left to J.Criner to DEN 34 for 16 yards (W.Woodyard; R.Moore).,6,37,2012 20120930_OAK@DEN,4,1,27,OAK,DEN,1,10,34,(1:27) C.Palmer pass incomplete short middle to B.Myers. PENALTY on DEN-R.Ayers Roughing the Passer 15 yards enforced at DEN 34 - No Play.,6,37,2012 20120930_OAK@DEN,4,1,26,OAK,DEN,1,10,19,(1:26) (Shotgun) C.Palmer pass incomplete short left to J.Criner [V.Miller].,6,37,2012 20120930_OAK@DEN,4,1,21,OAK,DEN,2,10,19,(1:21) (Shotgun) C.Palmer sacked at DEN 27 for -8 yards (E.Dumervil). FUMBLES (E.Dumervil) recovered by OAK-W.Smith at DEN 27. W.Smith to DEN 27 for no gain (D.Wolfe).,6,37,2012 20120930_OAK@DEN,4,0,37,OAK,DEN,3,18,27,(:37) (Shotgun) C.Palmer pass short left to M.Goodson to DEN 27 for no gain (D.Trevathan).,6,37,2012 20120930_OAK@DEN,4,0,27,OAK,DEN,4,18,27,(:27) (Shotgun) C.Palmer pass short right to D.Hagan to DEN 19 for 8 yards (D.Bruton).,6,37,2012 20120930_OAK@DEN,4,0,18,DEN,OAK,1,10,81,(:18) B.Osweiler kneels to DEN 18 for -1 yards.,37,6,2012 20120930_OAK@DEN,4,0,18,DEN,OAK,,,81,                      ,37,6,2012 20120930_CIN@JAC,1,0,0,CIN,JAC,,,81,M.Nugent kicks 64 yards from CIN 35 to JAX 1. J.Parmele to JAX 22 for 21 yards (D.Skuta).,0,0,2012 20120930_CIN@JAC,1,59,56,JAC,CIN,1,10,78,(14:56) (Shotgun) B.Gabbert sacked at JAX 15 for -7 yards (D.Peko).,0,0,2012 20120930_CIN@JAC,1,59,33,JAC,CIN,2,17,85,(14:33) R.Jennings up the middle to JAX 21 for 6 yards (M.Lawson). PENALTY on CIN-M.Johnson Defensive Offside 5 yards enforced at JAX 15 - No Play.,0,0,2012 20120930_CIN@JAC,1,59,12,JAC,CIN,2,12,80,(14:12) B.Gabbert pass incomplete short right to C.Shorts. PENALTY on CIN-R.Maualuga Defensive Offside 5 yards enforced at JAX 20 - No Play.,0,0,2012 20120930_CIN@JAC,1,59,8,JAC,CIN,2,7,75,(14:08) M.Jones-Drew left end to JAX 27 for 2 yards (G.Atkins).,0,0,2012 20120930_CIN@JAC,1,58,24,JAC,CIN,3,5,73,(13:24) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts.,0,0,2012 20120930_CIN@JAC,1,58,24,JAC,CIN,4,5,73,(13:24) B.Anger punts 44 yards to CIN 29 Center-J.Cain. B.Tate to CIN 30 for 1 yard (C.Prosinski). PENALTY on CIN-J.Miles Illegal Block Above the Waist 10 yards enforced at CIN 30.,0,0,2012 20120930_CIN@JAC,1,58,9,CIN,JAC,1,10,80,(13:09) B.Green-Ellis right end to CIN 23 for 3 yards (R.Allen).,0,0,2012 20120930_CIN@JAC,1,57,31,CIN,JAC,2,7,77,(12:31) A.Dalton pass short right intended for C.Pressley INTERCEPTED by K.Bosworth at CIN 23. K.Bosworth to CIN 13 for 10 yards. FUMBLES RECOVERED by CIN-A.Smith at CIN 9. A.Smith to CIN 9 for no gain (K.Bosworth).,0,0,2012 20120930_CIN@JAC,1,57,21,CIN,JAC,1,10,91,(12:21) B.Green-Ellis left end to CIN 12 for 3 yards (T.Alualu).,0,0,2012 20120930_CIN@JAC,1,56,39,CIN,JAC,2,7,88,(11:39) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 19 for 7 yards (A.Ross).,0,0,2012 20120930_CIN@JAC,1,55,59,CIN,JAC,1,10,81,(10:59) A.Dalton pass short right to O.Charles to CIN 29 for 10 yards (R.Allen).,0,0,2012 20120930_CIN@JAC,1,55,25,CIN,JAC,1,10,71,(10:25) B.Green-Ellis up the middle to CIN 32 for 3 yards (P.Posluszny).,0,0,2012 20120930_CIN@JAC,1,54,49,CIN,JAC,2,7,68,(9:49) B.Green-Ellis up the middle to CIN 45 for 13 yards (D.Lowery).,0,0,2012 20120930_CIN@JAC,1,54,5,CIN,JAC,1,10,55,(9:05) (Shotgun) A.Dalton pass short left to M.Jones to 50 for 5 yards (D.Cox).,0,0,2012 20120930_CIN@JAC,1,53,28,CIN,JAC,2,5,50,(8:28) A.Dalton scrambles left end to JAX 45 for 5 yards (R.Allen).,0,0,2012 20120930_CIN@JAC,1,52,44,CIN,JAC,1,10,45,(7:44) A.Dalton pass incomplete deep right to M.Jones.,0,0,2012 20120930_CIN@JAC,1,52,40,CIN,JAC,2,10,45,(7:40) (Shotgun) PENALTY on CIN-A.Hawkins False Start 5 yards enforced at JAX 45 - No Play.,0,0,2012 20120930_CIN@JAC,1,52,40,CIN,JAC,2,15,50,(7:40) (Shotgun) A.Dalton pass incomplete short right to A.Green (R.Mathis).,0,0,2012 20120930_CIN@JAC,1,52,35,CIN,JAC,3,15,50,(7:35) (Shotgun) A.Dalton pass short middle to B.Leonard to JAX 37 for 13 yards (DA.Smith; C.Prosinski) [A.Blake]. PENALTY on JAX-A.Blake Roughing the Passer 15 yards enforced at JAX 37.,0,0,2012 20120930_CIN@JAC,1,52,8,CIN,JAC,1,10,22,(7:08) B.Green-Ellis up the middle to JAX 18 for 4 yards (R.Allen).,0,0,2012 20120930_CIN@JAC,1,52,8,CIN,JAC,2,6,18,(7:08) (Shotgun) A.Dalton pass incomplete short left to B.Green-Ellis.,0,0,2012 20120930_CIN@JAC,1,51,26,CIN,JAC,3,6,18,(6:26) (Shotgun) A.Dalton pass short right to A.Hawkins to JAX 17 for 1 yard (D.Lowery).,0,0,2012 20120930_CIN@JAC,1,51,14,CIN,JAC,4,5,17,(6:14) M.Nugent 35 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 20120930_CIN@JAC,1,51,14,CIN,JAC,,,17,M.Nugent kicks 69 yards from CIN 35 to JAX -4. R.Jennings to JAX 23 for 27 yards (J.Miles).,3,0,2012 20120930_CIN@JAC,1,51,5,JAC,CIN,1,10,77,(6:05) (Shotgun) B.Gabbert scrambles up the middle to JAX 32 for 9 yards (W.Gilberry).,0,3,2012 20120930_CIN@JAC,1,50,20,JAC,CIN,2,1,68,(5:20) M.Jones-Drew left end ran ob at JAX 41 for 9 yards (R.Maualuga).,0,3,2012 20120930_CIN@JAC,1,49,53,JAC,CIN,1,10,59,(4:53) B.Gabbert sacked at JAX 29 for -12 yards (M.Lawson).,0,3,2012 20120930_CIN@JAC,1,49,23,JAC,CIN,2,22,71,(4:23) B.Gabbert pass short left to M.Lewis to CIN 48 for 23 yards (M.Lawson).,0,3,2012 20120930_CIN@JAC,1,48,48,JAC,CIN,1,10,48,(3:48) R.Jennings right end to CIN 44 for 4 yards (V.Burfict).,0,3,2012 20120930_CIN@JAC,1,48,8,JAC,CIN,2,6,44,(3:08) R.Jennings up the middle to CIN 36 for 8 yards (R.Maualuga).,0,3,2012 20120930_CIN@JAC,1,47,30,JAC,CIN,1,10,36,(2:30) B.Gabbert pass short left to G.Jones to CIN 30 for 6 yards (D.Skuta).,0,3,2012 20120930_CIN@JAC,1,46,48,JAC,CIN,2,4,30,(1:48) B.Gabbert pass short middle to M.Jones-Drew to CIN 24 for 6 yards (V.Burfict).,0,3,2012 20120930_CIN@JAC,1,46,7,JAC,CIN,1,10,24,(1:07) M.Jones-Drew left end to CIN 27 for -3 yards (C.Dunlap).,0,3,2012 20120930_CIN@JAC,1,45,28,JAC,CIN,2,13,27,(:28) B.Gabbert pass short right to J.Blackmon pushed ob at CIN 13 for 14 yards (T.Mays).,0,3,2012 20120930_CIN@JAC,2,45,0,JAC,CIN,1,10,13,(15:00) M.Jones-Drew up the middle to CIN 7 for 6 yards.,0,3,2012 20120930_CIN@JAC,2,44,23,JAC,CIN,2,4,7,(14:23) M.Jones-Drew up the middle to CIN 2 for 5 yards (V.Burfict).,0,3,2012 20120930_CIN@JAC,2,43,40,JAC,CIN,1,2,2,(13:40) B.Gabbert pass short left to M.Lewis for 2 yards TOUCHDOWN.,0,3,2012 20120930_CIN@JAC,2,43,40,JAC,CIN,,,2,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,3,2012 20120930_CIN@JAC,2,43,40,JAC,CIN,,,2,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,7,3,2012 20120930_CIN@JAC,2,43,33,CIN,JAC,1,10,80,(13:33) B.Green-Ellis right end to CIN 20 for no gain (R.Allen).,3,7,2012 20120930_CIN@JAC,2,42,56,CIN,JAC,2,10,80,(12:56) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 29 for 9 yards (R.Allen).,3,7,2012 20120930_CIN@JAC,2,42,12,CIN,JAC,3,1,71,(12:12) A.Dalton pass incomplete deep left to A.Binns.,3,7,2012 20120930_CIN@JAC,2,42,7,CIN,JAC,4,1,71,(12:07) (Punt formation) K.Huber punts 58 yards to JAX 13 Center-C.Harris out of bounds.,3,7,2012 20120930_CIN@JAC,2,41,58,JAC,CIN,1,10,87,(11:58) B.Gabbert pass short left to G.Jones to JAX 23 for 10 yards (V.Burfict).,7,3,2012 20120930_CIN@JAC,2,41,22,JAC,CIN,1,10,77,(11:22) M.Jones-Drew left end to JAX 27 for 4 yards (R.Maualuga).,7,3,2012 20120930_CIN@JAC,2,40,43,JAC,CIN,2,6,73,(10:43) M.Jones-Drew right end to JAX 27 for no gain (T.Newman; R.Nelson).,7,3,2012 20120930_CIN@JAC,2,40,15,JAC,CIN,3,6,73,(10:15) (Shotgun) B.Gabbert pass incomplete short middle to J.Blackmon.,7,3,2012 20120930_CIN@JAC,2,40,11,JAC,CIN,4,6,73,(10:11) (Punt formation) B.Anger punts 61 yards to CIN 12 Center-J.Cain. B.Tate pushed ob at CIN 25 for 13 yards (J.Parmele).,7,3,2012 20120930_CIN@JAC,2,39,59,CIN,JAC,1,10,75,(9:59) (Shotgun) A.Dalton pass short left to B.Green-Ellis to CIN 24 for -1 yards (R.Allen).,3,7,2012 20120930_CIN@JAC,2,39,19,CIN,JAC,2,11,76,(9:19) (Shotgun) A.Dalton pass incomplete short left to A.Binns (D.Cox).,3,7,2012 20120930_CIN@JAC,2,39,15,CIN,JAC,3,11,76,(9:15) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 34 for 10 yards (A.Ross; D.Landry).,3,7,2012 20120930_CIN@JAC,2,38,36,CIN,JAC,4,1,66,(8:36) (Punt formation) Direct snap to C.Peerman. C.Peerman right end to JAX 18 for 48 yards (M.Owens).,3,7,2012 20120930_CIN@JAC,2,37,45,CIN,JAC,1,10,18,(7:45) B.Green-Ellis up the middle to JAX 13 for 5 yards (J.Mincey; D.Landry).,3,7,2012 20120930_CIN@JAC,2,37,4,CIN,JAC,2,5,13,(7:04) (Shotgun) A.Dalton pass incomplete short middle to A.Binns (J.Mincey).,3,7,2012 20120930_CIN@JAC,2,37,0,CIN,JAC,3,5,13,(7:00) (Shotgun) A.Dalton pass incomplete short right to J.Gresham. PENALTY on JAX-D.Lowery Defensive Pass Interference 12 yards enforced at JAX 13 - No Play.,3,7,2012 20120930_CIN@JAC,2,36,53,CIN,JAC,1,1,1,(6:53) B.Green-Ellis left end to JAX 1 for no gain (J.Stanford).,3,7,2012 20120930_CIN@JAC,2,36,21,CIN,JAC,2,1,1,(6:21) A.Dalton pass short left to C.Pressley for 1 yard TOUCHDOWN.,3,7,2012 20120930_CIN@JAC,2,36,21,CIN,JAC,,,1,(Kick formation) M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,3,7,2012 20120930_CIN@JAC,2,36,21,CIN,JAC,,,1,M.Nugent kicks 69 yards from CIN 35 to JAX -4. J.Parmele to JAX 25 for 29 yards (V.Rey). PENALTY on JAX-J.Stanford Illegal Block Above the Waist 10 yards enforced at JAX 18.,10,7,2012 20120930_CIN@JAC,2,36,10,JAC,CIN,1,10,92,(6:10) M.Jones-Drew right end to JAX 8 for no gain (W.Gilberry).,7,10,2012 20120930_CIN@JAC,2,35,31,JAC,CIN,2,10,92,(5:31) B.Gabbert pass short left to G.Jones to JAX 12 for 4 yards (R.Nelson).,7,10,2012 20120930_CIN@JAC,2,34,57,JAC,CIN,3,6,88,(4:57) (Shotgun) B.Gabbert sacked at JAX 6 for -6 yards (C.Dunlap). PENALTY on CIN-C.Dunlap Face Mask (15 Yards) 15 yards enforced at JAX 6. Sack caused fumble which was negated by penalty.,7,10,2012 20120930_CIN@JAC,2,34,49,JAC,CIN,1,10,79,(4:49) B.Gabbert pass incomplete deep right to J.Blackmon.,7,10,2012 20120930_CIN@JAC,2,34,44,JAC,CIN,2,10,79,(4:44) (Shotgun) B.Gabbert pass short left to R.Jennings to JAX 19 for -2 yards (R.Nelson).,7,10,2012 20120930_CIN@JAC,2,34,0,JAC,CIN,3,12,81,(4:00) (Shotgun) B.Gabbert pass short middle to J.Blackmon to JAX 18 for -1 yards (V.Burfict).,7,10,2012 20120930_CIN@JAC,2,33,25,JAC,CIN,4,13,82,(3:25) (Punt formation) B.Anger punts 42 yards to CIN 40 Center-J.Cain out of bounds.,7,10,2012 20120930_CIN@JAC,2,33,17,CIN,JAC,1,10,60,(3:17) B.Green-Ellis up the middle to CIN 49 for 9 yards (P.Posluszny).,10,7,2012 20120930_CIN@JAC,2,32,51,CIN,JAC,2,1,51,(2:51) (No Huddle) B.Green-Ellis up the middle to JAX 42 for 9 yards (P.Posluszny).,10,7,2012 20120930_CIN@JAC,2,32,28,CIN,JAC,1,10,42,(2:28) (No Huddle) B.Green-Ellis left end to JAX 43 for -1 yards (J.Mincey).,10,7,2012 20120930_CIN@JAC,2,32,0,CIN,JAC,2,11,43,(2:00) (Shotgun) A.Dalton pass deep right to A.Green pushed ob at JAX 1 for 42 yards (R.Mathis).,10,7,2012 20120930_CIN@JAC,2,31,53,CIN,JAC,1,1,1,(1:53) B.Green-Ellis left guard to JAX 1 for no gain (T.Knighton).,10,7,2012 20120930_CIN@JAC,2,31,15,CIN,JAC,2,1,1,(1:15) A.Dalton up the middle for 1 yard TOUCHDOWN.,10,7,2012 20120930_CIN@JAC,2,31,15,CIN,JAC,,,1,(Kick formation) M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,10,7,2012 20120930_CIN@JAC,2,31,15,CIN,JAC,,,1,M.Nugent kicks 74 yards from CIN 35 to JAX -9. R.Jennings Touchback.,17,7,2012 20120930_CIN@JAC,2,31,11,JAC,CIN,1,10,80,(1:11) (Shotgun) B.Gabbert scrambles up the middle to JAX 23 for 3 yards.,7,17,2012 20120930_CIN@JAC,2,30,51,JAC,CIN,2,7,77,(:51) (Shotgun) B.Gabbert pass short left to J.Blackmon to JAX 30 for 7 yards (V.Burfict).,7,17,2012 20120930_CIN@JAC,2,30,43,JAC,CIN,1,10,70,(:43) (Shotgun) B.Gabbert pass incomplete short middle to M.Thomas [G.Atkins].,7,17,2012 20120930_CIN@JAC,2,30,39,JAC,CIN,2,10,70,(:39) (Shotgun) B.Gabbert pass short right to M.Thomas pushed ob at JAX 39 for 9 yards (C.Crocker).,7,17,2012 20120930_CIN@JAC,2,30,31,JAC,CIN,3,1,61,(:31) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (T.Newman).,7,17,2012 20120930_CIN@JAC,2,30,27,JAC,CIN,4,1,61,(:27) (Punt formation) B.Anger punts 61 yards to end zone Center-J.Cain Touchback.,7,17,2012 20120930_CIN@JAC,2,30,4,CIN,JAC,1,10,80,(:04) A.Dalton kneels to CIN 19 for -1 yards.,17,7,2012 20120930_CIN@JAC,3,30,0,JAC,CIN,,,80,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,7,17,2012 20120930_CIN@JAC,3,30,0,CIN,JAC,1,10,80,(15:00) A.Dalton pass short left to J.Gresham to CIN 36 for 16 yards (D.Cox).,17,7,2012 20120930_CIN@JAC,3,29,34,CIN,JAC,1,10,64,(14:34) B.Green-Ellis up the middle to CIN 40 for 4 yards (P.Posluszny; T.Alualu).,17,7,2012 20120930_CIN@JAC,3,28,51,CIN,JAC,2,6,60,(13:51) (Shotgun) A.Dalton pass deep right to A.Green pushed ob at JAX 30 for 30 yards (R.Mathis).,17,7,2012 20120930_CIN@JAC,3,28,26,CIN,JAC,1,10,30,(13:26) B.Green-Ellis up the middle to JAX 28 for 2 yards (D.Landry).,17,7,2012 20120930_CIN@JAC,3,27,52,CIN,JAC,2,8,28,(12:52) A.Dalton pass short left to A.Green to JAX 20 for 8 yards (D.Cox).,17,7,2012 20120930_CIN@JAC,3,27,20,CIN,JAC,1,10,20,(12:20) A.Dalton pass short middle to A.Green to JAX 6 for 14 yards (D.Lowery).,17,7,2012 20120930_CIN@JAC,3,26,43,CIN,JAC,1,6,6,(11:43) A.Dalton pass incomplete short right to A.Green.,17,7,2012 20120930_CIN@JAC,3,26,40,CIN,JAC,2,6,6,(11:40) (Shotgun) A.Dalton pass short left to A.Green to JAX 1 for 5 yards (R.Allen; P.Posluszny).,17,7,2012 20120930_CIN@JAC,3,26,7,CIN,JAC,3,1,1,(11:07) B.Green-Ellis left end to JAX 1 for no gain (J.Mincey). FUMBLES (J.Mincey) RECOVERED by JAX-C.Mosley at JAX 0. Touchback.,17,7,2012 20120930_CIN@JAC,3,25,59,JAC,CIN,1,10,80,(10:59) M.Jones-Drew up the middle to JAX 24 for 4 yards (D.Peko).,7,17,2012 20120930_CIN@JAC,3,25,17,JAC,CIN,2,6,76,(10:17) B.Gabbert pass short right to G.Jones to JAX 29 for 5 yards (T.Mays).,7,17,2012 20120930_CIN@JAC,3,24,43,JAC,CIN,3,1,71,(9:43) (Shotgun) B.Gabbert pass short left to J.Blackmon ran ob at JAX 34 for 5 yards.,7,17,2012 20120930_CIN@JAC,3,24,17,JAC,CIN,1,10,66,(9:17) B.Gabbert pass deep middle to L.Robinson to CIN 47 for 19 yards (A.Jones). JAX-L.Robinson was injured during the play. His return is Questionable.,7,17,2012 20120930_CIN@JAC,3,23,47,JAC,CIN,1,10,47,(8:47) B.Gabbert pass short right to J.Blackmon to CIN 33 for 14 yards (T.Newman).,7,17,2012 20120930_CIN@JAC,3,23,9,JAC,CIN,1,10,33,(8:09) M.Jones-Drew up the middle to CIN 31 for 2 yards (R.Geathers).,7,17,2012 20120930_CIN@JAC,3,22,26,JAC,CIN,2,8,31,(7:26) B.Gabbert pass short right to J.Blackmon to CIN 22 for 9 yards (T.Newman).,7,17,2012 20120930_CIN@JAC,3,21,43,JAC,CIN,1,10,22,(6:43) B.Gabbert scrambles up the middle to CIN 15 for 7 yards (V.Burfict).,7,17,2012 20120930_CIN@JAC,3,20,58,JAC,CIN,2,3,15,(5:58) M.Jones-Drew up the middle to CIN 13 for 2 yards (R.Geathers; D.Peko).,7,17,2012 20120930_CIN@JAC,3,20,12,JAC,CIN,3,1,13,(5:12) M.Jones-Drew up the middle to CIN 12 for 1 yard (M.Lawson).,7,17,2012 20120930_CIN@JAC,3,19,39,JAC,CIN,1,10,12,(4:39) B.Gabbert pass incomplete short right to C.Shorts.,7,17,2012 20120930_CIN@JAC,3,19,32,JAC,CIN,2,10,12,(4:32) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to CIN 8 for 4 yards (R.Nelson).,7,17,2012 20120930_CIN@JAC,3,18,50,JAC,CIN,3,6,8,(3:50) (Shotgun) B.Gabbert pass short left to K.Elliott to CIN 3 for 5 yards (A.Jones).,7,17,2012 20120930_CIN@JAC,3,18,8,JAC,CIN,4,1,3,(3:08) (Field Goal formation) J.Scobee 21 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,7,17,2012 20120930_CIN@JAC,3,18,8,JAC,CIN,,,3,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,10,17,2012 20120930_CIN@JAC,3,18,4,CIN,JAC,1,10,80,(3:04) (Shotgun) A.Dalton pass short left to B.Green-Ellis to CIN 33 for 13 yards (D.Cox; P.Posluszny).,17,10,2012 20120930_CIN@JAC,3,17,24,CIN,JAC,1,10,67,(2:24) B.Green-Ellis up the middle to CIN 34 for 1 yard (T.Alualu; R.Allen).,17,10,2012 20120930_CIN@JAC,3,16,51,CIN,JAC,2,9,66,(1:51) (Shotgun) A.Dalton scrambles up the middle to CIN 36 for 2 yards (A.Branch).,17,10,2012 20120930_CIN@JAC,3,16,8,CIN,JAC,3,7,64,(1:08) (Shotgun) A.Dalton pass short right to A.Hawkins to JAX 33 for 31 yards (P.Posluszny).,17,10,2012 20120930_CIN@JAC,3,15,28,CIN,JAC,1,10,33,(:28) A.Dalton pass short right to J.Gresham to JAX 28 for 5 yards (P.Posluszny).,17,10,2012 20120930_CIN@JAC,4,15,0,CIN,JAC,2,5,28,(15:00) (Shotgun) A.Dalton pass short right to J.Gresham to JAX 21 for 7 yards (D.Lowery).,17,10,2012 20120930_CIN@JAC,4,14,36,CIN,JAC,1,10,21,(14:36) B.Green-Ellis up the middle to JAX 18 for 3 yards (J.Mincey).,17,10,2012 20120930_CIN@JAC,4,13,57,CIN,JAC,2,7,18,(13:57) (Shotgun) A.Dalton pass deep right to A.Green for 18 yards TOUCHDOWN.,17,10,2012 20120930_CIN@JAC,4,13,57,,JAC,,,18,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,10,2012 20120930_CIN@JAC,4,13,57,CIN,JAC,,,18,M.Nugent kicks 72 yards from CIN 35 to JAX -7. R.Jennings Touchback.,24,10,2012 20120930_CIN@JAC,4,13,51,JAC,CIN,1,10,80,(13:51) B.Gabbert pass deep middle intended for J.Blackmon INTERCEPTED by C.Crocker at JAX 39. C.Crocker pushed ob at JAX 16 for 23 yards (M.Lewis).,10,24,2012 20120930_CIN@JAC,4,13,39,CIN,JAC,1,10,16,(13:39) B.Green-Ellis up the middle to JAX 16 for no gain (K.Bosworth; R.Allen).,24,10,2012 20120930_CIN@JAC,4,12,53,CIN,JAC,2,10,16,(12:53) A.Dalton pass incomplete deep right to A.Binns.,24,10,2012 20120930_CIN@JAC,4,12,47,CIN,JAC,3,10,16,(12:47) (Shotgun) A.Dalton pass incomplete deep left to A.Binns.,24,10,2012 20120930_CIN@JAC,4,12,42,CIN,JAC,4,10,16,(12:42) M.Nugent 35 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,24,10,2012 20120930_CIN@JAC,4,12,42,CIN,JAC,,,16,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,27,10,2012 20120930_CIN@JAC,4,12,38,JAC,CIN,1,10,80,(12:38) B.Gabbert pass incomplete short right to C.Shorts.,10,27,2012 20120930_CIN@JAC,4,12,29,JAC,CIN,2,10,80,(12:29) (Shotgun) B.Gabbert sacked at JAX 9 for -11 yards (V.Burfict).,10,27,2012 20120930_CIN@JAC,4,12,13,JAC,CIN,3,21,91,(12:13) (Shotgun) B.Gabbert pass short right to M.Jones-Drew to JAX 22 for 13 yards (R.Nelson).,10,27,2012 20120930_CIN@JAC,4,11,44,JAC,CIN,4,8,78,(11:44) B.Anger punts 43 yards to CIN 35 Center-J.Cain. B.Tate to JAX 46 for 19 yards (A.Morgan).,10,27,2012 20120930_CIN@JAC,4,11,34,CIN,JAC,1,10,46,(11:34) B.Green-Ellis right end to JAX 46 for no gain (A.Lane).,27,10,2012 20120930_CIN@JAC,4,10,53,CIN,JAC,2,10,46,(10:53) B.Green-Ellis up the middle to JAX 40 for 6 yards (C.Mosley).,27,10,2012 20120930_CIN@JAC,4,10,10,CIN,JAC,3,4,40,(10:10) A.Dalton pass incomplete deep left to A.Green.,27,10,2012 20120930_CIN@JAC,4,10,3,CIN,JAC,4,4,40,(10:03) K.Huber punts 36 yards to JAX 4 Center-C.Harris downed by CIN-A.Hawkins.,27,10,2012 20120930_CIN@JAC,4,9,55,JAC,CIN,1,10,96,(9:55) B.Gabbert pass short middle to M.Lewis to JAX 11 for 7 yards (M.Lawson).,10,27,2012 20120930_CIN@JAC,4,9,16,JAC,CIN,2,3,89,(9:16) M.Jones-Drew up the middle to JAX 17 for 6 yards (R.Maualuga).,10,27,2012 20120930_CIN@JAC,4,8,45,JAC,CIN,1,10,83,(8:45) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to JAX 27 for 10 yards (R.Maualuga).,10,27,2012 20120930_CIN@JAC,4,8,18,JAC,CIN,1,10,73,(8:18) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott.,10,27,2012 20120930_CIN@JAC,4,8,15,JAC,CIN,2,10,73,(8:15) (Shotgun) B.Gabbert sacked at JAX 24 for -3 yards (G.Atkins).,10,27,2012 20120930_CIN@JAC,4,7,43,JAC,CIN,3,13,76,(7:43) (Shotgun) B.Gabbert pass short middle to C.Shorts to JAX 32 for 8 yards (V.Rey).,10,27,2012 20120930_CIN@JAC,4,7,8,JAC,CIN,4,5,68,(7:08) B.Anger punts 44 yards to CIN 24 Center-J.Cain fair catch by B.Tate.,10,27,2012 20120930_CIN@JAC,4,7,2,CIN,JAC,1,10,76,(7:02) B.Green-Ellis up the middle to CIN 25 for 1 yard (J.Mincey). FUMBLES (J.Mincey) and recovers at CIN 25. B.Green-Ellis to CIN 25 for no gain (R.Allen).,27,10,2012 20120930_CIN@JAC,4,6,19,CIN,JAC,2,9,75,(6:19) B.Green-Ellis up the middle to CIN 27 for 2 yards (P.Posluszny).,27,10,2012 20120930_CIN@JAC,4,5,36,CIN,JAC,3,7,73,(5:36) (Shotgun) B.Leonard up the middle to CIN 30 for 3 yards (DA.Smith; T.Knighton).,27,10,2012 20120930_CIN@JAC,4,5,1,CIN,JAC,4,4,70,(5:01) K.Huber punts 49 yards to JAX 21 Center-C.Harris downed by CIN-A.Hawkins.,27,10,2012 20120930_CIN@JAC,4,4,47,JAC,CIN,1,10,79,(4:47) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott (A.Jones). Heavy rain began on this play.,10,27,2012 20120930_CIN@JAC,4,4,43,JAC,CIN,2,10,79,(4:43) (Shotgun) B.Gabbert pass incomplete short left to J.Blackmon (V.Burfict).,10,27,2012 20120930_CIN@JAC,4,4,38,JAC,CIN,3,10,79,(4:38) (Shotgun) B.Gabbert sacked at JAX 17 for -4 yards (G.Atkins).,10,27,2012 20120930_CIN@JAC,4,4,38,JAC,CIN,4,14,83,(4:38) B.Gabbert pass short middle to M.Jones-Drew to JAX 26 for 9 yards (R.Geathers).,10,27,2012 20120930_CIN@JAC,4,3,43,CIN,JAC,1,10,26,(3:43) B.Green-Ellis up the middle to JAX 19 for 7 yards (P.Posluszny).,27,10,2012 20120930_CIN@JAC,4,3,2,CIN,JAC,2,3,19,(3:02) B.Green-Ellis right end to JAX 17 for 2 yards (D.Landry).,27,10,2012 20120930_CIN@JAC,4,2,21,CIN,JAC,3,1,17,(2:21) B.Green-Ellis up the middle to JAX 14 for 3 yards (P.Posluszny).,27,10,2012 20120930_CIN@JAC,4,2,0,CIN,JAC,1,10,14,(2:00) B.Green-Ellis right end to JAX 11 for 3 yards (D.Landry).,27,10,2012 20120930_CIN@JAC,4,1,17,CIN,JAC,2,7,11,(1:17) A.Dalton kneels to JAX 12 for -1 yards.,27,10,2012 20120930_CIN@JAC,4,0,36,CIN,JAC,3,8,12,(:36) A.Dalton kneels to JAX 13 for -1 yards.,27,10,2012 20120930_CIN@JAC,4,0,36,CIN,JAC,,,12,                      ,27,10,2012 20120930_NO@GB,1,0,0,NO,GB,,,12,T.Morstead kicks 66 yards from NO 35 to GB -1. R.Cobb to GB 23 for 24 yards (T.Cadet).,0,0,2012 20120930_NO@GB,1,59,55,GB,NO,1,10,77,(14:55) C.Benson up the middle to GB 25 for 2 yards (W.Herring).,0,0,2012 20120930_NO@GB,1,59,24,GB,NO,2,8,75,(14:24) C.Benson left end to GB 30 for 5 yards (J.Greer).,0,0,2012 20120930_NO@GB,1,58,42,GB,NO,3,3,70,(13:42) (Shotgun) A.Rodgers pass short right to Ja.Jones to GB 32 for 2 yards (J.Greer).,0,0,2012 20120930_NO@GB,1,57,53,GB,NO,4,1,68,(12:53) T.Masthay punts 47 yards to NO 21 Center-B.Goode. D.Sproles to NO 25 for 4 yards (R.Taylor).,0,0,2012 20120930_NO@GB,1,57,42,NO,GB,1,10,75,(12:42) (Shotgun) D.Brees pass short right to M.Colston to NO 31 for 6 yards (T.Williams; D.Smith).,0,0,2012 20120930_NO@GB,1,57,10,NO,GB,2,4,69,(12:10) P.Thomas right tackle to NO 34 for 3 yards (M.Burnett; J.McMillian).,0,0,2012 20120930_NO@GB,1,56,46,NO,GB,3,1,66,(11:46) (No Huddle) P.Thomas right tackle to NO 34 for no gain (C.Matthews).,0,0,2012 20120930_NO@GB,1,56,13,NO,GB,4,1,66,(11:13) T.Morstead punts 28 yards to GB 38 Center-J.Drescher out of bounds.,0,0,2012 20120930_NO@GB,1,56,6,GB,NO,1,10,62,(11:06) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at NO 47 for 15 yards (P.Robinson).,0,0,2012 20120930_NO@GB,1,55,52,GB,NO,1,10,47,(10:52) (No Huddle Shotgun) C.Benson right tackle to NO 42 for 5 yards (S.Shanle; C.Jordan).,0,0,2012 20120930_NO@GB,1,55,23,GB,NO,2,5,42,(10:23) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley pushed ob at NO 30 for 12 yards (R.Harper).,0,0,2012 20120930_NO@GB,1,54,57,GB,NO,1,10,30,(9:57) (No Huddle Shotgun) A.Rodgers pass incomplete deep middle to G.Jennings.,0,0,2012 20120930_NO@GB,1,54,53,GB,NO,2,10,30,(9:53) (No Huddle Shotgun) A.Rodgers pass short middle to J.Nelson to NO 12 for 18 yards (R.Harper).,0,0,2012 20120930_NO@GB,1,54,14,GB,NO,1,10,12,(9:14) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Finley (S.Shanle).,0,0,2012 20120930_NO@GB,1,54,9,GB,NO,2,10,12,(9:09) (No Huddle Shotgun) A.Rodgers pass short left to Ja.Jones for 12 yards TOUCHDOWN.,0,0,2012 20120930_NO@GB,1,54,9,,GB,,,12,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 20120930_NO@GB,1,54,9,GB,NO,,,12,M.Crosby kicks 74 yards from GB 35 to NO -9. D.Sproles Touchback.,7,0,2012 20120930_NO@GB,1,54,2,NO,GB,1,10,80,(9:02) M.Ingram right tackle to NO 23 for 3 yards (C.Woodson T.Williams).,0,7,2012 20120930_NO@GB,1,53,34,NO,GB,2,7,77,(8:34) (Shotgun) D.Brees pass short right to D.Sproles to NO 29 for 6 yards (C.Woodson).,0,7,2012 20120930_NO@GB,1,52,56,NO,GB,3,1,71,(7:56) D.Brees pass short right to J.Graham to NO 35 for 6 yards (C.Woodson).,0,7,2012 20120930_NO@GB,1,52,14,NO,GB,1,10,65,(7:14) (Shotgun) D.Brees pass short left to D.Thomas to NO 41 for 6 yards (M.Burnett; C.Hayward).,0,7,2012 20120930_NO@GB,1,51,42,NO,GB,2,4,59,(6:42) (Shotgun) D.Brees pass short right to L.Moore ran ob at GB 49 for 10 yards (T.Williams).,0,7,2012 20120930_NO@GB,1,51,19,NO,GB,1,10,49,(6:19) M.Ingram up the middle to GB 44 for 5 yards (A.Hawk). PENALTY on NO-J.Evans Offensive Holding 10 yards enforced at GB 49 - No Play.,0,7,2012 20120930_NO@GB,1,50,57,NO,GB,1,20,59,(5:57) (Shotgun) D.Brees pass short middle to J.Graham to GB 35 for 24 yards (M.Jennings C.Woodson).,0,7,2012 20120930_NO@GB,1,50,24,NO,GB,1,10,35,(5:24) D.Sproles right guard to GB 31 for 4 yards (J.Worthy M.Burnett).,0,7,2012 20120930_NO@GB,1,49,49,NO,GB,2,6,31,(4:49) (Shotgun) D.Brees pass short middle to J.Graham to GB 19 for 12 yards (M.Burnett; T.Williams).,0,7,2012 20120930_NO@GB,1,48,38,NO,GB,2,11,20,(3:38) D.Brees pass deep left to M.Colston for 20 yards TOUCHDOWN.,0,7,2012 20120930_NO@GB,1,48,38,NO,GB,,,20,G.Hartley extra point is GOOD.,0,7,2012 20120930_NO@GB,1,48,38,NO,GB,,,20,T.Morstead kicks 74 yards from NO 35 to GB -9. R.Cobb Touchback.,7,7,2012 20120930_NO@GB,1,48,33,GB,NO,1,10,80,(3:33) A.Rodgers pass incomplete short middle to G.Jennings.,7,7,2012 20120930_NO@GB,1,48,28,GB,NO,2,10,80,(3:28) (No Huddle) C.Benson left end to GB 24 for 4 yards (M.Jenkins C.Lofton).,7,7,2012 20120930_NO@GB,1,47,52,GB,NO,3,6,76,(2:52) (No Huddle Shotgun) A.Rodgers right end ran ob at GB 31 for 7 yards (C.Lofton).,7,7,2012 20120930_NO@GB,1,47,28,GB,NO,1,10,69,(2:28) (No Huddle) A.Rodgers pass short left to R.Cobb pushed ob at GB 36 for 5 yards (M.Jenkins).,7,7,2012 20120930_NO@GB,1,47,8,GB,NO,2,5,64,(2:08) (No Huddle Shotgun) C.Benson right guard to GB 43 for 7 yards (C.Lofton).,7,7,2012 20120930_NO@GB,1,46,42,GB,NO,1,10,57,(1:42) (No Huddle Shotgun) A.Rodgers pass short right to C.Benson to GB 45 for 2 yards (C.Lofton).,7,7,2012 20120930_NO@GB,1,46,15,GB,NO,2,8,55,(1:15) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb to NO 45 for 10 yards (J.Greer).,7,7,2012 20120930_NO@GB,1,45,46,GB,NO,1,10,45,(:46) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to NO 25 for 20 yards (I.Abdul-Quddus).,7,7,2012 20120930_NO@GB,1,45,10,GB,NO,1,10,25,(:10) (No Huddle) A.Rodgers pass short left to D.Driver to NO 22 for 3 yards (M.Jenkins).,7,7,2012 20120930_NO@GB,2,45,0,GB,NO,2,7,22,(15:00) (Shotgun) PENALTY on NO-J.Galette Neutral Zone Infraction 5 yards enforced at NO 22 - No Play.,7,7,2012 20120930_NO@GB,2,45,0,GB,NO,2,2,17,(15:00) (Shotgun) A.Rodgers pass short left to J.Finley to NO 9 for 8 yards (R.Harper I.Abdul-Quddus).,7,7,2012 20120930_NO@GB,2,44,22,GB,NO,1,9,9,(14:22) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings for 9 yards TOUCHDOWN.,7,7,2012 20120930_NO@GB,2,44,22,GB,NO,,,9,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,7,2012 20120930_NO@GB,2,44,22,GB,NO,,,9,M.Crosby kicks 69 yards from GB 35 to NO -4. D.Sproles to NO 28 for 32 yards (S.Shields; J.Bush).,14,7,2012 20120930_NO@GB,2,44,10,NO,GB,1,10,72,(14:10) D.Brees pass incomplete short right to L.Moore.,7,14,2012 csv-1.3.0/examples/data/bench/worldcitiespop.csv000064400000000000000000035125021046102023000200220ustar 00000000000000Country,City,AccentCity,Region,Population,Latitude,Longitude lk,ihagama,Ihagama,29,,7.3666667,80.5666667 de,littel,Littel,06,,53.016667,8.166667 ru,volokovoye,Volokovoye,77,,56.720724,31.054491 mz,cabo nhavova,Cabo Nhavova,03,,-23.6277778,35.3291667 bd,sampur,Sampur,80,,22.9166667,91.3833333 bd,sail cho,Sail Cho,80,,23.3666667,91.0833333 ru,belaya,Belaya,77,,57.5,33.533333 at,liebenberg,Liebenberg,03,,48.8,15.45 af,saidukala,Saidukala,29,,33.316945,68.906389 tr,kutus,Kütüs,65,,38.2,42.716667 ng,kwambola,Kwambola,35,,10.263124,13.089565 pe,pampa mayo,Pampa Mayo,15,,-11.2230556,-76.6338889 la,ban sopyong,Ban Sôpyong,03,,19.683889,104.325278 ru,markovo,Markovo,69,,54.521257,31.156132 lk,illukpelessa,Illukpelessa,29,,7.0333333,80.9 ru,fedorikha,Fedorikha,77,,57.343582,34.576725 ng,amapunta,Amapunta,45,,5.316667,7.366667 cn,wangchiachi,Wangchiachi,12,,31.490556,112.258611 de,kleinelbersdorf,Kleinelbersdorf,13,,51.016667,13.983333 cn,sanho,Sanho,20,,50.466667,120.083333 pl,wilczkow,Wilczkow,72,,50.968531,16.982401 re,le ruisseau,Le Ruisseau,00,,-21.2333333,55.4333333 es,nava,Nava,55,,41.259958,-3.748929 mm,zayat,Zayat,13,,15.3166667,97.8666667 cy,paleosophos,Paleosophos,02,,35.3291667,33.2083333 ma,sidi salem,Sidi Salem,56,,32,-6.68 br,agreste,Agreste,05,,-13.866667,-43.233333 ru,nevedrevo,Nevedrevo,21,,57.254791,40.690091 et,guno,Guno,51,,9.116667,38.333333 ye,al kamis,Al Kamis,16,,15.1458333,43.9380556 pk,punjab govt employees housing society,Punjab Govt Employees Housing Society,04,,31.4449,74.288 cn,liuhong,Liuhong,32,,28.140632,103.210629 cn,leigu,Leigu,32,,31.781631,104.432925 ru,kyzbulak,Kyzbulak,13,,55.6149,60.8886 th,ban bunsiritham,Ban Bunsiritham,02,,19.809111,99.265056 mw,katumba's village,Katumba's Village,16,,-14.7166667,34.6833333 pk,chak 130 tda,Chak 130 TDA,04,,31.009351,71.107772 in,jogapatti,Jogapatti,34,,26.883333,84.333333 in,gantlavelli,Gantlavelli,02,,17.002778,78.239722 ir,kheybar,Kheybar,10,,32.2919,47.9715 lr,duogmai,Duogmai,05,,8.1838889,-9.7316667 by,lamy,Lamy,04,,53.0666667,29.2333333 ru,osinovo,Osinovo,06,,61.935833,42.699444 rs,zebica,Zebica,00,,42.978611,21.372778 la,ban houaychoung,Ban Houaychoung,18,,21.154722,102.820278 vn,tay tien,Tây Tiên,86,,21.375141,105.129161 se,norra radom,Norra Rådom,22,,59.633333,13.633333 kh,phumi o kdol,Phumi O Kdol,01,,13.1833333,103.3666667 kr,kuryemal,Kuryemal,03,,35.897125,127.567658 ph,wanguilan,Wanguilan,12,,8.203333,124.608333 ir,fathabad,Fathabad,09,,34.47636,48.334259 la,ban ngoua-tai,Ban Ngoua-Tai,14,,19.344722,103.176389 et,ameniyos,Ameniyos,46,,12.833333,37.45 cn,longtuxi,Longtuxi,11,,29.08534,110.684447 ua,pervomayskoye,Pervomayskoye,21,,51.81938,34.026914 bj,bambreu,Bambreu,01,,9.6833333,1.5 mx,zapopan,Zapopan,14,987555,20.716667,-103.4 us,assyria,Assyria,MI,,42.4644444,-85.1313889 tr,degirmenyeni,Degirmenyeni,22,,41.762033,26.55309 ye,al qayfi,Al Qayfi,06,,13.2847222,44.5833333 ru,pantsyrevka,Pantsyrevka,67,,51.402586,44.652479 cm,moukoume,Moukoumé,05,,3.7522222,9.6025 ru,ulus,Ulus,29,,55.573,84.8976 id,nglempong lor,Nglempong Lor,10,,-7.737778,110.382222 ru,khurkhi,Khurkhi,17,,42.106271,47.126172 tz,scante,Scante,24,,-6.5666667,32.7666667 us,warren,Warren,PA,9569,41.8438889,-79.1452778 ru,dema,Dëma,34,,61.009377,54.435124 ru,malyye litvinki,Malyye Litvinki,51,,56.572049,43.910007 af,siah darreh,Siah Darreh,02,,34.625112,63.518937 ng,tswachiko,Tswachiko,31,,9.216667,6.383333 zm,kaluwela,Kaluwela,05,,-12.3833333,29.9833333 ru,novo-yelovka,Novo-Yelovka,39,,56.5009,90.645 iq,qal`a ahmad,Qal`a Ahmad,14,,32.4166667,46.7166667 az,sendlyar,Sendlyar,71,,40.118243,47.862164 sy,bir aarab,Bîr Aarab,04,,36.65,38.7166667 ma,auokeda,Auokeda,57,,35.091882,-4.588807 co,tolima b,Tolima B,01,,-1.527728,-71.983486 mm,man kawnhawng,Man Kawnhawng,11,,21.95,99.0 mz,uachave,Uachave,09,,-17.8494444,36.9177778 sn,sare demba mali,Saré Demba Mali,11,,13.1,-14.2333333 ir,gil'gilyan,Gil'gilyan,33,,37.3684,48.0575 id,watunggiling,Watunggiling,18,,-9.926368,120.677501 la,ban na louong,Ban Na Louong,17,,19.8675,102.139167 bd,ramshilpalotana,Ramshilpalotana,81,,23.0666667,90.0833333 af,qowl-e awghan,Qowl-e Awghan,08,,32.961052,67.39816 cn,laowangxu,Laowangxu,01,,33.066667,116.716667 so,bijiliino,Bijiliino,14,,1.85,44.7166667 eg,qalata as -ughra,Qalata as -ughra,09,,30.3622222,31.0258333 ru,maly kobezhekov,Maly Kobezhekov,31,,54.546389,89.725833 gr,trikkala,Tríkkala,12,,40.5980556,22.5566667 id,afdeling 5 a tinjoan,Afdeling 5 A Tinjoan,26,,3.0643,99.4442 tr,korucak,Korucak,44,,38.074273,38.705184 ru,novosergeyeka,Novosergeyeka,10,,52.382846,32.018035 de,schwansee,Schwansee,15,,51.083333,11.083333 cn,qingshuihecun,Qingshuihecun,26,,33.838816,108.047853 mx,jolochero,Jolochero,27,,17.516667,-91.066667 tr,yavsan,Yavsan,52,,40.47611,37.912916 de,baierberg,Baierberg,02,,48.266667,11.05 co,florencia,Florencia,38,,10.126776,-74.238177 ao,oscar cahembe,Óscar Cahembe,17,,-7.633333,21.3 tr,yalinli,Yalinli,20,,38.25,29.833333 af,mokhow payan,Mokhow Payan,26,,36.159204,69.979577 sy,guir ech,Guir Ech,01,,36.9333333,40.9166667 de,custenlohr,Custenlohr,02,,49.516667,10.233333 zm,nseluka,Nseluka,07,,-9.9666667,31.2666667 us,russtown,Russtown,NC,,33.9572222,-78.4316667 us,piney grove,Piney Grove,VA,,36.7897222,-78.8386111 cn,tanpengchen,Tanpengchen,04,,30.895,120.594722 au,kinchela creek,Kinchela Creek,02,,-30.966667,153 ru,adlerovka,Adlerovka,25,,55.025661,36.336264 kh,phumi ok taok,Phumi Ok Taok,15,,13.5666667,107.3166667 kr,seondupo,Seondupo,12,,37.626389,126.478611 ru,kuray-yelga,Kuray-Yelga,73,,55.0112,53.1028 am,lusagyukh,Lusagyukh,01,,40.6144444,44.3908333 fr,bretx,Bretx,B3,,43.703151,1.198267 sy,ech chir,Ech Chir,02,,35.5166667,35.85 ng,maidugu,Maidugu,35,,8.6,12.116667 ru,bolshoye lopatino,Bolshoye Lopatino,51,,57.301889,45.623478 id,meningapotil,Meningapotil,21,,-1.495833,123.378611 us,brentwood,Brentwood,KY,,37.2966667,-87.5133333 my,kampung temagi,Kampung Temagi,06,,4.0545,102.2219 cn,quanbo zhen,Quanbo Zhen,03,,28.380772,118.334211 mz,zatava,Zatava,09,,-17.2275,37.7480556 br,sitio joao vida leal filho,Sítio João Vida Leal Filho,18,,-23.505089,-50.032873 bd,maschari,Maschari,80,,23.0166667,92.0166667 cn,caojiashan,Caojiashan,11,,29.565976,110.871373 be,vlassardstraat,Vlassardstraat,08,,51.183333,3.716667 es,montmajor,Montmajor,56,,42.017482,1.735019 sk,klvace,Klvace,06,,48.8166667,17.4166667 cn,shuiduilong,Shuiduilong,03,,28.872745,114.576383 lt,kibeyki,Kibeyki,59,,54.61,22.7433333 us,finger,Finger,NC,,35.3847222,-80.3580556 af,dilghanah,Dilghanah,39,,32.65081,66.304917 in,madli,Madli,24,,26.166667,72.516667 ar,canada de jume,Canada de Jume,05,,-30.946991,-63.746437 my,kampong stampin,Kampong Stampin,11,,1.5,110.366667 mk,sipkovo tece,Sipkovo Tece,91,,42.0263889,20.935 id,parangan dua,Parangan Dua,08,,-8.4754,114.2619 hu,gabriella,Gabriella,04,,48.05,21.083333 us,bowmont,Bowmont,ID,,43.4561111,-116.5400000 kz,ul'kun-ak-su,Ul'kun-Ak-Su,01,,43.366667,79.583333 ir,now qand,Now Qand,41,,33.262345,59.699982 la,ban vat sisoumang,Ban Vat Sisoumang,02,,14.883333,105.866667 iq,salman al `aytan,Salman Al `Aytan,04,,31.7677778,44.9833333 cn,beitou,Beitou,26,,34.611382,107.171254 lk,ihala tammanna,Ihala Tammanna,32,,7.6333333,79.9166667 hn,carbon,Carbon,08,,14.25,-87.05 cn,shibangou,Shibangou,32,,29.233323,102.718982 kz,novosukhotino,Novosukhotino,16,,53.85,69.716667 cn,yanghsichiao,Yanghsichiao,01,,30.65,117.083333 kp,saebatmok,Saebatmok,17,,40.9166667,129.6833333 us,imperial,Imperial,MO,,38.3697222,-90.3783333 az,mirzamammadkand,Mirzamammadkand,42,,41.378319,48.529393 zr,osongi i,Osongi I,09,,-1.1333333,24.3833333 la,ban dong mone,Ban Dong Mone,10,,16.516667,105.15 af,bala duri-ye dovvom,Bala Duri-ye Dovvom,03,,36.045868,68.667488 ie,farahy,Farahy,04,,52.2408333,-8.4422222 kp,kumgongni,Kumgongni,08,,37.9352778,126.4186111 us,santa elena,Santa Elena,PR,,17.9727778,-66.0994444 ng,nyikua,Nyikua,26,,7.6942,8.5896 se,esum,Esum,10,,61.25,13.733056 id,aleu meganda,Aleu Meganda,01,,4.4465,96.1128 ke,wamutitu,Wamutitu,01,,-0.55,37.0333333 kp,ryoha,Ryoha,15,,39.2683333,126.0158333 hu,janosfaimalom,Jánosfaimalom,09,,47.407216,16.957076 sy,turkumanli,Turkumanli,02,,35.8333333,35.9333333 id,pacet,Pacet,30,328324,-6.750278,107.046667 gb,terrydremont,Terrydremont,S4,,55,-6.916667 mp,port louis town,Port Louis Town,18,,-20.1619444,57.4988889 de,papstdorf,Papstdorf,13,,50.9,14.133333 tn,douar ousseltia,Douar Ousseltia,22,,36.264432,9.321079 gn,sounkouloun,Sounkouloun,26,,11.0166667,-9.1833333 na,mapulanga,Mapulanga,28,,-17.8666667,23.35 ma,kattos,Kattos,47,,31.200396,-8.660277 th,ban thong lang,Ban Thong Lang,68,,7.384417,100.437 ru,gusevo,Gusevo,90,,57.6103,57.0377 kh,phumi prek ta long,Phumi Prek Ta Long,07,,11.5,104.95 ir,sheykhsilu,Sheykhsilu,01,,39.0388,44.863 id,belimbing 3,Belimbing 3,30,,-6.098056,106.668611 fr,la thieuloye,La Thieuloye,B4,,50.41373,2.436641 bd,meratali,Meratali,81,,23.9833333,90.8833333 ng,jesse,Jesse,36,,5.864759,5.753723 ru,borovichki,Borovichki,60,,56.2038,29.9242 cn,huangshanxu,Huangshanxu,30,,21.845823,111.642672 cn,shangtaitougao,Shangtaitougao,19,,42.008932,121.815408 id,bojongraos,Bojongraos,30,,-7.1628,108.3154 ru,zelenyy dol,Zelënyy Dol,67,,51.249614,46.450614 gw,cadunco,Caduncó,10,,12.15,-14.3833333 ba,lopatice,Lopatice,01,,43.7605556,17.0141667 dk,sinebjerg,Sinebjerg,21,,55.082574,10.183792 ro,marasesti,Marasesti,27,,46.566667,24.366667 mz,nhacaxoxo,Nhacaxôxo,08,,-15.6936111,31.5597222 cn,lianghokou,Lianghokou,33,,29.166667,108.783333 cn,linglo,Linglo,16,,24.405405,106.581537 ua,dementovka,Dementovka,17,,47.454495,29.717181 gn,beli,Beli,27,,11.2833333,-13.6333333 pk,nazikabad,Nazikabad,05,,25.668995,68.985041 ru,balki,Balki,40,,55.278889,65.330278 ru,serpanki,Serpanki,86,,50.427954,39.559834 az,merikend,Merikend,50,,40.645516,48.543992 ph,taguin,Taguin,11,,10.06536,124.383022 ar,vicuna mackenna,Vicuna Mackenna,05,,-33.919652,-64.392153 by,blagovka,Blagovka,04,,53.3613889,32.3986111 cn,tumenlingqian,Tumenlingqian,19,,40.562238,124.396411 tr,akkoy,Akköy,17,,39.802844,27.172547 us,chestnut grove,Chestnut Grove,TN,,35.5111111,-85.8172222 af,shekhgai,Shekhgai,23,,31.487391,67.037373 la,ban xon,Ban Xon,06,,19.816667,102.216667 it,gorgonzola,Gorgonzola,09,19167,45.533333,9.4 ru,pyshminskiy,Pyshminskiy,71,,56.938672,60.902947 gt,el cinchado,El Cinchado,09,,15.616667,-88.433333 se,norra lovfallet,Norra Lövfallet,15,,59.983333,14.95 kr,taepyongiltong,Taepyongiltong,13,,37.446389,127.124167 gr,dafnoula,Dafnoúla,30,,39.1338889,21.4225 in,bisangarh,Bisangarh,36,,29.784444,77.167778 mm,pang lao,Pang Lao,06,,19.95,97.2 pk,tagaya,Tagaya,07,,36.1975,74.5524 ua,shabolat,Shabolat,17,,46.05,30.366667 lr,webo,Webo,02,,4.8516667,-7.5975 ir,dehru,Dehru,32,,37.4114,48.7015 de,holzolling,Holzolling,02,,47.866667,11.833333 it,casa bubbaco,Casa Bubbaco,20,,45.466667,12.416667 de,westereck,Westereck,10,,54.283333,8.65 cn,jiapuling,Jiapuling,12,,30.49925,114.603267 ba,velika jasenica,Velika Jasenica,01,,44.8183333,16.2516667 us,brayton,Brayton,NY,,43.4511111,-73.6258333 mm,thakahta,Thakahta,05,,16.0666667,98.45 lb,al majdal,Al Majdal,03,,34.2533333,35.7927778 ru,traktornyy,Traktornyy,46,,54.0838,42.8746 ru,malanino,Malanino,43,,52.216667,39.083333 us,sextonville,Sextonville,WI,,43.2783333,-90.2908333 id,tjiburial,Tjiburial,30,,-6.801944,106.768611 ye,ar rada`i,Ar Rada`i,13,,14.0177778,44.3952778 pk,karampur bhatti,Karampur Bhatti,04,,30.334722,73.458333 ng,gale,Gale,46,,10.052652,10.340519 cn,sijiahe,Sijiahe,24,,35.427778,113.062778 cz,brezno,Brezno,89,,50.356091,13.732435 ir,guvaddeh,Guvaddeh,04,,27.383333,62.316667 fr,bussiereix,Bussiereix,B7,,45.931616,.850483 cn,zhenglu,Zhenglu,25,,37.272778,117.34 ru,aki-yurt,Aki-Yurt,19,,43.508034,44.863695 sl,senehun,Senehun,03,,7.2,-11.9833333 pa,la saragosa,La Saragosa,04,,9.5666667,-79.1333333 lt,smalkvieciai,Smalkvieciai,63,,55.6333333,22.45 tr,dogruyol,Dogruyol,13,,38.299965,42.227164 cn,shiquan,Shiquan,32,,30.961756,104.526594 vn,buon riong deum,Buon Riong Deum,23,,12.216667,108.283333 za,rankin's pass,Rankin's Pass,09,,-24.530462,27.91263 ir,zira,Zira,22,,29.4141,51.1502 sv,el corozal,El Corozal,14,,13.5166667,-88.6333333 cd,busu-mindwana,Busu-Mindwana,00,,3.166667,20.8 si,vrbovo,Vrbovo,04,,45.5522222,14.2755556 ph,puting bato,Puting Bato,H2,,15.2005,121.408 kr,chagunmae,Chagunmae,16,,34.478333,126.968889 pa,palmilla,Palmilla,04,,8.95,-80.7833333 af,loya-bela,Loya-Bela,34,,34.976111,71.318611 ar,minacar,Minacar,13,,-35.86661,-70.068303 mx,bolanos,Bolaños,11,,20.816667,-101.9 id,muarotebo,Muarotebo,05,,-1.5,102.433333 vn,song cau,Song Cau,61,,13.45,109.216667 tr,turkoglu,Turkoglu,05,,40.742868,35.373273 in,mugarra tatehi,Mugarra Tatehi,36,,27.851,79.0338 bg,kondofrey,Kondofrey,58,,42.4277778,23.005 jp,furuichi,Furuichi,13,,35.016667,135.15 pk,naiyan da dera,Naiyan da Dera,04,,32.3641,72.405803 id,sukaliuh,Sukaliuh,33,,-6.5768,105.8336 pk,chamath,Chamath,03,,34.367061,73.065651 af,larmush,Larmush,05,,35.334338,67.748866 fm,nemwan,Nemwan,03,,7.3833333,151.8833333 ru,aksarino,Aksarino,16,,55.446261,47.549551 ms,fairfield,Fairfield,01,,16.6833333,-62.2 ml,kelegou,Kélégou,07,,13.0833333,-6.5 th,ban yue la pae,Ban Yue La Pae,69,,6.58425,101.533889 us,sunnyside,Sunnyside,GA,,34.9330556,-83.7772222 tg,mandouta,Mandouta,07,,9.9833333,0.9 ga,kounadembe,Kounadembé,07,,-1.4333333,12.3833333 us,lakecreek,Lakecreek,OR,,42.4225000,-122.6250000 cm,noubou,Noubou,12,,10.3166667,14.1166667 th,ban yai,Ban Yai,31,,6.161194,101.908306 fr,arraye,Arraye,B2,,48.840055,6.291951 us,barren creek,Barren Creek,WV,,38.4802778,-81.2833333 ir,zagheh-ye `olya,Zagheh-ye `Olya,16,,35.7563,47.1076 ru,shpingarev,Shpingarëv,09,,50.116111,38.298889 fr,landepereuse,Landepéreuse,A7,,49.004296,.638655 bw,bonapitse,Bonapitse,01,,-23.0166667,26.6666667 gy,jacaretinga,Jacaretinga,19,,3.5166667,-59.6666667 id,selotambak utara,Selotambak Utara,08,,-7.6396,112.849 cn,weijiaba,Weijiaba,26,,32.834167,105.5775 us,davenport,Davenport,OK,,35.7047222,-96.7650000 cn,yangtieni,Yangtieni,12,,31.026111,114.108056 ua,gumentsy,Gumentsy,15,,49.512806,23.066587 ua,shishaki,Shishaki,18,,49.857614,33.291892 id,krajan lama bedadung,Krajan Lama Bedadung,08,,-8.1223,113.768 us,rancocas woods,Rancocas Woods,NJ,,39.9888889,-74.8605556 ru,blinovshchina,Blinovshchina,37,,58.9622,47.263329 er,wekerti,Wekerti,00,,15.1530556,39.0072222 pg,kundubiran,Kundubiran,06,,-5.7833333,141.0166667 ci,bianhitouo ii,Bianhitouo II,78,,6.853982,-8.174154 bj,sori,Sori,03,,10.7280556,2.7825 bg,altsek,Altsek,61,,43.7833333,27.5333333 cn,xintan,Xintan,01,,29.736095,118.280854 zr,mwana goy,Mwana Goy,05,,-5.4333333,27.25 tr,kardesler,Kardesler,23,,38.5,38.733333 al,dragun,Dragun,41,,41.5225,20.2602778 it,borzago,Borzago,17,,46.1,10.733333 lt,gegrenay,Gegrenay,63,,56.1,21.9166667 sl,mobunji,Mobunji,03,,7.8333333,-12.5833333 ne,guidan kachambo,Guidan Kachambo,04,,14.0166667,6.75 th,ban khao ruak,Ban Khao Ruak,37,,14.683333,100.916667 bo,san francisco,San Francisco,04,,-16.7833333,-68.7666667 dz,douar yazerou,Douar Yazerou,51,,35.5927778,0.6588889 mn,huraliin hiid,Huraliin Hiid,08,,46.2333333,106.25 pe,ancocullo,Ancocullo,04,,-15.1916667,-71.2072222 bd,gaindapara,Gaindapara,80,,22.3666667,92.2166667 bg,palilula,Palilula,33,,43.4369444,23.3880556 fr,saint-robert,Saint-Robert,A3,,48.66593,1.945923 al,kaftall,Kaftall,49,,41.9541667,19.7719444 cn,kyidartang,Kyidartang,14,,32.002,93.202 dk,riddertofte,Riddertofte,20,,54.75865,11.030113 tr,benlideresi-key,Benlideresi-Key,31,,36.448988,36.163155 sb,koli,Koli,08,,-9.4,160.1833333 ru,preussisch bahnau,Preussisch Bahnau,23,,54.46,19.894722 in,nanoti,Nanoti,35,,24.2489,78.0119 ru,gremyachiy,Gremyachiy,41,,51.915528,36.749368 ma,tamegoult,Tamegoult,47,,31.100899,-9.37653 cn,dakuangdonggou,Dakuangdonggou,19,,41.216073,124.23412 cn,beishangping,Beishangping,24,,35.010278,111.521389 br,santa maria,Santa Maria,22,,-5.260278,-36.276389 th,ban rai luang,Ban Rai Luang,02,,18.570361,98.825611 pk,rasool bakhsh lashari,Rasool Bakhsh Lashari,05,,27.429043,68.668306 ba,gusta ravan,Gusta Ravan,02,,43.7288889,19.2655556 id,keumaladalam,Keumaladalam,01,,5.211,95.8534 us,hog jaw,Hog Jaw,AL,,34.3322222,-86.5602778 kp,tutapsangcham,Tutapsangcham,01,,40.1833333,126.5666667 ru,sredniye luchki,Sredniye Luchki,76,,53.613127,36.788179 et,gona,Gona,46,,12.233333,39.233333 id,orongpulet,Orongpulet,17,,-8.3361,116.2046 id,kedungcacing,Kedungcacing,08,,-7.3993,112.5234 mx,maguey,Maguey,14,,21.2,-102.116667 th,ban lam dang,Ban Lam Dang,64,,7.9,99.533333 pt,domingao,Domingão,16,,39.244063,-8.032904 cn,hengdao,Hengdao,23,,30.945829,121.022147 ec,nar,Nar,04,,-2.55,-78.9333333 ve,los naranjos,Los Naranjos,20,,7.6622222,-71.9755556 sl,duako,Duako,02,,9.85,-11.2833333 us,curtis,Curtis,WY,,42.0897222,-104.9494444 cn,tutuo,Tutuo,09,,35.25,112.633333 vn,ap vinh tuong,Ap Vinh Tuong,21,,9.475,105.218611 lt,paezeriu,Paezeriu,60,,55.7,24.9666667 nl,ulfterhoek,Ulfterhoek,05,,51.424099,6.048381 tr,gencelli,Gencelli,09,,37.957619,28.660239 zr,musungi,Musungi,00,,-7.1833333,28.3333333 cn,tsuyangchi,Tsuyangchi,10,,38.183333,114.45 kh,khum reab,Khum Reab,14,,11.65,105.2 no,nedstryn,Nedstryn,15,,61.916667,6.783333 es,bielba,Bielba,39,,43.15,-4.45 ir,sagzabad,Sagzabad,38,,35.773,49.9378 ru,gryada,Gryada,77,,55.835518,32.200418 cn,baojiaxiang,Baojiaxiang,04,,31.698114,121.1091 kh,phumi ta thaong,Phumi Ta Thaong,08,,11.15,103.7333333 la,ban poun,Ban Poun,14,,19.266667,103.283333 mm,shabingon,Shabingon,08,,19.7666667,96.15 pk,bakht baland,Bakht Baland,04,,30.174486,70.713152 sn,nemataba mandingue,Némataba Mandingue,11,,12.7811111,-15.0188889 lt,cerkosari,Cerkosari,61,,55.6333333,23.55 vn,ap thanh dang,Ap Thanh Dang,40,,11.083333,107.1 us,boice,Boice,MS,,31.7475000,-88.6547222 hu,hegyesto,Hegyesto,23,,46.883333,17.65 pa,sabaneta de angulo,Sabaneta de Ángulo,10,,7.7166667,-80.9333333 id,landang jambu,Landang Jambu,26,,2.8028,99.0433 dz,el kheloua,El Kheloua,12,,36.5,5.6666667 ru,chentsovo,Chentsovo,77,,56.4,34.4 kr,gwonseondong,Gwonseondong,13,,37.258333,127.028333 ru,chineta,Chineta,04,,51.3295,83.0543 mz,errati,Erráti,06,,-15.7283333,39.4375 th,ban pang kham suk,Ban Pang Kham Suk,02,,17.974972,98.388889 bd,baisdhar,Baisdhar,81,,24.8166667,90.7666667 lr,biaplay,Biaplay,09,,7.1808333,-8.4958333 ge,nadaburi,Nadaburi,05,,42.1566667,44.3247222 kz,bez-kuduk,Bez-Kuduk,07,,50.110278,49.373333 ua,okhrimovka,Okhrimovka,04,,47.633333,33.35 pl,gora motyczna,Gora Motyczna,80,,50.0921,21.370294 ph,lusoc,Lusoc,38,,13.5061,121.9917 fr,munot,Munot,A1,,47.154497,3.025998 za,bakbank,Bakbank,03,,-29.774541,25.590075 pk,bahram shah,Bahram Shah,03,,32.906667,70.507778 ml,malemougou,Malémougou,07,,13.2833333,-6.7 ph,alejandro pascual,Alejandro Pascual,47,,15.71667,120.98333 co,morito,Morito,02,,6.166667,-75.866667 us,letson settlement,Letson Settlement,AL,,34.5766667,-87.2916667 tr,kizilgol,Kizilgol,31,,35.971154,36.095064 de,gengkofen,Gengkofen,02,,48.966667,12.25 in,shikarpur,Shikarpur,36,34652,28.283333,78.016667 my,telok ayer,Telok Ayer,02,,5.747731,100.361229 pl,wisnicze,Wisnicze,83,,50.494042,18.565204 sk,rimavica,Rimavica,01,,48.5166667,19.9 cn,qianliu,Qianliu,29,,22.9,100.2 ht,nouvelette,Nouvelette,08,,18.5833333,-74.1333333 lb,khartum,Khartum,02,,33.4,35.3666667 tr,cerme,Çerme,24,,39.619659,40.594722 mm,indaw,Indaw,11,,21.1,96.4166667 it,san giorgio lomellina,San Giorgio Lomellina,09,,45.166667,8.783333 pg,bugatabin,Bugatabin,18,,-4.8,141.1333333 so,faylogooye,Faylogooye,13,,2.7666667,45.6333333 ma,ouled ben khrane,Ouled ben khrane,47,,32.549182,-7.75399 gh,agyebon,Agyebon,08,,6.3,0.0666667 ca,fort mcmurray,Fort McMurray,01,,56.733333,-111.383333 es,caserio prados,Caserío Prados,31,,38.030987,-1.910237 pk,jamwani,Jamwani,04,,30.42093,70.641414 ng,ungwan sarkin dangi,Ungwan Sarkin Dangi,24,,11.827521,7.532061 ru,nikola-koptevo,Nikola-Koptevo,85,,58.702611,40.674191 kr,munhyeon,Munhyeon,12,,37.630556,126.433056 gt,el bonete,El Bonete,10,,14.45,-89.95 pe,taurija,Taurija,13,,-8.3666667,-77.3333333 pk,kothre,Kothre,04,,32.033333,74.3875 kz,livanovskiy,Livanovskiy,13,,52.093333,61.990833 sk,hliniky,Hliníky,04,,47.8333333,18.1 in,balkonda,Balkonda,02,,18.866667,78.35 id,macope,Macope,38,,-4.3641,119.9027 ec,carlos ordonez lazo,Carlos Ordóñez Lazo,02,,-2.8166667,-78.7666667 ro,risca peste vale,Risca peste Vale,34,,47.366667,26.233333 sn,adabere,Adabéré,04,,15.1333333,-12.7833333 hr,trnovdc,Trnovdc,08,,44.5263889,15.2772222 co,mapuraray,Mapúraray,17,,12.05,-71.766667 pk,ghulam madad lohar baloch goth,Ghulam Madad Lohar Baloch Goth,05,,27.983589,68.609888 cn,siyuangou,Siyuangou,04,,32.25,119.183333 id,lokowina,Lokowina,18,,-9.6166,119.2239 th,ban khok na lao,Ban Khok Na Lao,18,,17.25,101.983333 id,serayak,Serayak,05,,-.516667,104.55 vn,long thanh,Long Thanh,28,,13.616667,109.2 my,kampong baharu,Kampong Baharu,16,,5.8114,118.0739 pk,khudayarwala,Khudayarwala,04,,32.021568,71.247437 cn,tchertchen,Tchertchen,13,,38.133333,85.533333 cn,shencaoyang,Shencaoyang,30,,22.907377,115.618199 cu,guanajal,Guanajal,08,,22.1725,-80.62 pk,chindagh,Chindagh,03,,34.929422,72.095187 iq,rashan,Rashan,11,,36.5252778,44.215 fr,saint-fulgent,Saint-Fulgent,B5,,46.852259,-1.177979 cn,qunai,Qunai,31,,18.839346,110.404213 md,gura-kamencha,Gura-Kamencha,75,,47.890556,28.356944 my,kampung titi teras,Kampung Titi Teras,02,,5.839784,100.453568 us,poarch store,Poarch Store,VA,,36.8366667,-77.7277778 ph,del pilar,Del Pilar,67,,12.295,125.0326 ru,blizhneye chesnochnoye,Blizhneye Chesnochnoye,09,,50.6926,38.851 ru,barskoye,Barskoye,83,,56.279841,41.944696 zr,gungu,Gungu,07,,-1.6519444,28.8769444 kr,cheimpyong,Cheimpyong,03,,35.520011,127.423161 ma,douar oulad salem,Douar Oulad Salem,52,,34.564834,-5.77303 fr,le vizoc,Le Vizoc,A2,,48.521247,-4.312492 ao,carumapia,Carumapia,08,,-12.6,15.6 fr,poisvilliers,Poisvilliers,A3,,48.508448,1.468874 pg,awungi,Awungi,10,,-4.7833333,151.8166667 cz,skripp,Skripp,85,,49.818452,17.910362 ua,malaya savustyanivka,Malaya Savustyanivka,01,,48.795057,29.918696 kr,yutgul,Yutgul,13,,37.6579,127.2008 ve,wico,Wico,02,,9.0,-64.1666667 td,oum-chalouba,Oum-Chalouba,03,,15.8,20.7666667 ir,kalateh-ye golgir,Kalateh-ye Golgir,42,,35.108986,58.338067 es,valdesogo de arriba,Valdesogo de Arriba,55,,42.547389,-5.513818 us,rhymes,Rhymes,LA,,32.3788889,-91.8988889 sy,as sabuniyah,As Sabuniyah,11,,34.5833333,37.0166667 ir,mehdi,Mehdi,15,,31.8303,48.851 ir,amirabad,Amirabad,10,,33.3424,46.2837 us,millwood,Millwood,KS,,39.3838889,-95.1166667 ro,zarnesti,Zarnesti,03,,45.033333,24.766667 mm,lewainggyi,Lèwainggyi,09,,18.25,96.7166667 es,villardeciervos,Villardeciervos,58,,41.878932,-7.382647 lb,jarjouaa,Jarjoûaa,02,,33.4469444,35.5208333 bo,berlin,Berlín,06,,-10.7833333,-66.3333333 bo,estancia novillero,Estancia Novillero,02,,-18.2833333,-65.2166667 be,deinze,Deinze,08,27777,50.983333,3.533333 pk,spera sharan melan,Spera Sharan Melan,02,,31.026534,68.690995 lb,bmaryamine,Bmaryamîne,02,,33.15,35.3 ru,sagada,Sagada,12,,42.908834,46.137667 cn,baligang,Baligang,01,,31.085727,118.023454 vn,ban tang,Ban Tang,32,,21.116667,104.483333 af,gada chineh,Gada Chineh,14,,34.686035,69.679637 af,band-e tughay,Band-e Tughay,39,,32.963913,65.501797 af,`alam `ali,`Alam `Ali,03,,35.578158,68.461067 ph,tiling,Tiling,H3,3332,9.9736,122.6544 ng,opaleye,Opaleye,32,,7.528056,3.757222 pe,alisal,Alisal,06,,-5.3166667,-79.2666667 id,oesoe,Oesoe,38,,-2.5922,121.0918 cz,radl,Radl,83,,50.697703,15.115058 hk,sha kok mei,Sha Kok Mei,00,,22.3833333,114.2666667 zm,chasara,Chasara,06,,-14.35,31.9833333 fr,sanguille,Sanguille,A3,,46.778945,1.812468 zm,mukawo,Mukawo,05,,-14.4666667,28.1666667 us,little waupon,Little Waupon,WI,,44.5938889,-89.3944444 ru,leontyevskiy,Leontyevskiy,61,,49.033333,42.1 pk,mahmud jamalani,Mahmud Jamalani,02,,30.157306,69.730745 de,keutschen,Keutschen,14,,51.133333,12.083333 mm,thikahedo,Thikahedo,05,,18.05,97.2166667 ir,mogheytiyeh,Mogheytiyeh,15,,30.2928,48.3864 cn,xiaojia dayan,Xiaojia Dayan,12,,29.995884,111.547588 id,dampit satu,Dampit Satu,30,,-7.1581,106.9901 cn,shilixiaoshan,Shilixiaoshan,05,,42.439454,127.572098 ru,rogovo,Rogovo,90,,57.166667,54.533333 mx,san juan de la puerta,San Juan de la Puerta,11,,20.730278,-101.701389 ir,chonbeh sara,Chonbeh Sara,08,,37.560833,49.067222 cn,dai,Dai,32,,30.585805,103.521729 cn,miaonan,Miaonan,26,,34.489038,109.406786 us,mariana,Mariana,PR,,18.3355556,-65.9536111 us,black wolf,Black Wolf,WV,,37.3361111,-81.4863889 cn,leiguanji,Leiguanji,01,,32.347222,118.615833 la,ban lamphian,Ban Lamphian,10,,16.35,105.366667 bd,sarulia,Sarulia,81,,23.8333333,90.3333333 ht,ti charute,Ti Charute,09,,19.7211111,-72.1697222 nl,elsteren,Elsteren,05,,51.55419,6.075351 cd,monganga,Monganga,10,,-2.283333,25.783333 iq,khanika,Khanika,08,,37.1791667,43.3483333 in,sakchi,Sakchi,38,,22.816667,86.216667 in,indas,Indas,28,,23.15,87.616667 id,bangker,Bangker,07,,-6.7321,111.3289 co,montanita,Montañita,14,,2.570724,-72.745711 ru,chelasinskaya,Chelasinskaya,30,,57.583333,137.433333 gn,sonssadougou,Sonssadougou,01,,8.8166667,-8.4333333 cn,tanjia,Tanjia,12,,29.20398,114.051383 cm,nganbe,Nganbé,05,,4.2333333,10.6166667 mg,marofatotra,Marofatotra,06,,-23.6,45.6333333 cn,wangjingping,Wangjingping,30,,23.853709,116.594563 in,tori fatehpur,Tori Fatehpur,36,10211,25.45,79.133333 cz,vrbno nad lesy,Vrbno nad Lesy,88,,50.321604,13.906794 es,apeadero,Apeadero,51,,37.35,-2.083333 af,saifo kelay,Saifo Kelay,28,,31.958663,66.743414 vn,srok loi son,Srok Loi Son,31,,11.566667,106.633333 id,sawahasep,Sawahasep,30,,-6.738333,106.820278 cn,huahuaqiao,Huahuaqiao,32,,29.411305,103.845711 br,protestantes,Protestantes,15,,-22.733333,-46.3 bd,ramhari taluk,Ramhari Taluk,85,,22.8333333,91.0 cd,bulaya,Bulaya,10,,-4.183333,26.516667 cn,liyuancun,Liyuancun,30,,21.649444,111.6125 kh,phumi kampong chrey,Phumi Kampong Chrey,13,,13.9833333,105.8333333 gn,morifinia,Morifinia,10,,9.5166667,-13.3333333 kz,alatay,Alatay,16,,53.966667,67.55 us,waverly,Waverly,MS,,33.5675000,-88.5038889 id,perbulan,Perbulan,26,,3.1427,98.0645 tr,kizil,Kizil,10,,40.119919,27.987756 fr,labrosse,Labrosse,A3,,48.242895,2.392649 kr,songhyonni,Songhyonni,13,,37.485833,127.620278 fr,darois,Darois,A1,,47.390577,4.938324 lr,molokua,Molokua,01,,6.65,-9.5333333 ng,jauro alhaji,Jauro Alhaji,35,,8.616667,12.05 ro,balintu nou,Balintu Nou,36,,45.816667,21.883333 us,bayhead,Bayhead,MD,,39.0427778,-76.4244444 cn,shenkuangfuchuang,Shenkuangfuchuang,04,,32.211389,120.582778 id,banjardowo,Banjardowo,10,,-7.926111,110.690833 in,bolthan,Bolthan,16,,20.183333,74.916667 af,manah ha,Manah Ha,11,,33.30201,61.960354 id,bulu duri,Bulu Duri,01,,2.7297,99.6836 tz,kimunyu,Kimunyu,18,,-4.5166667,38.4166667 ru,bessonovka,Bessonovka,67,,50.7768,48.2607 lk,kumbukewatta,Kumbukewatta,32,,7.8333333,79.95 ro,resighea,Resighea,05,,47.6,22.316667 us,campbell,Campbell,TX,,33.1480556,-95.9511111 co,laas dantas,Laas Dantas,10,,8.213116,-73.558145 td,moursale bamba,Moursalé Bamba,10,,9.35,14.7 id,sekindal,Sekindal,01,,4.3921,97.2562 ch,luchsingen,Luchsingen,08,,46.966404,9.037147 pl,niedzwiedz,Niedzwiedz,79,,50.283333,17.55 pk,chak eight-three l,Chak Eight-Three L,04,,30.727081,71.74418 fr,buciere,Bucière,A3,,46.867917,2.744789 fr,sarlande,Sarlande,97,,45.451222,1.117314 hn,planes de hicaque,Planes de Hicaque,01,,15.6666667,-87.3833333 my,kundang,Kundang,01,,2.1851,102.5143 pk,haji sohail,Haji Sohail,02,,28.119046,67.968634 hu,iharosi dulo,Iharosi Dulo,23,,46.8,17.433333 lr,biple,Biple,09,,6.94,-8.6563889 dz,berkais,Berkaïs,14,,36.5666667,4.5 so,golol,Golol,09,,0.8883333,41.9647222 in,chillur,Chillur,02,,17.680278,78.9275 do,mahoma abajo,Mahoma Abajo,33,,18.5666667,-70.3666667 ir,nosratabad-e behraz,Nosratabad-e Behraz,09,,34.6921,48.0856 af,salam kalay,Salam Kalay,28,,32.582063,67.309394 tz,izyomba,Izyomba,24,,-7.3833333,31.2666667 be,han-du-han,Han-du-Han,06,,49.8,5.116667 us,athena,Athena,FL,,29.9877778,-83.4944444 hu,alsoszallas,Alsószállás,01,,46.378523,19.522807 so,geed abeerah,Geed Abeerah,16,,9.5833333,43.75 gr,trivounon,Trívounon,08,,40.75,21.3 bg,yutyukler,Yutyukler,52,,43.4333333,26.6333333 vn,khao meut,Khao Meut,39,,22.15,106.533333 lk,periyapadu,Periyapadu,32,,7.85,79.7666667 pg,tauhimbier,Tauhimbier,11,,-3.6833333,142.7333333 ec,cojiemies,Cojiemíes,14,,0.3666667,-80.0333333 mx,bastan,Bastán,16,,18.745833,-101.166667 gr,neapolis,Neápolis,46,2809,35.2538889,25.6097222 ba,kravarevo,Kravarevo,02,,43.2019444,18.5233333 mr,vindi boke,Vindi Boké,10,,15.4166667,-12.4166667 gb,zeal monachorum,Zeal Monachorum,D4,,50.816667,-3.816667 id,karangseme,Karangseme,17,,-8.6013,116.0937 at,reinpolz,Reinpolz,03,,48.766667,14.85 lb,farayya,Farayya,05,,34.0166667,35.8166667 it,altavilla irpina,Altavilla Irpina,04,,41,14.783333 us,echeta,Echeta,WY,,44.4580556,-105.8758333 pe,hacienda santa ana del quiroz,Hacienda Santa Ana del Quiroz,20,,-4.5416667,-80.085 vn,la hao,La Hào,86,,21.225582,105.341721 dz,sidi mohammed bene zerga,Sidi Mohammed Bene Zerga,26,,35.4391667,0.3152778 ao,chiguita,Chiguita,12,,-8.634352,16.958663 cd,mela,Mela,12,,-3.316667,28.016667 ci,talahini-sokoura,Talahini-Sokoura,92,,8.118382,-3.64483 kr,oeju,Oeju,12,,37.705833,126.396389 il,ga`aton,Ga`aton,03,,32.995558,35.100917 ee,myassa,Myassa,14,,57.9944444,22.1777778 ru,olgovka,Olgovka,54,,54.356651,74.999524 th,ban nok ban,Ban Nok Ban,56,,13.093528,100.012861 us,hay springs,Hay Springs,NE,,42.6838889,-102.6894444 th,ban pu muen nai,Ban Pu Muen Nai,02,,20.026306,99.168278 mw,jailos,Jailos,13,,-13.5333333,32.8666667 id,pasirmuncang,Pasirmuncang,33,,-6.0969,105.9802 cu,cangrejeras,Cangrejeras,11,,23.0469444,-82.5125 md,aleksandreni noua,Aleksandreni Noua,78,,46.721944,29.023056 id,darungan kidul,Darungan Kidul,08,,-7.8411,112.1393 cn,hanpei,Hanpei,24,,36.749722,113.162778 za,battlemond,Battlemond,10,,-26.895643,23.715743 ru,viktorovka,Viktorovka,86,,49.694086,40.241839 id,doromenge,Doromenge,18,,-8.8717,121.1126 ph,dalena,Dalena,31,,17.46582,121.862946 gr,polovitsa,Polovítsa,42,,36.9333333,22.4666667 us,lake lucerne estates,Lake Lucerne Estates,GA,,33.8336111,-84.0983333 de,gerholling,Gerholling,02,,48.85,13.133333 al,ball,Ball,45,,40.3847222,20.1102778 nl,nieuwe vaart,Nieuwe Vaart,02,,52.989153,6.005976 kp,iryangdong,Iryangdong,03,,39.6861111,126.9105556 mx,la congoja,La Congoja,01,,22.166667,-102.55 ir,fark,Fark,34,,34.783973,49.814401 pk,nauth mirwal,Nauth Mirwal,04,,33.487298,72.302299 ve,morrocoyes,Morrocoyes,03,,6.2977778,-67.5461111 kp,kwanchongdong,Kwanchongdong,06,,38.6333333,125.0 cn,mengguan,Mengguan,10,,37.822222,115.225833 ir,jowlarestan,Jowlarestan,28,,32.5842,51.5595 ir,gorgi dar,Gorgi Dar,13,,34.7306,46.7414 vn,som chen,Som Chen,19,,21.75,104.733333 la,ban namon,Ban Namôn,21,,18.105833,102.749722 lv,lielberze,Lielberze,08,,56.6444444,23.2425 hu,belatanya,Bélatanya,04,,48.291752,21.886333 ba,preradi,Preradi,02,,44.8030556,16.9688889 fr,l'iscle,L'Iscle,B8,,43.930238,6.632235 zm,mcekeni,Mcekeni,06,,-14.1333333,31.2 ni,el obraje,El Obraje,03,,12.8,-86.9666667 ru,teploye,Tëploye,10,,53.034797,34.630195 bd,harinarayanpur,Harinarayanpur,81,,23.7666667,89.1166667 be,la goutte,La Goutte,06,,50,5.416667 no,skjelvik,Skjelvik,07,,60.166667,6.583333 id,mannukuki,Mannukuki,38,,-5.1153,119.533 us,gibson,Gibson,WY,,42.0186111,-104.9569444 id,huta raja,Huta Raja,26,,2.5007,98.7349 ru,katun,Katun,11,,53.683333,109.066667 ba,sikulje turske,Sikulje Turske,01,,44.5777778,18.5063889 cn,yucheshan,Yucheshan,26,,34.726111,108.646389 us,fowler,Fowler,IL,,40.0077778,-91.2583333 ng,warankai,Warankai,51,,13.473871,5.783296 mz,mecoliua,Mecoliua,06,,-14.0675,38.9275 lk,tambuwa,Tambuwa,32,,7.7166667,80.4333333 iq,shotah,Shotah,15,,36.4858333,42.9338889 ng,unguwar tsamga,Unguwar Tsamga,24,,13.05,7.366667 id,ternadi,Ternadi,07,,-6.6789,110.8806 me,njegulov do,Njegulov Do,00,,42.540278,18.863611 do,el copado,El Copado,05,,18.5833333,-69.6666667 af,dehqan qal`ah,Dehqan Qal`ah,05,,35.367595,67.483926 ve,mocoties,Mocotíes,14,,8.4172222,-71.625 ua,kozachyzna,Kozachyzna,22,,48.857589,26.001255 ph,nasugbu,Nasugbu,09,,14.0722,120.6332 mz,bobacar,Bobacar,03,,-21.8383333,35.2902778 tr,koyuneli,Koyuneli,35,,38.975278,27.176667 td,telibe,Télibé,02,,14.8333333,22.1166667 cn,wolongchong,Wolongchong,12,,30.998715,111.755839 at,kagran,Kagran,09,,48.25,16.416667 gb,whatcote,Whatcote,P3,,52.083333,-1.55 ma,metmour n'ait sidi bouzid,Metmour n'Ait Sidi Bouzid,55,,30.75516,-8.394452 us,ohio city,Ohio City,OH,,40.7713889,-84.6155556 no,synnovjord,Synnövjord,18,,69.612222,18.339167 af,dahan-e qol,Dahan-e Qol,08,,34.052702,67.479139 ru,sobinka,Sobinka,72,,53.430278,42.171944 mx,estancia,Estancia,22,,20.2,-99.9 id,serdangmenang,Serdangmenang,32,,-3.3,104.9 id,sionggangdolok,Sionggangdolok,26,,2.5769,99.0304 id,barulega dua,Barulega Dua,30,,-6.818889,107.054167 us,bonanza hills,Bonanza Hills,NC,,36.1811111,-80.0786111 cn,xiaolancun,Xiaolancun,03,,28.57,115.93 us,berdan,Berdan,IL,,39.3650000,-90.3952778 th,ban na,Ban Na,77,,16.1,104.8 it,ca de' mari,Ca de' Mari,09,,45.15,10.1 ru,sakharnoye pole,Sakharnoye Pole,25,,53.52338,34.60926 ru,lunevo,Lunëvo,56,,53.016667,36.233333 ma,oulad yassine,Oulad Yassine,50,,32.869966,-7.24722 ir,shukol saragh,Shukol Saragh,15,,32.088,49.4786 dz,douar selehbia,Douar Selehbia,07,,35.9508333,0.2377778 lt,rasciunu,Rasciunu,60,,56.1,25.1666667 mn,sangiyn dalay,Sangiyn Dalay,10,,45.1333333,97.75 ru,poroshino,Poroshino,10,,53.133863,33.94137 gq,bonche,Bonche,08,,1.1333333,9.4833333 it,bagnoregio,Bagnoregio,07,,42.616667,12.083333 us,manor,Manor,TX,,30.3405556,-97.5566667 pl,chociszewo,Chociszewo,78,,52.418478,20.38499 mx,itunyaso,Itunyaso,20,,17.234167,-97.390278 id,pulogadung satu,Pulogadung Satu,30,,-6.253333,107.446944 zr,mokaba,Mokaba,09,,0.3666667,25.95 mm,tegyaungywa,Tegyaungywa,01,,20.8,92.85 dk,dallerup,Dallerup,18,,56.168907,9.787908 cn,houwuliang,Houwuliang,19,,41.51416,121.907531 tr,sil,Sil,65,,37.9175,43.370833 at,geretschlag,Geretschlag,03,,47.6,16.266667 kr,surihyon,Surihyon,13,,37.7918,127.432 ru,aleksandrovo-koldabash,Aleksandrovo-Koldabash,57,,52.404728,44.069572 ru,zhabnitsa,Zhabnitsa,77,,57.862441,34.238461 ng,emichi,Emichi,26,,7.2473,7.9303 kh,phumi samraong (2),Phumi Samraong (2),19,,11.0666667,104.9 pk,kot nawab,Kot Nawab,04,,30.093825,72.561695 ru,gordenino,Gordenino,72,,51.883753,41.137915 ba,rendici,Rendici,02,,44.8813889,16.8133333 kr,hanchon,Hanchon,14,,36.882517,129.26334 ph,bato y biasong,Bato y Biasong,30,,11.1551,123.0172 ve,cano grande,Caño Grande,20,,7.5311111,-71.7705556 kr,piryongdaeri,Piryongdaeri,13,,37.7666,127.537 af,khadzhiaziz,Khadzhiaziz,23,,31.609345,65.791601 hr,seghetto,Seghetto,04,,45.4091667,13.545 ru,zobnina,Zobnina,71,,56.7222,58.3688 la,ban van veng,Ban Van Veng,04,,17.65,105.066667 ir,bidar'iyeh,Bidar'iyeh,11,,28.6979,55.7514 zm,sibeta sitoya kuta,Sibeta Sitoya Kuta,03,,-14.7666667,23.5 zr,bafwamabululu,Bafwamabululu,09,,1.4,26.1 nz,terrace end,Terrace End,G2,,-40.35,175.616667 th,ban chueak klang,Ban Chueak Klang,30,,15.440084,104.106139 za,ngcweleni,Ngcweleni,05,,-31.000806,29.492457 af,kolikheyl',Kolikheyl',36,,33.472855,69.016548 kz,yesentay,Yesentay,01,,43.416667,76.983333 gn,diavassama,Diavassama,21,,8.7308333,-9.9025 ru,yelsakovo,Yelsakovo,37,,58.738546,42.699527 kp,hangagol,Hangagol,09,,38.3825,128.1494444 bo,orobaya,Orobaya,04,,-16.4166667,-67.5 gh,ohiamiasi,Ohiamiasi,02,,6.3,-1.25 cn,shangjiuwu zhen,Shangjiuwu Zhen,09,,33.948963,112.977669 ee,kolodavitsa,Kolodavitsa,12,,57.8408333,27.5425 ru,muratovo,Muratovo,08,,53.0354,57.0741 ru,udobny,Udobny,38,,45.117222,40.750833 kh,phumi neal,Phumi Neal,16,,13.9666667,103.8333333 my,kampong pak elong,Kampong Pak Elong,03,,5.966667,102.416667 es,caserio vista-bella,Caserío Vista-Bella,31,,37.883333,-1.366667 ru,poselye-kondas,Poselye-Kondas,90,,59.417018,56.418146 ma,achaich,Achaïch,51,,32.53258,-8.701372 sy,ridwah,Ridwah,12,,36.15,36.6166667 se,biellojaure,Biellojaure,23,,65.8,15.666667 kr,sokchongdong,Sokchongdong,06,,38.105,127.885 ru,nizhnyaya maksakovka,Nizhnyaya Maksakovka,34,,61.639224,50.931728 no,skaanevik,Skaanevik,07,,59.733333,5.983333 kr,ubonggol,Ubonggol,14,,36.025673,129.079931 pl,siekluki,Siekluki,81,,52.626443,22.959088 pk,manai,Manai,03,,32.958611,70.581111 cn,aoshihtsun,Aoshihtsun,24,,39.966752,113.965868 br,mata da varjota,Mata da Varjota,13,,-3.976944,-43.410278 ng,dandadu,Dandadu,43,,8.466667,10.766667 ru,razbugorye,Razbugorye,07,,45.621944,47.594722 sv,san juan talpa,San Juan Talpa,06,,13.5027778,-89.0908333 gb,glamorganshire,Glamorganshire,Y5,,51.666667,-3.666667 sn,seignethiou maissa,Seignethiou Maïssa,08,,15.6,-16.45 us,searcy,Searcy,AR,20154,35.2505556,-91.7361111 us,millridge,Millridge,GA,,33.9244444,-84.4602778 kr,yusan,Yusan,14,,35.79912,128.22233 fr,pont-de-menat,Pont-de-Menat,98,,46.102037,2.931109 de,klepzig,Klepzig,11,,52.016667,12.533333 mm,wayu,Wayu,01,,19.4833333,94.1333333 ir,chekeh kureh,Chekeh Kureh,05,,30.580858,51.624161 ua,komburleyevka,Komburleyevka,16,,46.751126,31.55392 cn,dazhucun,Dazhucun,01,,31.7,117.566667 ir,kalrud-e `olya,Kalrud-e `Olya,29,,28.6647,57.7185 id,buyumpondoli,Buyumpondoli,21,,-1.774,120.5998 ma,ihihech des ait mimoun,Ihihech des Aït Mimoun,55,,30.26892,-9.513568 ir,mudanum,Mudanum,07,,28.75,55.133333 de,gross lunow,Groß Lunow,12,,53.933333,12.65 kr,kolchangbau,Kolchangbau,14,,36.6349,129.1766 td,tabago foulbe,Tabago Foulbé,10,,9.2,14.3833333 es,san lorenzo,San Lorenzo,56,,41.8,2.916667 us,bruce,Bruce,NC,,35.6730556,-77.4841667 ua,moshenki,Moshenki,21,,50.247442,34.913944 pk,goth wingi,Goth Wingi,05,,25.0075,67.0374 id,andai,Andai,39,,-.916667,134 mx,casas viejas,Casas Viejas,12,,18,-101.533333 sv,hacienda danta,Hacienda Danta,01,,13.75,-90.0833333 br,bairro das pederneiras,Bairro das Pederneiras,27,,-21.733333,-51.833333 mg,ivohena,Ivohena,02,,-22.2166667,47.3666667 rw,gasaka,Gasaka,04,,-2.4833333,29.5166667 ng,logyunma,Logyunma,41,,8.733333,6.333333 kz,chebarkul'skiy,Chebarkul'skiy,04,,49.716667,55.616667 in,garh panchkot,Garh Panchkot,28,,23.6,86.766667 ir,kotkeh,Kotkeh,13,,34.8975,46.0684 de,unterpilghausen,Unterpilghausen,07,,51.1,7.25 de,kleinsteinbach,Kleinsteinbach,01,,48.966667,8.55 pl,gross rauden,Gross Rauden,83,,50.190788,18.450766 kr,ogye,Ogye,14,,36.3844,128.3905 ci,diorodougou,Diorodougou,91,,8.223645,-5.689219 iq,jama`at al aliyan,Jama`at al Aliyan,09,,31.5,46.3166667 th,ban khao tham,Ban Khao Tham,52,,13.716667,99.766667 tr,sari,Sari,72,,37.358611,41.295 pk,basti bahawalpur,Basti Bahawalpur,04,,30.550897,72.11468 us,east long branch,East Long Branch,NJ,,40.3133333,-73.9783333 hu,berecztanya,Berecztanya,04,,47.833333,20.7 ru,orlinoye,Orlinoye,59,,44.757778,133.636111 iq,majid al ibrahim,Majid al Ibrahim,17,,32.1519444,44.44 us,turtle beach,Turtle Beach,LA,,31.4177778,-93.6444444 ir,bardeh rash,Bardeh Rash,01,,36.1723,45.7119 co,la florecita,La Florecita,29,,3.917768,-75.99106 bd,purba chak,Purba Chak,81,,23.65,90.0333333 bg,dzhafer,Dzhafer,61,,42.9166667,27.65 ph,dalayap viejo,Dalayap Viejo,51,,15.966667,120.716667 tr,dil,Dil,34,,40.816667,29.283333 id,botubulotu,Botubulotu,34,,.6903,122.9905 ru,krasnoselye,Krasnoselye,85,,58.883333,40.25 ar,campo alegre,Campo Alegre,09,,-25.132441,-60.33238 at,bonacker,Bonacker,08,,47.266667,9.733056 ci,anouan kouamikro,Anouan Kouamikro,81,,7.23207,-4.985521 pg,kempeni,Kempeni,12,,-5.85,145.4 in,mohana,Mohana,10,,29.033333,76.85 tr,kocak,Koçak,63,,37.317284,39.200699 cn,huangshantou,Huangshantou,02,,27.840278,119.636111 se,sofiedal,Sofiedal,09,,57.966667,16.083333 la,ban phou ma,Ban Phou Ma,14,,19.35,103.766667 es,bouza,Bouza,34,,43.515975,-6.970122 ne,gidan ara gigale,Gidan Ara Gigalé,04,,13.6833333,7.0666667 my,kampung buloh china,Kampung Buloh China,01,,1.9267,102.7699 tr,yukari kizkayasi,Yukari Kizkayasi,60,,40.356252,36.076706 cn,junzhoutoudaxu,Junzhoutoudaxu,03,,28.888752,116.045415 ua,preboya,Preboya,25,,48.048468,24.392917 se,bjornakullen,Björnakullen,08,,57.216667,13.933333 ng,tungar ndaboji,Tungar Ndaboji,31,,9.4,5.066667 tz,mayami,Mayami,21,,-6.1166667,39.2833333 th,ban plai khlong bang pha si,Ban Plai Khlong Bang Pha Si,53,,14.066667,100.266667 us,wooddale farms,Wooddale Farms,MD,,39.5583333,-76.5988889 fr,la luc,La Luc,97,,45.11451,.945793 us,buckingham,Buckingham,FL,,26.6747222,-81.7322222 ng,layinka,Layinka,54,,8.45,4.933333 lr,boinwoin,Boinwoin,15,,6.6058333,-10.8697222 us,long lake island,Long Lake Island,IN,,41.5216667,-87.0483333 sn,keur amat seydou,Keur Amat Seydou,10,,13.6666667,-16.0166667 us,holcomb,Holcomb,KS,,37.9861111,-100.9888889 cn,datang,Datang,19,,41.609722,119.539722 fr,ramouzens,Ramouzens,B3,,43.81338,.18536 ru,lyubin vtoroy,Lyubin Vtoroy,09,,50.274,38.8129 ar,los cerrillos abajo,Los Cerrillos Abajo,02,,-29.283333,-65.666667 tr,muil,Muil,74,,37.716667,41.770278 la,ban thano,Ban Thanô,04,,17.933333,104.466667 nz,mareretu,Mareretu,E7,,-36.033333,174.266667 br,upabucu,Upabuçu,06,,-5.516667,-38.483333 ru,zbyshki,Zbyshki,47,,55.603611,35.918056 id,perumahanmarinir,Perumahanmarinir,08,,-7.382,112.6839 us,eaton,Eaton,IN,,40.3402778,-85.3508333 mz,malembane,Malembane,03,,-21.8813889,34.8855556 sy,suq wadi barada,Suq Wadi Barada,08,,33.6166667,36.1 gb,yaxham,Yaxham,I9,,52.65,.966667 at,bregenz,Bregenz,08,26928,47.5,9.766667 af,qal`ah-ye mansur,Qal`ah-ye Mansur,35,,34.635536,70.213104 th,ban sai pla lai,Ban Sai Pla Lai,20,,17.30825,104.003584 sy,malek,Malek,01,,37.0069444,40.5222222 no,godoy,Godøy,08,,62.466667,6.016667 cn,fanlou,Fanlou,04,,34.477778,116.847222 ua,kalyuzhino,Kalyuzhino,07,,49.293665,35.982581 hu,halasztelep,Halásztelep,17,,46.066667,17.616667 cn,jiangxiaopu,Jiangxiaopu,19,,42.304655,124.939622 ru,zalazdibozh,Zalazdibozh,34,,63.783333,58.1 pa,la mesa,La Mesa,10,2228,8.15,-81.1833333 ng,bare,Bare,55,,9.883333,11.233333 be,niaster,Niaster,04,,50.45,5.666667 ng,jiga sala,Jiga Sala,40,,12.257652,4.524393 bd,khurma,Khurma,86,,24.8666667,91.7833333 mx,san bernardo tlamimilolpan,San Bernardo Tlamimilolpan,15,,19.5625,-98.7875 br,sitio sueli t. krause,Sítio Sueli T. Krause,26,,-26.1425,-49.3418 ke,mukuki,Mukuki,08,,-0.4666667,35.6833333 ua,aprelivka,Aprelivka,11,,45.68839,34.740076 it,ala di stura,Ala di Stura,12,,45.316667,7.316667 ru,matrenino,Matrënino,83,,56.266667,39.816667 bo,estancia marcani alta,Estancia Marcani Alta,01,,-19.2333333,-64.6 cn,waci,Waci,04,,32.770437,120.394242 th,ban phaeng,Ban Phaeng,73,,17.468472,104.658306 bo,estancia iscay mokho,Estancia Iscay Mokho,07,,-19.9833333,-65.3666667 ir,baghalu'iyeh,Baghalu'iyeh,29,,29.221413,57.279223 ua,myskow,Myskow,22,,48.774735,25.832149 br,conceicao do formoso,Conceição do Formoso,15,,-21.416667,-43.35 ua,alisovka,Alisovka,05,,48.75,37.433333 bo,lagunilla,Lagunilla,07,,-21.2333333,-65.65 cn,qishandong,Qishandong,30,,25.114444,114.023056 id,sumbersari dua,Sumbersari Dua,08,,-7.981944,112.602222 sl,gbodu,Gbodu,01,,8.8,-10.5833333 gp,pirogue,Pirogue,00,,15.9,-61.2666667 in,nurpur,Nurpur,28,,22.216389,88.080278 af,tele ghori,Tele Ghori,09,,34.632584,64.976746 mx,chivos,Chivos,19,,25.6,-99.2 cn,wushui nongchang shuiyangdui,Wushui Nongchang Shuiyangdui,31,,19.127907,109.938433 az,poselok imeni stepana razina,Posëlok Imeni Stepana Razina,09,,40.429722,49.958889 ua,mogilyany,Mogilyany,19,,50.425978,26.561898 ga,souangui,Souangui,05,,-2.4833333,10.5833333 za,meseg,Meseg,10,,-25.383333,26.233333 us,ridge view,Ridge View,PA,,40.1408333,-79.5466667 af,kshataakara,Kshataakara,23,,31.50446,67.296317 kr,kumma,Kumma,14,,36.256667,129.082222 bd,tongibari,Tongibari,81,,23.5166667,90.4666667 ph,buenavista,Buenavista,J1,3787,10.798742,123.554403 ng,akoli,Akoli,45,,5.035553,7.436562 us,griffith,Griffith,VA,,37.8658333,-79.7269444 tr,burc,Burç,83,,37.015178,37.186321 af,shaylah-ye muhammad gul,Shaylah-ye Muhammad Gul,28,,31.887972,67.112747 ru,bobrovnik,Bobrovnik,10,,52.8503,33.3298 mx,corralejo,Corralejo,06,,27.083333,-105.366667 mx,salitrillo,Salitrillo,19,,25.1,-99.7 kr,kalbonji,Kalbonji,06,,37.4436,128.4925 af,archatu,Archatu,07,,35.775105,64.792282 za,onder-papegaaiberg,Onder-Papegaaiberg,11,,-33.936815,18.831782 pk,chingazo,Chingazo,01,,34.743594,71.483312 mn,artsatayn shiliin hiid,Artsatayn Shiliin Hiid,14,,43.8,104.6833333 br,sitio roberto nalama,Sítio Roberto Nalama,18,,-25.896229,-49.400656 id,karangmedain timur,Karangmedain Timur,17,,-8.5867,116.1107 pk,tisa birri,Tisa Birri,07,,35.787737,75.402607 pl,rasztobol,Rasztobol,81,,54.216667,23 ru,kazino,Kazino,77,,56.178793,32.756206 at,aflenz kurort,Aflenz Kurort,06,,47.533333,15.233333 gn,sambaya,Sambaya,08,,10.3166667,-13.2833333 ru,droblino,Droblino,52,,58.559454,35.016221 us,stonewall,Stonewall,TN,,36.1902778,-85.8988889 nl,dinther,Dinther,06,,51.648193,5.487547 af,torkani,Torkani,18,,34.496631,70.943083 my,kampung batu tujoh,Kampung Batu Tujoh,02,,5.583769,100.73276 ru,shuvaleva,Shuvaleva,51,,55.189918,46.048497 la,ban phapho,Ban Phaphô,02,,14.733333,106.083333 us,bay view,Bay View,TN,,35.7611111,-84.6425000 id,wiyayu barat,Wiyayu Barat,08,,-8.2889,114.2229 ng,orile_imo,Orile_Imo,16,,6.922943,3.560253 fr,cros,Cros,A9,,43.992557,3.828722 ru,peni,Peni,47,,56.429212,35.541307 cn,fanyuan,Fanyuan,31,,18.375299,109.741005 id,simogoktali,Simogoktali,26,,2.7169,98.717 kr,chilsanni,Chilsanni,17,,36.166111,126.904722 us,claremont,Claremont,VA,,37.2277778,-76.9644444 gm,jareng ker sait sowe,Jareng Ker Sait Sowe,05,,13.7166667,-15.2666667 de,oberschwarzhalden,Oberschwarzhalden,01,,47.783333,8.183333 ar,luis guillon,Luis Guillon,01,,-34.798815,-58.44947 ge,saguramo,Saguramo,19,,41.9005556,44.7633333 th,ban khok krabue,Ban Khok Krabue,55,,13.60742,100.32742 ve,villa del rosario,Villa del Rosario,23,65025,10.3166667,-72.3166667 af,tinag,Tinag,29,,33.002319,69.195427 th,ban thung hang,Ban Thung Hang,06,,18.05,99.183333 ng,matazu,Matazu,24,,12.233938,7.674185 za,warner beach,Warner Beach,02,,-30.082212,30.865788 mx,alto,Alto,20,,16.016667,-96.466667 gh,pojive,Pojive,08,,6.45,0.3166667 ir,tabahi,Tabahi,04,,26.260556,60.568889 la,ban ngande,Ban Ngandé,20,,16.370278,106.455556 ir,`ishqwan,`Ishqwan,28,,32.580442,51.758001 ru,dyuanka,Dyuanka,30,,49.191596,140.331662 bd,nandigaon,Nandigaon,83,,25.2,89.1333333 lr,guawin,Guawin,09,,6.8825,-8.9058333 gt,canamixtoj,Canamixtoj,14,,15.095833,-91.24 eg,`arab el-qanatir,`Arab el-Qanatir,17,,27.3194444,31.1055556 pl,oraczew,Oraczew,74,,51.583333,18.583333 es,castejon,Castejón,32,,42.16912,-1.689508 de,breddenberg,Breddenberg,06,,52.95,7.6 be,konijnebergen,Konijnebergen,01,,51.166667,4.733333 pl,terespol,Terespol,86,,52.074213,16.282221 cn,palaochieh,Palaochieh,29,,23.664722,105.498611 id,cipangparang barat,Cipangparang Barat,33,,-6.3631,106.1432 mx,el rebalse,El Rebalse,14,,19.166667,-104.583333 sy,mu`addamiyat ash shaykh,Mu`addamiyat ash Shaykh,13,,33.45,36.2 th,ban sahakon plaeng song,Ban Sahakon Plaeng Song,02,,19.334306,99.22075 af,balnah kharbitak,Balnah Kharbitak,41,,33.766919,66.419812 fr,latour-de-carol,Latour-de-Carol,A9,,42.464933,1.888524 sr,fort neu-amsterdam,Fort Neu-Amsterdam,11,,5.8833333,-55.0833333 zr,mdamo,Mdamo,01,,-3.2666667,17.5666667 de,hinter dem forde,Hinter dem Forde,06,,52.966667,8.033333 de,rohna,Rohna,13,,51.366667,13.85 jm,rose hill,Rose Hill,07,,18.15,-76.6833333 ug,buwangire,Buwangire,89,,-0.2333333,31.9666667 td,dar nahingar,Dar Nahingar,14,,9.3166667,17.0666667 mx,rancheria juarez,Ranchería Juárez,06,,28.666667,-106.083333 sl,malegbe,Malegbe,02,,8.4833333,-12.8666667 mx,mixteca,Mixteca,27,,18.05,-92.516667 de,otzenrath,Otzenrath,07,,51.066667,6.466667 so,hale erin,Hale Erin,06,,2.5166667,42.2833333 ro,chelengic,Chelengic,14,,44.5,28.35 lb,jibal al butm,Jibal al Butm,02,,33.1833333,35.2833333 hu,siomaros,Siómaros,17,,46.893975,18.137375 th,ban si yaek talat ngo,Ban Si Yaek Talat Ngo,36,,14.15,100.35 it,fuorigrotta,Fuorigrotta,04,,40.833333,14.2 et,dugudu,Dugudu,46,,10.716667,39.966667 ru,petrachikha,Petrachikha,77,,56.583564,32.682226 id,bebidas,Bebidas,17,,-8.6001,116.1062 ng,tungun jato,Tungun Jato,31,,10.888286,4.215469 rs,spajovici,Spajovici,00,,42.525,21.343333 ua,kolodnitsa,Kolodnitsa,24,,51.239702,24.758427 af,daulatzom,Daulatzom,30,,36.722042,67.734029 id,tjioraj-tonggoh,Tjioraj-tonggoh,30,,-7.0708,108.0356 tm,dashkhovuz,Dashkhovuz,03,,41.8333333,59.9666667 lt,moralishki,Moralishki,60,,55.1,25.4833333 us,s n junction,S N Junction,TX,,31.4213889,-100.4625000 me,kovacina,Kovacina,00,,42.450556,18.641111 ua,krasnyy pod,Krasnyy Pod,04,,47.758607,33.454266 ir,jamalabad,Jamalabad,03,,32.210395,50.245524 cn,chupoyuan,Chupoyüan,01,,30.993056,116.431944 mn,honichi,Honichi,07,,43.7333333,108.6333333 la,ban xam tay,Ban Xam Tay,04,,17.533333,105.816667 af,sar-e talah,Sar-e Talah,40,,34.69533,68.479859 pk,mian mela,Mian Mela,01,,33.598382,71.113257 gw,napejame,Napejame,06,,12.3508333,-16.2386111 hu,halmajugra,Halmajugra,11,,47.766667,20.066667 ir,zarandin-e pa'in,Zarandin-e Pa'in,35,,36.622933,53.327343 kr,eoryong,Eoryong,13,,37.5797,127.2375 cn,yizijuemo,Yizijuemo,32,,28.028411,102.831754 mm,na-wo,Na-wo,11,,23.0,98.1333333 hu,rad,Rád,16,,47.7921,19.217915 pk,kali malwala,Kali Malwala,04,,30.877408,71.159838 ru,repino,Repino,33,,57.0369,47.8362 cn,heqiantang,Heqiantang,30,,24.245225,115.82456 ru,berezovskiy maydan,Berëzovskiy Maydan,16,,54.965227,46.368919 id,gunungdewi,Gunungdewi,30,,-6.967222,107.035833 ls,sibi sibi,Sibi Sibi,15,,-29.9166667,27.8 ru,bystrovo,Bystrovo,37,,58.15024,41.301852 cn,cuoqin qu,Cuoqin Qu,14,,30.701,85.201 pk,bastiwala,Bastiwala,04,,29.513657,71.529368 ee,luige asundus,Luige Asundus,05,,58.7583333,25.9847222 id,tjidjagra,Tjidjagra,30,,-6.986944,107.632778 tg,amavenou,Amavénou,18,,6.7,0.8 jp,misugo,Misugo,16,,39.933333,141.516667 lk,usmudulawa,Usmudulawa,34,,6.2166667,80.05 ir,meydanak,Meydanak,35,,36.303203,53.240543 cn,liangjiabian,Liangjiabian,07,,27.693383,117.274752 af,unay,Unay,10,,32.7729,65.151491 al,hundekuqi,Hundekuqi,45,,40.1897222,20.1027778 gb,oakley,Oakley,Z5,,52.166667,-.516667 eg,al anbutayn,Al Anbutayn,05,,30.7894444,31.0683333 de,aischfeld,Aischfeld,01,,48.333333,8.466667 es,ordoeste,Ordoeste,58,,42.933333,-8.783333 de,cappeler altendeich,Cappeler Altendeich,06,,53.75,8.566667 at,preggraben,Preggraben,06,,47.266667,14.933333 ie,ballymoneen,Ballymoneen,25,,54.1794444,-9.1 pk,goth rais khan,Goth Rais Khan,02,,28.3658,67.9778 ng,abaw-ogugu,Abaw-Ogugu,47,,6.256283,7.473935 pk,gattuwala,Gattuwala,04,,30.895447,71.104001 de,teutendorf,Teutendorf,12,,54.066667,12.433333 ru,zhuravli,Zhuravli,67,,51.8489,49.8302 ch,ruppen,Ruppen,15,,47.389762,9.507856 bd,madhurkhola,Madhurkhola,81,,23.55,90.1833333 af,mohammad ghaws,Mohammad Ghaws,08,,32.893496,67.966177 id,aglik selatan,Aglik Selatan,07,,-7.7275,109.908889 us,ashmore,Ashmore,FL,,30.0852778,-84.4702778 sn,seo rhaye,Séo Rhaye,07,,14.7666667,-16.7333333 az,muradkhan,Muradkhan,27,,40.190214,48.14561 jp,yoko,Yoko,40,,35.8,139.183333 eg,`ezbet el-rugham,`Ezbet el-Rughâm,01,,31.1666667,31.2833333 br,estrema de pixuna,Estrema de Pixuna,04,,-7.25,-72.233333 cn,jinbo nongchang,Jinbo Nongchang,31,,19.237222,109.171667 cu,macio,Macío,12,,20.75,-75.9833333 us,marathon,Marathon,FL,10060,24.7133333,-81.0905556 kh,phumi chheu slab,Phumi Chheu Slab,16,,14.2525,103.3563889 ne,bilma,Bilma,07,,13.8833333,8.7166667 ng,allahuwa,Allahuwa,57,,12.435993,6.626844 br,glicerio,Glicério,27,,-21.4,-50.183333 pe,tambillo,Tambillo,14,,-6.0966667,-79.3202778 tr,toluklar,Toluklar,17,,39.788655,26.837933 fr,bernis,Bernis,A9,,43.769127,4.287131 lt,kiaukay,Kiaukay,62,,55.5166667,22.3 ru,ramovskiy,Ramovskiy,46,,53.9,42.583333 cn,datangtou,Datangtou,03,,27.985546,116.259504 id,atjemanis,Atjemanis,08,,-7.189722,112.963333 cn,jinling,Jinling,14,,29.203,92.003 fi,rauhala,Rauhala,08,,64.066667,24.783333 ma,ain dalia kbira,Aïn Dalia Kbira,57,,35.662856,-5.839937 cd,tadu,Tadu,00,,3.466667,29.7 bd,janbag,Janbag,81,,23.3166667,89.8166667 mz,tchozene,Tchozene,04,,-25.4097222,32.055 cn,changchiawa,Changchiawa,10,,40.169444,117.855278 ir,qal`eh-ye re'isi,Qal`eh-ye Re'isi,05,,31.19,50.442 id,gelongong,Gelongong,30,,-6.499444,106.7925 ir,dust-e mohammad hajji,Dust-e Mohammad Hajji,04,,30.7585,61.4312 ee,tokhku,Tokhku,14,,58.4913889,21.9538889 cd,malukakumba,Malukakumba,03,,-6.316667,21.766667 cn,xiabaitian,Xiabaitian,11,,26.37,111.995278 se,grundvik,Grundvik,26,,59.458056,18.524722 ht,bique,Bique,06,,18.9666667,-72.4 co,nueva york,Nueva York,12,,8.791347,-75.864511 my,keruh,Keruh,03,,5.616667,102.2 cn,changkengyuan,Changkengyuan,03,,27.924245,114.329896 mx,panchita,Panchita,28,,26.066667,-98.216667 id,surodadi wetan,Surodadi Wetan,07,,-7.488611,110.476389 tr,karadere,Karadere,46,,37.52066,36.657903 ru,gorn,Gorn,53,,55.5461,84.0225 md,sredniye zhory,Sredniye Zhory,82,,47.475556,29.096111 ua,bobrovytsya,Bobrovytsya,02,11544,50.746927,31.394802 pl,komorowo,Komorowo,73,,52.829781,19.098708 pk,mishtio kili,Mishtio Kili,01,,33.647222,70.653056 co,los vados,Los Vados,21,,7.783333,-72.516667 ru,vyazhichki,Vyazhichki,25,,54.247737,34.706993 ir,hajji nasrollah,Hajji Nasrollah,15,,31.556389,48.819444 mx,la sabana,La Sabana,11,,21.201111,-100.6875 hu,antalfaimajor,Antalfaimajor,23,,47.25,17.316667 fr,saint-hilaire-des-landes,Saint-Hilaire-des-Landes,A2,,48.351814,-1.359321 id,badjangan,Badjangan,08,,-7.224,112.5988 fr,le poty,Le Poty,A3,,48.387256,2.300656 cn,changtangkou,Changtangkou,30,,22.397035,111.928326 id,tayeman,Tayeman,07,,-7.411667,110.416389 ru,staryy karmyzh,Staryy Karmyzh,80,,56.175963,51.841498 ke,maruvessa,Maruvessa,02,,-3.6666667,39.2666667 mx,cipche,Cipche,31,,21.1,-89.366667 cn,chengkeng,Chengkeng,12,,29.47058,114.420437 si,kanizarica,Kanizarica,04,,45.55,15.1666667 de,destedt,Destedt,06,,52.25,10.716667 ng,wuro bakmbo,Wuro Bakmbo,35,,9.316667,12.033333 cn,zipingpu,Zipingpu,32,,31.023701,103.586654 md,cuconestii noi,Cuconestii Noi,73,,47.988889,27.2075 sd,sawda',Sawda',27,,11.3,33.95 pg,imidiru,Imidiru,01,,-9.5166667,147.9166667 vn,an nhon xa,An Nhon Xa,20,,10.833333,106.666667 cn,wujiazhai,Wujiazhai,11,,28.786389,110.231389 tr,camacha theodosiopolis,Camacha Theodosiopolis,24,,39.601667,39.038056 dk,bavngard,Bavngård,21,,55.388242,8.898198 cn,duanwu,Duanwu,03,,26.02668,115.579824 ml,toumouni,Toumouni,03,,13.7833333,-9.5833333 gr,vroukhas,Vroukhás,46,,35.3166667,25.7333333 ru,savitskiy log,Savitskiy Log,10,,52.4545,31.6223 pe,huinco,Huinco,04,,-15.2622222,-71.445 fi,vilnem,Vilnem,13,,60.533333,27.233333 us,lefever falls,Lefever Falls,NY,,41.8572222,-74.0583333 th,bang pit lang,Bang Pit Lang,49,,12.214139,102.298944 br,marmota,Marmota,15,,-20.566667,-41.983333 us,chamblee,Chamblee,GA,8887,33.8919444,-84.2988889 ru,levo-pravaya bryanta,Levo-Pravaya Bryanta,05,,54.466667,127.616667 ng,kasala,Kasala,43,,8.1,12.05 gb,tullich,Tullich,T8,,56.283333,-5.1 tr,gocbeyli,Göçbeyli,52,,40.404755,37.716076 us,edith,Edith,OK,,36.8027778,-99.2108333 id,tjilewo,Tjilewo,30,,-6.291667,107.422778 az,ashaga-seidimly,Ashaga-Seidimly,57,,40.488056,46.927222 th,ban lum pho tia,Ban Lum Pho Tia,64,,8.3,99.866667 mx,terrenates,Terrenates,06,,29.666667,-106.833333 de,haupersweiler,Haupersweiler,09,,49.516667,7.266667 py,maldonado-cue,Maldonado-cué,07,,-22.716667,-56.816667 ru,nizhniye aty,Nizhniye Aty,73,,56.118031,49.690817 af,ashraf khel,Ashraf Khel,28,,31.958301,67.331044 id,tokale,Tokale,22,,-3.9974,121.4151 se,branningestrand,Bränningestrand,26,,59.15,17.666667 kh,phum trameung,Phum Trameung,19,,11.05,104.7666667 ru,dvoynaya,Dvoynaya,61,,46.804685,40.956793 my,kampung sarang tiong,Kampung Sarang Tiong,07,,4.0033,100.927 pl,chrzastow,Chrzastow,74,,51.95,19.166667 ly,kirissah,Kirissah,55,,32.85,22.4166667 jp,nakada,Nakada,47,,26.926214,127.950083 dz,oulad ali,Oulad Ali,15,,35.05,-1.8666667 us,castine,Castine,ME,,44.3877778,-68.8002778 kp,songhangni,Songhangni,12,,39.1330556,126.0863889 cn,beidadianzi,Beidadianzi,19,,40.171968,120.115737 vn,xom giua,Xom Giua,77,,9.269722,105.126389 gr,karitsa,Karítsa,31,,38.4666667,21.5 zm,nsenga,Nsenga,07,,-9.6333333,29.7 co,querente,Querente,33,,4.433333,-74.033333 cn,longkong,Longkong,32,,29.191215,104.049273 es,cayarga,Cayarga,34,,43.413483,-5.144884 ke,thiba,Thiba,01,,-0.6833333,37.35 es,ferradillo,Ferradillo,55,,42.466498,-6.656304 cu,poste de la guira,Poste de la Güira,05,,21.95,-78.2166667 cn,jingyu,Jingyu,24,,36.433333,113.233333 lt,stasiunai,Stasiunai,57,,54.8333333,24.4666667 az,boz bozalganly,Boz Bozalganly,58,,41.064444,45.7975 pk,mahole,Mahole,04,,32.605428,74.418511 cn,tianxingmiao,Tianxingmiao,12,,31.581055,113.245805 pe,hacienda lurinchincha,Hacienda Lurinchincha,11,,-13.55,-76.1833333 ru,smerdovitsy,Smerdovitsy,42,,59.403159,29.197101 ru,smetskaya,Smetskaya,25,,53.789026,35.653855 us,cane creek,Cane Creek,KY,,37.0558333,-83.9227778 ru,khurkau,Khurkau,68,,43.12,44.415278 ua,zavodskoye,Zavodskoye,11,,44.920186,34.074275 at,burgstall,Burgstall,06,,46.733333,15.416667 ma,sahriz,Sahriz,47,,31.804238,-7.146293 mx,mezcalera chica,Mezcalera Chica,06,,27.25,-107.9 fr,tage,Tage,97,,44.734076,.897187 ee,erjave,Erjave,07,,58.9558333,23.6269444 ge,gogasheni,Gogasheni,06,,41.3716667,43.2997222 et,azaf,Azaf,53,,13.726396,39.206752 by,darasino,Darasino,06,,52.9,27.7833333 kp,twinmol,Twinmol,06,,38.0702778,125.4630556 cu,ahocinado,Ahocinado,16,,22.4333333,-79.95 ru,platovka,Platovka,04,,52.35,79.066667 cf,bouboua i,Bouboua I,07,,4.1333333,17.7333333 id,soemberredjo,Soemberredjo,07,,-7.488611,111.082778 ir,dari olya,Dari Olya,37,,37.583333,55.85 cn,heilongkou,Heilongkou,26,,34.009592,109.730604 ph,alorgat,Alorgat,51,,16.0289,120.504 hr,popusko,Popusko,14,,45.4872222,15.9933333 ru,bozhatkovo,Bozhatkovo,62,,54.5855,39.6543 id,musa,Musa,01,,5.2615,96.0944 ir,sarab-e bard zanjir-e `olya,Sarab-e Bard Zanjir-e `Olya,13,,34.75,46.283333 cd,mapumba,Mapumba,00,,3.466667,26.466667 de,luckhausen,Lückhausen,07,,52.033333,8.816667 pe,cieneguillas,Cieneguillas,11,,-14.45,-75.1333333 pe,yanayaco,Yanayaco,10,,-9.5333333,-75.0 cm,komlokassi,Komlokassi,04,,5.5166667,13.7833333 ir,soltani,Soltani,29,,29.0803,56.5353 cn,jiangjunchong,Jiangjunchong,30,,25.154722,113.841944 gh,ofakor,Ofakor,08,,5.5833333,-0.45 ir,banad kook,Banad Kook,40,,31.4702,53.9684 pl,radziejowskie,Radziejowskie,78,,52.033423,20.551984 in,panjtaran,Panjtaran,12,,34.361111,73.8125 mw,masamba,Masamba,02,,-16.2166667,34.6833333 eg,likupulis,Likupulis,17,,27.1827778,31.1827778 hu,tabodszerdahely,Tabódszerdahely,21,,46.359236,18.546019 ie,corlea bridge,Corlea Bridge,03,,53.0155556,-8.5888889 cn,dongkengku,Dongkengku,07,,26.738322,118.118658 ro,targusor,Targusor,05,,47.383333,22.166667 kr,hungjongni,Hungjongni,06,,37.64555,128.33078 mk,dorlomboz,Dorlomboz,A1,,41.3386111,22.6683333 ir,shahrak-e abu zar,Shahrak-e Abu Zar,26,,35.797,51.5213 lt,mitkiskiai,Mitkiskiai,65,,54.8833333,24.8166667 cn,yishi,Yishi,24,,35.164972,110.745979 ir,tavistan,Tavistan,32,,37.2725,48.425 kp,chonbongnodongjagu,Chonbongnodongjagu,13,,41.7897222,128.7519444 de,niederpoyritz,Niederpoyritz,13,,51.033333,13.85 ph,san juan,San Juan,H5,,14.6455,121.1805 my,kampung senallang,Kampung Senallang,16,,4.415286,118.602886 gr,ayios ilias,Áyios Ilías,39,,37.4166667,21.7 ru,zabavnoye,Zabavnoye,04,,52.8287,78.7908 gt,tula,Tula,01,,15.933333,-89.65 mm,amyet,Amyet,09,,17.55,95.6833333 tr,sahil,Sahil,81,,36.86178,35.909165 es,levinco,Levinco,34,,43.15179,-5.60214 ru,longari,Longari,64,,50.528611,142.736111 md,pecestea,Pecestea,83,,47.715556,28.710833 cn,kaifenghsien,Kaifenghsien,09,,34.744167,114.418611 pe,coshni,Coshñi,08,,-14.2033333,-71.4425 fr,montourgar,Montourgar,A2,,48.213835,-4.52233 zr,nzala-kimbau,Nzala-Kimbau,01,,-3.6833333,17.5333333 af,kalizeh,Kalizeh,10,,32.364297,65.114235 ir,cheshmeh,Cheshmeh,41,,33.195519,59.361779 gb,garboldisham,Garboldisham,I9,,52.383333,.95 iq,kani qarah,Kani Qarah,05,,35.4783333,45.0444444 cn,luchiatu,Luchiatu,04,,33.9,119.35 lk,mohoriya,Mohoriya,32,,7.8,79.9 zw,ashbrittle,Ashbrittle,04,,-17.7686111,31.0311111 vn,lai vung,Lai Vung,06,,10.25,105.6 us,swiss,Swiss,MO,,38.5627778,-91.4711111 id,kodo dua,Kodo Dua,17,,-8.4899,118.7858 th,ban nong thep,Ban Nong Thep,29,,15.153611,103.879444 mz,chefe muandama,Chefe Muandama,07,,-15.3297222,36.1563889 ma,azkari,Azkari,47,,31.521207,-9.398612 ir,gharib mahalleh,Gharib Mahalleh,35,,36.571642,53.67388 ir,kalateh-ye darband,Kalateh-ye Darband,42,,37.477812,59.145889 us,christopher creek,Christopher Creek,AZ,,34.3152778,-111.0163889 kr,sangbongni,Sangbongni,13,,37.15884,127.52938 fi,vilniemi,Vilniemi,13,,60.533333,27.233333 fr,avesnes-en-bray,Avesnes-en-Bray,A7,,49.469722,1.67098 ru,stropitsy,Stropitsy,41,,51.6045,34.765 fr,vovette,Vovette,A3,,48.343625,1.560343 ua,mezenevka,Mezenevka,21,,50.634463,35.315585 kr,mokhyonni,Mokhyonni,17,,36.5206,126.5682 eg,shirimsah,Shirimsah,20,,31.1888889,31.5961111 am,kanaker,Kanaker,11,,40.22,44.5383333 it,bonea,Bonea,04,,41.066667,14.616667 es,erta,Erta,56,,42.425981,.843417 lk,nekattegama,Nekattegama,30,,8.25,80.15 mg,beanamalao,Beanamalao,01,,-12.6833333,49.25 tr,canakli,Canakli,80,,37.468889,42.195278 ir,yengejeh badostan,Yengejeh Badostan,33,,38.3031,46.8681 jp,hirabayashi,Hirabayashi,29,,38.133333,139.45 us,smiths grove,Smiths Grove,KY,,37.0525000,-86.2077778 de,warder,Warder,10,,53.983333,10.383333 it,quara,Quara,05,,44.35,10.5 kp,taegongni,Taegongni,15,,38.95,126.4166667 pe,algodonal,Algodonal,14,,-6.7772222,-79.5588889 uz,kirk,Kirk,15,,39.7166667,68.0166667 zr,bukaluba,Bukaluba,08,,-5.7833333,17.35 id,bibar,Bibar,08,,-7.523333,111.195278 us,whipples crossing,Whipples Crossing,GA,,32.5291667,-83.0586111 us,oak level,Oak Level,KY,,36.8669444,-88.4655556 id,banjar nyungkuning,Banjar Nyungkuning,02,,-8.526,115.2562 fr,saint-outrille,Saint-Outrille,A3,,47.143803,1.840757 ir,chaqqer,Chaqqer,42,,37.633333,59.15 mz,narrinho,Narrinho,06,,-14.7875,39.5263889 fr,seugy,Seugy,B6,,49.121819,2.39377 dk,ryumgaard,Ryumgaard,18,,56.384305,10.502952 th,bo phloi,Bo Phloi,50,16786,14.323611,99.516111 cn,ningkwohsien,Ningkwohsien,01,,30.628408,118.98124 th,ban then kaeo,Ban Then Kaeo,68,,7.7355,100.36925 kr,mari,Mari,16,,34.687222,125.413611 in,bhadra,Bhadra,11,,32.566667,76.466667 me,canj,Canj,00,,42.162778,18.998056 th,ban thung musoh,Ban Thung Musoh,67,,6.957611,99.716278 br,verde,Verde,29,,-14.783333,-50.016667 af,jandargal-e `olya,Jandargal-e `Olya,05,,34.759423,68.045557 se,edstorp,Edstorp,02,,56.2,15.05 ru,chokhchuolu,Chokhchuolu,63,,63.033333,111.083333 id,kelisari,Kelisari,07,,-7.334444,110.525278 ru,bolshaya bukhta,Bolshaya Bukhta,30,,53.116667,140.466667 fr,santa-lucia-di-moriani,Santa-Lucia-di-Moriani,A5,,42.382118,9.522421 mx,piedra,Piedra,24,,21.7,-99.15 cf,mele,Mélé,16,,3.65,16.7833333 in,badibug,Badibug,12,,34.122222,74.6 pk,chak one hundred ninety-eight rb,Chak One Hundred Ninety-Eight RB,04,,31.48133,73.196694 cn,nanniuchang,Nanniuchang,02,,30.61301,121.11284 in,babbanpur,Babbanpur,23,,30.416667,75.866667 us,carriage square,Carriage Square,UT,,40.6811111,-111.9400000 kh,phumi prasat,Phumi Prasat,18,,11.1333333,105.7333333 pl,praust,Praust,82,,54.26121,18.648054 ua,zhigulina roshcha,Zhigulina Roshcha,11,,44.966667,34.133333 se,stavanaset,Stavanäset,24,,63.483333,18.933333 id,lanjam,Lanjam,08,,-7.048,111.7308 mz,ecava,Ecava,09,,-16.4494444,36.7969444 ng,nasawara,Nasawara,24,,12.224216,7.336342 tr,kilicarslan,Kilicarslan,14,,40.740737,31.578007 it,forst,Forst,17,,46.683333,11.116667 ru,yamok,Yamok,77,,56.94459,35.435115 in,kilpauk,Kilpauk,25,,13.08,80.240833 af,tutikusta,Tutikusta,05,,34.838664,67.99506 lv,stuberova,Stuberova,02,,57.5166667,27.4 ru,alsheyevo,Alsheyevo,73,,54.753924,48.281044 lk,mullikkulam,Mullikkulam,31,,8.5666667,79.9333333 cn,weiping,Weiping,02,,29.728275,118.784029 cn,chingping,Chingping,25,,36.752222,116.069167 id,tanjungawe,Tanjungawe,01,,5.0804,97.2322 mm,klortang,Klortang,02,,22.9166667,93.8166667 us,harris,Harris,IN,,41.4147222,-86.3036111 pk,tala,Tala,04,,30.268928,72.21243 kr,kunmulgol,Kunmulgol,06,,37.8214,127.9566 cz,rokytno,Rokytno,83,,50.733125,15.471145 it,valgrisanche,Valgrisanche,19,,45.633333,7.066667 cn,zhuyan,Zhuyan,02,,29.188075,120.229539 ph,igbangcal,Igbangcal,30,,10.5294,122.0292 pk,gaggan,Gaggan,04,,33.294609,72.881185 tr,dinar,Dinar,21,,38.333333,40.966667 pt,valinho,Valinho,03,,37.531475,-8.485498 de,priester,Priester,13,,51.466667,12.483333 zr,mulako,Mulako,00,,-9.95,22.7333333 kr,odungol,Odungol,06,,37.324,128.4444 ph,lumangbayan,Lumangbayan,09,,13.8,121.433333 hn,oloman,Olomán,18,,15.15,-87.8833333 pt,monte da figueirinha,Monte da Figueirinha,08,,38.943595,-7.995046 tz,dunkuki,Dunkuki,21,,-6.1166667,39.25 ru,shchekino,Shchëkino,83,,56.237208,42.275436 id,sukaradja,Sukaradja,33,,-6.536,106.3124 ua,makiewka,Makiewka,18,,50.243718,32.777862 pk,basti pathan,Basti Pathan,04,,29.090539,70.889713 br,sitio maria a. b. perico,Sítio Maria A. B. Périco,18,,-23.7135,-49.9172 cz,dolni vaclavov,Dolni Vaclavov,85,,49.972021,17.380121 am,vagashen,Vagashen,04,,40.1377778,45.3291667 id,kerajan satu,Kerajan Satu,30,,-6.378611,107.79 cd,madimba,Madimba,00,,-7.683333,26.7 sn,seo,Séo,03,,14.5666667,-15.8666667 cn,xiaojizi,Xiaojizi,01,,34,116.716667 us,alandale,Alandale,IL,,38.9388889,-90.2291667 ug,nabuwama,Nabuwama,61,,-0.3738889,31.1541667 id,ciseupan kaler,Ciseupan Kaler,30,,-6.871667,107.789167 cn,zhoujiahe,Zhoujiahe,11,,30.009262,111.238933 cl,pichilo,Pichilo,06,,-37.266667,-73.183333 pl,kleczkowo,Kleczkowo,78,,53.053966,21.848663 pk,humai,Humai,02,,29.084295,62.311381 gh,miotso,Miotso,08,,5.75,0.0833333 jp,shigeyuki,Shigeyuki,13,,35.116667,134.75 jp,kurisawa,Kurisawa,12,,43.118056,141.738056 pk,sasti gabri,Sasti Gabri,03,,33.198253,71.639022 bg,gaberovo,Gaberovo,43,,41.6333333,25.9166667 ve,gallardero,Gallardero,18,,8.9919444,-69.4183333 cn,qibainong,Qibainong,16,,24.133333,107.6 zm,mutaka,Mutaka,03,,-14.7,25.4833333 ga,mpouma,Mpouma,06,,0.7,13.1333333 cn,yanzhi,Yanzhi,24,,38.990343,112.234208 kr,hajohang,Hajohang,06,,37.7441,128.4022 tg,kabangbag,Kabangbag,05,,9.7166667,0.5166667 es,aldeaquemada,Aldeaquemada,51,,38.412151,-3.371367 ru,yegorlykskaya,Yegorlykskaya,61,17978,46.553123,40.682604 us,pacific,Pacific,CA,,38.7602778,-120.5061111 ie,an gallbhaile,An Gallbhaile,16,,52.4002778,-8.2927778 la,ban taboung,Ban Taboung,10,,16.983333,106.15 ru,karacheyevka,Karacheyevka,86,,50.8882,40.2866 ir,maamreh,Maamreh,15,,29.983611,48.586944 ru,tschernuschka,Tschernuschka,90,,56.507215,56.076613 in,lagcha,Lagcha,36,,27.833333,80.816667 fi,lampis,Lampis,15,,60.319722,22.187778 mx,chan santa cruz,Chan Santa Cruz,31,,20.520833,-88.0625 ru,lvovskiy tretiy,Lvovskiy Tretiy,17,,43.388611,47.193056 th,ban bang song siang,Ban Bang Song Siang,64,,7.983333,100.3 ru,poselok lesozavoda nomer odin,Posëlok Lesozavoda Nomer Odin,06,,64.4659,40.7687 af,dahan-e zulej,Dahan-e Zulej,05,,34.954296,66.559851 tz,muhanga,Muhanga,04,,-8.1833333,36.0166667 eg,naj` turki,Naj` Turki,23,,26.0922222,32.1436111 pg,aure,Aure,08,,-6.1,145.0166667 af,gawmesh bela,Gawmesh Bela,18,,34.448566,70.456902 hr,buterin,Buterin,20,,44.1616667,15.5188889 kr,nosil,Nosil,05,,37.0692,127.918 pg,silopi,Silopi,12,,-5.1333333,145.5833333 iq,sultan al wal,Sultan al Wal,03,,31.4747222,45.1433333 af,cerlena,Cerlena,23,,31.391944,67.268056 no,nordre heggdal,Nordre Heggdal,08,,62.7,6.95 my,sungai gadut,Sungai Gadut,05,,2.6594,101.9991 tr,agil,Agil,33,,37.811944,30.903611 cn,wujiayan,Wujiayan,12,,30.353458,111.060501 se,afvelsater,Afvelsäter,22,,59.1,12.8 cn,bangchuilazi,Bangchuilazi,19,,41.212324,125.553124 lv,rudbarzhi,Rudbarzhi,15,,56.65,21.8833333 my,kampong tok uban,Kampong Tok Uban,07,,5.133333,100.833333 in,kukkal,Kukkal,25,,10.3,77.333333 ua,ulinovka,Ulinovka,18,,49.091328,34.014615 cg,ngouane,Ngouané,03,,-1.1319444,15.9680556 ye,bin jubah,Bin Jubah,04,,15.2,47.9666667 cn,taxihe kazakzu xiang,Taxihe Kazakzu Xiang,13,,44.2325,86.421111 af,khvajeh hasan-e `olya,Khvajeh Hasan-e `Olya,36,,33.610767,69.23114 mx,tincontlan,Tincontlan,30,,20.829167,-97.683333 ma,berguene,Berguene,55,,30.319173,-8.382428 au,kalkee,Kalkee,07,,-36.533333,142.233333 iq,nacah kur,Nacah Kur,05,,35.2166667,45.5833333 de,sundsacker,Sundsacker,10,,54.633333,9.933333 tn,douar el haj mohammed,Douar el Haj Mohammed,18,,37.295306,9.566959 la,ban hat kne,Ban Hat Kne,03,,20.766667,104.283333 kr,panjong,Panjong,20,,35.630027,127.727953 id,kamortiwa,Kamortiwa,36,,-1.983333,138.8 ma,tannesmekht,Tannesmekht,47,,31.01373,-8.691186 by,martinovka,Martinovka,07,,54.9180556,30.0036111 am,mozrov,Mozrov,10,,39.7008333,45.3402778 de,bickesheim kloster,Bickesheim Kloster,01,,48.933333,8.266667 us,clarks fork,Clarks Fork,MO,,38.8869444,-92.6525000 dk,frydenborg,Frydenborg,21,,55.45444,9.687402 it,smirra,Smirra,10,,43.583333,12.666667 mm,ho-nam,Ho-nam,11,,23.05,97.9333333 br,polvora,Pólvora,11,,-18.15,-53.966667 af,kote khel,Kote Khel,37,,33.294445,69.536945 pk,khalabet jhil,Khalabet Jhil,06,,32.883333,74.375 ru,ukiyaz,Ukiyaz,08,,54.7767,53.7742 th,ban phun sawat phatthana,Ban Phun Sawat Phatthana,69,,6.88475,101.260528 us,gilmore,Gilmore,IL,,38.9875000,-88.7175000 kr,bangbaedong,Bangbaedong,11,,37.484722,126.990833 id,wedusan,Wedusan,08,,-8.105,113.3576 cn,tanbeiwan,Tanbeiwan,30,,20.933333,110.575 se,borgvattnet,Borgvattnet,07,,63.416667,15.833333 tr,kaginkoy,Kaginkoy,88,,40.003089,43.641365 na,omege,Omege,37,,-17.8333333,15.7166667 id,pasirbeuntang,Pasirbeuntang,30,,-6.954722,107.169444 de,rautenhausen,Rautenhausen,05,,51.016667,9.833333 us,van vleet,Van Vleet,MS,,33.9869444,-88.9002778 bf,niogosse,Niogossé,37,,13.0166667,-1.1 ru,sobino,Sobino,06,,64.1715,41.8904 ba,krusevo,Krusevo,02,,43.3288889,18.8441667 ir,bam,Bam,43,,36.904506,57.937131 mx,aldama primera seccion,Aldama Primera Sección,27,,18.241667,-93.383333 pk,tatri goth,Tatri Goth,05,,27.270998,68.05866 pe,las laderas,Las Laderas,04,,-16.2108333,-72.0525 mx,gruta del tabaco,Gruta del Tabaco,07,,25.55,-103.083333 fr,houme,Houme,A3,,46.748696,1.457745 ro,valea poienii,Valea Poienii,02,,46.066667,22.633333 ng,kugeji,Kugeji,30,,9.633333,3.916667 mn,sagsai,Sagsaï,03,,48.9,89.6166667 ph,balabag,Balabag,46,,9.283333,123.25 ru,natalinka,Natalinka,25,,54.521667,36.757778 pl,dlugi lug,Dlugi Lug,81,,53.421543,23.175428 us,bartlett cove,Bartlett Cove,AK,,58.4500000,-135.9166667 co,tonoli,Tonolí,28,,4.733333,-74.833333 am,verkhniy khotanan,Verkhniy Khotanan,08,,39.3105556,46.3775 fr,juvignac,Juvignac,A9,,43.612279,3.808673 jp,anan,Anan,39,55422,33.916667,134.65 ru,gavri,Gavri,60,,56.915537,27.87423 ng,iyatawa,Iyatawa,23,,11.057676,7.395641 mx,parastaco,Parástaco,16,,19.45,-102.416667 lt,dyrkshtelyu,Dyrkshtelyu,63,,55.9666667,22.2166667 pk,bodia khan,Bodia Khan,05,,28.398461,68.774686 mm,htiluthakhi,Htiluthakhi,05,,17.6666667,97.7666667 ru,gavrilovka,Gavrilovka,04,,53.683333,79.3 by,svetilovichi,Svetilovichi,02,,52.7941667,31.3180556 cn,tianjiachong,Tianjiachong,03,,27.322889,114.035636 kr,sinsari,Sinsari,16,,34.9,126.583333 rs,strezovce,Strezovce,00,,42.275833,21.73 be,brooiseinde,Brooiseinde,01,,51.316667,5 af,mir `ali,Mir `Ali,41,,33.764499,66.362961 pe,quebrada honda,Quebrada Honda,08,,-12.7666667,-72.2333333 id,bonsareh,Bonsareh,08,,-7.0906,113.3175 ru,sharnin,Sharnin,45,,57.1046,49.0615 af,muhammad agha,Muhammad Agha,17,,34.214722,69.1 ru,kyulyayatka,Kyulyayatka,42,,60.283333,30.233333 us,oakhurst,Oakhurst,MI,,43.6397222,-83.6061111 mz,muomena,Muomena,02,,-23.9891667,32.5583333 lc,cantonement,Cantonement,10,,13.75,-60.9666667 zm,mokanelamo,Mokanelamo,03,,-14.8666667,23.6166667 cm,ndili,Ndili,13,,10.0,13.65 cd,yalifafu,Yalifafu,02,,-.3,22.283333 cd,otobora,Otobora,07,,-1.75,28.866667 gr,ayios ioannis,Áyios Ioánnis,40,,37.3,21.8166667 kp,hokyori,Hokyori,03,,40.7336111,128.8969444 ru,vezheyevo,Vezheyevo,80,,57.881503,52.251961 ua,"kam""yanetspodilskyy","Kam""yanetsPodilskyy",09,,48.684503,26.585592 ug,kinyabu,Kinyabu,61,,-0.6,31.3 ir,darb-e raz,Darb-e Raz,40,,31.832,53.985 tz,lumbwa,Lumbwa,05,,-6.2666667,30.1833333 pk,chak badar,Chak Badar,04,,32.083333,73.216667 se,hyndtjarn,Hyndtjärn,24,,62.983333,17.283333 tg,kuahoe,Kuahoé,18,,6.4097222,1.1130556 in,karan,Karan,12,,33.216667,74.116667 cn,zhushan xiang,Zhushan Xiang,03,,28.70573,117.065899 ir,ma'va,Ma'va,42,,36.155612,58.886699 ru,nagayskoye,Nagayskoye,62,,53.7807,40.0168 cn,gaotaigoutun,Gaotaigoutun,05,,43.993611,126.911667 br,sitio renerio leite,Sítio Renério Leite,18,,-23.821,-50.1948 pk,chak ninety tda,Chak Ninety TDA,04,,31.254085,71.087032 no,bua,Bua,07,,59.596944,5.325556 af,dast-i-khatun,Dast-i-Khatun,02,,35.659838,63.798872 id,cilaja hilir,Cilaja Hilir,30,,-6.879167,107.690833 vn,buon chan dong,Buon Chan Dong,07,,13.25,108.783333 id,meunasa rambar,Meunasa Rambar,01,,4.2537,96.1938 kz,pogranichnik,Pogranichnik,11,,52.115278,76.412778 cz,radnovice,Radnovice,80,,49.564031,16.034282 fr,lachapelle-sous-aubenas,Lachapelle-sous-Aubenas,B9,,44.564174,4.363917 jp,susaki,Susaki,27,,32.866667,129.088333 sn,dieba,Diéba,12,,12.8408333,-16.02 ir,mahalleh-ye hafezabad,Mahalleh-ye Hafezabad,29,,29.106134,58.369663 bd,ijdia,Ijdia,81,,23.7666667,89.9666667 cn,xidong,Xidong,02,,29.214313,120.954001 cn,yaojiayan,Yaojiayan,12,,31.606306,113.352857 mr,aguini,Aguini,04,,16.8333333,-13.05 ru,uchami,Uchami,18,,63.81,96.4266 ru,khayachas,Khayachas,63,,71.2,137.55 ph,himagango,Himagango,55,,12.270278,125.055 fr,mazel,Mazel,A9,,44.691673,3.399682 bg,dzhanka,Dzhanka,43,,41.55,25.6666667 cn,xialiujiatai,Xialiujiatai,12,,30.202713,112.067454 ng,katirje,Katirje,23,,11.19115,8.51477 ir,baghak,Baghak,26,,35.521944,52.059722 bo,calajoya,Calajoya,04,,-15.6666667,-69.1666667 fi,vaatajo,Väätajo,08,,65.5,27.933333 ir,taleh gerd,Taleh Gerd,36,,36.4715,48.2322 tg,kounounia,Kounounia,02,,6.3,1.65 ir,bugar,Bugar,07,,30.703889,51.955833 ma,bou zammour,Bou Zammour,47,,31.388623,-9.710255 al,mustafe,Mustafë,41,,41.7761111,20.3122222 us,reedville,Reedville,OR,,45.4977778,-122.9011111 fr,groslay,Groslay,A8,,48.98561,2.347364 vn,tam bu,Tam Bu,19,,21.566667,104.65 th,ban nong ko,Ban Nong Ko,13,,16.4,100.5 hr,gornji martijanec,Gornji Martijanec,16,,46.2425,16.5058333 ng,mbasema,Mbasema,26,,7.066667,8.583333 cd,kitobi,Kitobi,11,,.5,29.5 fr,saint-quentin-sur-sauxillanges,Saint-Quentin-sur-Sauxillanges,98,,45.550528,3.393376 kp,hwangjinni,Hwangjinni,17,,41.1025,129.7169444 ba,sarica do,Sarica Do,02,,43.0347222,18.4188889 us,mount patrick,Mount Patrick,PA,,40.5272222,-76.9886111 de,friedrichsau,Friedrichsau,05,,51.383333,9.283333 mz,chicuachane,Chicuachane,02,,-23.9966667,33.3844444 ph,entablana,Entablana,47,,15.2875,120.8653 cm,mvan,Mvan,11,,3.6166667,12.3 ci,kouroumanbira,Kouroumanbira,92,,8.50244,-3.75775 ru,belsk,Belsk,60,,57.724034,30.292767 cn,diyangping,Diyangping,11,,26.279722,109.6075 pt,carvalhal,Carvalhal,14,,38.903869,-9.360864 af,surkhkanagak,Surkhkanagak,05,,34.147222,66.648333 ir,tusk-e pa'in,Tusk-e Pa'in,09,,34.25,48.99 ml,alaya,Alaya,00,,12.1166667,-10.7166667 mn,ulan kan,Ulan Kan,19,,49.9666667,92.0333333 ee,karli,Karli,18,,58.5125,26.8913889 kp,kwirangni,Kwirangni,17,,42.4977778,130.3180556 tr,buyukbiyik,Buyukbiyik,68,,39.25441,33.482326 ru,lesouchastok oktyabrskiy,Lesouchastok Oktyabrskiy,90,,56.633333,56.533333 id,angin-angin,Angin-angin,08,,-7.9356,113.3636 sd,el kelba,El Kelba,33,,10.95,24.2 tr,dugenli,Dugenli,91,,37.451298,36.023493 ir,mirza `ali-ye yolqi,Mirza `Ali-ye Yolqi,37,,37.033728,54.538036 fr,nissan-lez-enserune,Nissan-lez-Enserune,A9,,43.289615,3.127051 us,haafsville,Haafsville,PA,,40.5788889,-75.6613889 ir,gavadar,Gavadar,04,,26.4712,59.4836 us,hunker,Hunker,PA,,40.2041667,-79.6208333 kz,altin-emel,Altin-Emel,01,,44.335833,78.440556 cn,chiwei,Chiwei,07,,24.963889,118.379444 pk,jamal din bhutto,Jamal Din Bhutto,05,,27.961988,69.328531 af,sra cala,Sra Cala,23,,31.418889,67.321944 no,kvalavag,Kvalavåg,14,,59.323056,5.208333 sy,tell aiyoub,Tell Aïyoûb,09,,36.1166667,37.6166667 ca,minataree,Minataree,08,,50.233333,-88.05 kp,sochon,Sochon,12,,38.8736111,126.0366667 ru,sakharosnab,Sakharosnab,10,,52.435833,33.816111 se,arkhyttan,Arkhyttan,10,,60.433333,15.883333 tr,yukariakyazi,Yukariakyazi,25,,40.127738,40.713261 th,ban pun muang,Ban Pun Muang,77,,15.73166,104.811366 iq,karawah,Karawah,13,,35.2666667,44.9833333 lt,vyzaiciu,Vyzaiciu,60,,55.9666667,25.7 af,junabe,Junabe,06,,32.45918,63.522296 id,kemuningmesjid,Kemuningmesjid,33,,-6.2762,106.2505 lt,rudos,Rudos,59,,54.6333333,23.2 id,toedjoeng,Toedjoeng,14,,3.8,116.95 by,krupitsa,Krupitsa,06,,53.6833333,27.5333333 za,keysers,Keysers,11,,-33.7,22.9 us,lake haven mobile home park,Lake Haven Mobile Home Park,MD,,38.3500000,-75.1788889 ma,sgaloua,Sgaloua,57,,35.62526,-5.572919 td,godlodo,Godlodo,04,,10.9833333,15.8 af,gavmish belah,Gavmish Belah,18,,34.448566,70.456902 pe,combapata,Combapata,08,,-14.1011111,-71.4294444 fr,oussoy,Oussoy,A3,,47.907149,2.642936 se,skruv,Skruv,12,,56.683333,15.366667 es,calasanz,Calasanz,52,,42.021327,.373389 mw,kude,Kude,11,,-14.4833333,33.7 us,leipsic junction,Leipsic Junction,OH,,41.1063889,-83.9780556 sy,`isa beyli,`Isa Beyli,02,,35.8,35.85 ir,goldasht-e hasanabad,Goldasht-e Hasanabad,29,,27.780568,58.719198 pk,masan jo goth,Masan jo Goth,05,,27.32963,68.033033 ph,decalachiao,Decalachiao,49,,12.1529,120.0874 us,irma,Irma,CA,,34.4294444,-119.7525000 az,suleymanly,Suleymanly,14,,39.464965,47.065408 cn,laowaping,Laowaping,32,,28.808483,103.847201 se,vibberholmen,Vibberholmen,18,,58.633333,16.766667 lr,bepio,Bepio,09,,6.9986111,-8.7141667 co,el ingenio,El Ingenio,16,,2.765494,-75.60592 ru,novyy valovoy,Novyy Valovoy,57,,53.200155,43.24372 cf,mboulou,Mboulou,06,,5.7333333,19.4166667 pk,manjai,Manjai,03,,34.869514,71.896395 gt,los hoyos,Los Hoyos,11,,14.15,-90.05 cn,mosoying,Mosoying,32,,27.067778,102.250278 my,kampung indarasan laut,Kampung Indarasan Laut,16,,6.7641,116.6395 tr,gurleyik,Gürleyik,69,,40.012805,39.203036 pt,rossas,Rossas,02,,40.906739,-8.303492 cn,guanqiao,Guanqiao,07,,24.806111,118.426944 ir,gatanok,Gatanok,04,,27.5944,62.7063 kr,dolbawi,Dolbawi,13,,37.313611,127.685 cn,sarokhulson outpost,Sarökhulsön Outpost,13,,46.183333,83.633333 af,kamarcha,Kamarcha,03,,35.713705,69.320544 be,xhurdebise,Xhurdebise,04,,50.416667,6.016667 pg,raekae,Raekae,01,,-10.1166667,149.5666667 id,tone,Tone,21,,-1.4129,123.5278 id,munasah tengah,Munasah Tengah,01,,4.8356,96.7035 ge,khumushk'uri,Khumushk'uri,02,,42.5941667,41.6644444 ba,kolimer,Kolimer,01,,44.5405556,18.8158333 kp,tamundong,Tamundong,07,,38.6830556,126.265 my,kampong mengkuang,Kampong Mengkuang,02,,5.65,100.783333 id,pagiyanten,Pagiyanten,07,,-6.9371,109.1045 pk,muhammad bakhsh kehr,Muhammad Bakhsh Kehr,05,,28.2125,68.516667 kr,sanggari,Sanggari,13,,37.098333,127.335833 co,chiste,Chiste,22,,1.138538,-76.617355 sy,abu khunayzah,Abu Khunayzah,04,,36.6,38.7833333 id,pasirupia,Pasirupia,33,,-6.9112,106.3924 co,campo chinato,Campo Chinato,21,,8.433333,-72.566667 ir,chavan-e `olya,Chavan-e `Olya,33,,37.5099,46.1908 gt,mico,Mico,04,,14.583333,-89.183333 fr,avot,Avot,A1,,47.618978,5.014776 in,channarayapatna,Channarayapatna,19,37684,12.904444,76.391667 ie,rathpeak,Rathpeak,24,,53.3252778,-8.1255556 th,ban lao chan,Ban Lao Chan,24,,15.766667,103.216667 ph,sarangani,Sarangani,25,7506,5.403333,125.463611 tr,zekteris,Zekteris,83,,37.458233,38.0376 af,sawat,Sawat,36,,33.837125,69.590287 de,mahnbruck,Mahnbrück,13,,50.516667,12.316667 cn,xiaozhu,Xiaozhu,03,,27.56696,116.846591 us,marcia,Marcia,NM,,32.8286111,-105.7672222 ir,tikan,Tikan,28,,33.3385,50.5557 pl,niemstow,Niemstow,80,,50.259037,23.061762 vn,khau chay,Khau Chay,39,,21.516667,107.033333 pk,chah machhiwala,Chah Machhiwala,04,,31.275,70.9925 tr,yurecik,Yürecik,89,,40.961434,32.434699 pa,el rodeo,El Rodeo,10,,8.0833333,-81.1833333 id,setampeng,Setampeng,17,,-8.7945,116.4111 mg,motombe,Motombe,06,,-23.3666667,43.7 ug,bukidea,Bukidea,46,,1.3169444,34.0505556 kg,yur'yevskoye,Yur'yevskoye,02,,42.7136111,75.0361111 rs,rezsohaza,Rezsohaza,00,,45.19,20.322222 pl,huta stara,Huta Stara,86,,52.018666,18.044575 au,swan hill,Swan Hill,07,9276,-35.3386,143.559525 cn,yangjia youfangtun,Yangjia Youfangtun,08,,45.823697,127.582016 ru,yakty-yul,Yakty-Yul,61,,48.549878,42.537323 ru,varnitsy,Varnitsy,52,,58.003889,33.0275 ml,daona,Daona,07,,14.25,-6.4166667 hn,campo dos,Campo Dos,06,,15.4166667,-87.9333333 th,kampong ban nae batu,Kampong Ban Nae Batu,31,,6.35,101.5 ir,kumchah,Kumchah,29,,28.05,57.083333 id,nyantrenan,Nyantrenan,08,,-7.1586,113.3001 cn,hengli,Hengli,03,,27.971281,115.403036 ng,tsavza,Tsavza,26,,7.383333,8.733333 zm,sifaka,Sifaka,03,,-15.4166667,22.6 ru,irayel,Irayel,34,,64.41192,55.19936 et,melka chireti,Melka Chireti,52,,5.333333,41.833333 in,dhinoj,Dhinoj,09,,23.666667,72.283333 id,bonai,Bonai,37,,1.266667,100.866667 au,barmundu,Barmundu,04,,-24.133333,151.2 gn,mamouria,Mamouria,09,,9.25,-10.6166667 us,banner,Banner,IL,,40.5169444,-89.9083333 ru,ostaschkow,Ostaschkow,77,,57.146667,33.107534 sl,senkuya,Senkuya,02,,9.2166667,-11.9333333 cu,poblado lacret,Poblado Lacret,03,,22.95,-80.85 nl,hooge heide,Hooge Heide,06,,51.696776,5.415832 fr,bouvesse,Bouvesse,B9,,45.795027,5.41574 ua,nabruska,Nabruska,24,,51.469845,25.292544 fr,waziers,Waziers,B4,7431,50.387171,3.114902 id,rantjanini,Rantjanini,33,,-6.5383,105.8454 us,rowlett,Rowlett,TX,54785,32.9027778,-96.5636111 mg,katsory,Katsory,03,,-14.15,48.1833333 af,sah ahmada,Sah Ahmada,08,,33.235556,68.091389 al,beleshit,Belëshit,43,,40.975,19.8819444 mx,gavilan,Gavilán,30,,18.583333,-95.7 by,tribukhi,Tribukhi,07,,55.7333333,27.4 af,lalekah,Lalekah,36,,33.734722,69.628611 ua,balakhovka,Balakhovka,10,,48.463871,33.179567 fr,nohant,Nohant,A3,,46.627146,1.973815 mm,tangsiat,Tangsiat,02,,23.9166667,93.9666667 cu,osvaldo sanchez,Osvaldo Sánchez,11,,22.7805556,-82.0338889 ng,mayo ine,Mayo Ine,35,,9.116667,12.233333 fr,varennes,Varennes,B2,,49.227321,5.035087 ru,kharkova,Kharkova,05,,50.135239,129.078475 tw,sanhohsi,Sanhohsi,04,,22.9333333,120.6666667 ec,sanahuin,Sanahuín,02,,-2.6166667,-79.3166667 ru,shilovka,Shilovka,72,,52.033333,41.133333 ru,pynki,Pynki,60,,56.197517,31.029857 id,kalen,Kalen,07,,-7.146,111.5381 mx,charco san rafael,Charco San Rafael,26,,30.633333,-111.65 et,goro jerbo,Goro Jerbo,51,,9.516667,38.45 cz,nischkau,Nischkau,80,,49.532657,15.806918 sk,kvasna voda,Kvasná Voda,05,,48.9666667,21.1833333 gm,madi,Madi,07,,13.5833333,-15.8833333 id,griyayasa,Griyayasa,07,,-7.581111,110.783889 hr,rosulje,Rosulje,14,,45.2283333,16.5755556 sk,velky macad,Velky Macad,07,,48.25,17.7 ir,vasi,Vasi,16,,35.0894,46.8161 us,south spafford,South Spafford,NY,,42.7794444,-76.2183333 dz,douar el harifia ben salah,Douar el Harifia Ben Salah,13,,35.325,0.8055556 se,kullen,Kullen,09,,58.183333,16.283333 cn,lique,Lique,25,,36.983333,118.35 ru,vlasova,Vlasova,52,,57.523174,31.145071 kr,chonggwiri,Chonggwiri,14,,36.081111,128.700833 ru,dmitriyevskoye,Dmitriyevskoye,43,,52.977585,38.965951 se,rosta,Rösta,07,,63.25,14.583333 my,kampung padang sebang,Kampung Padang Sebang,04,,2.4273,102.251 ph,salvador primero,Salvador Primero,29,,17.2,120.45 ph,cablangan,Cablangan,67,,12.5065,124.7979 cn,weixin,Weixin,16,,22.666667,109.333611 cn,taolixi,Taolixi,30,,23.324466,116.492039 co,turbaco,Turbaco,02,,7.2,-75.366667 sn,soung,Soung,07,,14.5558333,-17.0627778 rs,zmajevac,Zmajevac,00,,44.156944,19.628889 ru,gosplemkonyushnyaya,Gosplemkonyushnyaya,01,,44.6088,40.0322 ru,brezhinskiy,Brezhinskiy,38,,44.581,41.4185 ma,sebt des gzoula,Sebt des Gzoula,51,,32.109881,-9.083578 bd,char sonarpur,Char Sonarpur,81,,22.8666667,90.45 lv,mazlauki,Mazlauki,04,,56.5213889,23.8511111 cd,bolundu,Bolundu,00,,-2.916667,19.633333 ni,paigua,Paigua,18,,12.8,-85.1333333 ua,srebno,Srebno,19,,50.200162,25.331231 us,greenland,Greenland,AR,,35.9941667,-94.1750000 ir,chahar zabar-e pa'in,Chahar Zabar-e Pa'in,13,,34.2685,46.7116 us,dyess,Dyess,AR,,35.5897222,-90.2133333 af,spi tangai,Spi Tangai,34,,34.577969,70.800011 pl,kroszewo,Kroszewo,81,,53.731084,22.780335 us,toledo,Toledo,IL,,39.2736111,-88.2436111 pe,huallatalloc,Huallatalloc,08,,-13.5166667,-70.95 cn,kengyuantou,Kengyuantou,07,,25.753611,117.350833 se,rugstorp,Rugstorp,09,,56.933333,16.166667 cn,pingyue,Pingyue,02,,30.177423,119.466418 cn,huaiyang,Huaiyang,04,,33.06334,119.132375 af,gowlah,Gowlah,32,,35.734277,67.012546 co,guacas,Guacas,02,,6.494063,-74.964893 us,la jolla shores,La Jolla Shores,CA,,32.8555556,-117.2527778 ir,chahhan,Chahhan,04,,27.610005,59.703876 tz,nyantama,Nyantama,19,,-2.5775,30.8975 ba,donji kremin,Donji Kremin,02,,43.5633333,18.7169444 co,horizonte,Horizonte,19,,4.092281,-72.035917 cn,changji,Changji,02,,27.449644,120.138902 zr,kamponde,Kamponde,03,,-6.7,22.9333333 mx,rancho el tule,Rancho El Tule,07,,28.466667,-101.45 cg,etoumi,Etoumi,03,,-0.6577778,15.0363889 tw,mawutu,Mawutu,04,,24.7666667,121.2166667 ru,pestovka,Pestovka,47,,55.302386,38.108644 ir,nasr,Nasr,10,,32.3372,47.8488 pl,kozyno duze,Kozyno Duze,81,,52.865535,23.321647 dz,douar bouaichia,Douar Bouaichia,07,,35.8605556,0.3325 us,doe bay,Doe Bay,WA,,48.6413889,-122.7797222 mn,bayan khashiatu,Bayan Khashiatu,16,,49.5,105.6166667 cd,miki,Miki,12,,-3.396111,28.694722 ro,corlatelu,Corlatelu,26,,44.398611,22.933056 kp,soksongni,Soksongni,17,,40.8063889,129.3230556 ir,chalashkuh,Chalashkuh,23,,33.1678,49.0517 ru,lidino,Lidino,56,,52.912506,34.94524 pe,yacuna,Yacuna,05,,-14.6166667,-74.3666667 in,jodheri nadi,Jodheri Nadi,24,,27.319776,71.505814 pk,daud khelanwala,Daud Khelanwala,04,,32.480082,71.799132 al,Ðuz,Ðuz,42,,41.1455556,19.7291667 kr,gyokuji,Gyokuji,16,,34.653333,126.724444 af,samar qandyan,Samar Qandyan,30,,36.68785,66.842899 ru,boyarshchina,Boyarshchina,60,,57.7644,28.2038 eg,surad,Surad,05,,30.9777778,30.91 nl,esp,Esp,06,,51.519736,5.724459 de,waldenau,Waldenau,10,,53.616667,9.8 pk,chak langa,Chak Langa,06,,33.033805,73.805139 kr,chisalli,Chisalli,14,,36.342072,127.950103 ir,konab-e pa'in,Konab-e Pa'in,15,,32.717459,48.31235 pg,mokara,Mokara,13,,-2.0833333,147.6 in,mithria,Mithria,24,,27.866667,72.45 ir,khosrowabad,Khosrowabad,08,,37.1381,49.3098 ao,chicangue,Chicangue,17,,-9.633333,19.333333 mz,nfabene,Nfabene,01,,-12.0469444,39.8125 cn,jiangnanwu,Jiangnanwu,02,,29.591317,119.60692 lr,poporelekehn,Poporelekehn,13,,4.7833333,-7.9166667 sa,an nabhaniyah,An Nabhaniyah,08,,25.860753,43.064681 de,wunschensuhl,Wünschensuhl,15,,50.933333,10.15 cn,chuxia,Chuxia,02,,28.902596,121.547509 id,lembah,Lembah,41,,-2.8684,119.1667 ua,staritsa,Staritsa,07,,50.240474,36.793122 tw,wengkungtsun,Wengkungtsun,04,,22.6166667,120.4 ir,sharak-e nobovvat,Sharak-e Nobovvat,10,,33.8544,46.2712 tr,hayriye,Hayriye,35,,37.95,27.5 vn,lang lam,Làng Làm,39,,21.583333,106.333333 ir,kohsar,Kohsar,04,,26.423,60.5575 af,kariz-e sukhteh,Kariz-e Sukhteh,06,,32.288098,61.769033 jo,gharandal,Gharandal,21,,30.093116,35.204953 ir,lalehrud,Lalehrud,08,,37.20144,50.268298 bd,malliknagar,Malliknagar,81,,24.65,90.9833333 rs,jarak,Jarak,00,,44.916667,19.757222 gr,gorgoyiri,Gorgoyíri,22,,39.5483333,21.5844444 mg,andraratranina,Andraratranina,03,,-14.5166667,48.6333333 mz,metipomo,Metipomo,01,,-13.2136111,40.4491667 kz,zhezkent,Zhezkent,15,,50.932222,81.361111 cn,houwukoshu,Houwukoshu,08,,47.553056,124.728889 ar,el coro,El Coro,05,,-29.683333,-63.783333 et,auiaro,Auiaro,53,,13.722985,39.265923 ci,ziombli,Ziombli,84,,6.546378,-8.375184 my,rumah belayong,Rumah Belayong,11,,1.733333,112.033333 ro,petresti,Petresti,03,,45.05,24.866667 kr,togyongni,Togyongni,03,,35.866667,127 ir,jalalabad,Jalalabad,32,,37.1949,48.8814 de,koldewey,Koldewey,06,,52.666667,8.833333 pk,nabuwala,Nabuwala,04,,30.333333,71.179167 mx,galera lupena,Galera Lupeña,06,,30.05,-107.65 br,fazenda santo antonio,Fazenda Santo Antõnio,06,,-2.95,-40.116667 ru,pribrezhnyy,Pribrezhnyy,71,,57.9,59.983333 id,tokarau,Tokarau,38,,-2.9029,119.9474 iq,ishan salibi,Ishan Salibi,04,,31.7,44.7333333 ru,aspidnaya,Aspidnaya,63,,69.383333,161.55 cd,lumpenge,Lumpenge,00,,-6.316667,25.866667 kz,semizbughy,Semizbughy,12,,50.198889,74.830833 cl,quilpoco,Quilpoco,11,,-34.966667,-71.366667 id,dame,Dame,31,,2.7437,125.4293 us,barnum,Barnum,WY,,43.6641667,-106.9088889 me,velike sljeme,Velike Sljeme,00,,43.073333,19.549722 ph,tailsay,Tailsay,21,,11.2434,124.0619 ma,chbanat,Chbanat,47,,31.839553,-9.053189 mw,kanjesa,Kanjesa,13,,-13.65,33.3833333 gn,teoulazou,Téoulazou,21,,8.6580556,-9.8975 tr,dervisaga,Dervisaga,19,,40.825655,34.687525 es,la veiga,La Veiga,58,,42.138511,-7.932014 mg,ambodivoasihy,Ambodivoasihy,04,,-16.75,49.65 fo,gjogv,Gjógv,00,,62.3166667,-6.9333333 hn,la garita,La Garita,07,,13.5083333,-87.0622222 ru,sayansk,Sayansk,39,,53.141389,91.474167 pl,rozental,Rozental,82,,53.910824,18.68943 cn,lichuanchen,Lichuanchen,15,,34.248889,104.3175 gt,las palmas,Las Palmas,04,,14.566667,-89.4 ru,novaya derevnya,Novaya Derevnya,51,,54.918846,44.650672 ba,lepenica,Lepenica,01,,43.8783333,18.1505556 ru,tumannyy,Tumannyy,49,896,68.884722,35.694444 pk,naushehra,Naushehra,03,,34.659688,73.004357 ir,rashteyan,Rashteyan,13,,34.5863,47.8629 es,couboeira,Couboeira,58,,43.483333,-7.366667 us,flemington heights,Flemington Heights,AL,,34.6691667,-86.5594444 mx,el zapatero,El Zapatero,14,,19.883333,-103.05 ph,isagani,Isagani,59,,10.133333,124.866667 ir,roqu'i,Roqu'i,41,,32.835348,59.193993 ph,cagraray,Cagraray,05,,13.2842,123.8883 mx,plan de guanajuato,Plan de Guanajuato,11,,20.921667,-101.696389 ng,pika,Pika,27,,10.437209,12.006164 mx,toltitepec,Toltitepec,20,,16.182222,-96.03 hu,solymositanyak,Solymositanyák,03,,46.65,21.333333 kh,trapeang tao,Trapeang Tao,16,,14.2666667,103.8666667 in,pedda mangaiaram,Pedda Mangaiaram,02,,17.340278,78.251944 th,ban cha rong hi le,Ban Cha Rong Hi Le,70,,6.445972,101.360667 vn,trung lam,Trung Lâm,26,,18.733333,105.316667 us,herndon,Herndon,PA,,40.7094444,-76.8427778 ng,ungwan shamaki,Ungwan Shamaki,23,,11.243643,7.598093 my,kampong sombakal,Kampong Sombakal,16,,6.249882,116.30298 si,zuzemperk,Zuzemperk,04,,45.8338889,14.9291667 ao,cateco,Cateco,12,,-8.333333,15.816667 ru,kalinovka,Kalinovka,72,,51.811667,41.8775 ml,sogotila,Sogotila,07,,12.4833333,-5.8833333 bf,dourotenga,Dourotenga,22,,11.7166667,-0.0166667 dk,tojstrup,Tøjstrup,18,,56.459218,10.377814 ht,labadie,Labadie,06,,19.5166667,-72.4833333 ir,bar duk,Bar Duk,42,,34.188333,58.779444 gn,dixinn,Dixinn,04,,9.5511111,-13.6730556 lt,aukshtolyay,Aukshtolyay,60,,55.5166667,23.5166667 ir,khiya,Khiya,36,,36.2499,49.1273 gn,kogoloue,Kogoloué,24,,7.8,-8.6 sy,kara,Kara,08,,34.15,36.7333333 mx,payanes,Payanes,25,,25.291667,-108.208333 ve,la viejita,La Viejita,11,,11.2,-68.7666667 cn,litayao,Litayao,24,,40.237148,112.45367 mm,swanhkunmun,Swanhkunmun,11,,20.5833333,97.3166667 de,strassberg,Straßberg,13,,50.483333,12.083333 ir,lashtinshakh,Lashtinshakh,08,,37.366056,49.859547 ua,malinovka,Malinovka,18,,49.499293,33.421704 mw,jeremiah boa,Jeremiah Boa,18,,-12.5333333,34.15 mx,ayotoxoc,Ayotoxoc,21,,20.1,-97.4 pk,khasala kalan,Khasala Kalan,04,,33.440453,72.973711 pl,majdan gromadzki,Majdan Gromadzki,75,,50.580172,22.692053 ru,yasnopolye,Yasnopolye,76,,53.445556,37.582222 pl,juraszki,Juraszki,81,,53.024792,23.062045 fi,annonen,Annonen,08,,64.216667,25.05 tr,agizsuyu koy,Agizsuyu Koy,19,,41.004103,34.950106 us,norseland,Norseland,MN,,44.4127778,-94.1163889 my,kampong jangkar,Kampong Jangkar,11,,1.65,109.766667 ru,forsov,Forsov,41,,51.9788,35.3495 bd,bhatpara,Bhatpara,81,,23.3333333,89.7 tg,gbolovou,Gbolovou,10,,6.1725,1.195 pk,aehaleshwar,Aehaleshwar,05,,24.3817,70.7012 mx,sebastopol,Sebastopol,10,,26.133333,-105.683333 al,drenove,Drenovë,44,,40.6005556,19.7008333 ir,shaikh silu yukari,Shaikh Silu Yukari,01,,38.9926,44.2001 ao,muanha muchica,Muanha Muchica,12,,-9.359786,17.016117 ir,murj-e shahrak,Murj-e Shahrak,07,,28.8687,52.4613 us,tolliver town,Tolliver Town,KY,,37.1802778,-82.7091667 sr,moismois kondre,Moismois Kondre,18,,5.3666667,-54.6666667 tr,kadi,Kadi,85,,41.381071,31.974073 uz,kosh-tepa-saray,Kosh-Tepa-Saray,06,,40.8333333,72.0166667 us,canobie lake,Canobie Lake,NH,,42.8055556,-71.2455556 pl,bialobrzegi,Bialobrzegi,74,,51.520657,20.065728 tw,haiputsun,Haiputsun,04,,23.2,120.2 ba,klinja,Klinja,02,,43.3966667,18.3672222 pe,occopata,Occopata,04,,-15.3166667,-72.05 pe,anchicha,Anchicha,03,,-13.9833333,-73.0 ru,brakhlov,Brakhlov,10,,52.361911,32.466163 ml,doubala,Doubala,07,,11.9333333,-6.7833333 iq,taqtaqah,Taqtaqah,06,,32.4,44.2833333 my,alur lintah,Alur Lintah,13,,5.758036,102.533569 my,kampung kemesar,Kampung Kemesar,06,,4.0093,102.0579 cd,malasua,Malasua,05,,-12.189444,27.824167 cn,gangtou,Gangtou,30,,20.263611,110.118333 bz,monkey river,Monkey River,06,,16.35,-88.4833333 us,morning sun,Morning Sun,IA,,41.0961111,-91.2575000 us,evian,Evian,GA,,33.3625000,-84.5416667 mx,dolores,Dolores,16,,19.166667,-102.733333 do,los derramaderos,Los Derramaderos,23,,18.8833333,-71.4833333 us,blanca,Blanca,CO,,37.4380556,-105.5152778 cg,vouma,Vouma,03,,0.0422222,15.6688889 cn,babai,Babai,20,,40.749444,111.795278 id,sekeangkrih,Sekeangkrih,30,,-6.9025,107.757778 cn,lejiang,Lejiang,07,,25.390927,116.63754 us,beulah,Beulah,IA,,43.0272222,-91.3080556 af,mirjoy,Mirjoy,08,,33.386619,67.980523 af,zulmkhel,Zulmkhel,14,,35.06237,69.596832 gb,collingham,Collingham,H3,,53.9,-1.4 cd,efonde,Efonde,02,,.6,21.15 ru,kulubarovo,Kulubarovo,85,,59.727205,43.618193 af,`ali zai,`Ali Zai,10,,32.422109,64.467269 ee,joepere asundus,Joepere Asundus,08,,59.285,26.1927778 az,bayi,Bayi,27,,40.09719,48.229777 pl,usowicze,Usowicze,81,,53.18072,23.125998 cn,nansishang,Nansishang,19,,40.57951,123.621739 ua,yakimovka,Yakimovka,10,,48.66142,31.223519 sk,husek,Husek,02,,48.5666667,17.05 iq,falah shaykh shabib,Falah Shaykh Shabib,14,,31.925,46.9183333 pe,coriscancha,Coriscancha,09,,-13.0166667,-74.7833333 cn,qiangziling,Qiangziling,19,,40.4825,119.710833 ie,ballybaun,Ballybaun,30,,52.4413889,-6.4230556 pt,casal da barba pouca,Casal da Barba Pouca,18,,39.536284,-8.019881 cm,dollago,Dollago,12,,10.3166667,14.4833333 bd,bhushana,Bhushana,81,,23.4,89.6666667 es,morata de jiloca,Morata de Jiloca,52,,41.247966,-1.586652 us,flint hill,Flint Hill,KY,,37.4983333,-85.9905556 tr,yukarisebil,Yukarisebil,68,,39.171987,32.732434 ir,goli bolaq-e `olya,Goli Bolaq-e `Olya,32,,39.2137,48.0313 bo,estancia iru pata,Estancia Iru Pata,04,,-17.7333333,-68.1833333 tr,tepekoy,Tepeköy,55,,41.514157,36.012327 lk,kotapola south,Kotapola South,34,,6.3,80.55 th,ban song phi nong,Ban Song Phi Nong,42,,13.616667,100.566667 pk,gul abad,Gul Abad,02,,30.649167,67.08 hn,casa vieja,Casa Vieja,15,,14.7666667,-86.2666667 cn,sanhsichang,Sanhsichang,33,,28.944722,106.710556 es,castrillo de rucios,Castrillo de Rucios,55,,42.538349,-3.722324 cn,laoyangzhuang,Laoyangzhuang,04,,33.4,119.016667 cz,sibice,Sibice,88,,50.202085,14.95919 vn,lac dao,Lac Dao,28,,12.966667,109.066667 ru,milinovo,Milinovo,83,,56.06196,41.228533 ru,podgorodnaya kamenka,Podgorodnaya Kamenka,81,,54.402556,48.289026 zr,mbiyo,Mbiyo,00,,3.7833333,24.9666667 fr,suhescun,Suhescun,97,,43.233334,-1.2 ru,timofeyevo,Timofeyevo,45,,56.792222,48.636667 se,furuby,Furuby,12,,56.85,15.033333 id,padanghaluan,Padanghaluan,15,,-5.229686,103.933551 tr,durali,Durali,61,,40.878416,39.6712 in,juna raj,Juna Raj,09,,21.783333,73.616667 pk,basti shakrani,Basti Shakrani,04,,29.236911,70.52687 kr,batdeul,Batdeul,13,,37.412222,127.527778 ie,ballinaclash,Ballinaclash,31,,52.8997222,-6.2613889 in,kalajhang,Kalajhang,12,,33.111111,74.422222 ng,vosho,Vosho,43,,8.916667,11.283333 kz,avangard,Avangard,14,,44.083333,66.883333 ru,kozhinskaya,Kozhinskaya,85,,60.15616,42.349072 pe,ongon,Ongón,13,,-8.1652778,-76.9738889 ne,in gwitou,In Gwitou,07,,14.4666667,8.05 cn,shihlitien,Shihlitien,04,,32.162626,120.081864 fr,valesole,Valesole,B8,,43.837993,5.983234 pg,tobienggau'um,Tobienggau'um,08,,-6.2,145.0166667 id,karanganjar,Karanganjar,08,,-7.7755,114.3067 cn,kuangfuchen,Kuangfuchen,04,,31.296267,120.383124 rs,jelovac,Jelovac,00,,42.650833,20.669167 id,blok sentra,Blok Sentra,30,,-6.704167,108.346389 gq,mbanenvila,Mbanenvila,08,,1.7333333,10.0166667 ru,ishkovka,Ishkovka,67,,52.4538,49.1114 be,pijpestraat,Pijpestraat,09,,50.716667,3.35 ma,douar khaled,Douar Khaled,47,,31.922329,-7.220882 pk,tungi,Tungi,06,,34.336667,73.623889 kr,chogumi,Chogumi,20,,34.733889,128.610278 ph,linamen,Linamen,49,,9.197775,118.356498 rs,rumenci,Rumenci,00,,42.421944,21.840278 iq,sayyid hasan,Sayyid Hasan,14,,31.8333333,47.2166667 pg,galilo,Galilo,17,,-5.5,150.5833333 my,kampong tabuan,Kampong Tabuan,13,,4.2981,103.3861 us,kenner,Kenner,LA,69721,29.9938889,-90.2416667 vn,lang lat,Làng Lát,68,,21.739688,105.237793 ua,barilov,Barilov,15,,50.345774,24.867563 se,farjegardarna,Färjegårdarna,10,,60.466667,15.466667 ru,borovaya polyana,Borovaya Polyana,67,,52.372821,44.417856 lv,lukas,Lukas,05,,57.05,25.7333333 lt,sokaiciai,Sokaiciai,61,,55.3666667,23.4666667 ms,cuojoe head,Cuojoe Head,03,,16.7833333,-62.2 es,formariz,Formariz,55,,41.346392,-6.29072 cd,bongulu,Bongulu,02,,.816667,20.7 cf,bassigbiri,Bassigbiri,05,,5.3333333,26.9166667 jm,aboukir,Aboukir,09,,18.25,-77.3666667 hk,wo li hop,Wo Li Hop,00,,22.3833333,114.1333333 cu,panameno,Panameño,16,,22.4,-79.5833333 la,ban ta luong,Ban Ta Luong,10,,16.633333,106.183333 eg,`izbat al maqmasah,`Izbat al Maqmasah,21,,31.4972222,30.7519444 kp,samsupyongnodongjagu,Samsupyongnodongjagu,13,,41.8341667,128.8191667 mx,la cuchilla,La Cuchilla,07,,24.816667,-101.15 cn,xuetian,Xuetian,02,,29.004534,120.561996 kr,yomjang,Yomjang,14,,36.500833,129.435833 sy,teftanaz,Teftanâz,12,,35.9833333,36.7833333 fr,pont-de-coulogne,Pont-de-Coulogne,B4,,50.924219,1.869978 pl,dziki bor,Dziki Bor,78,,52.974423,19.619338 eg,bahbeit,Bahbeit,08,,29.6463889,31.2641667 id,ye,Ye,36,,-7.433333,140.5 ru,pyatnitsa-slatka,Pyatnitsa-Slatka,77,,56.323056,33.529167 gr,kasolaiika,Kasolaíika,31,,38.4666667,21.7333333 ph,dauis,Dauis,11,2553,9.625278,123.865833 cn,lhaze,Lhazê,14,,29.101,87.601 ru,malmyshka,Malmyshka,73,,55.813322,51.357977 us,gold flat,Gold Flat,CA,,39.2461111,-121.0233333 ru,latyshskiye nomera shestoy,Latyshskiye Nomera Shestoy,60,,55.783333,30.916667 id,padanghalaban,Padanghalaban,24,,-.004006,99.711256 ir,bahristan,Bahristan,28,,32.479837,51.775405 ru,sukhoozernyy,Sukhoozërnyy,70,,44.1831,42.5228 pl,budziska stare,Budziska Stare,78,,52.533333,21.666667 hr,bidrovec,Bidrovec,21,,45.8888889,16.0241667 kp,panggumiri,Panggumiri,03,,39.3419444,127.5472222 fr,yvrencheux,Yvrencheux,B6,,50.182722,1.996293 ve,cupa,Cupa,22,,10.4952778,-68.9594444 cm,ngorro,Ngorro,11,,4.95,11.3833333 pk,dhok chambra,Dhok Chambra,04,,33.109742,73.49413 cn,serxu,Sêrxü,32,,32.975025,98.09589 fr,la moutte,La Moutte,B9,,44.49111,4.68036 us,plainfield,Plainfield,NJ,47795,40.6336111,-74.4077778 my,tenghelan,Tenghelan,16,,6.233333,116.316667 sd,mureibi`a,Mureibi`a,27,,14.5833333,33.1666667 de,hetterscheidt,Hetterscheidt,07,,51.333333,7 id,teplek,Teplek,08,,-7.4981,111.5883 ro,gersa,Gersa,06,,47.3,24.45 at,mittergrabern,Mittergrabern,03,,48.616667,16.016667 cn,fawu,Fawu,29,,24.003793,102.328185 ne,badaria,Badaria,04,,13.2,7.0333333 cd,lukotola,Lukotola,05,,-10.516667,26.25 ee,oyaerse,Oyaerse,13,,58.7402778,24.6225 pk,morpandai,Morpandai,03,,35.113097,72.508782 mw,mzumacalo,Mzumacalo,13,,-13.5166667,33.0833333 pk,keilma,Keilma,07,,34.67864,76.176791 it,ornano grande,Ornano Grande,01,,42.533333,13.65 ru,polva,Polva,90,,58.667504,54.459333 gh,ahwidaye,Ahwidaye,02,,6.2,-1.45 pa,machito,Machito,10,,8.0166667,-81.4666667 id,rimun,Rimun,07,,-7.681389,110.063611 au,macknade,Macknade,04,,-18.587339,146.255905 id,masjid,Masjid,08,,-7.0614,112.8349 ru,zhelnair,Zhelnair,55,,51.3,57.816667 pk,paur,Paur,03,,36.5758,72.8236 tw,shangchuwei,Shangchuwei,04,,22.8833333,120.5333333 kp,changjegol,Changjegol,06,,38.0341667,125.8541667 zm,msanga,Msanga,05,,-14.3666667,29.3833333 ba,gric,Gric,01,,44.0530556,17.6736111 id,bongos satu,Bongos Satu,10,,-7.9775,110.256667 cn,qixi,Qixi,02,,29.418835,118.335714 fr,saint-martin-sur-ocre,Saint-Martin-sur-Ocre,A3,,47.659423,2.658101 om,azi§ zi§ahrayn,Az̧ Z̧ahrayn,07,,26.0969444,56.1952778 kp,changbangdong,Changbangdong,03,,40.6019444,129.0147222 ru,popsuyeva,Popsuyeva,10,,53.044202,33.598049 pe,puerta pulache,Puerta Pulache,20,,-4.7269444,-80.1913889 jo,el jauza,El Jauza,09,,31.057518,35.66815 cn,laomingtang,Laomingtang,03,,28.829465,115.091879 fr,rodde,Rodde,98,,46.092918,2.807889 tr,telhunta,Telhunta,63,,36.892222,39.011667 ve,quebrada del barro,Quebrada del Barro,14,,8.1561111,-71.5216667 af,abdullakhan-kalay,Abdullakhan-Kalay,23,,31.682952,66.894399 id,menjing,Menjing,08,,-7.9366,112.6129 af,zian say,Zian Say,07,,35.864952,64.278152 gr,sinoikia kato trikalon,Sinoikía Káto Trikálon,37,,38.0,22.4833333 us,west newton,West Newton,OH,,40.6538889,-83.8927778 ir,cheshmeh sefid-e `olya,Cheshmeh Sefid-e `Olya,13,,34.2803,47.0105 gb,newborough,Newborough,K3,,52.616667,-.216667 pe,san luis,San Luis,02,,-9.0833333,-77.35 pt,leca do belio,Leca do Belio,17,,41.214567,-8.613484 id,soge lor,Soge Lor,30,,-6.348056,108.060556 fr,neubois,Neubois,C1,,48.305697,7.338011 pk,gogo chakki,Gogo Chakki,04,,32.108464,72.315962 cn,hanqian,Hanqian,07,,25.952551,116.473554 pk,rahmalwali,Rahmalwali,04,,32.704167,72.15 af,gawarjan,Gawarjan,35,,34.722778,70.465 ir,bahar kesht,Bahar Kesht,42,,36.725006,58.629913 de,schammelsdorf,Schammelsdorf,02,,49.916667,11 ro,sauca,Sauca,05,1434,47.466667,22.483333 th,ban lao phak kat ya,Ban Lao Phak Kat Ya,26,,16.166667,102.183333 cz,mahrisch-hartau,Mahrisch-Hartau,85,,49.876551,17.598334 lv,kauguri,Kauguri,31,,57.5,25.45 ru,malaya semenovka,Malaya Semënovka,75,,57.766667,85.216667 id,karangtengah,Karangtengah,30,,-6.283333,107.346667 co,el triunfo,El Triunfo,19,,3.5125,-74.035833 us,spring valley,Spring Valley,SC,,34.6494444,-82.8872222 mx,canada grande,Cañada Grande,11,,21.326667,-101.525833 kp,chungodong,Chungodong,07,,38.5497222,126.1566667 kr,kwangi,Kwangi,03,,35.596166,127.358743 af,qaha deh,Qaha Deh,08,,32.965245,67.52396 jp,yambetsu,Yambetsu,12,,43.917222,144.520556 cn,shenjiazhai,Shenjiazhai,23,,31.004402,121.658031 ci,yepokarehoin,Yépokaréhoin,88,,6.099453,-5.583461 bd,char bedama,Char Bedama,80,,22.6666667,91.0166667 cn,laxu,Laxu,06,,35.978881,102.411004 bg,trnkovo,Trnkovo,43,,42.2833333,25.8166667 kp,taepyong,Taepyong,12,,38.9836111,125.6094444 fr,l'epetade,L'Epetade,98,,45.65,3.216667 ru,yelkovo,Yelkovo,21,,57.05,41.916667 pk,chhatra,Chhatra,06,,33.796582,73.988295 pk,siri kili,Siri Kili,03,,33.56,70.794167 il,shoshannat ha`amaqim,Shoshannat Ha`Amaqim,02,,32.354086,34.856883 th,ban kio sawaek mai,Ban Kio Sawaek Mai,02,,18.308222,98.229028 us,red store crossroads,Red Store Crossroads,GA,,31.4044444,-84.2761111 ba,brezani,Brezani,02,,44.0527778,19.3688889 kr,cholkolli,Cholkolli,14,,35.841389,129.3525 ro,gruiu marului,Gruiu Marului,21,,46.2,22.55 se,lillalgssjon,Lillälgssjön,10,,61.833333,12.416667 cz,wiesen,Wiesen,82,,50.64992,16.238297 cn,anyo,Anyo,32,,30.102297,105.333372 cn,sunlong,Sunlong,01,,30.75,117.841667 bd,ghoga,Ghoga,81,,23.9333333,88.8833333 id,babakanjatam,Babakanjatam,30,,-6.299722,107.3425 ro,tyrgu-muresh,Tyrgu-Muresh,27,,46.55,24.566667 mg,bematsatso,Bematsatso,04,,-17.9333333,48.15 la,ban nakapong noy,Ban Nakapong Noy,10,,16.866667,105.466667 bo,tulapunta,Tulapunta,07,,-20.8333333,-66.1166667 pk,haji saifu khan kili,Haji Saifu Khan Kili,02,,31.322189,69.684647 af,chap say,Chap Say,03,,36.145948,69.195912 de,hufenstuhl,Hufenstuhl,07,,50.8,7.266667 br,ribeirao herdt,Ribeirão Herdt,26,,-26.7784,-49.1769 th,ban lai na,Ban Lai Na,04,,18.63525,101.043695 lt,vainuto,Vainuto,62,,55.365,21.8644444 bg,kariyata,Kariyata,46,,42.9,25.0166667 fr,lezinnes,Lézinnes,A1,,47.800887,4.087764 us,maceys corner,Maceys Corner,MD,,39.0802778,-76.5450000 nl,boschheurne,Boschheurne,03,,52.118308,6.461062 ye,sibalah,Sibalah,15,,16.8333333,43.75 bo,comunidad punama,Comunidad Punama,04,,-15.5166667,-69.0 cn,taizi,Taizi,07,,26.04956,118.092948 id,bungursarang,Bungursarang,07,,-7.258,108.647 id,patti,Patti,28,,-8.216667,127.85 th,ban nong,Ban Nong,06,,18.019167,99.138056 ph,tolapos,Tolapos,69,,9.2817,123.6401 hr,podastrana,Podastrana,08,,44.6044444,15.3988889 ir,dagh qu'i,Dagh Qu'i,26,,35.6538,50.504 cn,baogao,Baogao,31,,18.607699,108.938412 ir,salehabad,Salehabad,15,,30.841944,49.656667 gb,iron acton,Iron Acton,M6,,51.55,-2.466667 tr,saridana,Saridana,32,,36.172562,32.718155 ru,novaya buda,Novaya Buda,69,,53.983941,32.077189 ru,ivano-ursulovka,Ivano-Ursulovka,86,,50.51092,39.840832 sy,marj darouich el khalaf,Marj Darouîch el Khalaf,04,,36.1333333,38.9833333 au,habana,Habana,04,,-21.033333,149.083333 cn,nianyushan zhen,Nianyushan Zhen,03,,29.20671,117.103782 sl,mulikia,Mulikia,02,,8.3666667,-12.5452778 hn,el coroso,El Coroso,18,,15.2666667,-86.9833333 ru,sizyabsk,Sizyabsk,34,,65.062009,53.859099 de,neukirchen-steinbach,Neukirchen-Steinbach,13,,51.016667,13.433333 vu,masalato,Masalato,06,,-15.4,167.6833333 ru,mars,Mars,38,,46.616667,39.716667 id,simo,Simo,07,,-6.7538,111.4332 cn,fengshanli,Fengshanli,03,,29.024982,114.51042 co,azul boqueron,Azul Boquerón,36,,5.683429,-72.728909 tr,celebiler,Çelebiler,58,,39.753135,36.896008 ru,gorelyy mikhal,Gorelyy Mikhal,40,,55.654722,65.225 tr,mahmudiye,Mahmudiye,43,,39.633106,29.822438 de,hasselbrock,Hasselbrock,06,,52.916667,7.183333 br,fazenda jurema,Fazenda Jurema,06,,-3.95,-39.183333 ua,kosteniv,Kosteniv,15,,49.59312,24.594619 iq,qaraqush,Qaraqush,15,,36.2694444,43.3772222 gt,barillas,Barillas,07,,14.405,-90.544444 tz,itar,Itar,19,,-2.6833333,31.75 tr,dogankoy,Dogankoy,61,,40.905839,39.477978 pl,wojkowo,Wojkowo,85,,54.095129,21.015589 th,ban bo saeng,Ban Bo Saeng,03,,19.938861,100.227778 mx,nueva tapatia,Nueva Tapatía,30,,17.516667,-94.95 pk,mansur,Mansur,03,,32.447446,70.791027 bo,yagua parapeti,Yagua Parapetí,01,,-20.05,-63.9166667 be,lens-sur-geer,Lens-sur-Geer,04,,50.716667,5.35 ua,zniatsiovo,Zniatsiovo,25,,48.48013,22.511239 af,baghakah,Baghakah,23,,31.664782,66.362857 my,kampong yen kechil,Kampong Yen Kechil,02,,5.822474,100.370459 ph,abibling,Abibling,05,,13.25,123.6 co,plata perdida,Plata Perdida,10,,9.27541,-73.770396 eg,saft el-miluk,Saft el-Miluk,03,,30.9375,30.5777778 zm,shichongwe,Shichongwe,05,,-14.9166667,27.7 mx,monte del favor,Monte del Favor,18,,21.133333,-104.166667 ie,derrinturn,Derrinturn,12,,53.3416667,-6.9411111 ua,teplyanka pervaya,Teplyanka Pervaya,07,,49.473333,37.186944 cn,hadan huxu sum,Hadan Huxu Sum,20,,42.609444,115.891111 jp,koenbo,Koenbo,19,,35.2,139.633333 id,tongkoe,Tongkoe,21,,-1.2055,121.2261 es,vera de moncayo,Vera de Moncayo,52,,41.824002,-1.68799 ne,faria,Faria,05,,13.9333333,3.1166667 ge,ts'uts'khvat'i,Ts'uts'khvat'i,55,,42.2844444,42.8722222 id,ketawar,Ketawar,07,,-7.155833,110.829444 ru,verkhniye narykary,Verkhniye Narykary,32,,63.1438,64.8282 gr,kato makrinou,Káto Makrinoú,31,,38.4833333,21.6333333 mx,ixtla,Ixtla,12,,17.183333,-100.383333 ie,belmont,Belmont,23,,53.255,-7.8936111 fr,le haut bois,Le Haut Bois,A3,,48.477644,.97053 gh,ojashewano,Ojashewano,09,,5.65,-0.65 kr,seokdang,Seokdang,13,,37.0981,127.5865 zm,chimbweta,Chimbweta,03,,-14.7833333,23.7833333 ir,zafarabad,Zafarabad,07,,29.4119,52.5833 sy,qarah kuyu,Qarah Kuyu,09,,36.85,38.1666667 de,kalkstein,Kalkstein,12,,53.766667,13.816667 it,letoianni gallodori,Letoianni Gallodori,15,,37.883333,15.316667 de,grafenholz,Gräfenholz,02,,50.05,10.816667 cn,shuitazi,Shuitazi,32,,31.893642,104.127922 cn,yalong,Yalong,02,,27.947872,120.143652 cn,beixinglong,Beixinglong,19,,39.907432,122.874064 pk,garhi,Garhi,05,,27.302417,67.677634 ng,ungwan sarkin aiki ibiran,Ungwan Sarkin Aiki Ibiran,24,,11.696104,7.026965 am,qayabasa±,Qayabası,04,,40.1830556,45.8255556 ir,bazar kopur chal,Bazar Kopur Chal,08,,37.5488,49.2342 az,ismeilli,Ismeilli,36,,39.366389,49.208611 id,tambunsari,Tambunsari,30,,-6.101111,107.221111 dz,djermana,Djermana,18,,36.6,5.2333333 pk,kali nal,Kali Nal,04,,32.699884,72.216943 pk,arkot,Arkot,03,,34.950452,72.367693 es,perez,Pérez,55,,42.958923,-3.317519 ru,dubrovskiy,Dubrovskiy,56,,52.620556,35.183056 us,hoffman,Hoffman,MD,,39.6355556,-78.9061111 za,kwathema,KwaThema,06,,-26.295754,28.400089 pk,paran bhambro jo goth,Paran Bhambro jo Goth,05,,27.1889,69.04385 cn,shatianzhai,Shatianzhai,30,,22.283462,111.632295 my,kampong limau purut,Kampong Limau Purut,13,,5.033333,102.6 us,heineman,Heineman,SC,,33.5525000,-79.9336111 ni,la campana,La Campana,15,,11.2333333,-85.75 ao,quincanda,Quincanda,15,,-6.329511,16.41272 us,flows store,Flows Store,NC,,35.2988889,-80.5577778 mx,limon,Limón,30,,18.7,-95.883333 cn,deben xucun,Deben Xucun,04,,31.889795,120.955686 br,val-de-caes,Val-de-Cães,16,,-1.383333,-48.483333 tr,cavuslu,Cavuslu,37,,41.744121,33.874367 ng,kibori,Kibori,23,,9.85,8.416667 id,lamkunyet,Lamkunyet,01,,5.483333,95.316667 ua,sobolivka,Sobolivka,23,3605,49.336044,28.650964 id,naton,Naton,14,,4.216667,116.1 ua,vipchinka,Vipchinka,06,,48.15,25.016667 dk,statene,Statene,21,,54.899279,10.737563 id,namukembahang,Namukembahang,26,,3.4792,98.268 mm,kogwa,Kogwa,09,,18.6666667,96.4 us,boordy vineyards,Boordy Vineyards,MD,,39.4758333,-76.4866667 ua,bogdan,Bogdan,25,,48.041221,24.352224 gn,koungbedougou,Koungbédougou,01,,8.5666667,-7.9333333 af,qala yost,Qala Yost,01,,36.97198,72.84657 nl,neer-andel,Neer-Andel,06,,51.783333,5.05 ng,gazori,Gazori,24,,12.834944,8.4001 om,dubiyah,Dubiyah,02,,23.06,57.7011111 fr,saint-priest-sous-aixe,Saint-Priest-sous-Aixe,B1,,45.816667,1.1 af,qal`a-i-hasan khan,Qal`a-i-Hasan Khan,11,,34.313167,62.055078 iq,wajihiya,Wajihiya,10,,33.95,44.9833333 ne,dan joumma,Dan Joumma,04,,14.4333333,7.3833333 tr,seymenli,Seymenli,32,,36.716667,34.433333 gt,chuatuj,Chuatuj,13,,14.983333,-91.6 ne,anay,Anay,01,,19.365,12.8994444 ng,alade,Alade,48,,7.141559,5.10116 kr,karugogae,Karugogae,05,,37.0138,128.3027 ph,baduat,Baduat,H6,,17.9821,121.2094 cn,dongqiao,Dongqiao,11,,26.352222,112.286111 us,copeland,Copeland,OK,,36.6558333,-94.8280556 ru,kullar,Kullar,73,,55.19162,48.1882 so,beer axmadow,Beer Axmadow,14,,1.3333333,43.9 it,solfara panche,Solfara Panche,15,,37.6,14.466667 us,richmond,Richmond,PA,,40.8455556,-75.1427778 es,perdones,Perdones,34,,43.578733,-5.864258 co,santa maria,Santa María,08,,1.233333,-75.5 ru,sedimi,Sedimi,59,,43.083333,131.4 ru,kolesnikovo,Kolesnikovo,41,,52.1401,35.6108 br,sitio brigida,Sítio Brigida,18,,-23.813063,-50.072618 td,goundang,Goundang,12,,13.1666667,22.0166667 th,ban na nai,Ban Na Nai,20,,17.201222,103.822417 us,north park,North Park,WV,,40.0855556,-80.7144444 lt,ventslovishki,Ventslovishki,62,,55.1166667,23.0333333 au,endeavour hills,Endeavour Hills,07,,-37.974,145.256 cn,kaoliu,Kaoliu,04,,34.316667,118.516667 ro,pantasesd-cziganyesd,Pantasesd-Cziganyesd,05,,46.616667,22.383333 us,igiugig,Igiugig,AK,,59.3277778,-155.8947222 cn,shuanglu,Shuanglu,12,,31.307393,113.737846 ie,derrylea,Derrylea,11,,51.9519444,-9.6541667 ug,alebai,Alebai,80,,2.0833333,33.45 al,gushmar,Gushmar,45,,40.2208333,19.89 us,lamont,Lamont,MS,,33.5352778,-91.0761111 co,caserio chorrillo,Caserío Chorrillo,20,,.906111,-77.689722 fi,jyvaskyla,Jyväskylä,15,85026,62.233333,25.733333 iq,gankewa,Gankewa,05,,35.7011111,45.4994444 pl,przymy,Przymy,78,,52.641128,21.623913 cn,gaipai,Gaipai,15,,34.802578,104.161768 id,begag,Begag,30,,-6.025556,106.280833 id,meuko-peunajong,Meuko-peunajong,01,,5.3271,95.9621 cd,yankote,Yankote,09,,.95,23.65 ru,kireyevo,Kireyevo,51,,56.478894,43.860475 iq,mudun jarbah,Mudun Jarbah,10,,34.3627778,45.1691667 ir,delamdeh,Delamdeh,08,,37.003897,49.70591 af,baghak,Baghak,02,,34.94436,63.143444 gh,dungu,Dungu,06,,9.4833333,-0.85 gb,bankend,Bankend,W5,,55.583333,-3.916667 af,marqol,Marqol,08,,33.145978,67.352351 cz,senice,Senice,88,,50.184409,15.207034 ph,koso,Koso,G8,,16.25,122.15 sl,jene,Jene,03,,7.0833333,-11.3333333 gw,camassaba,Camassaba,01,,12.2666667,-14.5166667 kh,phumi khpob veng,Phumi Khpob Veng,06,,10.7,104.1666667 ec,puerto alfaro,Puerto Alfaro,24,,-0.8333333,-75.4833333 in,parjgirain,Parjgirain,12,,32.8375,74.918056 kr,yedong,Yedong,17,,36.7403,126.771 us,bradwood,Bradwood,OR,,46.1969444,-123.4377778 be,vogelzang-kapelle,Vogelzang-Kapelle,02,,50.766667,4.016667 pg,hoskins,Hoskins,17,,-5.45,150.4 dz,tsabit,Tsabit,00,,28.3666667,-0.25 ph,danaon,Danaon,N3,,9.916667,125.5 la,ca dap,Ca Dap,10,,16.8,106.283333 ht,la victor,La Victor,11,,18.2666667,-73.05 lk,kiranchi,Kiranchi,31,,9.3333333,80.1 tr,obrukminnetler,Obrukminnetler,26,,39.967777,31.488008 cn,qoiden,Qoidên,32,,30.433333,99.833333 ru,podgornyy,Podgornyy,20,,54.8572,98.9922 af,indzer bagh,Indzer Bagh,23,,32.023441,66.078124 ht,cimetiere,Cimetière,08,,18.5833333,-74.3666667 id,lokokmumbul timur,Lokokmumbul Timur,17,,-8.2218,116.3336 ua,shishkovtsy,Shishkovtsy,03,,48.551633,25.633558 tr,yavsak,Yavsak,58,,39.954872,36.671457 ba,pranjici,Pranjici,02,,44.5516667,17.8872222 tr,burckoy,Burçköy,44,,38.272505,38.95092 pk,bar garai,Bar Garai,03,,35.181014,72.531509 cn,qianwei zhen,Qianwei Zhen,26,,34.126357,109.223542 af,fatekhmukhammed-kala,Fatekhmukhammed-Kala,28,,32.172182,67.65856 gw,sima,Sima,10,,12.2833333,-14.4 mm,buye-myit,Buye-myit,01,,18.8666667,93.65 cg,tchibota,Tchibota,04,,-4.2261111,11.4830556 cm,dougui,Dougui,12,,10.7333333,15.1 id,cidongklang,Cidongklang,33,,-6.0485,106.0084 vn,plei van vo,Plei Van Vo,27,,14.7,108.566667 kp,changnyolli,Changnyolli,17,,42.2172222,129.2877778 ru,valargthe,Valargthe,CI,,43.179722,45.408056 id,tegalpolo,Tegalpolo,07,,-6.9748,110.2304 mx,la sangre nueva,La Sangre Nueva,26,,30.633333,-111.433333 be,hutsel,Hutsel,01,,51.466667,5.066667 uz,oktyabr'skiy,Oktyabr'skiy,16,,40.4666667,68.7833333 af,syahsang,Syahsang,13,,34.70229,69.080261 cn,xiongjiayuan,Xiongjiayuan,03,,28.086282,117.937802 us,jacksonville,Jacksonville,FL,797557,30.3319444,-81.6558333 cn,fenghuangzhai,Fenghuangzhai,32,,31.360934,107.845978 ph,calumpang,Calumpang,09,2422,13.842386,120.975552 id,giasan,Giasan,07,,-7.554167,110.2325 th,amphoe ban dan,Amphoe Ban Dan,28,,15.108387,103.17551 ir,zarnan,Zarnan,26,,35.6845,51.1528 bg,kharlets,Kharlets,33,,43.7,23.8333333 id,lendangbagian,Lendangbagian,17,,-8.3182,116.1962 de,kiechlinsbergen,Kiechlinsbergen,01,,48.123678,7.655516 tg,chialakoe,Chialakoé,18,,7.1333333,1.6333333 ng,onungopogi,Onungopogi,52,,4.416944,6.295 us,gurn spring,Gurn Spring,NY,,43.1708333,-73.7180556 cn,shalingpu,Shalingpu,24,,39.760465,113.760358 bg,akche ibryam,Akche Ibryam,43,,42.0666667,25.7166667 vn,ap an ninh,Ap An Ninh,06,,10.316667,105.516667 bd,napara,Napara,81,,23.4666667,90.4 ua,verkhnyachka,Verkhnyachka,01,4130,48.828488,30.039566 ba,litva,Litva,01,,44.4052778,18.5241667 kp,sinmusongnodongjagu,Sinmusongnodongjagu,13,,41.9694444,128.3116667 id,mabhahobo,Mabhahobo,18,,-8.8115,121.2724 dz,mechtat oued mehaia,Mechtat Oued Mehaïa,27,,35.5688889,4.6111111 cn,hsiaoichen,Hsiaoichen,24,,37.384722,111.993611 ru,matrenino,Matrenino,88,,57.7049,38.8309 ru,ostashino,Ostashino,51,,56.613841,42.965909 ru,topolevskiy,Topolevskiy,84,,50.866,41.8158 pk,mahar haji,Mahar Haji,05,,27.016667,68.4 sy,haddadine,Haddâdîne,09,,36.0833333,37.1666667 us,dunavant,Dunavant,AL,,33.4933333,-86.5441667 bg,khadzhi amza,Khadzhi Amza,58,,42.45,23.7166667 id,jaboi,Jaboi,01,,5.795833,95.336667 cn,yangchang,Yangchang,12,,30.386112,112.112055 cn,chenjiaqu,Chenjiaqu,15,,36.616529,106.783812 us,tedieville,Tedieville,MO,,38.9200000,-93.2719444 pg,kanga,Kanga,04,,-8.7666667,147.65 ir,pir-e morad,Pir-e Morad,07,,28.7507,54.4897 my,kampung pasir semut,Kampung Pasir Semut,13,,4.2201,103.3313 lt,puni,Puni,60,,55.45,24.75 jp,uwanoura,Uwanoura,43,,33.433333,135.766667 ba,vrscic,Vrscic,01,,44.1444444,16.9558333 tr,altinbulak,Altinbulak,84,,40.207331,42.30757 br,sitio guarani,Sítio Guarani,06,,-6.783333,-39.466667 fr,labarthete,Labarthète,B3,,43.628973,-.157138 us,rogers crossing,Rogers Crossing,NH,,44.0816667,-71.2441667 ir,`elmabad-e qal`eh narenj,`Elmabad-e Qal`eh Narenj,29,,30.45,55.933333 cn,daguan,Daguan,16,,22.107778,109.760833 pg,nematenye,Nematenye,08,,-6.2166667,145.25 mz,chefe naipa,Chefe Naipa,07,,-14.2672222,36.9063889 hr,bojici,Bojici,14,,45.1369444,16.0844444 de,hittisweiler,Hittisweiler,01,,47.9,9.8 id,nelo,Nelo,18,,-8.5278,120.6877 ru,shirai,Shirai,64,,49.033333,142.016667 ph,bail,Bail,J7,,17.3,121.2353 bn,kampong ketimahar,Kampong Ketimahar,00,,4.8666667,114.8 br,varzea do ovo,Várzea do Ôvo,17,,-7.083333,-37.666667 es,abastas,Abastas,55,,42.239734,-4.791806 vn,binh tr,Bình Tr,31,,10.95,106.766667 cn,zhaoqizhuang,Zhaoqizhuang,28,,38.708889,117.061944 us,lakeside mobile home park,Lakeside Mobile Home Park,GA,,33.7880556,-84.6822222 fr,le cariol,Le Cariol,B3,,44.656015,1.387127 ru,pomeltseva,Pomeltseva,53,,55.46472,78.513379 fr,allards,Allards,B7,,45.93189,-1.257112 ir,ardavilaq,Ardavilaq,38,,36.3983,49.9979 pl,sulkowo polne,Sulkowo Polne,78,,52.934369,20.3989 de,hollenhorst,Hollenhorst,06,,52.483333,7.466667 ng,ekpene esuk,Ekpene Esuk,22,,4.806514,8.425196 ru,dobranovo,Dobranovo,88,,58.354562,40.138458 id,kaliwang duwur,Kaliwang Duwur,07,,-7.553611,109.998611 us,norridge,Norridge,IL,14157,41.9633333,-87.8272222 mm,sebingyi,Sebingyi,07,,21.55,94.7 sn,bouleye dia,Boulèye Dia,10,,13.6166667,-15.9 ua,kalush,Kalush,06,67697,49.011872,24.373077 cn,ershilipucun,Ershilipucun,26,,33.374659,106.985618 id,kelanjuh lauk,Kelanjuh Lauk,17,,-8.6278,116.3199 mz,wiliam,Wiliam,02,,-24.6194444,33.2605556 es,tezanos,Tezanos,39,,43.221314,-3.824043 af,dahan-e yakayak,Dahan-e Yakayak,09,,33.849975,64.057287 me,krzava,Krzava,00,,43.473889,18.996389 cz,horni vrazne,Horni Vrazne,85,,49.62096,17.839541 do,la atravesada,La Atravesada,25,,19.5833333,-70.8666667 ir,melahbid,Melahbid,13,,34.7549,47.2037 bo,duraznillo,Duraznillo,02,,-17.7666667,-64.9833333 us,shannondale,Shannondale,TN,,36.0511111,-83.9113889 es,caserio zarzales,Caserío Zarzales,51,,37.182805,-2.329997 mg,maroaloka,Maroaloka,06,,-25.2,46.1833333 ht,liberal,Libéral,11,,18.75,-72.85 pe,hilarion hacienda,Hilarión Hacienda,15,,-13.1166667,-76.3833333 kr,heugseog,Heugseog,11,,37.5,126.966667 pl,kruszynek,Kruszynek,73,,52.564826,18.992434 zm,chiakoma,Chiakoma,05,,-14.3833333,27.2 ye,qaryat as sadah,Qaryat as Sadah,08,,13.8802778,43.4766667 af,qala-i-farhad,Qala-i-Farhad,13,,34.798458,69.146385 cn,maoting,Maoting,07,,24.679167,118.565 pe,misquini,Misquini,21,,-14.4097222,-69.9266667 mm,palibaw te,Palibaw Te,09,,18.6166667,96.1166667 us,caroline park,Caroline Park,GA,,32.5144444,-84.9769444 cn,sunjianpu,Sunjianpu,12,,29.890307,114.632986 ru,petro-fedorovskiy,Petro-Fëdorovskiy,08,,54.7865,56.4069 al,martine,Martinë,44,,40.6561111,19.3975 us,airville,Airville,PA,,39.8322222,-76.4066667 tr,fidanlik,Fidanlik,24,,39.771044,39.353298 mr,el atchane,El Atchane,03,,15.5333333,-11.2833333 id,semi,Semi,33,,-6.3449,106.2746 gn,tenia,Tenia,08,,9.7886111,-13.6016667 sy,mazraat daoud,Mazraat Dâoûd,09,,36.8833333,38.35 ga,ekengue,Ekéngue,04,,-1.1833333,11.0833333 tz,nambunju,Nambunju,14,,-11.0833333,36.05 bd,chak narottam,Chak Narottam,81,,24.9,88.6 pk,barg,Barg,01,,33.996913,71.158701 tr,kurtler,Kürtler,09,,37.816667,27.616667 tr,kurucay,Kuruçay,24,,39.640241,38.474216 th,ban bua ngam,Ban Bua Ngam,64,,8.2,99.883333 at,hattendorf,Hattendorf,02,,46.833333,14.8 cn,tanglag,Tanglag,06,,34.05,99.466667 tr,vartana,Vartana,28,,40.152215,38.708162 au,strickland,Strickland,06,,-42.366667,146.666667 sy,ma`arr shamarin,Ma`arr Shamarin,12,,35.6,36.7166667 pk,ismaili mama khel,Ismaili Mama Khel,03,,32.91286,70.614631 cr,copal,Copal,03,,10.169736,-85.263752 bd,maijdi,Maijdi,80,,22.8666667,91.1 ve,la puente,La Puente,13,,10.3133333,-69.1905556 se,hallan,Hållan,07,,63.533333,13.933333 cm,angari,Angari,13,,8.8166667,13.9333333 tr,gelme,Gelme,37,,41.062115,33.284405 ml,tenemanbougou,Tenémanbougou,07,,11.9666667,-7.9833333 th,ban huai wiang ngam,Ban Huai Wiang Ngam,76,,17.877889,102.182334 kr,kyobungni,Kyobungni,20,,35.636275,127.806764 us,delaware trails,Delaware Trails,IN,,39.8800000,-86.1813889 ru,tyosiirtola numero kolme,Työsiirtola Numero Kolme,28,,65.133333,34.383333 la,muong ou tai,Muong Ou Tai,18,,22.121389,101.790833 cn,xiacha,Xiacha,30,,24.596856,116.386781 al,kojaveci,Kojaveci,41,,41.4394444,20.4216667 hu,becsi ut,Bécsi út,16,,47.6,18.933333 ng,ajasso,Ajasso,22,,5.841072,8.856252 br,aldeia bacaeri,Aldeia Bacaeri,14,,-13.1,-54.1 my,sanggau,Sanggau,11,,1.483333,111.65 gr,dhiakopia,Dhiakópia,31,,39.1097222,21.2422222 cn,chii,Chii,24,,37.548611,112.553611 de,thalkleinich,Thalkleinich,08,,49.9,7.183333 pk,goth lashari khan chandio,Goth Lashari Khan Chandio,05,,27.730075,68.198219 af,faqir kelay,Faqir Kelay,29,,33.017078,69.20166 cn,nungnaimiao,Nungnaimiao,20,,45.683333,118.933333 lk,kuda relapanawa,Kuda Relapanawa,30,,8.7,80.65 se,ytterby,Ytterby,15,,59.183333,15.483333 ao,canhaosse,Canhaosse,08,,-11.783333,15.416667 ee,fol'vark koltsi,Fol'vark Koltsi,14,,58.0166667,22.1666667 ml,dirbangou,Dirbangou,02,,17.0333333,-1.35 pk,basti beldaran,Basti Beldaran,04,,29.117339,71.054917 ir,do ab-e mazhin,Do Ab-e Mazhin,10,,32.966667,47.8 ir,boneh-ye fereh,Boneh-ye Fereh,15,,32.133333,48.483333 br,sitio manoel tomaz,Sítio Manoel Tomaz,18,,-23.8591,-50.8221 ua,derden,Derden,01,,49.242751,31.450406 ir,kalus pa'in,Kalus Pa'in,05,,30.703671,51.43901 ng,gbunu,Gbunu,26,,7.7557,8.1022 br,una,Una,15,,-18.916667,-43.333333 ru,chuvashskaya bezdna,Chuvashskaya Bezdna,73,,54.6772,47.4432 do,bapaya,Bapaya,23,,18.65,-71.2833333 co,san bernardo,San Bernardo,23,,4.716667,-75.583333 lk,siyambalagaswitiya,Siyambalagaswitiya,32,,7.6833333,80.1166667 kh,kriang chek,Kriang Chek,04,,11.4,104.1 ir,lowlakan,Lowlakan,01,,37.2152,45.0651 mm,loi-ngam,Loi-ngam,11,,22.5,97.95 tr,gevilan,Gevilan,65,,38.141693,43.210859 pk,nithar,Nithar,04,,32.765723,74.049836 cu,las ciegas,Las Ciegas,05,,21.3783333,-78.3183333 gm,sukuto,Sukuto,05,,13.4113889,-16.7088889 my,kampong merit,Kampong Merit,11,,1.166667,110.766667 gb,ingoldesthorpe,Ingoldesthorpe,I9,,52.866667,.516667 al,buqesi,Buqësi,43,,41.0761111,20.0475 my,kampung guar paya,Kampung Guar Paya,08,,6.429216,100.295357 cn,liangtingho,Liangtingho,01,,30.333333,116.166667 ru,bolshaya kuplonga,Bolshaya Kuplonga,45,,56.403015,47.077845 us,garden ridge,Garden Ridge,TX,,29.6344444,-98.3050000 ir,eslamabad-e chagukdan,Eslamabad-e Chagukdan,04,,26.628985,60.0884 ua,karakurt,Karakurt,17,,45.63452,28.701505 ru,krasnyy may,Krasnyy May,45,,56.0806,46.2917 bd,gopalpoor,Gopalpoor,81,,24.2,88.9666667 cn,majiazi,Majiazi,20,,50.666667,124.55 ro,corlatelul,Corlatelul,26,,44.398611,22.933056 pl,lossendorf,Lossendorf,82,,54.002733,19.142081 mz,quessinsene,Quessinsene,06,,-14.9397222,37.4786111 ru,novo-aleksandrovo,Novo-Aleksandrovo,62,,53.801281,39.031771 br,sitio donato cecilio,Sítio Donato Cecílio,18,,-23.8655,-50.9737 id,torean,Torean,17,,-8.3092,116.4415 hr,krunoslavje,Krunoslavje,10,,45.6875,18.1180556 by,kletsishche,Kletsishche,03,,53.8166667,26.35 cn,hsuchi,Hsüchi,12,,31.365505,112.0932 kr,yangdaedong,Yangdaedong,17,,36.7503,126.4532 pe,hacienda el olivar,Hacienda El Olivar,15,,-11.7333333,-76.9833333 rs,bardhi i madh,Bardhi i Madh,00,,42.634722,21.023611 tr,soluz,Soluz,65,,38.091857,42.723803 ru,ustyanchiki,Ustyanchiki,71,,57.7599,61.6156 ru,bilyuta,Bilyuta,93,,49.5866,111.6923 ng,rimi ziem,Rimi Ziem,46,,10.138014,9.284544 et,tay k'embih,Tay K'embih,46,,11.75,39.383333 cn,paimangshen,Paimangshen,24,,39.374722,113.401111 cz,neuhausel,Neuhausel,79,,48.628956,14.217761 hu,jozsefpuszta,Józsefpuszta,08,,47.383333,18.2 cn,majiadeng,Majiadeng,03,,27.780695,115.552587 fr,cordeliere,Cordelière,B9,,45.074252,5.167013 pk,chak sixteen gd,Chak Sixteen GD,04,,30.937778,73.482778 my,permatang tok bidan,Permatang Tok Bidan,09,,5.471493,100.407683 cn,pingmingchieh,Pingmingchieh,04,,34.474167,118.966667 ua,stepanovka,Stepanovka,02,,50.783333,31.833333 gn,yembaa,Yembaa,04,,9.5861111,-13.5955556 za,damboni,Damboni,05,,-30.891236,29.338017 by,voleykishki,Voleykishki,03,,54.7333333,25.8333333 ve,vega abajo,Vega Abajo,21,,9.0733333,-70.6905556 de,astfeld,Astfeld,06,,51.933333,10.383333 td,margou koulfou,Margou Koulfou,07,,13.3833333,14.85 ru,golubitskiy,Golubitskiy,41,,51.583333,36.216667 id,nayu barat,Nayu Barat,07,,-7.551111,110.825 ru,gruzdovo,Gruzdovo,25,,54.562222,34.896111 us,elwood park,Elwood Park,FL,,27.4688889,-82.5061111 ht,croix-mulatsse,Croix-Mulatsse,06,,19.15,-72.6666667 jm,cuffie head,Cuffie Head,07,,18.1833333,-76.5166667 ru,kharsk,Kharsk,75,,57.8775,84.383333 cn,sunfung,Sunfung,30,,24.059051,114.205084 mz,renga,Renga,01,,-12.8711111,40.2038889 ma,titen bellel,Titèn Bellel,56,,32.443563,-5.652766 cn,hsianghu,Hsianghu,07,,25.406944,117.624722 pt,covas do douro,Covas do Douro,21,,41.18871,-7.592499 us,nuba,Nuba,LA,,30.5872222,-92.0702778 gr,rapsomanikion,Rapsomaníkion,12,,40.5597222,22.3491667 ve,la mesa del toco,La Mesa del Toco,18,,9.43,-69.5683333 th,ban pak khlong phrong nak,Ban Pak Khlong Phrong Nak,46,,13.329695,100.920334 cz,ledec,Ledec,86,,49.974624,15.593894 ar,iriondo,Iriondo,21,,-31.314475,-60.756271 jp,uenomachi,Uenomachi,24,,38.074722,140.859722 et,tumbule,Tumbule,54,,6.166667,36.916667 id,srisejahrera,Srisejahrera,07,,-7.701944,110.810833 pg,bura,Bura,15,,-2.95,151.4666667 se,strangsbo,Strängsbo,08,,57.583333,13.983333 us,horton place,Horton Place,NM,,35.1419444,-106.2086111 lk,mattakotuwa paduwa,Mattakotuwa Paduwa,32,,7.4666667,79.8166667 ua,kirovskoye,Kirovskoye,04,,48.546907,34.855743 it,massa fiscaglia,Massa Fiscaglia,05,,44.796944,12.028889 pk,kot changian,Kot Changian,04,,30.775,74.097222 iq,sayyid salih,Sayyid Salih,16,,32.5,46.3666667 bg,filipowo,Filipowo,58,,41.7666667,23.6833333 ir,karim khani,Karim Khani,25,,35.201752,52.300226 af,kheshki,Kheshki,24,,36.663765,69.02655 pe,la villa,La Villa,21,,-15.1333333,-70.1333333 mz,maringa,Maringa,01,,-12.9944444,38.3855556 cn,huawang,Huawang,09,,33.472584,113.877812 bd,jugichapar,Jugichapar,80,,23.35,90.7833333 tn,maagen-bel-abbes,Maagen-Bel-Abbes,02,,34.750103,8.519761 kh,phumi phav,Phumi Phav,15,,14.2,107.1 ru,khanykovo,Khanykovo,56,,53.123889,37.208611 gw,cam massaba,Cam Massabá,01,,12.2666667,-14.5166667 ee,kassiratta,Kassiratta,19,,57.9661111,26.4202778 lk,punanai south,Punanai South,31,,7.95,81.4 br,barra do rio doce,Barra do Rio Doce,05,,-15.4,-39 cn,fengdeng,Fengdeng,02,,30.763178,120.462707 cm,lelem,Lelem,05,,5.15,9.9666667 bj,zugu,Zugu,03,,10.7352778,2.9711111 do,derrumbadero,Derrumbadero,33,,18.65,-70.2333333 cn,wengpo,Wengpo,11,,27.111944,109.791944 vn,co van,Co Van,19,,22.133333,104.833333 by,gelenovo,Gelenovo,03,,53.8833333,25.8333333 co,el espartillal,El Espartillal,37,,5.116667,-75.483333 zr,katanga,Katanga,04,,-6.2333333,24.3666667 no,nitberg,Nitberg,01,,59.983333,11.033333 ni,la chacara,La Chácara,03,,12.8833333,-87.5 bj,sondo-tioka,Sondo-Tioka,03,,11.4166667,3.1333333 zm,namulimbwa,Namulimbwa,03,,-15.0833333,22.2666667 ru,bakryazh,Bakryazh,71,,56.8805,57.7059 hu,gelse,Gelse,24,,46.6,17 mg,ankorakoraka,Ankorakoraka,06,,-21.3833333,44.6 pk,balochwala,Balochwala,01,,31.492437,71.955432 af,naurak,Naurak,41,,34.032898,66.363195 ir,neheyrat va shomus,Neheyrat Va Shomus,15,,31.5536,48.0135 bf,diensi,Diensi,45,,11.5666667,-2.7666667 de,dreistegen,Dreistegen,01,,48,8.133333 fr,couffouleux,Couffouleux,B3,,43.81762,1.730813 tw,chilungkang,Chilungkang,04,,24.85,121.1666667 cn,zhoujiadian,Zhoujiadian,12,,31.406198,113.245598 se,sodra radom,Södra Rådom,22,,59.616667,13.65 ng,budan,Budan,43,,7.233333,11.666667 cn,zhuwa,Zhuwa,04,,33.814687,119.929141 cn,linnam,Linnam,30,,24.720628,112.294422 es,cumeiro,Cumeiro,58,,42.8,-8.166667 mx,walix,Walix,31,,20.85,-89.2 ru,khudanay-urto,Khudanay-Urto,11,,52.05,109.75 la,ban phone sao,Ban Phône Sao,02,,14.85,105.85 ir,kelil,Kelil,28,,32.526,52.2869 fr,sauvage-magny,Sauvage-Magny,A4,,48.412101,4.738525 kh,phumi ang sduoch,Phumi Ang Sduoch,04,,11.6333333,104.7166667 id,seuneubok punti,Seuneubok Punti,01,,4.9135,97.7389 ar,candelaria,Candelaria,22,,-25.9,-63.8 br,jabota ferrado,Jabotá Ferrado,13,,-6.516667,-42.966667 lk,palawa,Palawa,29,,7.1666667,80.9333333 ng,matalawa,Matalawa,24,,12.7832,8.138496 bd,bhatertrad,Bhatertrad,80,,23.1,90.7833333 et,adem lega,Adem Lega,51,,9.225,42.086111 de,homburg,Homburg,07,,50.916667,7.533333 cn,machi,Machi,25,,35.027222,115.479444 pk,samai,Samai,01,,34.282093,71.133337 pg,putei,Putei,02,,-7.8,146.15 my,selarong gajah,Selarong Gajah,09,,5.5,100.4 lt,pasamine,Pasamine,64,,55.2166667,26.0666667 pg,gerup,Gerup,14,,-6.2166667,147.6166667 pk,manj kacchi,Manj Kacchi,04,,31.024989,70.328937 de,bei der bake,Bei der Bäke,06,,53.016667,8.166667 tr,yukari sogutlu,Yukari Sogutlu,25,,40.006028,41.929008 tz,chawa,Chawa,03,,-6.05,35.9833333 sk,luky,Lúky,08,,49.2833333,18.6833333 sk,dobra niva,Dobrá Niva,01,,48.4666667,19.1 pe,las pozas ciudad,Las Pozas Ciudad,14,,-5.9480556,-80.2963889 vn,di nau,Di Nau,38,,21.25,105.266667 mm,tagu,Tagu,01,,20.8833333,93.1166667 de,kotherheide,Kötherheide,07,,51.55,6.266667 pl,zduny koscielny,Zduny Koscielny,74,,52.15,19.816667 us,fort loring,Fort Loring,MS,,33.5066667,-90.2513889 be,schuurhoven,Schuurhoven,01,,51.316667,4.683333 et,zik'wala,Zik'wala,51,,8.55,38.85 ru,tabarova,Tabarova,59,,45.866667,134.683333 vn,xom lo than,Xóm Lò Than,33,,11.2,106.15 ng,tsauri,Tsauri,24,,12.79662,7.473529 mm,tunkawang,Tunkawang,04,,25.6333333,97.75 de,buttelkow,Büttelkow,12,,54.083333,11.716667 mm,pangetkon,Pangetkon,11,,20.5666667,96.6166667 cn,qiaozi,Qiaozi,30,,20.801664,110.253879 af,haji mohammad,Haji Mohammad,23,,31.601523,65.761417 in,grugurdo,Grugurdo,12,,34.6625,76.338889 ng,gungu saje,Gungu Saje,35,,8.7,11.816667 cg,manfoute,Manfouté,06,,2.3619444,17.6613889 vn,quynh coi ha,Quynh Coi Ha,12,,20.816667,106.25 es,rigoitia,Rigoitia,59,,43.318665,-2.725231 in,savta bandor,Savta Bandor,16,,19.95,72.766667 ch,aernen,Aernen,01,,46.398696,8.145833 tw,hungton,Hungton,04,,22.0333333,121.55 se,skarkered,Skärkered,06,,56.7,13.066667 mx,san felipe otlaltepec,San Felipe Otlaltepec,21,,18.416667,-97.9 cn,xiexianwuji,Xiexianwuji,32,,31.712914,107.480444 cn,huangshakou,Huangshakou,24,,39.549183,113.483498 hu,gyorke-tanya,Györke-tanya,11,,47.916667,20.116667 bf,salimidougou,Salimidougou,19,,12.3666667,-2.1666667 se,rona,Röna,22,,60.25,12.8 ph,tanawan,Tanawan,33,,14.1841,121.4601 za,lundini,Lundini,05,,-30.860897,28.964316 af,khulgai,Khulgai,28,,31.720834,67.590834 id,ponggangan,Ponggangan,07,,-6.8312,110.5614 us,devereaux,Devereaux,MI,,42.3200000,-84.7086111 cn,longzitou,Longzitou,07,,25.481944,117.570833 be,zandevlakte,Zandevlakte,09,,51.116667,2.916667 us,palmer,Palmer,MN,,44.1530556,-93.5416667 kz,myn-chunkur,Myn-Chunkur,15,,50.55,79.333333 mg,antevamena bas,Antevamena Bas,06,,-24.8833333,45.0333333 us,colon,Colon,NC,,35.5266667,-79.1525000 cd,mwando,Mwando,00,,-7.6,29.216667 af,shem khel,Shem Khel,37,,33.607228,70.067957 us,dixon,Dixon,NC,,34.5858333,-77.4802778 ro,rasii noi,Rasii Noi,42,,44.6,26.933333 la,ban nong lai khiene,Ban Nong Lai Khiene,02,,15.316667,105.7 us,kinlichee,Kinlichee,AZ,,35.7561111,-109.4250000 jm,hermitage,Hermitage,04,,17.9166667,-77.45 us,keller,Keller,WA,,48.0788889,-118.6838889 tr,kasribelek,Kasribelek,72,,37.135278,41.6425 ph,mombog,Mombog,16,,13.8449,122.87 ng,dankama,Dankama,39,,12.791501,8.550962 ao,camuchi,Camuchi,12,,-9.454328,16.463557 in,marpalli,Marpalli,16,,19.1,80.15 za,mziphewi,Mziphewi,05,,-32.416667,28.016667 bf,nessega,Nessega,78,,13.1166667,-2.35 dk,froslevvang,Frøslevvang,19,,56.787923,8.751946 us,shaniko,Shaniko,OR,,45.0038889,-120.7511111 fi,kirvu,Kirvu,15,,61.383333,24.25 jp,okubokumi,Okubokumi,18,,31.916667,130.316667 ph,tacaban,Tacaban,H9,,11.6881,124.5006 lv,kalnini,Kalnini,28,,57.4333333,22.9 bd,maiglaon,Maiglaon,86,,24.6833333,91.95 ml,gorgonda,Gorgonda,08,,16.4666667,-4.1833333 kh,phumi tasal,Phumi Tasal,04,,11.65,104.5666667 my,kampung pinawantai,Kampung Pinawantai,16,,5.8706,116.5132 cn,mochi,Mochi,13,,39.019167,74.427778 vn,plei yan,Plei Yan,10,,14.05,107.916667 sk,kociha,Kociha,01,,48.4833333,19.95 bg,angelov,Angelov,46,,42.9166667,25.3666667 sn,guelode,Guélodé,03,,14.8833333,-16.0333333 sa,abu salma,Abu Salma,19,,27.15,35.783333 hn,las lajas,Las Lajas,07,,13.7244444,-87.0488889 pk,darbik panda,Darbik Panda,03,,34.685511,72.459824 iq,qal`at mirias sakhr,Qal`at Mirias Sakhr,09,,31.6333333,46.1333333 gn,rounde haire,Roundé Haïré,22,,12.0,-12.5333333 hr,penici,Penici,15,,43.7669444,16.66 ec,hacienda cuatis acosta,Hacienda Cuatis Acosta,05,,0.6333333,-77.7166667 id,ketowan,Ketowan,08,,-7.7829,114.1314 ne,loudounyaki,Loudounyaki,05,,13.2833333,1.85 vn,xa giong cai,Xa Giong Cai,27,,15.1,108.583333 mn,luusiin hural,Luusiin Hural,08,,45.2166667,105.5666667 fi,korkea,Korkea,08,,64.016667,30.116667 bo,estancia totora,Estancia Totora,04,,-17.15,-67.1166667 ru,fedosovskoye,Fedosovskoye,53,,54.8704,82.1551 ru,novyy manych,Novyy Manych,61,,46.510155,41.866353 iq,mu`ribat garhah,Mu`ribat Garhah,13,,35.2388889,44.0727778 vn,quy tien,Quy Tien,17,,22.013535,105.224424 mx,la venta,La Venta,29,,19.559722,-98.690278 kr,kungol,Kungol,06,,37.1341,128.4734 cd,niamaluhu,Niamaluhu,00,,-3.8,23.35 id,kalilengkongbesaran,Kalilengkongbesaran,08,,-8.2149,112.9896 bi,rutoke,Rutoke,18,,-2.8036111,30.1227778 tr,in,In,43,,39.45,30 fr,folschviller,Folschviller,B2,,49.070617,6.689483 cn,zheguling,Zheguling,30,,23.253773,113.757769 ve,tiquire flores,Tiquire Flores,04,,10.2333333,-67.2666667 mm,kywenozaing,Kywenozaing,09,,19.3666667,96.2666667 uy,oribe,Oribe,15,,-31.5,-57.1166667 cn,xianmiaopu,Xianmiaopu,07,,25.020556,118.051389 kr,sinpungni,Sinpungni,20,,35.188611,127.995278 ir,suder,Suder,42,,36.213743,57.499956 af,qotum bolaq,Qotum Bolaq,26,,36.91135,69.548302 cn,hanjiaping,Hanjiaping,15,,35.906189,105.301428 pk,basti aukharwand,Basti Aukharwand,04,,30.763216,70.873047 sb,wakio,Wakio,08,,-10.8333333,162.3 vn,hoe thi,Hoe Thi,13,,20.716667,106.733333 eg,nag` el-deir el gharbi,Nag` el-Deir el Gharbi,23,,26.1,32.0166667 id,cigemor,Cigemor,30,,-7.2799,107.8301 de,neuwahns,Neuwahns,15,,50.633333,10.3 id,dersaya,Dersaya,07,,-6.6793,110.8948 mn,huyhaiin jisaiin hural,Huyhaiin Jisaiin Hural,11,,46.3,109.55 zm,wayanda,Wayanda,03,,-14.9333333,25.1 ba,ducci,Ducci,01,,43.9872222,17.1425 bf,kabole,Kabolé,24,,11.9333333,-2.6166667 hu,petranyitanya,Petrányitanya,16,,47.35,19.4 ao,catuala,Catuala,02,,-13.016667,17.266667 ml,mpekorola,Mpékorola,07,,12.0738889,-8.5369444 de,bachern,Bachern,02,,48.066667,11.166667 sd,`abd allah,`Abd Allah,34,,13.5666667,30.8666667 fr,fosse,Fossé,A4,,49.445684,5.005382 jp,mikuriya,Mikuriya,27,,33.366667,129.666667 co,chaparral,Chaparral,28,19982,3.723149,-75.483165 us,seco mines,Seco Mines,TX,,28.7472222,-100.4969444 ru,shishino,Shishino,71,,58.490106,64.481589 br,campo maje,Campo Majé,30,,-8.516667,-36.75 ir,taq halva'i,Taq Halva'i,42,,35.7025,57.445833 cm,dikombe ngolo,Dikombe Ngolo,09,,4.1138889,9.2036111 ru,gorokhova,Gorokhova,69,,54.715161,31.742922 zm,chimbuna,Chimbuna,06,,-14.2166667,32.05 ru,kotolanova,Kotolanova,10,,52.995029,35.025107 ru,andra-ata,Andra-Ata,24,,44.950901,46.332664 th,kut tum,Kut Tum,26,,15.783333,102.133333 no,lilleenget,Lilleenget,16,,62.483333,9.6 ma,sidi uarzik,Sidi Uarzik,55,,29.263764,-10.283778 gb,mow cop,Mow Cop,N1,,53.114226,-2.209337 md,otach-tyrg,Otach-Tyrg,81,,48.43,27.793889 us,allentown,Allentown,MT,,47.4405556,-114.0955556 bg,novakovtsi,Novakovtsi,46,,42.8666667,25.5 fr,sorges,Sorges,B5,,47.466667,-.55 pl,wilanow,Wilanow,74,,51.829447,19.532071 ph,dumanquilas,Dumanquilas,P1,,7.583333,123.25 eg,abu diyab sharq,Abu Diyab Sharq,23,,26.195,32.5561111 ir,rasvand,Rasvand,15,,31.870566,49.805676 se,skarjebo,Skärjebo,28,,57.3,13.266667 br,recanto campestre,Recanto Campestre,27,,-23.3424,-46.0822 kp,huksudong,Huksudong,01,,41.0955556,126.9216667 bd,bhatgati,Bhatgati,81,,23.9333333,90.5666667 ng,tilla,Tilla,40,,12.57285,4.017595 bg,tsvetkova bara,Tsvetkova Bara,33,,43.1969444,23.1616667 ru,kozarkino,Kozarkino,85,,58.797029,40.63637 id,nglano,Nglano,07,,-7.570833,110.932222 ir,marvashkan,Marvashkan,07,,29.9284,53.9337 dz,kanoua,Kanouâ,31,,37.05,6.4 de,scheden,Scheden,06,,51.45,9.733333 se,kvistrom,Kviström,28,,58.466667,11.7 id,cigulamping,Cigulamping,30,,-6.723333,107.718889 mw,macilinga,Macilinga,28,,-14.8333333,35.6833333 ru,krasnaya niva,Krasnaya Niva,28,,62.45766,33.211619 cf,kama,Kama,11,,4.9166667,20.2666667 ru,duvannaya,Duvannaya,33,,59.6795,47.922922 ru,drachevo,Drachëvo,47,,56.3,37.633333 ru,khara-tyrgen,Khara-Tyrgen,20,,52.666667,106.016667 ve,cantarrana,Cantarrana,11,,10.8563889,-69.1852778 kp,talchonni,Talchonni,06,,38.4036111,125.2883333 ma,lahlaiss,Lahlaïss,47,,32.412234,-7.350826 lv,pindzele,Pindzele,29,,57.1405556,23.0491667 de,dumstorf,Dumstorf,06,,53.183333,10.683333 az,susaykyshlak,Susaykyshlak,60,,41.658333,48.670519 ro,valea tiganilor,Valea Tiganilor,26,,44.9,24 bo,azulichihua,Azulichihua,07,,-21.35,-66.1833333 ph,pulonbalibaguhan,Pulonbalibaguhan,09,,13.74903,120.940838 ru,lastochka,Lastochka,59,,46.39,134.1 th,ban pang chomphu,Ban Pang Chomphu,07,,18.433333,100.5 ng,ogbonicha,Ogbonicha,41,,7.15,7.266667 cn,michang dadui,Michang Dadui,04,,31.634167,121.198056 do,canada difunto,Cañada Difunto,01,,18.7333333,-70.8833333 se,frosslunda,Frösslunda,09,,56.533333,16.566667 th,ban thale nok,Ban Thale Nok,59,,9.433333,98.433333 fr,pezilla-de-conflent,Pézilla-de-Conflent,A9,,42.737077,2.480906 pg,weiki,Weiki,18,,-3.45,142.4166667 zm,salujinga,Salujinga,01,,-10.9666667,24.1166667 ru,ugolnye kopi,Ugolnye Kopi,13,,55.131,61.6792 id,ciruluk empat,Ciruluk Empat,30,,-6.493889,107.705278 us,chapel village,Chapel Village,VA,,37.0372222,-76.3813889 gr,ayios athanasios,Áyios Athanásios,14,3419,41.0666667,24.25 us,lackawanna beach,Lackawanna Beach,WA,,47.6497222,-122.9038889 tr,karacal,Karaçal,66,,40.034903,34.874519 ru,verkhniye shlyki,Verkhniye Shlyki,90,,56.710471,55.529198 gt,el adelanto,El Adelanto,11,1923,14.166667,-89.833333 fr,lapeze,Lapèze,97,,44.606116,1.010448 pl,imielnica,Imielnica,78,,52.526734,19.762763 tw,shuichilin,Shuichilin,04,,23.2333333,120.3333333 ro,zarandpatak,Zarandpatak,02,,46.316667,22.35 cn,qianmalianqin,Qianmalianqin,19,,42.669393,122.718831 co,puerto de cumbaras,Puerto de Cumbaras,20,,1.685726,-77.352555 ir,rahmatabad,Rahmatabad,42,,34.112212,58.310634 pk,ramtaki,Ramtaki,04,,32.735543,72.315556 us,williamson crossroads,Williamson Crossroads,NC,,34.3594444,-78.9219444 in,pitholi,Pitholi,35,,24.0487,78.8727 es,san felices de los gallegos,San Felices de los Gallegos,55,,40.849542,-6.708041 it,appignano,Appignano,01,,42.533333,13.85 so,hagar,Hagar,08,,1.0166667,41.9166667 mx,san diego el organal,San Diégo El Organal,21,,18.726389,-98.522222 it,anna,Anna,03,,37.933333,15.766667 cn,shangku,Shangku,04,,31.383333,119.083333 ru,altygashevo,Altygashevo,33,,56.933465,50.190847 mx,larraldena,Larraldeña,19,,26.483333,-100.166667 ci,oligbe,Oligbé,88,,5.564633,-5.246773 mm,hkabe,Hkabe,06,,19.2666667,96.95 ph,san miguel,San Miguel,F1,,9.755,118.7439 th,ban thung duk,Ban Thung Duk,03,,20.253056,100.397861 hn,san jose de copan,San José de Copán,05,,14.9,-88.7166667 th,ban klong sing nad,Ban Klong Sing Nad,36,,14.15,100.4 id,ragamukti,Ragamukti,07,,-6.8794,109.1072 kp,hwagonni,Hwagonni,01,,40.7333333,125.9833333 ru,dremina,Dremina,80,,56.3,53.816667 cn,zhamengshan,Zhamengshan,03,,28.58,117.356667 ph,cancatac,Cancatac,11,,9.6851,123.9558 bf,dyaonguel,Dyaonguèl,38,,13.6166667,0.0166667 ua,mikhaylolukashevo,MikhayloLukashevo,26,,47.957403,35.593926 ie,ballyneen,Ballyneen,04,,51.7369444,-8.9569444 cn,heichuangtan,Heichuangtan,15,,37.65,103.35 vn,khen kie,Khen Kie,19,,21.85,104.6 fr,saint-paul-de-vence,Saint-Paul-de-Vence,B8,,43.695955,7.12258 zr,monieka,Monieka,00,,0.0166667,19.9833333 pe,taquila,Taquila,18,,-17.3491667,-71.0061111 ru,mogilnik,Mogilnik,33,,57.9203,49.8343 ve,alto la aguada,Alto La Aguada,05,,8.6197222,-70.6769444 cn,caolongkeng,Caolongkeng,07,,25.544167,117.742222 jp,miyagi,Miyagi,47,,26.371244,127.983278 ph,binutocan,Binutocan,18,,11.4173,122.8704 id,pasirgedong,Pasirgedong,33,,-6.4758,105.8669 ve,secundinero,Secundinero,02,,8.4622222,-64.7294444 ua,sharabash tarama,Sharabash Tarama,05,,47.75,37.766667 in,kharmunda,Kharmunda,21,,21.15,83.5 id,krajan mimbaan,Krajan Mimbaan,08,,-7.7085,114.0113 ph,narra,Narra,51,,16.0925,120.6918 by,sergeyev,Sergeyev,02,,51.4833333,29.5 rs,krnjesevci,Krnjesevci,00,,44.886389,20.135278 no,laurkollen,Laurkollen,13,,59.333889,10.665556 cm,bangei,Bangei,13,,10.0666667,13.6333333 us,garcia,Garcia,CO,,37.0041667,-105.5366667 cd,kisala nkiama,Kisala Nkiama,08,,-4.8,13.166667 ru,davletovo,Davletovo,08,,52.7382,58.5901 vn,buon ea kmat,Buon Ea Kmat,07,,12.683333,108.133333 mx,yozonotu,Yozonotu,20,,16.983333,-97.65 ru,makoyevo,Makoyëvo,42,,59.916667,34.983333 tr,artwin,Artwin,08,,41.182222,41.819444 ir,dorband-e shargi,Dorband-e Shargi,15,,30.437222,48.144444 us,plummer,Plummer,MO,,38.5613889,-92.3225000 ru,sredneye shchuchye,Sredneye Shchuchye,87,,67.283333,68.7 de,ahlerstedt,Ahlerstedt,06,,53.4,9.45 pl,ostrowe,Ostrowe,80,,50.133333,22.583333 by,bibiki,Bibiki,02,,51.9666667,29.3 ru,kurazhinskiy,Kurazhinskiy,33,,58.733333,49.883333 pk,jathol,Jathol,04,,31.44,74.403 la,nam ku,Nam Ku,06,,20.816667,102 bf,todie,Todié,54,,10.85,-5.0833333 cn,zhouwu,Zhouwu,03,,25.316619,115.345751 me,pitomine,Pitomine,00,,43.161111,19.106667 es,tous,Tous,60,,39.156559,-.657388 uz,oybarik,Oybarik,12,,38.3302778,67.7344444 cf,gofo,Gofo,15,,7.3666667,18.3666667 kr,pansoktong,Pansoktong,19,,36.391749,127.306446 cn,xudaying,Xudaying,01,,31.963889,117.416667 gh,pepiasi,Pepiasi,02,,6.7,-0.7333333 ye,qaidun,Qaidun,04,,15.3216667,48.3152778 cn,nongchang,Nongchang,32,,29.239923,102.372081 pg,parimo,Parimo,12,,-5.8166667,145.95 cz,smolec,Smolec,79,,49.30946,14.547205 kr,hwaseoildong,Hwaseoildong,13,,37.28,127.001111 kr,kumdalli,Kumdalli,20,,34.933333,128.183333 us,copper hill,Copper Hill,NJ,,40.4750000,-74.8638889 id,peh,Peh,08,,-8.0147,113.76 br,liberdade,Liberdade,04,,-2.566667,-67.383333 de,estringen,Estringen,06,,52.483333,7.366667 ma,timdmen,Timdmen,56,,31.736737,-6.938703 af,darwes,Darwes,17,,33.963611,69.052222 us,new maysville,New Maysville,IN,,39.7905556,-86.7291667 my,kelawat,Kelawat,16,,6.1,116.366667 id,griyomapan,Griyomapan,08,,-7.334,112.7735 zm,moheni,Moheni,04,,-16.3333333,26.9333333 id,blok pasantren,Blok Pasantren,30,,-6.938333,107.566111 ru,bugrovskiy,Bugrovskiy,61,,47.383333,38.4 id,jogoyudan,Jogoyudan,10,,-7.86,110.160833 ir,bala gatab,Bala Gatab,35,,36.418541,52.650899 mx,tlacuchca,Tlacuchca,29,,19.261111,-98.220833 lt,vailainiai,Vailainiai,60,,55.4833333,23.6666667 ar,calaza,Calaza,07,,-34.666667,-58.483333 ng,felelen buzu,Felelen Buzu,41,,7.8518,6.7241 dz,frarda,Frarda,26,,35.165,0.2813889 cn,jenho,Jenho,01,,32.63,119.188611 hu,bonestanya,Bónéstanya,04,,47.783333,21 pk,thatta mallah,Thatta Mallah,04,,31.155556,73.672222 td,bendana,Bèndana,11,,8.5166667,18.4166667 th,ban bue nae ba si,Ban Bue Nae Ba Si,70,,6.418361,101.136389 bd,rameshpur,Rameshpur,81,,23.6333333,89.8 cn,baiyanghu,Baiyanghu,11,,29.414676,111.47498 af,kuzah godarah,Kuzah Godarah,18,,34.259415,70.340218 kh,phum krek youn,Phum Krêk Youn,02,,12.0833333,105.4833333 lr,mehnla,Mehnla,09,,6.8152778,-8.9766667 mz,quissemusse,Quissemusse,03,,-21.975,34.0977778 af,srah wialeh,Srah Wialeh,39,,32.529098,66.200111 ru,glukhovskiy,Glukhovskiy,84,,49.9284,42.0696 gt,tuitzisbil,Tuitzisbil,13,,14.85,-91.633333 us,garibaldi,Garibaldi,OR,,45.5600000,-123.9097222 es,calzones,Calzones,57,,40.015867,-6.050712 ve,guariapito,Guariapito,05,,8.0,-67.6666667 au,croppa creek,Croppa Creek,02,,-29.133333,150.3 sl,gbandi,Gbandi,01,,8.3166667,-10.9333333 pg,sohano,Sohano,07,,-5.4333333,154.6666667 ar,barrio norte,Barrio Norte,07,,-34.583333,-58.4 ar,anchico nuevo,Anchico Nuevo,12,,-29.574937,-66.434738 mm,bolo-atetywa,Bolo-atetywa,09,,18.05,96.9833333 es,villasuso de cieza,Villasuso de Cieza,39,,43.220352,-4.111723 cz,u tkalcu,U Tkalcu,90,,49.330121,18.056911 id,krei,Krei,18,,-9.667222,124.908333 id,aluerajeuk,Aluerajeuk,01,,5.1732,96.4103 tr,karargahtepe,Karargahtepe,68,,39.972288,32.858632 pg,koiabagila,Koiabagila,03,,-9.8,149.75 us,collegetown,Collegetown,LA,,30.4033333,-91.1652778 sy,jarikhl tahtani,Jarikhl Tahtani,09,,36.8541667,38.075 pk,giran,Giran,06,,33.35,74.081944 it,castelbaldo,Castelbaldo,20,,45.116667,11.45 mm,minma,Minma,10,,22.0166667,94.8166667 in,kondegaon,Kondegaon,37,,19.6,81.666667 ru,cari-moxk,Çari-Moxk,12,,43.078822,46.221419 us,wing,Wing,NC,,35.9447222,-82.1458333 se,vattjom,Vattjom,24,,62.366667,17 ml,saale,Saalé,04,,13.9333333,-3.3333333 kr,popkongni,Popkongni,14,,36.35,128.233333 la,ban nathoun,Ban Nathoun,14,,19.533333,103.583333 th,ban mae ka luang,Ban Mae Ka Luang,02,,18.536472,98.548028 id,lampoihdaja,Lampoihdaja,01,,5.5397,95.3014 id,putuk wetan,Putuk Wetan,07,,-7.978889,110.984722 ru,shelepovo,Shelëpovo,40,,55.709444,67.300833 us,hamburg,Hamburg,FL,,30.5655556,-83.5269444 az,datschin,Datschin,28,,39.640833,46.546944 mq,morne blanc,Morne Blanc,00,,14.4833333,-61.05 ec,saladillo,Saladillo,08,,-3.4833333,-79.7666667 am,aysasi,Aysasi,10,,39.9041667,45.44 lb,mazra`at islamiyah,Mazra`at Islamiyah,02,,33.3333333,35.6666667 gq,benvene,Benvene,08,,1.9,9.9 rs,zimerska mahala,Zimerska Mahala,00,,42.374722,21.557778 hn,boca de cuyamel,Boca de Cuyamel,06,,15.6666667,-88.1833333 af,kamkay tana,Kamkay Tana,28,,32.656861,66.81318 sv,tejutla,Tejutla,03,,14.1666667,-89.1 ru,leninskiy,Leninskiy,90,,56.675061,56.222378 ma,zaouia bougrine,Zaouia Bougrine,46,,33.855136,-4.484117 pk,bajju mal,Bajju Mal,04,,32.204817,74.023524 it,mignagola,Mignagola,20,,45.691389,12.322222 ir,shams gaz,Shams Gaz,29,,27.775944,58.026231 my,taman bertam jaya,Taman Bertam Jaya,04,,2.2815,102.2099 vn,ban don phuc,Ban Don Phuc,26,,19.1,104.85 pl,abramowka,Abramowka,75,,51.309264,23.154459 kr,norun,Norun,05,,37.1447,127.7798 sy,el koum,El Koûm,04,,35.1833333,38.8666667 it,san vito,San Vito,09,,45.416667,9 af,dekhi-kuchay,Dekhi-Kuchay,23,,31.633237,65.619016 ve,caicarita,Caicarita,16,,9.7491667,-63.5930556 jp,sittsu,Sittsu,12,,42.788056,140.225556 pk,katli gumanan,Katli Gumanan,04,,32.513889,74.641667 tr,fethy,Fethy,48,,36.621667,29.116389 no,sylling,Sylling,04,537,59.9,10.283333 do,puerto alejandro,Puerto Alejandro,03,,18.3166667,-71.0333333 cn,xiajiashan,Xiajiashan,26,,32.746092,106.812281 de,reinpusch,Reinpusch,11,,51.683333,14.3 kh,phumi char chrum,Phumi Char Chrum,05,,12.8166667,105.05 ng,jurok,Jurok,27,,10.716637,13.320646 co,bolivar,Bolivar,35,,10.266667,-75.466667 ma,arhbala,Arhbala,56,,32.481666,-5.642736 ng,akamo,Akamo,30,,8.5,4.5 zr,bili,Bili,00,,3.4666667,27.2333333 cn,shiti,Shiti,32,,31.233043,107.154298 ht,la fifuay,La Fifuay,06,,18.95,-72.4833333 mz,muazivi,Muazivi,02,,-24.2252778,32.3097222 vn,huu-vy,Huu-Vy,35,,20.333333,106.533333 sd,abu sheri`a,Abu Sheri`a,34,,14.2166667,30.1833333 cn,kexincun,Kexincun,30,,21.667392,112.618706 ec,bellavista,Bellavista,07,,-0.8833333,-78.6 my,kampung sungai gau,Kampung Sungai Gau,06,,3.4656,102.4887 us,sumter junction,Sumter Junction,SC,,33.8352778,-80.5661111 ir,sang sara,Sang Sara,08,,36.918899,49.924066 kr,taejaeri,Taejaeri,16,,34.78538,127.04783 br,stio marclio navarro,Stio Marclio Navarro,27,,-23.3587,-46.0242 de,grossgoltern,Großgoltern,06,,52.333333,9.5 eg,`izbat `amm husayn,`Izbat `Amm Husayn,21,,31.175,31.0930556 az,birindzhi-tala,Birindzhi-Tala,70,,41.618449,46.663877 at,im holzl,Im Holzl,04,,48.421389,14.3075 jp,ando,Ando,16,,39.35,141.916667 th,ban khlong thap chong bon,Ban Khlong Thap Chong Bon,40,,13.740722,100.699889 tr,budaklar,Budaklar,17,,39.634444,26.381389 pl,michalinow,Michalinow,86,,52.116667,17.933333 af,musakalay,Musakalay,37,,33.299878,69.821166 ua,malaya glusha,Malaya Glusha,24,,51.794547,24.986589 pe,chullillache,Chullillache,20,,-5.5833333,-80.8833333 ve,laguna,Laguna,05,,8.6686111,-69.8236111 ni,guisquiliapa,Guisquiliapa,02,,11.8166667,-86.1833333 fr,marnay,Marnay,B7,,46.395753,.343443 cd,kamboma,Kamboma,00,,-7.066667,17.933333 de,dingelsdorf,Dingelsdorf,01,,47.733333,9.15 gh,mpaha,Mpaha,06,,8.7333333,-1.1166667 gr,agalas,Agalás,28,,37.7166667,20.7833333 ng,ruwan sanyi,Ruwan Sanyi,24,,11.717666,7.586239 de,pfaffenwiesbach,Pfaffenwiesbach,05,,50.333333,8.616667 mn,ul'dzey del'gerehu sumu,Ul'dzey del'gerehu Sumu,08,,45.5333333,104.5166667 es,arnois,Arnois,58,,42.766667,-8.4 ve,la alegria,La Alegria,23,,10.4377778,-71.6888889 ru,novoye nesytovo,Novoye Nesytovo,47,,56.205889,35.339933 iq,sultan,Sultan,03,,31.4283333,45.1011111 us,renegade,Renegade,TN,,35.8847222,-84.8583333 th,ban not,Ban Not,63,,7.65,99.083333 dk,gyndstrup,Gyndstrup,21,,55.572162,10.349314 pt,salgueiro,Salgueiro,05,,41.335192,-6.804636 es,coto de murillo,Coto de Murillo,57,,38.416667,-6.25 us,fredonia,Fredonia,KY,,37.2080556,-88.0566667 cn,xiaobeiyao,Xiaobeiyao,19,,40.764409,122.363987 cz,pekloves,Pekloves,83,,50.499002,15.339481 es,marmolejo,Marmolejo,51,,38.045494,-4.170292 mx,san marcos nepantla,San Marcos Nepantla,15,,19.666667,-98.933333 ru,azadogly,Azadogly,17,,41.830192,48.44848 ua,migiya,Migiya,16,,48.037192,30.951527 th,ban song noen,Ban Song Noen,23,,16.783333,103.666667 vn,ban pho loun,Ban Pho Loun,19,,22.083333,103.85 th,ban wang khe,Ban Wang Khe,25,,16.083333,104.033333 ru,poselok rossiya,Posëlok Rossiya,72,,52.254028,41.582662 ua,paripsy,Paripsy,27,,49.92461,29.500998 th,ban mae na chang tai,Ban Mae Na Chang Tai,01,,18.562306,98.088528 cd,dotsu,Dotsu,09,,1.933333,30.4 id,jagung,Jagung,08,,-7.9577,111.9761 my,kampung sejirin,Kampung Sejirin,11,,1.633333,109.866667 cn,gurnai,Gurnai,20,,41.050556,101.773333 no,borkamoa,Borkamoa,09,,65.316667,12.933333 th,ban kling kham,Ban Kling Kham,76,,17.3475,102.829028 de,erkshausen,Erkshausen,05,,51.033333,9.766667 id,kiaragedur,Kiaragedur,30,,-6.383889,107.148889 gr,epano piskopi,Epáno Piskopí,46,,35.1333333,26.0666667 ru,zabaykino,Zabaykino,67,,52.466541,45.622169 et,jino,Jino,46,,10.15,39.566667 fi,smedsede,Smedsede,13,,59.983333,23.266667 pl,turka,Turka,75,,51.135207,23.795895 co,salina de sirguaza,Salina de Sirguazá,36,,5.616667,-72.616667 es,caserio el tranco,Caserío El Tranco,51,,38.17629,-2.796435 cn,wajuezhai,Wajuezhai,32,,30.994832,101.700489 ht,decouverte,Découverte,12,,18.3,-73.5166667 gr,kilindir,Kilindír,06,,41.1155556,22.7944444 ao,quinguiequi,Quinguiéqui,15,,-6.562702,15.087545 no,sandhaaland,Sandhaaland,14,,59.2,5.2 us,montague,Montague,SC,,34.9161111,-82.4413889 ru,vostok-ugol,Vostok-Ugol,29,,53.5683,87.0582 co,campo de marta,Campo de Marta,20,,1.584532,-77.024702 cz,neu-georgswalde,Neu-Georgswalde,83,,50.991017,14.554327 ng,akabaleu,Akabaleu,52,,4.329444,6.392668 by,lopotse,Lopotse,03,,54.5333333,26.2666667 sy,bozrhar,Bôzrhâr,12,,36.1333333,36.6333333 id,natumpol,Natumpol,26,,2.419,99.2278 pk,bhogi,Bhogi,01,,31.375131,71.941272 mr,oumkchera,Oumkchéra,03,,15.6333333,-11.1333333 es,mompia,Mompía,39,,43.441559,-3.918664 ru,kosterino,Kosterino,77,,57.9446,36.5601 gq,puerto iradier,Puerto Iradier,06,,1.0833333,9.7 no,gaasbakken,Gaasbakken,16,,63.116667,10 ve,el recreo,El Recreo,23,,10.3144444,-72.3277778 af,nasrullah khel,Nasrullah Khel,28,,31.928464,67.666137 id,tanjungharapan,Tanjungharapan,15,,-5.03008,105.002437 vn,lang bao,Làng Bao,11,,21.466667,106.616667 cn,mawei,Mawei,04,,32.522222,120.780556 de,papenberg,Papenberg,07,,51.166667,7.2 sd,er renk,Er Renk,26,,11.75,32.8 tr,kuskaya,Kuskaya,28,,40.785978,38.538164 zr,kivinda,Kivinda,08,,-5.35,12.6 id,lubukpasing,Lubukpasing,24,,-1.255336,100.508812 cn,shangshan,Shangshan,16,,24.007778,109.801389 ph,patacapac,Patacapac,29,,17.151111,120.492222 id,weduni,Weduni,07,,-6.792,111.2258 id,oro,Oro,38,,-5.0695,120.0543 ru,khandzharovka,Khandzharovka,08,,53.95,54.6 ao,tualungo,Tualungo,12,,-9.636111,16.051944 us,curtis mill,Curtis Mill,FL,,30.0083333,-84.5261111 ng,tifi,Tifi,31,,9.366667,5.316667 th,ban thung prong,Ban Thung Prong,22,,16.733333,102.666667 gp,budan,Budan,00,,16.2333333,-61.6 ru,nikulkina,Nikulkina,42,,58.983333,30.583333 pk,kup,Kup,04,,29.617493,71.170967 de,lunsfeld,Lünsfeld,06,,52.483333,7.55 ru,volotovo,Volotovo,43,,52.9676,39.0906 md,sadki,Sadki,58,,47.898889,28.867778 cn,futienho,Futienho,12,,31.480556,115.098056 kz,sugandy,Sugandy,17,,43.437778,74.613611 be,dolembreux,Dolembreux,04,,50.533333,5.633333 ci,dieya-zou,Dieya-Zou,84,,6.590526,-8.06706 my,kampong tapuh,Kampong Tapuh,11,,.933333,110.583333 kr,tongwol,Tongwol,17,,36.335,127.2586 se,on,Ön,10,,60.733333,15.933333 pk,dib mitho,Dib Mitho,05,,27.55,67.916667 id,biraeng,Biraeng,38,,-4.8364,119.577 se,kulbacken,Kulbäcken,15,,59.266667,14.783333 cf,ouembele,Ouembélé,17,,4.9666667,19.2 de,rassbach,Raßbach,01,,47.683333,8.333333 ga,eyeme,Eyemé,01,,0.2833333,10.2333333 ru,torosozero,Torosozero,28,,61.191411,33.105757 se,huftasjo,Huftasjö,23,,65.35,17.416667 id,kelaga,Kelaga,17,,-8.6872,116.4296 ru,aktinovo,Aktinovo,55,,52.6,54.433333 bg,lowzlte,Lowzlte,51,,41.5166667,24.9333333 mx,tres picos,Tres Picos,02,,31.666667,-115.3 af,dekhkutikarez,Dekhkutikarez,06,,32.646385,63.144399 ye,ghaydah,Ghaydah,04,,14.9111111,49.9922222 kr,chukto,Chukto,16,,34.45,127.3 ir,jian,Jian,07,,29.6338,53.1366 ba,tatarovici,Tatarovici,02,,43.5780556,18.6591667 do,arroyo,Arroyo,03,,18.1166667,-71.0666667 ci,polodo,Polodo,92,,9.866667,-3.2 ru,novaya zardama,Novaya Zardama,93,,50.7935,108.1653 id,limbungan,Limbungan,12,,-2.95,115.866667 ua,trudove,Trudove,22,,49.202968,25.609824 tj,yakhshiobod,Yakhshiobod,03,,38.5725,68.2305556 mx,la machaca,La Machaca,11,,20.445,-100.763889 gn,kouakoro,Kouakoro,13,,8.545,-10.4030556 kh,yol tong,Yol Tong,19,,11.2833333,104.75 tr,argaliya,Argaliya,61,,40.983333,39.666667 af,rishkur,Rishkur,13,,34.426389,69.126667 ir,hushut,Hushut,03,,32.337111,49.925211 us,pettyville,Pettyville,AR,,35.8458333,-90.1194444 id,maponoe,Maponoe,41,,-.926111,119.524167 mm,pazin-gon,Pazin-gôn,10,,23.95,95.3166667 ru,chetvertovo,Chetvertovo,51,,55.183384,43.251443 af,shamsabad,Shamsabad,11,,34.259483,62.059283 cn,gengwan,Gengwan,04,,31.433333,120.066667 fr,oize,Oizé,B5,,47.81009,.104579 ru,tarmany,Tarmany,78,,57.1843,65.6134 za,shewasaulu,Shewasaulu,09,,-23.063044,30.345873 mx,barranca arriba,Barranca Arriba,13,,20.947222,-99.186111 tr,minasor,Minasor,25,,40.378936,41.740497 gy,towakaima landing,Towakaima Landing,10,,7.3166667,-60.0 tr,kirecocagi koyu,Kirecocagi Koyu,81,,37.05,35.233333 pt,sete fontes,Sete Fontes,22,,40.903728,-8.056727 id,kentongan,Kentongan,07,,-7.1655,111.5605 ba,gornji ruzevici,Gornji Ruzevici,02,,44.6155556,17.8255556 ci,seydou kaporo,Seydou Kaporo,74,,5.828492,-4.319526 id,alur gading,Alur Gading,01,,4.8609,96.7445 eg,sandafa el far,Sandafa el Far,10,,28.535,30.6622222 kr,mokhwa,Mokhwa,20,,35.083333,128.45 gf,pointe combi,Pointe Combi,00,,5.3166667,-52.95 us,webb chapel,Webb Chapel,TN,,36.3272222,-89.3777778 af,markaz-e woluswali-ye nikeh,Markaz-e Woluswali-ye Nikeh,29,,33.189091,69.25898 af,kharzar-e bala,Kharzar-e Bala,40,,35.022803,68.443214 af,nawa-i-mohd-khwaja,Nawa-i-Mohd-Khwaja,41,,33.427265,66.387814 au,naybethong,Naybethong,07,,-37.566667,145.65 ph,magsaysay,Magsaysay,07,,14.8452,120.413 id,sapakalorowa,Sapakalorowa,38,,-5.3254,120.3277 id,ketib,Ketib,07,,-6.9761,109.6037 np,rasua garhi,Rasua Garhi,00,,28.2833333,85.3833333 pk,badar colony,Badar Colony,04,,31.6005,74.3562 cn,yushuiho,Yushuiho,26,,33.262222,107.764722 zr,djemusi,Djemusi,05,,-11.1,26.9666667 kp,yongbawidok,Yongbawidok,01,,41.65,126.7833333 ng,zalanga,Zalanga,46,,10.614321,10.176468 ir,tiskufan,Tiskufan,04,,25.3224,60.7559 ru,ust-sistig-khem,Ust-Sistig-Khem,79,,52.673889,95.499444 ru,belaya glinka,Belaya Glinka,29,,54.7157,85.808 cm,krenak i,Krénak I,12,,12.5666667,14.5666667 id,tandar,Tandar,17,,-8.8165,116.4099 es,miedes,Miedes,52,,41.258578,-1.491078 lv,ludani,Ludani,01,,56.6,25.4 ie,kilmurry,Kilmurry,16,,52.3847222,-8.4630556 cf,pagui,Pagui,11,,5.0833333,21.0833333 pg,ponk,Ponk,05,,-6.1166667,143.5333333 ee,koheri,Koheri,07,,58.9,23.5166667 al,zaroshka,Zaroshka,46,,40.7641667,20.9080556 pe,toquepala,Toquepala,08,,-14.8702778,-71.7163889 mx,frijoles,Frijoles,19,,25.8,-99.883333 az,balik,Balik,25,,40.760594,48.072741 cn,gaoling,Gaoling,11,,26.175556,112.244167 ph,napugan,Napugan,58,,12.8716,123.696 vn,ban dong ngai noi,Ban Dong Ngai Noi,19,,21.466667,104.533333 cn,liangchia,Liangchia,19,,41.033333,123.416667 id,gunungcau,Gunungcau,07,,-7.373056,109.056944 ly,fiorita,Fiorita,11,,32.8666667,22.2833333 ao,quitula de catofe,Quitula de Catofe,06,,-10.833115,15.031672 ml,kakou,Kakou,07,,13.4166667,-7.5166667 fr,fontanas,Fontanas,98,,45.768457,3.014596 id,babakanciranjang,Babakanciranjang,30,,-6.657778,107.186111 sd,masimbo,Masimbo,33,,14.4,25.45 pk,basti panjani,Basti Panjani,04,,29.266667,70.730556 no,skinnelv,Skinnelv,18,,69.616667,20.35 fr,lamotte-beuvron,Lamotte-Beuvron,A3,,47.601999,2.028374 am,gezaldara,Gezaldara,06,,40.8769444,44.4169444 cn,yinjiangwan,Yinjiangwan,32,,29.9162,105.016507 us,atmore,Atmore,AL,,31.0236111,-87.4938889 ge,dzhvareti,Dzhvareti,22,,42.1686111,44.2036111 kh,phumi kaoh bor,Phumi Kaoh Bor,03,,12.3666667,104.8666667 vn,de kaleck tih,De Kaleck Tih,10,,14.2,108.466667 id,kedawung 2,Kedawung 2,04,,-6.225,106.747778 kp,chisoktong,Chisoktong,11,,40.0769444,126.0575 ru,reutovo,Reutovo,25,,54.943136,35.776007 de,gravenwiesbach,Grävenwiesbach,05,,50.4,8.45 us,high falls,High Falls,GA,,33.1755556,-84.0255556 cm,nkolmeyang,Nkolmeyang,11,,3.8666667,11.65 mx,cucurpe,Cucurpé,26,,30.333333,-110.716667 id,banjar bonganpala,Banjar Bonganpala,02,,-8.5562,115.1213 pl,zawisza,Zawisza,76,,52.156441,15.328051 mx,ojuelos,Ojuelos,07,,25.45,-102.05 ru,bechmerovo,Bechmerovo,88,,57.2147,38.6642 pe,elenita,Elenita,06,,-5.5069444,-78.8666667 id,pagarjati 2,Pagarjati 2,26,,3.563,98.90241 ru,khaukkala,Khaukkala,42,,60.566667,30.283333 pk,haji ramzan,Haji Ramzan,05,,26.496852,68.040166 es,los dolores,Los Dolores,31,,37.639771,-1.00462 us,sumterville,Sumterville,FL,,28.7447222,-82.0636111 sb,tanggonggora,Tanggonggora,08,,-9.1333333,159.7833333 pl,paproc,Paproc,86,,52.291053,16.141518 ph,marigondong,Marigondong,05,,13.042222,123.420278 ru,minino,Minino,62,,54.966667,40.866667 ba,katun,Katun,01,,43.7788889,17.0675 ch,staldenried,Staldenried,22,,46.216667,7.883333 cn,gangbeicun,Gangbeicun,03,,28.500665,115.725117 ru,poselok kuloyskovo sovhoza,Posëlok Kuloyskovo Sovhoza,06,,61.02088,42.622281 th,ban luea,Ban Luea,46,,13.525306,101.203584 gh,latekofe,Latekofe,08,,6.25,0.5 ru,otdeleniye sovkhoza snezhetok,Otdeleniye Sovkhoza Snezhetok,72,,53.2422,40.1344 br,sitio maria r. portela,Sítio Maria R. Portela,18,,-26.168212,-49.554851 id,kawata,Kawata,18,,-9.929065,120.514617 kp,piam,Piam,07,,38.8861111,126.5194444 in,achna,Achna,28,,22.132778,88.33 pe,tomas corral,Tomas Corral,05,,-14.6,-73.55 vn,plei moun,Plei Moun,10,,14.2,107.833333 td,bouamar,Bouamar,08,,8.4166667,15.4333333 ne,auguste kwara,Auguste Kwara,03,,12.2333333,3.0666667 de,reddeber,Reddeber,14,,51.866667,10.8 lt,kikavichay,Kikavichay,57,,55.1333333,23.8833333 cd,utamba,Utamba,09,,-1.1,26.833333 mz,manguno,Manguno,02,,-23.6486111,33.7241667 kz,kurli,Kurli,01,,45.333333,74.833333 ru,timokhanovo,Timokhanovo,88,,57.848711,39.841285 bg,lesicovo,Lesicovo,48,,42.35,24.1166667 om,mizbar,Mizbar,06,,23.1402778,58.4138889 cn,huangjiaxiang,Huangjiaxiang,03,,27.903665,115.567562 ph,pegingan,Pegingan,10,,16.507285,120.847639 ve,la vega,La Vega,21,,9.0666667,-70.7166667 ba,cule,Cule,01,,43.6283333,17.05 ru,kharpach pervy,Kharpach Pervy,10,,52.907978,34.434022 es,yebra,Yebra,54,,40.357022,-2.966302 cn,shuiduihou,Shuiduihou,02,,28.053635,119.671038 cn,kupehkow,Kupehkow,22,,40.683333,117.15 fo,vestmanna,Vestmanna,00,1284,62.15,-7.1666667 ru,sredneye alkeyevo,Sredneye Alkeyevo,73,,54.819599,50.004169 sk,lvovska huta,lvovska Huta,05,,49.25,21.0333333 ro,fantana,Fantana,20,,45.966667,25.283333 us,north londonderry,North Londonderry,NH,,42.9180556,-71.3994444 hu,kepesfold,Kepésföld,11,,48.016667,20.1 za,kranskraal,Kranskraal,09,,-23.145237,29.852598 cn,huilongmiao,Huilongmiao,11,,25.208056,111.694167 fr,sarcelles-lochere,Sarcelles-Lochère,A8,,48.99365,2.410771 pt,cocorinho,Cocorinho,07,,40.277834,-7.829308 ht,bonnette,Bonnette,08,,18.4333333,-73.45 cm,ndu,Ndu,09,,4.2666667,9.2333333 mx,el jaral,El Jaral,14,,19.366667,-103.3 ru,vara,Vara,10,,52.4655,33.2338 kr,chongpungnaduri,Chongpungnaduri,05,,36.943611,128.159167 ru,iireleekh,Iireleekh,63,,68.2,133.466667 us,prompton,Prompton,PA,,41.5827778,-75.3255556 cn,chiulienshan,Chiulienshan,03,,24.633333,114.583333 de,trajuhn,Trajuhn,14,,51.9,12.683333 al,dormakaj,Dormakaj,42,,41.1283333,19.7358333 cn,zhaolishanzi,Zhaolishanzi,19,,40.799365,120.899885 by,ryabtsevo,Ryabtsevo,07,,55.3,30.6166667 kr,chiso,Chiso,20,,35.582439,127.682392 nl,brillerij,Brillerij,04,,53.28708,6.481775 us,pine land shores,Pine Land Shores,SC,,34.2638889,-82.0069444 cn,lukho,Lukho,32,,31.395871,100.677784 se,afors,Åfors,14,,65.25,20.7 cn,jiheng,Jiheng,24,,36.15,111.733333 kz,arkatskaya,Arkatskaya,15,,49.033333,80.333333 cn,xuejia,Xuejia,03,,28.651212,117.423331 vn,binh khe,Bình Khê,46,,13.95,108.85 se,sund,Sund,28,,59.133333,11.9 iq,sham baluk,Sham Baluk,11,,36.6480556,44.7063889 gb,coxwold,Coxwold,J7,,54.183333,-1.183333 ru,padar,Padar,17,,42.199387,48.051794 af,baiani,Baiani,05,,35.195271,67.784262 do,la meseta,La Meseta,11,,18.8755556,-71.685 hr,pranici,Pranici,03,,43.215,17.2888889 ir,dor badam,Dor Badam,42,,37.494842,58.459406 mx,la constancia,La Constancia,07,,25.083333,-101.966667 se,gronsik,Grönsik,28,,58.383333,14.283333 tr,mahmudan,Mahmudan,13,,38.10712,42.52988 bg,akhmed dere,Akhmed Dere,43,,41.45,25.2833333 cn,tsingtienhsien,Tsingtienhsien,02,,28.143333,120.283056 iq,salaf kharhar,Salaf Kharhar,14,,31.95,46.9 pk,narapa,Narapa,01,,33.010833,69.68 br,irajuba,Irajuba,05,,-13.266667,-40.083333 gr,louzest,Louzést,22,,39.7136111,21.4688889 gm,daru rilwan,Daru Rilwan,07,,13.55,-15.9833333 so,guriasamo,Guriasamo,03,,11.2666667,49.8 de,obenstrohe,Obenstrohe,06,,53.383333,8.1 cd,babunga,Babunga,03,,-6.25,23.15 af,saleh kheyl,Saleh Kheyl,27,,33.747222,68.332778 fr,beyren,Beyren,B2,,49.470141,6.285286 id,karangmendain utara,Karangmendain Utara,17,,-8.5858,116.1063 id,banjar seronggakemenuh,Banjar Seronggakemenuh,02,,-8.5523,115.0892 mm,yebawthaung auk,Yebawthaung Auk,09,,17.85,96.85 pg,kalu,Kalu,03,,-10.65,150.85 pe,hacienda corral,Hacienda Corral,03,,-13.5833333,-73.6833333 cn,linzhuangcun,Linzhuangcun,04,,31.669017,120.227354 at,leogang,Leogang,05,,47.433333,12.75 pk,ghulam muhammad munajo,Ghulam Muhammad Munajo,05,,25.998502,68.381385 ru,kablukovo,Kablukovo,69,,55.194444,33.536667 ma,ba yahya,Ba Yahya,48,,32.640315,-4.610979 bd,nityanandapur,Nityanandapur,82,,22.3666667,89.05 kz,karashengel',Karashengel',12,,47.433333,75.583333 tr,govan,Govan,65,,37.956944,43.267778 ma,azmanate,Azmanate,47,,31.587269,-9.52234 us,saint lewis,Saint Lewis,NC,,35.7813889,-77.7033333 ma,tassouent,Tassouent,55,,30.619816,-6.647602 ng,asayiton,Asayiton,37,,6.466667,5.466667 ng,nafori,Nafori,35,,9.25,12.8 ru,sina-suyran-yuqa¿,Sina-Suyran-Yuq¿,12,,43.253035,45.758077 ir,gargu,Gargu,11,,27.039688,54.155902 in,chunpura,Chunpura,30,,27.833333,95.866667 ve,pichaito,Pichaíto,15,,10.3333333,-66.6333333 de,prausitz,Prausitz,13,,51.25,13.316667 tr,sundurlu,Sundurlu,20,,38.193611,29.856944 ye,al huwayrah,Al Huwayrah,04,,15.8166667,49.5166667 ir,deh-e mas`udabad,Deh-e Mas`udabad,29,,30.605813,56.970145 kp,hoeyomni,Hoeyomni,07,,38.6597222,126.4119444 pk,kam kachhi,Kam Kachhi,02,,30.387459,68.935944 kh,sambor,Sambor,02,,11.8666667,104.85 ir,do robat,Do Robat,28,,32.383333,51.2 id,korololama,Korololama,21,,-2.0157,121.3383 cn,beichangwei,Beichangwei,04,,31.984167,120.629167 ru,verkhne-salonovskiy,Verkhne-Salonovskiy,84,,48.376205,42.834884 br,sitio paulo sauer,Sítio Paulo Sauer,26,,-26.225457,-49.726378 ly,tilimun,Tilimun,54,,31.5897222,20.1716667 de,elmshagen,Elmshagen,05,,51.266667,9.316667 ua,pravda,Pravda,11,,45.779032,33.846494 lr,samalahun,Samalahun,05,,8.2347222,-10.0788889 pg,konimaiava,Konimaiava,03,,-10.5,149.8166667 cn,qudegong,Qudegong,14,,28.9,91.95 la,ban hatsa,Ban Hatsa,14,,20.033333,103.783333 ru,ratchino,Ratchino,77,,57.2719,37.6928 id,ngening,Ngening,07,,-6.7212,111.1804 cn,hejiabang,Hejiabang,32,,28.235964,105.3514 ru,sosunovo,Sosunovo,85,,59.851548,38.216755 pk,chak one hundred twenty-seven nb,Chak One Hundred Twenty-Seven NB,04,,31.833333,72.529167 ir,qesh robat,Qesh Robat,42,,35.584511,59.442729 id,sukaroya,Sukaroya,30,,-7.1761,108.1656 ye,al kulayb,Al Kulayb,04,,15.7833333,48.4 ng,lowi,Lowi,46,,10.585749,10.004391 ie,gorteen,Gorteen,16,,52.4663889,-8.9255556 us,mattox,Mattox,GA,,30.9175000,-82.0847222 ao,quimuanza langa,Quimuanza Langa,15,,-7.23794,15.865028 pk,sawra,Sawra,04,,33.254167,72.158611 ma,had-hourt,Had-Hourt,52,,34.615885,-5.740403 us,kinderlou,Kinderlou,GA,,30.8008333,-83.3675000 us,draco,Draco,NC,,35.9430556,-81.3855556 ru,strenek,Strenëk,52,,58.35,30.25 gb,brede,Brede,E2,,50.916667,.6 tr,mirizivi,Mirizivi,76,,37.8375,41.67 pt,valqueira,Valqueira,17,,41.153579,-8.268034 tr,harabeiask,Harabeiask,63,,36.963889,38.653333 br,alpercata,Alpercata,13,,-3.655833,-43.483056 mg,ambohitsara,Ambohitsara,01,,-14.85,49.85 jp,poromoi,Poromoi,12,,44.233333,145.35 ph,nagalisan,Nagalisan,10,,16.383333,120.533333 it,sterpeto,Sterpeto,18,,42.666667,12.633333 et,jobira,Jobira,51,,9.666667,37.183333 by,yatra,Yatra,03,,53.4166667,25.8 ir,nazarabad-e bozorg,Nazarabad-e Bozorg,44,,35.9521,50.6075 pe,talara,Talara,20,100105,-4.5772222,-81.2719444 ao,cucumbi,Cucumbi,18,,-10.279707,19.050177 se,sodra nyckelhult,Södra Nyckelhult,15,,58.966667,15.116667 it,citta sant'angelo,Citta Sant'Angelo,01,,42.516667,14.05 ge,mshralkhevi,Mshralkhevi,19,,41.8533333,44.8872222 us,westview estates,Westview Estates,WV,,38.4150000,-82.0408333 ma,taralaout,Taralaout,48,,32.730801,-5.089494 cn,hsiaopingyang,Hsiaopingyang,16,,23.433333,109.15 kp,chokchidong,Chokchidong,18,,42.4594444,130.5522222 id,canga'an,Canga'an,08,,-6.9218,112.5058 cd,mumbonda,Mumbonda,02,,-5.716667,17.583333 ba,gladovici,Gladovici,01,,44.2991667,17.9319444 bd,hamjapur,Hamjapur,86,,24.6333333,91.7833333 us,cedar cove,Cedar Cove,AL,,33.1747222,-87.3219444 sb,mbaraulu,Mbaraulu,00,,-8.2833333,157.4166667 bj,kabogourou,Kabogourou,03,,9.1833333,3.05 ma,ait lahcen,Aït Lahcen,52,,34.21,-5.75 et,koli,Koli,46,,10.433333,36.866667 la,ban halong,Ban Halong,09,,15.466667,106.866667 pg,sirimo,Sirimo,03,,-9.6166667,149.6666667 cn,shihlungchen,Shihlungchen,16,,23.848611,109.527222 zr,kifwanshi,Kifwanshi,05,,-8.75,25.5833333 ao,cafulo,Cafulo,04,,-17.033333,21.116667 us,depauw,Depauw,IN,,38.3350000,-86.2175000 ir,dushmalli,Dushmalli,32,,37.746111,48.176111 cy,ayios theodoros,Áyios Theódoros,04,,35.175,32.65 fr,neuvy-bouin,Neuvy-Bouin,B7,,46.676196,-.459648 us,murry,Murry,WI,,45.6005556,-91.2005556 pt,cova do moirao,Cova do Moirão,10,,32.716667,-17.133333 cn,yudian,Yudian,04,,32.21998,121.301518 ve,belen,Belén,16,,9.2147222,-63.7391667 sk,kis tore,Kis Töre,04,,48.15,18.5833333 ru,bodyakov,Bodyakov,09,,50.5238,38.2652 kz,karabulak,Karabulak,01,16252,44.908889,78.492222 cn,wuyuan zhen,Wuyuan Zhen,02,,30.515387,120.948562 fr,yzengremer,Yzengremer,B6,,50.06141,1.522291 ru,kanashi,Kanashi,69,,55.5523,32.1321 ru,verkhniy nurlat,Verkhniy Nurlat,73,,54.408082,50.85581 us,dayton,Dayton,IL,,41.3847222,-88.7941667 in,dargi,Dargi,11,,31.223889,77.047778 pk,torkai,Torkai,01,,33.579744,71.639646 fr,fontaine-la-gaillarde,Fontaine-la-Gaillarde,A1,,48.219928,3.378928 cn,qinshui,Qinshui,30,,22.914878,112.763322 pk,shadipur,Shadipur,04,,29.602778,71.863889 cn,tianshuiyao,Tianshuiyao,26,,34.819963,109.316368 vn,hao ngam,Hào Ngâm,26,,18.233333,106.2 kp,hungdori,Hungdori,03,,39.8958333,127.5222222 lk,kadurukumbura,Kadurukumbura,32,,7.4333333,80.35 cn,matai,Matai,30,,21.356128,110.57253 pe,jesus,Jesús,06,,-7.25,-78.3833333 us,beulah,Beulah,NY,,43.0186111,-77.8919444 kp,yuksongo,Yuksongo,12,,38.9261111,125.6808333 ir,cheshmeh-ye `alishah,Cheshmeh-ye `Alishah,09,,34.0609,49.1173 jp,kanatsu,Kanatsu,24,,37.95,140.833333 kz,yakovlevskiy,Yakovlevskiy,13,,52.483333,62.033333 bf,douargou,Douargou,22,,12.25,0.3333333 cn,laohu,Laohu,25,,35.986389,116.27 cn,hatuhutuko,Hatuhutuko,20,,39.616667,105.683333 pk,barnala,Barnala,06,,32.870502,74.247316 cn,shuangfuchang,Shuangfuchang,32,,29.674676,103.520957 ph,tagbinit,Tagbinit,F1,,10.083012,118.849802 af,qal`ah-ye mir shikar,Qal`ah-ye Mir Shikar,13,,34.454645,69.139595 pg,laubore,Laubore,17,,-5.55,149.1833333 pk,manderiwala,Manderiwala,04,,29.437801,70.565768 am,akhlat'yan,Akhlat'yan,08,,39.4422222,46.0352778 az,tirkeshevend,Tirkeshevend,26,,39.971944,46.219167 tr,yenidam,Yenidam,81,,36.955559,35.246624 tr,kirikkaya,Kirikkaya,13,,38.907891,42.327798 mx,tiholop,Tiholop,31,,20.333333,-88.7 mw,mgundadzuwa,Mgundadzuwa,06,,-14.3,34.1 cn,shijianleqiao,Shijianleqiao,32,,30.30576,104.842686 zr,andi-kenopi,Andi-Kenopi,00,,2.95,28.8833333 id,wonokojo 1,Wonokojo 1,08,,-8.0151,112.6501 cn,xiazhigou,Xiazhigou,15,,34.464157,104.727713 cn,hsutitung,Hsütitung,16,,22.433333,110.4 mm,daw hsa-le,Daw Hsa-lè,06,,19.4333333,97.55 us,doss,Doss,TX,,30.4444444,-99.1302778 co,ecopetrol,Ecopetrol,28,,5.201872,-74.93007 eg,abu el-khaui,Abu el-Khâui,03,,30.5936111,30.8061111 bd,chak boehai,Chak Boehai,83,,24.8666667,89.4333333 tr,haytabey,Haytabey,20,,38.0025,29.117222 ru,aristovo,Aristovo,69,,55.976663,34.400483 cn,sanchiao,Sanchiao,24,,35.467778,111.018611 it,nugola,Nugola,16,,43.583333,10.433333 kr,hyanghwato,Hyanghwato,06,,37.5736,127.8565 bg,kapitanovtsi,Kapitanovtsi,47,,44.0344444,22.8741667 gq,nonkieng,Nonkieng,09,,1.7333333,11.2333333 la,houayhok,Houayhôk,07,,20.339722,101.66 ir,delqand,Delqand,42,,36.193023,57.746792 id,lendangterak,Lendangterak,17,,-8.9042,116.452 ir,nigvar,Nigvar,04,,25.388819,61.138339 ng,itak ikot udo okop,Itak Ikot Udo Okop,21,,5.198634,7.735761 af,fil kush,Fil Kush,06,,33.146306,63.479671 lv,plyavinyas,Plyavinyas,01,,56.6166667,25.7166667 cn,binchuan,Binchuan,08,,45.930147,127.024147 gr,ptelea,Pteléa,29,,38.9666667,22.0 pk,morni,Morni,03,,34.541679,73.21056 cn,zousuo,Zousuo,31,,18.484277,109.827921 ru,zelenyy,Zelënyy,72,,52.183333,41.733333 gr,gasion,Gásion,45,,35.1333333,25.2666667 at,ploven,Ploven,07,,47.166667,11.35 th,ban mak yang,Ban Mak Yang,30,,15.306084,104.057361 ir,hoseynabad-e bulverdi,Hoseynabad-e Bulverdi,07,,29.177681,51.803857 ru,atirka,Atirka,54,,57.2564,74.2745 dz,mechtat ameur ben amier,Mechtat Ameur Ben Amïer,06,,36.2241667,3.4669444 id,wasalabose,Wasalabose,22,,-4.6365,122.8447 cn,xiaoya,Xiaoya,26,,34.476601,108.617111 fi,vatjusjarvi,Vatjusjärvi,08,,64.083333,25.3 ru,chistyunka,Chistyunka,04,,52.677778,83.206111 tr,kazikkaya,Kazikkaya,84,,40.016111,42.700833 tr,cerli,Çerli,52,,41.033333,37.783333 es,colinas del campo de martin moro,Colinas del Campo de Martín Moro,55,,42.768508,-6.292459 zr,kanza,Kanza,01,,-4.55,18.1 cd,kayembe-bumba,Kayembe-Bumba,03,,-5.416667,22.316667 cz,vrazne,Vrazne,87,,49.949618,13.33188 cz,lisnice,Lisnice,88,,49.889018,14.319628 ng,gante tudu,Gante Tudu,40,,11.219463,4.201745 mn,yoson-tseyl',Yoson-Tseyl',15,,46.4166667,103.8333333 gr,khoremis,Khorémis,41,,37.3833333,22.0833333 id,cowor,Cowor,07,,-7.527222,110.306111 ru,lebedevskiy,Lebedevskiy,45,,56.766667,48.013056 ru,ust-maloy,Ust-Maloy,20,,53.9496,103.6626 de,wilhelmshausen,Wilhelmshausen,05,,51.4,9.6 se,ubblixbo,Ubblixbo,21,,60.216667,17.416667 sy,aarab chah,Aarab Châh,01,,37.0397222,41.7172222 af,coytaman,Coytaman,05,,34.222217,67.269975 rs,pekedanci,Pekedanci,00,,42.4375,22.161944 ir,khomar baqi,Khomar Baqi,34,,34.6775,49.3442 ie,curry,Curry,25,,54.0033333,-8.7694444 br,boa estrela,Boa Estrêla,31,,-7.766667,-48.566667 jp,yonazone,Yonazone,47,,24.748914,125.268778 us,sunnybrook,Sunnybrook,KY,,36.6577778,-84.9758333 ge,ghado,Ghado,06,,41.5833333,43.4666667 bd,karnapur,Karnapur,81,,24.1666667,90.5166667 cl,laguna amarga,Laguna Amarga,10,,-51,-72.8 cl,cuadrilla diez,Cuadrilla Diez,03,,-25.383333,-69.683333 jm,unity valley,Unity Valley,09,,18.25,-77.1166667 hn,el aguila,El Águila,16,,14.8166667,-88.1166667 gh,chago,Chago,11,,9.9666667,-2.2 mm,magyichaung,Magyichaung,01,,20.2833333,92.7333333 sk,hlinik nad hronom,Hliník nad Hronom,01,,48.55,18.7833333 af,ab-i-kamari,Ab-i-Kamari,02,,35.087955,63.067796 id,pondoktadjea,Pondoktadjea,04,,-6.2125,106.725833 at,muhlfeld,Muhlfeld,05,,47.947222,12.991389 iq,samiran,Samiran,13,,35.7416667,44.2163889 tr,seyifli,Seyifli,79,,39.667083,33.681163 ye,dar am bayem,Dar am Bayem,06,,13.0672222,43.9341667 us,barrington woods,Barrington Woods,MD,,39.2202778,-76.8091667 tw,fuhsingli,Fuhsingli,03,,25.1,121.5166667 sy,islamine,Islâmîne,12,,35.85,36.9 cn,caokuanlong,Caokuanlong,03,,29.273482,116.502641 vn,kon kotu lop,Kon Kotu Lop,10,,14.566667,107.833333 us,dardanelles,Dardanelles,OR,,42.4291667,-123.0569444 de,ostarle,Ostarle,06,,53.6,7.4 de,sudhalenbeck,Sudhalenbeck,06,,52.666667,9.116667 mx,agua amarga,Agua Amarga,22,,21.256944,-99.409722 no,kiken,Kiken,17,,59.466667,9.35 cn,anliangpu,Anliangpu,24,,39.482913,112.80668 ng,kakuma,Kakuma,46,,10.628721,10.198263 id,prawirotaman,Prawirotaman,10,,-7.8225,110.367778 zm,sikuta,Sikuta,03,,-15.0333333,22.7833333 af,hajji `abd ol ghani kur,Hajji `Abd ol Ghani Kur,29,,32.068767,68.116909 lb,haqlet et tine,Haqlet et Tîné,05,,34.1,35.7 at,kohlgraben,Kohlgraben,06,,46.9,15.75 ir,samar qava,Samar Qava,42,,35.318556,60.369347 np,girma,Girma,00,,27.4666667,83.6666667 mm,mhreng,Mhreng,02,,21.6,93.95 id,pasarsenen,Pasarsenen,30,,-6.525,107.430833 cz,zdechovice,Zdechovice,86,,49.909676,15.686676 ph,pili,Pili,H9,,11.6299,124.3746 se,ringa,Ringa,03,,61.35,16.966667 ua,balamutovka,Balamutovka,03,,48.533727,26.064302 ru,tebetskoye,Tebetskoye,37,,58.1951,42.0741 cn,xiliu,Xiliu,25,,37.117778,120.660556 ch,sumiswald,Sumiswald,01,5072,47.027467,7.745257 us,starmount forest,Starmount Forest,NC,,36.0794444,-79.8444444 ru,lipovka,Lipovka,90,,57.212215,56.329731 cn,bailu,Bailu,04,,34.053611,119.522222 cn,chengxing,Chengxing,04,,32.109138,121.337716 tn,bordj bou ficha,Bordj Bou Ficha,19,,36.300315,10.454801 de,butzow,Bützow,12,8163,53.85,11.983333 pl,lublewo,Lublewo,82,,54.283809,18.493242 us,troutdale,Troutdale,ME,,45.2927778,-69.8363889 ru,lavrentyevka,Lavrentyevka,55,,52.418,51.681 au,diggora,Diggora,07,,-36.416667,144.583333 ru,larionovo,Larionovo,88,,58.123433,38.380399 cn,dongnanyu,Dongnanyu,11,,29.436721,110.494904 bd,sujabad baika,Sujabad Baika,81,,23.7666667,89.8833333 ma,el maarif ain karouache,El Maârif Aïn Karouache,52,,34.510293,-5.450977 ir,jub kabud-e bala,Jub Kabud-e Bala,13,,34.8646,47.5106 id,kedobaru,Kedobaru,17,,-8.4435,118.7242 ru,ostriki,Ostriki,56,,52.094235,37.140144 ne,bakatchiraba,Bakatchiraba,07,,14.9333333,8.8333333 gr,koutson,Koutsón,03,,41.05,25.0166667 mg,manakaravavy,Manakaravavy,06,,-24.5166667,44.6 at,schutzenberg,Schutzenberg,03,,48.683333,14.866667 mx,santa maria tindu,Santa María Tindú,20,,17.583333,-97.85 lk,kitulgolla,Kitulgolla,32,,7.4333333,80.55 cl,chacra tiliviche,Chacra Tiliviche,15,,-19.533333,-69.95 us,mastodon,Mastodon,MI,,46.0183333,-88.3486111 ph,silhagon,Silhagon,67,,12.4495,125.2251 ph,pitogo,Pitogo,H3,,10.631256,123.060603 th,ban nong yang sai yong,Ban Nong Yang Sai Yong,28,,14.683333,102.75 mm,wan sa-santa,Wan Sa-santa,11,,21.4166667,100.7666667 cn,cheheqiao,Cheheqiao,10,,40.32,118.241667 id,jitapanda,Jitapanda,18,,-8.7765,121.9569 pk,bhakat,Bhakat,02,,28.166667,64.9 tn,faoumt,Faoumt,28,,33.866667,10.866667 ru,gadilovo,Gadilovo,85,,60.155913,38.766181 td,tchankoul,Tchankoul,05,,11.9833333,19.0 us,qulin,Qulin,MO,,36.5958333,-90.2472222 ir,taklak quz,Taklak Quz,43,,38.222824,57.136557 lt,vaiskoniu,Vaiskoniu,60,,55.3666667,24.35 af,deh-e bash,Deh-e Bash,03,,36.26759,69.093361 it,osteria di marcesna,Osteria di Marcesna,20,,45.966667,11.6 et,uendige,Uendige,46,,11.8,37.066667 in,kodavaluru,Kodavaluru,02,,14.566667,80.016667 us,lake saint croix beach,Lake Saint Croix Beach,MN,,44.9208333,-92.7666667 no,byrkedal,Byrkedal,14,,58.783333,6.333333 fr,parthe,Parthe,B2,,49.433333,6.216667 az,kalaboyunlar,Kalaboyunlar,58,,40.768099,45.598977 cn,dadoupo,Dadoupo,09,,33.241109,112.053719 cn,wangjia dagou,Wangjia Dagou,19,,40.211121,123.302327 ir,veyleh-ye do,Veyleh-ye Do,13,,34.3786,46.3589 ng,efife,Efife,48,,7.706412,5.907376 ru,ilinskaya,Ilinskaya,83,,56.0098,39.551029 pk,gul beg,Gul Beg,05,,26.14642,68.675309 ma,tidghest,Tidghest,55,,31.040125,-6.812373 id,pesanggrahan dua,Pesanggrahan Dua,07,,-7.288889,109.049722 rs,caganje,Caganje,00,,43.937222,20.226667 ru,losk,Losk,25,,54.5,35.08 af,shur kalay,Shur Kalay,34,,35.003459,71.110037 tw,tunghsiti,Tunghsiti,04,,24.15,120.5 hu,alsoszentivan,Alsószentiván,08,,46.786569,18.729621 kp,worhajang,Worhajang,01,,41.0236111,127.1180556 ru,segeyevka,Segeyevka,41,,51.22823,34.709374 cn,kongjiatai,Kongjiatai,12,,30.165846,112.094421 ru,siniye kamni,Siniye Kamni,71,,56.826557,60.671156 af,chaklah owr,Chaklah Owr,26,,36.737312,69.386398 kz,kyzylkesek,Kyzylkesek,15,,47.876111,82 cg,kandi,Kandi,07,,-2.8144444,11.8963889 mx,granja las puentes,Granja Las Puentes,19,,25.716667,-100.266667 tr,cevizlik,Cevizlik,23,,38.525321,39.34969 us,rosegate manor,Rosegate Manor,GA,,33.5766667,-84.6102778 pk,salooi,Salooi,04,,32.743265,73.096727 ve,cano alegria,Caño Alegría,20,,8.2430556,-72.2755556 my,kampung charok puteh,Kampung Charok Puteh,02,,5.823774,100.891884 sn,sinndabou,Sinndabou,11,,12.7,-14.9333333 cn,dingdui,Dingdui,31,,19.812621,110.837019 hr,lipice,Lipice,12,,45.0166667,15.2666667 br,sitio sebastiao vicente,Sítio Sebastião Vicente,18,,-25.963177,-49.905363 cn,mamaqiangre,Mamaqiangre,14,,31.2,95.7 lv,rimzati,Rimzati,15,,56.9666667,22.2 id,longuron,Longuron,14,,1.766667,114.9 gr,gyrou,Gýrou,25,,39.7088889,19.7325 br,virgolandia,Virgolândia,15,,-18.45,-42.3 tr,kurtseyh,Kurtseyh,21,,38.483333,40.4 sy,jubb al amlas,Jubb al Amlas,14,,34.75,36.1833333 dk,godsbol,Gødsbøl,21,,55.752795,9.181204 mx,cerro ixpila,Cerro Ixpila,30,,19.091667,-96.981944 ma,taguerguerat,Taguerguerat,58,,35.147502,-4.186335 de,niggeln,Niggeln,02,,47.6,11.483333 ir,zarkamus,Zarkamus,08,,36.887304,50.441301 la,soptouk,Sôptouk,04,,18.816667,104.5 mm,wan kao-nyeknam,Wan Kao-nyeknam,11,,21.4833333,99.4666667 kz,balpan,Balpan,04,,49.05,62.05 cu,batey nuevo,Batey Nuevo,07,,21.6652778,-78.8741667 ua,pervomaisk,Pervomaisk,14,,48.629882,38.548056 co,anayaco,Anayaco,16,,1.817778,-75.87883 tr,fahmi,Fahmi,80,,37.305556,42.1575 sk,skodak,Skodak,06,,48.8833333,17.9166667 cr,san carlos,San Carlos,08,,9.233963,-83.59315 cn,jiulianshan kenzhichang xiahu fenchang,Jiulianshan Kenzhichang Xiahu Fenchang,03,,24.548976,114.473509 jp,tanabu,Tanabu,03,,41.289444,141.216944 es,bustidono,Bustidoño,39,,42.922028,-3.99013 id,kadjoe,Kadjoe,38,,-4.7377,120.3766 us,atkinsonville,Atkinsonville,IN,,39.3777778,-86.8733333 kr,chujongri,Chujongri,05,,36.588333,127.613611 bg,planintsi,Planintsi,51,,41.5833333,24.9666667 fr,padie,Padie,B3,,43.609689,.591434 lk,balapitiya,Balapitiya,34,,6.2666667,80.0369444 nl,ouderkerk,Ouderkerk,07,,52.293992,4.918374 bd,nizpara,Nizpara,83,,25.8833333,88.6666667 bo,bena,Bena,07,,-21.25,-67.35 ca,driftwood,Driftwood,08,,49.133333,-81.383333 bo,laurani,Laurani,04,,-16.1333333,-68.4 tr,isali,Isali,81,,36.920498,35.719499 mr,mreimida haratin,Mreïmida Haratin,02,,16.8,-10.75 ru,khatyryk-khoma,Khatyryk-Khoma,63,,63.948611,124.816389 ua,petrovka,Petrovka,02,,50.578699,31.699716 it,casamassella,Casamassella,13,,40.116667,18.45 ua,budyshche,Budyshche,01,,49.192999,31.030629 ph,nasigid,Nasigid,46,,9.1641,123.1844 ru,nemtsovo,Nemtsovo,83,,56.131402,40.294072 se,karlbo,Karlbo,10,,60.116667,16.233333 cn,shangmashui,Shangmashui,07,,24.890278,117.834722 pk,taja khan rind,Taja Khan Rind,05,,25.108333,69.502778 es,la huerfana,La Huérfana,55,,41.071643,-6.090608 pk,abadi nur muhammad,Abadi Nur Muhammad,04,,31.341667,72.966667 cn,zhouqu,Zhouqu,15,,33.784167,104.362778 ru,yashnevo,Yashnevo,85,,58.9134,38.1813 cn,tiannan zhen,Tiannan Zhen,03,,28.106757,115.107269 mz,c. magilane,C. Magilane,04,,-25.8852778,32.4513889 sb,mangautu,Mangautu,08,,-9.45,160.2 mm,peinnebin,Peinnebin,10,,24.1833333,95.85 ru,novyye klyuchi,Novyye Klyuchi,65,,53.309888,51.884947 my,serdang lama,Serdang Lama,12,,3.016667,101.716667 ir,jangal,Jangal,33,,38.1948,47.2867 id,bulakgempol,Bulakgempol,08,,-8.177,113.1162 lt,daugelishkyay,Daugelishkyay,61,,55.65,22.75 ir,karam alahi,Karam Alahi,23,,33.7946,48.2454 ec,hacienda garbanzal,Hacienda Garbanzal,05,,0.45,-77.95 in,ghasi nagla,Ghasi Nagla,36,,26.9937,79.5354 id,andong,Andong,07,,-6.9752,110.1019 pt,petisgueira,Petisgueira,05,,41.866803,-6.525492 ru,mayevo vtoroye,Mayevo Vtoroye,71,,59.362062,63.164272 ru,tarasovskoye ramenye,Tarasovskoye Ramenye,33,,60.2698,47.09 tr,tekoren,Tekören,26,,39.408056,31.598333 lk,ranawana,Ranawana,29,,7.3333333,80.6166667 gt,copalapa,Copalapa,11,,14.15,-89.983333 eg,az zurbi,Az Zurbi,04,,29.4166667,30.9166667 pl,duraje,Duraje,83,,49.616667,19.183333 sn,revouane,Révouane,08,,14.9333333,-14.5666667 se,hyttefallet,Hyttefallet,16,,58.666667,15.416667 be,cosen,Cosen,05,,50.883333,5.233333 ru,boratonaya,Boratonaya,64,,47.433333,142.033333 ir,kanemi,Kanemi,03,,31.709137,50.600579 id,buktama timur,Buktama Timur,08,,-7.0518,113.3705 ph,camansan,Camansan,B3,,12.0762,124.5896 mx,huichinal,Huichinal,24,,21.95,-99.1 se,kalvsbo,Kalvsbo,21,,60.333333,17.8 zr,kibilo,Kibilo,00,,-12.45,29.5666667 sr,coronie,Coronie,12,,5.8833333,-56.3166667 ve,la lopera,La Lopera,12,,7.8622222,-67.1555556 mx,promontorios,Promontorios,26,,27.016667,-109.033333 es,conselo,Conselo,58,,42.673305,-8.565532 uz,tamshosh,Tamshosh,12,,38.8925,67.7094444 by,chudzin,Chudzin,06,,52.7333333,26.9833333 ci,lafopokaha,Lafopokaha,87,,9.597283,-5.067638 id,pegusten,Pegusten,07,,-6.9109,109.1066 cn,caotou,Caotou,03,,28.690882,114.165496 ru,pilzamo,Pilzamo,28,,65.037567,31.941465 cn,chendanjia,Chendanjia,26,,34.665833,108.219722 la,ban nam kham,Ban Nam Kham,10,,16.333333,105.2 ru,lyubimova,Lyubimova,53,,56.716667,76.566667 cn,wanshou,Wanshou,18,,28.455556,107.165278 lt,maziavos,Maziavos,63,,55.8833333,21.6666667 gn,mantessa,Mantessa,02,,10.4833333,-14.4833333 mz,chefe mucumbuza,Chefe Mucumbuza,04,,-26.645,32.5263889 ph,tiguib,Tiguib,58,,12.883333,123.766667 tr,eyercili,Eyercili,55,,41.235,36.573889 ne,kolga,Kolga,04,,13.4,7.4166667 tr,karamcak,Karamcak,37,,41.3,33.416667 ru,martynovka,Martynovka,55,,53.633333,53.2 kr,witchumak,Witchumak,14,,36.2519,128.3084 th,ban khao muang,Ban Khao Muang,58,,10.2,99.133333 af,muytu,Muytu,08,,33.205162,67.051206 br,sitio nivaldo f. dos santos,Sítio Nivaldo F. dos Santos,18,,-25.9667,-49.1558 ru,myasnikovan,Myasnikovan,61,,47.305464,39.7676 in,champapura,Champapura,24,,26.9754,75.6347 au,woolshed,Woolshed,07,,-36.316667,146.633333 es,venta vieja de san anton,Venta Vieja de San Antón,29,,40.473092,-3.94222 pl,huta partacka,Huta Partacka,78,,51.952345,20.392784 mm,nawngyang,Nawngyang,11,,20.7166667,97.8166667 mg,antsakoamirainty,Antsakoamirainty,03,,-15.3333333,47.8666667 cn,aerwasi,Aerwasi,06,,35.782061,102.594457 ro,zuvelcati,Zuvelcati,42,,44.466667,24.766667 jm,friendship,Friendship,08,,18.0333333,-76.7666667 ee,ubja asundus,Ubja Asundus,08,,59.4122222,26.4272222 hr,curzola,Curzola,03,,42.9622222,17.1369444 af,sirikhar,Sirikhar,23,,32.038461,65.461023 zm,mwambulo,Mwambulo,06,,-14.4333333,31.1166667 mm,danok,Danôk,17,,16.6158333,96.2319444 cn,fengshanping,Fengshanping,07,,26.275234,117.775305 br,mariri,Mariri,30,,-7.883333,-38.133333 ru,verkhnyaya gorbulina,Verkhnyaya Gorbulina,41,,51.7285,35.8256 bg,ermenluy,Ermenluy,46,,43.6833333,24.95 fi,tavastila,Tavastila,13,,60.566667,26.966667 ml,kogolikoro,Kogolikoro,07,,11.7,-6.5333333 cz,lnarsky malkov,Lnarsky Malkov,79,,49.392454,13.774258 nz,pikiariki,Pikiariki,G2,,-39.266667,175.216667 co,vega grande,Vega Grande,21,,8.048056,-73.113333 pl,pierog,Pierog,78,,52.160657,22.090315 ru,beloglinskoye,Beloglinskoye,22,,43.457818,44.213822 gr,pera kapsi,Péra Kápsi,30,,38.9166667,21.9166667 pk,mitho thari,Mitho Thari,05,,28.244965,68.577795 de,huben,Huben,02,,47.7,12.283333 ir,hervi,Hervi,13,,35.1187,46.2414 uz,karadavan,Karadavan,03,,40.0005556,71.8013889 es,aris,Arís,58,,42.454829,-8.686202 id,pandu,Pandu,10,,-7.853889,110.111667 fr,haselbourg,Haselbourg,B2,,48.683005,7.202196 ua,ostobuz,Ostobuz,15,,50.366667,23.883333 af,mirzayan,Mirzayan,28,,32.630254,66.765183 so,taleh,Taleh,11,,9.15,48.4333333 id,terosan,Terosan,08,,-7.0077,113.0421 id,gang jering,Gang Jering,26,,3.52965,98.96462 ca,sheraton,Sheraton,02,,54.166667,-125.483333 tr,duzmese,Duzmese,76,,37.602222,41.435833 bb,retreat,Retreat,07,,13.3166667,-59.6166667 es,san luis de sabinillas,San Luis de Sabinillas,51,,36.367764,-5.225939 ru,varlamkiny,Varlamkiny,32,,60.816667,71.5 br,marcos-de-honorato,Marcos-de-Honorato,14,,-10.283333,-60.516667 id,wates satu,Wates Satu,07,,-7.2425,110.539444 cn,langching,Langching,24,,35.443056,112.796111 bo,torrecillas,Torrecillas,08,,-18.4666667,-64.3333333 ne,yorez koyra,Yorez Koyra,05,,13.6166667,1.8666667 ve,las planadas,Las Planadas,15,,10.5166667,-66.5083333 cz,poust',Poust',81,,50.302704,12.680629 ga,massandze,Massandzé,04,,-1.7666667,11.8166667 ru,vanakula,Vanaküla,42,,59.513804,28.184677 cn,aydingkol,Aydingköl,13,,42.846389,89.027222 id,utansalak,Utansalak,30,,-6.216667,107.119444 ly,nadbas,Nadbas,62,,31.9516667,11.995 de,oberkemmerich,Oberkemmerich,07,,51.066667,7.416667 lb,al ghaziyah,Al Ghaziyah,02,,33.5177778,35.3697222 us,west dixie bend,West Dixie Bend,FL,,26.3155556,-80.2016667 bg,khitrevtsi,Khitrevtsi,46,,42.8833333,25.4666667 sl,kunuyema,Kunuyema,01,,8.2166667,-10.6 td,am haraze,Am Harazé,12,,13.3166667,20.95 lt,suketeliai,Suketeliai,57,,55.0166667,23.45 id,mageboka,Mageboka,18,,-8.502449,121.647088 it,succiso inferiore,Succiso Inferiore,05,,44.366667,10.183333 ro,mamaia,Mamaia,14,,44.233333,28.616667 de,nordweil,Nordweil,01,,48.183333,7.816667 cn,sijitong,Sijitong,08,,44.061389,129.003889 my,kampong bukit banjar,Kampong Bukit Banjar,01,,2.25,102.5591 kz,zhanzhal,Zhanzhal,07,,49.677222,49.399444 ro,tarnava,Tarnava,35,,44.139444,25.568333 us,highland heights,Highland Heights,KY,,39.0330556,-84.4519444 tj,verkhniy khorog,Verkhniy Khorog,01,,37.5,71.5833333 sd,abu shandi,Abu Shandi,27,,11.35,34.7 mm,babudaung,Babudaung,01,,20.3333333,93.2666667 no,holo,Holo,04,,60.666667,8.55 ir,hasan ajan,Hasan Ajan,04,,30.7307,61.3237 hr,krusevica,Krusevica,02,,45.0775,18.4827778 ph,kasili,Kasili,29,,17.666667,120.383333 gh,obimpeobyie,Obimpeobyie,02,,6.8333333,-1.8666667 ir,khiaban,Khiaban,42,,34.7386,60.58 my,kampong sungai nibong,Kampong Sungai Nibong,12,,3.6062,101.0641 id,teladan,Teladan,34,,.471,121.9308 lr,victor marshall,Victor Marshall,09,,6.85,-8.8166667 kz,qasqabulaq,Qasqabulaq,15,,49.558889,79.884722 mx,la cuevita,La Cuevita,11,,20.3375,-100.578056 ru,dorozhnyy,Dorozhnyy,59,,44.58,135.1385 pk,kot moti ram,Kot Moti Ram,04,,30.333333,73.283333 tr,alveren,Alveren,19,,40.566596,35.218246 by,kozielszczyzna,Kozielszczyzna,06,,54.1333333,26.6 ru,chertishchevo,Chertishchevo,88,,57.616667,39.883333 pk,muhammad garhi,Muhammad Garhi,03,,34.353247,72.61308 bd,jalial,Jalial,80,,22.8166667,91.0833333 al,gure-lura,Gurë-Lura,41,,41.7580556,20.2241667 ru,ust-tandovka,Ust-Tandovka,53,,55.007954,78.082399 et,calladu,Calladu,52,,9.383333,40.833333 kr,oriul,Oriul,17,,36.3399,126.8047 id,cot abeuk,Cot Abeuk,01,,5.861944,95.346111 ng,mangel,Mangel,26,,7.016667,8.933333 br,vila ferreira,Vila Ferreira,27,,-22.551389,-47.410833 in,firozpur,Firozpur,23,102138,30.916667,74.6 ir,idahlu-ye khan,Idahlu-ye Khan,33,,37.4154,46.6509 mg,akondrotarana,Akondrotarana,02,,-20.5833333,47.55 so,waamo,Waamo,08,,-1.05,41.3666667 th,ban nong krathum,Ban Nong Krathum,32,,15.283333,100.233333 ro,susanii de jos,Susanii de Jos,29,,44.583333,24.1 br,waldheim,Waldheim,26,,-26.9385,-49.8428 ir,tavandasht-e bala,Tavandasht-e Bala,34,,33.7299,49.0635 cn,pangshan,Pangshan,03,,27.328476,115.643227 mx,tlanchinol,Tlanchinol,13,4180,20.983333,-98.65 ir,qal`eh barus,Qal`eh Barus,07,,28.8631,53.1388 ir,nahr-e ashur,Nahr-e Ashur,15,,30.705,48.64 us,quartz mountain,Quartz Mountain,OR,,42.3225000,-120.8144444 ru,osetrovyy,Osetrovyy,20,,56.783333,105.783333 vn,phuoc an,Phuoc An,07,,12.6,108.4 tr,yitirmez,Yitirmez,69,,40.453486,39.675007 fr,meyzieu,Meyzieu,B9,28198,45.770489,5.00007 id,banjuadjuh,Banjuadjuh,08,,-7.161389,112.718889 az,ketalparag,Ketalparag,11,,40.291111,47.116944 tr,guvenc,Güvenç,81,,37.233333,35.083333 ng,owere,Owere,16,,6.994507,3.316822 de,wiese,Wiese,07,,50.7,7.233333 ru,sitnikov,Sitnikov,84,,49.35,45.883333 ua,ostra,Ostra,03,,48.319073,25.644508 cn,quanfeng,Quanfeng,03,,29.128791,114.07014 ge,khabiu,Khabiu,02,,43.1980556,40.7794444 cn,gaohui,Gaohui,07,,25.361944,117.761111 ph,bayugan,Bayugan,37,,10.6,125.083333 ua,rosowka,Rosowka,26,,47.384842,37.067922 my,kampong paya semambu,Kampong Paya Semambu,02,,5.231725,100.561371 cn,bamaochong,Bamaochong,11,,27.0325,111.748611 bd,laksam,Laksam,85,,23.2472222,91.1425 ba,osmanovici,Osmanovici,01,,44.6025,16.6811111 gb,fosbury,Fosbury,P8,,51.316667,-1.533333 sk,vysne remety,Vysne Remety,03,,48.8333333,22.1666667 pk,goth jaindo rajpar,Goth Jaindo Rajpar,05,,27.067636,68.41365 ru,chekhovo,Chekhovo,77,,57.2948,36.6182 id,sawangbaku,Sawangbaku,01,,3.4064,97.0813 pl,gardejki,Gardejki,85,,53.426623,20.182791 lk,palakkulama,Palakkulama,32,,7.5666667,79.8166667 cn,xiaosu,Xiaosu,30,,20.489306,110.483806 my,kampung kuala kerling,Kampung Kuala Kerling,12,,3.476406,101.55507 pk,manan baba kalle,Manan Baba Kalle,03,,34.36962,71.652411 kr,mokchae,Mokchae,13,,37.466111,127.763333 tw,nanchentsun,Nanchentsun,04,,23.9,120.55 af,bebanak,Bebanak,39,,32.615143,65.356976 gt,los fierros,Los Fierros,11,,14.083333,-89.85 iq,dhalif,Dhalif,03,,31.2666667,45.6166667 ma,ouled abdellah,Ouled Abdellah,47,,32.535438,-7.832427 id,barukan satu,Barukan Satu,07,,-7.357778,110.539722 ne,baoussay,Baoussay,09,,13.3977778,2.62 ru,brykovo,Brykovo,77,,56.494326,35.966967 cd,aziko,Aziko,00,,2.816667,30.683333 tr,kozlukadi,Kozlukadi,85,,41.13486,31.853316 mn,urtuin sume,Urtuin Sume,17,,46.1166667,115.55 pt,prime,Prime,22,,40.636347,-7.83773 de,krogelhof,Krögelhof,02,,50.05,11.066667 pk,tibbi charoyawala,Tibbi Charoyawala,04,,30.828012,70.930686 ua,bursukeu khlichne,Bursukeu Khlichne,03,,48.133333,25.916667 cn,nantaisi,Nantaisi,07,,28.060384,118.441667 id,kesambi,Kesambi,30,,-6.081667,106.253333 ir,safar mahalleh-ye pa'in,Safar Mahalleh-ye Pa'in,08,,37.640278,49.072778 cz,josefov,Josefov,82,,50.339052,15.930164 ba,kopijevici,Kopijevici,01,,44.4286111,18.5941667 cn,yanbanxi,Yanbanxi,11,,29.410068,109.611552 af,putakay-e `ulya,Putakay-e `Ulya,23,,31.390579,66.125904 it,nuovomondo,Nuovomondo,13,,40.129167,17.995833 et,roco,Roco,51,,7.533333,41.866667 ng,adabu,Adabu,26,,8.416667,8.733333 cn,yujiaolin,Yujiaolin,30,,23.657778,116.263056 br,fluviopolis,Fluviópolis,18,,-26.016667,-50.616667 tz,malijoni,Malijoni,14,,-11.2333333,36.2166667 af,kalayi-khazarakha,Kalayi-Khazarakha,40,,34.967571,69.293312 af,dewal kelay,Dewal Kelay,23,,31.550371,64.936197 at,frauenwart,Frauenwart,03,,48.183333,16.116667 ni,santa barbara,Santa Bárbara,03,,12.6666667,-87.0833333 cn,huachienyufang,Huachienyüfang,19,,39.968611,124.229444 ua,budamare,BudaMare,03,,48.147932,26.097297 es,pozo lobo,Pozo Lobo,51,,37.931951,-3.157097 ro,corciovenii,Corciovenii,38,,46.066667,27.35 bg,monevtsu,Monevtsu,46,,42.8833333,25.3333333 td,bengada,Bengada,11,,8.2166667,17.45 la,phialouang,Phialouang,14,,18.9,103.2 kr,urunggol,Urunggol,06,,37.1194,128.5899 md,buciusca,Buciusca,83,,47.638889,28.986944 my,kampung permatang manggis,Kampung Permatang Manggis,09,,5.513852,100.418232 pg,poanus,Poanus,17,,-6.0666667,149.8833333 ru,lgovo,Lgovo,83,,55.616667,41.15 lr,bunabo,Bunabo,05,,8.0461111,-10.5066667 cn,kuchiachai,Kuchiachai,04,,31.588333,121.217778 ru,tsentralnyy,Tsentralnyy,33,,59.051944,50.2775 cd,lisuma-moke,Lisuma-Moke,09,,-.383333,24.183333 id,mosolo,Mosolo,22,,-4.2108,123.1633 ga,inzombo,Inzombo,07,,-1.0666667,11.95 pg,kofoi,Kofoi,06,,-6.8,141.2666667 us,warren,Warren,ME,,44.1202778,-69.2405556 ba,cive,Cive,01,,44.4816667,18.7688889 sl,koidu,Koidu,01,111090,8.4166667,-10.8333333 ir,pahneh kola,Pahneh Kola,35,,36.454464,53.0743 ge,imeni kirova,Imeni Kirova,40,,41.9,41.9 ru,omoroi,Omoroi,93,,52.966667,118.966667 bd,bara sandwip,Bara Sandwip,81,,23.2666667,90.2833333 co,el penol,El Peñol,02,,6.888611,-75.511667 ir,gezfi,Gezfi,05,,30.658889,51.246389 ng,unguwar turai,Unguwar Turai,23,,10.708766,8.610673 cd,kabingandu,Kabingandu,05,,-10.383333,28.25 id,medari,Medari,07,,-7.263056,110.072222 us,holman,Holman,MN,,47.3100000,-93.3713889 by,rayevskiy,Rayëvskiy,02,,51.9833333,29.2666667 ma,al aterma,Al Aterma,58,,34.13,-4.63 th,ban kong,Ban Kong,04,,19.066667,100.8 ru,selikhnovo,Selikhnovo,60,,57.04293,28.809153 zr,muzibeli,Muzibeli,00,,3.1166667,27.5333333 rs,berovica,Berovica,00,,43.031389,22.581667 us,westbend,Westbend,KY,,37.9058333,-83.9691667 cn,gumiaohe,Gumiaohe,12,,30.655426,115.491628 kp,yuhyon,Yuhyon,09,,38.5711111,126.9813889 mz,jossane,Jossane,09,,-15.9733333,36.0769444 ir,simin darreh,Simin Darreh,16,,34.9571,47.0359 id,tanjunglaksana,Tanjunglaksana,30,,-6.926667,107.589167 mx,eknakan,Eknakán,31,,20.75,-89.375 co,marco fidel suarez,Marco Fidel Súarez,26,,5.816111,-73.641111 kr,ttaeto,Ttaeto,06,,37.1493,129.2257 ir,qal`eh-i-guri,Qal`eh-i-Guri,29,,29.416667,57.566667 tr,karakova,Karakova,20,,37.854207,29.102054 tr,ardiclioren banisi,Ardiclioren Banisi,31,,36.730109,36.520506 id,pasirbatu hilir,Pasirbatu Hilir,30,,-6.793056,107.140278 ro,beresti-sat,Beresti-Sat,18,4352,46.1,27.883333 cn,yangfangkou zhen,Yangfangkou Zhen,24,,39.10071,112.330587 ru,razdel,Razdel,10,,52.808963,33.381676 cn,bagu,Bagu,32,,28.008179,103.378756 om,rijla,Rijla,02,,23.4066667,57.1708333 de,kleinetzenberg,Kleinetzenberg,02,,49.05,11.9 pt,santa petronilha,Santa Petronilha,14,,38.865205,-9.19376 mg,ankazoabokely,Ankazoabokely,06,,-21.3833333,44.6833333 bd,bhatulia,Bhatulia,81,,23.9,90.3833333 cf,bogoin,Bogoin,17,,4.8333333,18.15 la,ban phoun luei kon tao,Ban Phoun Luei Kon Tao,10,,16.383333,106.516667 ru,chinominoji,Chinominoji,JA,,44.266667,146.183333 us,chesterton,Chesterton,IN,11563,41.6105556,-87.0641667 ir,liafu doldim,Liafu Doldim,08,,37.0622,49.734177 br,luz,Luz,16,,-8.7,-49.616667 se,rydobruk,Rydöbruk,06,,56.95,13.15 id,bajurbenda,Bajurbenda,30,,-6.133333,106.598056 pe,casahuasi,Casahuasi,15,,-12.7166667,-75.7666667 zr,kikwatshi,Kikwatshi,02,,-5.4158333,18.9266667 cn,shangrenli xiang,Shangrenli Xiang,11,,25.893056,111.643056 pk,jhok mir buzdar,Jhok Mir Buzdar,04,,31.085,70.709167 kr,taltongne,Taltongne,14,,36.8449,129.4296 us,country club subdivision,Country Club Subdivision,MS,,33.4233333,-88.8063889 cd,nzashi-muari,Nzashi-Muari,00,,-7.566667,17.316667 cn,jenhochi,Jenhochi,25,,36.886667,122.290278 mm,amaw,Amaw,01,,18.8333333,94.0833333 cz,kalwitz,Kalwitz,83,,50.557258,14.405096 ar,carabelas,Carabelas,01,,-34.035847,-60.867111 in,bulaqiwala,Bulaqiwala,39,,30.468611,77.805 mx,las trojes,Las Trojes,16,,19.094722,-101.834722 pg,bore,Bore,01,,-9.8833333,147.7666667 lk,uvayadikulam,Uvayadikulam,31,,8.7166667,80.1666667 ua,mokvin,Mokvin,19,,50.958275,26.804374 fr,echenoz-la-meline,Échenoz-la-Méline,A6,,47.600864,6.13544 pe,lachaca,Lachaca,04,,-15.7886111,-72.8883333 ua,lyubarskaya guta,Lyubarskaya Guta,27,,50.360056,27.90936 la,ban houaychiam,Ban Houaychiam,17,,20.015556,102.317778 bf,toesse,Toëssé,18,,11.8166667,-0.3166667 ng,tungan-maigadambo,Tungan-Maigadambo,40,,11.525509,4.862862 ua,sariya,Sariya,17,,46.266667,30.15 id,barak kulon,Barak Kulon,07,,-7.818889,111.205 ao,nova ideia,Nova Ideia,15,,-7.053841,15.843935 cr,pita,Pita,08,,9.862782,-84.416985 kp,unhunghi,Unhunghi,11,,39.8816667,125.4933333 ci,pona,Pona,78,,7.08968,-7.435479 pk,khanor,Khanor,05,,24.871572,69.527737 ie,coachford,Coachford,04,,51.9,-8.7833333 de,aulendiebach,Aulendiebach,05,,50.316667,9.066667 ci,souloumana,Souloumana,91,,8.02068,-6.390659 sy,zaki as saghir,Zaki as Saghir,01,,36.6444444,41.4222222 mm,bumtum,Bumtum,04,,25.35,97.9666667 th,ban trai,Ban Trai,68,,6.525944,100.968417 ru,varshipelda,Varshipelda,28,,62.45,37 ir,sar-i-pul zuhab,Sar-i-Pul Zuhab,13,,34.461092,45.862644 ml,samana,Samana,00,,14.5666667,-7.3833333 fr,vicq,Vicq,A3,,46.638853,1.959909 ir,katiran-e pa'in,Katiran-e Pa'in,34,,33.9396,49.2226 cn,erdaohe,Erdaohe,19,,40.074389,122.13471 ro,besineu,Besineu,01,,46.1,23.816667 kr,tanguri,Tanguri,13,,37.328333,127.679167 ro,miclosanii mici,Miclosanii Mici,42,,45.15,25.233333 in,tonk,Tonk,24,151341,26.166667,75.783333 cn,chaomen,Chaomen,12,,31.957546,112.602264 ci,ncho,Ncho,82,,5.662763,-3.724719 id,cisangkir kidul,Cisangkir Kidul,30,,-7.3664,108.2616 kr,soraeul,Soraeul,13,,37.1205,127.6041 id,presean,Presean,08,,-8.1638,113.7952 ec,hacienda chuguin chico,Hacienda Chuguín Chico,04,,-2.5833333,-79.8166667 cn,chujiapo,Chujiapo,32,,32.195886,106.157905 mx,guillermo prieto,Guillermo Prieto,10,,24.87,-105.006944 cn,qianliutun,Qianliutun,19,,39.558004,122.20045 my,kampung ayer kelubi,Kampung Ayer Kelubi,05,,2.5432,102.3764 pl,wierzbno,Wierzbno,78,,52.070726,21.084077 sm,citta di san marino,Città di San Marino,07,,43.9333333,12.45 cu,cacahual,Cacahual,07,,21.9833333,-78.6333333 us,columbus,Columbus,NV,,38.1102778,-118.0183333 gb,holme,Holme,C9,,54.183333,-2.716667 ru,bolshaya puza,Bolshaya Puza,51,,54.790942,44.771297 tg,langabou,Langabou,16,,8.1166667,1.1333333 la,ban vongxay noy,Ban Vôngxay Noy,01,,14.533333,107.116667 pk,goth sawan machhi,Goth Sawan Machhi,05,,24.930596,69.278969 ne,tchitchiga,Tchitchiga,07,,13.7333333,10.0 by,golyashi,Golyashi,07,,54.6333333,30.5833333 ve,borgasu,Borgasu,03,,7.95,-67.5666667 cn,warzhong,Warzhong,32,,28.166667,100.866667 cn,duxi,Duxi,03,,29.731944,116.421559 id,kampoeng maladjoe,Kampoeng Maladjoe,17,,-8.316667,118.4 lv,petrovka,Petrovka,03,,56.9,27.2666667 ru,malaya sosnovka,Malaya Sosnovka,45,,56.071667,48.681389 sy,assane,Assane,09,,36.0833333,37.2333333 pk,lohma,Lohma,02,,29.917791,69.621338 ir,deh now,Deh Now,29,,30.983183,55.589317 th,ban lao mak chan,Ban Lao Mak Chan,76,,16.919611,103.042361 ru,emilin,Emilin,15,,66.983333,-172.283333 us,cinnamon creek,Cinnamon Creek,VA,,38.9438889,-77.2791667 la,ban thanak,Ban Thanak,21,,18.093333,102.7525 vn,ham anh,Ham Anh,26,,18.5,105.85 cn,zhongbu zhen,Zhongbu Zhen,03,,28.846188,117.296329 cn,chashanxia,Chashanxia,02,,28.907711,119.572515 ve,palito arriba,Palito Arriba,05,,8.5530556,-69.4941667 la,trieng,Trieng,01,,15.333333,107.15 ma,douar louhadna,Douar Louhadna,58,,34.305574,-5.401508 so,dhariigada,Dhariigada,01,,4.2333333,43.9166667 cu,sabada,Sabada,11,,22.85,-82.0 mx,arboles,Árboles,11,,20.983333,-100.65 ng,mahazu,Mahazu,24,,11.409494,7.036328 nl,terpoorten,Terpoorten,05,,50.771664,5.919964 ru,kravopuskovo,Kravopuskovo,37,,58.826134,42.445076 fr,anjou,Anjou,B9,,45.348318,4.886347 mx,san telmo,San Telmo,02,,30.966667,-116.1 fr,"fleury ""bouches de l'aude","Fleury ""Bouches de l'Aude",A9,,43.229374,3.13576 th,ban nong hoi,Ban Nong Hoi,17,,17.874417,103.181667 es,villamor de cadozos,Villamor de Cadozos,55,,41.317629,-6.111756 ru,yekimovskoye,Yekimovskoye,85,,59.177115,38.464792 tr,camiyani,Camiyani,89,,41.173439,32.317416 hu,kekestanya,Kékestanya,10,,47.216667,21.75 lt,kyary,Kyary,59,,54.95,23.2833333 vn,dam rai,Dàm Rai,67,,9.655833,106.279722 id,karanglaban,Karanglaban,07,,-7.484167,109.112222 cn,dongzitian,Dongzitian,30,,22.338853,111.646288 ro,dumitresti-duca,Dumitresti-Duca,23,,47.033333,27.766667 ro,budesti,Budesti,39,5362,45.05,24.383333 tz,chumbuni village,Chumbuni Village,25,,-6.15,39.2166667 cn,tayingtzu,Tayingtzu,01,,33.4,117.883333 vn,lai xa,Lai Xa,04,,17.233333,106.733333 th,ban kam,Ban Kam,26,,15.5,101.8 af,deh-e pi,Deh-e Pi,35,,34.61908,70.230194 af,aq gozar,Aq Gozar,07,,36.781611,64.968078 us,edgewood garden,Edgewood Garden,NY,,43.0869444,-76.2688889 co,kutamahana,Kutamahana,17,,11.765278,-72.309722 in,gadhia,Gadhia,09,,21.216667,71.133333 se,alntorp,Alntorp,15,,59.516667,15.083333 lt,margalovka,Margalovka,59,,54.3833333,23.6833333 us,chapelville,Chapelville,MS,,34.4400000,-88.5908333 de,niederweier,Niederweier,01,,48.85,8.3 sd,ngwenak,Ngwenak,37,,6.5038889,31.2030556 us,conconully,Conconully,WA,,48.5575000,-119.7486111 id,sempurbajeg,Sempurbajeg,30,,-6.967222,107.411389 bg,golyamo duvandzhii,Golyamo Duvandzhii,43,,42.3666667,25.8666667 vn,bac nhung,Bac Nhung,17,,22.033333,105.15 mn,sain shanda,Sain Shanda,07,,44.8666667,110.15 us,winter beach,Winter Beach,FL,,27.7188889,-80.4208333 ua,butin,Butin,22,,49.884355,25.678431 id,sajati,Sajati,36,,-2.283333,136.583333 es,ribera de cardos,Ribera de Cardós,56,,42.564026,1.224981 us,roy,Roy,ID,,42.3638889,-112.8302778 ro,gura zlatareasa,Gura Zlatareasa,38,,46.366667,27.216667 pk,nawazuddin ki dhok,Nawazuddin ki Dhok,03,,33.496723,71.852681 ph,cobungan-an,Cobungan-an,55,,11.654,124.7896 cn,fenshih,Fenshih,11,,25.322778,112.695833 bg,golyama ribnya,Golyama Ribnya,46,,42.8833333,24.7166667 id,sosorparimanangan,Sosorparimanangan,26,,2.5367,99.0959 ht,nan abbe,Nan Abbé,13,,18.2666667,-72.0 lt,miknonys,Miknonys,59,,54.5166667,23.6666667 iq,nahiyah kalak,Nahiyah Kalak,11,,36.27,43.6355556 mx,santa maria batha,Santa María Bathá,13,,20.233333,-99.25 mm,kha-in,Kha-in,02,,20.8833333,93.2166667 mr,bogue dow,Bogué Dow,05,,16.6,-14.2666667 ru,marenki,Marenki,60,,58.0934,28.229 co,hacienda amaya,Hacienda Amaya,12,,9.393425,-75.77131 ir,sardvan,Sardvan,42,,33.365426,59.726483 zr,nemba,Nemba,07,,-3.4155556,28.57 it,tomaini,Tomaini,03,,39.05,16.316667 ao,cassumba camabaia,Cassumba Camabaia,05,,-8.497715,14.642254 az,ulcalar,Ülcälär,24,,39.808063,48.087101 ao,cassoco,Cassoco,08,,-12.881667,15.523611 pk,chak number eighteen,Chak Number Eighteen,04,,31.617222,74.090278 cn,yelingjiao,Yelingjiao,02,,28.532196,119.720652 bd,dali gangail,Dali Gangail,81,,23.8833333,90.1833333 ru,novoye aksenovo,Novoye Aksënovo,47,,55.183333,39.316667 cn,mengjiayuanzi,Mengjiayuanzi,26,,33.245401,106.532231 bd,palaspol,Palaspol,82,,22.7166667,89.0833333 ph,catuguing,Catuguing,28,,18.15,120.6 ao,c. borges,C. Borges,08,,-12.183333,15.116667 fr,saint-crespin-sur-moine,Saint-Crespin-sur-Moine,B5,,47.099681,-1.186506 ru,syshchikova,Syshchikova,54,,56.975379,75.121789 ir,booki,Booki,41,,32.957099,58.936835 cn,lugang,Lugang,01,,31.272773,118.337141 us,bon ami,Bon Ami,FL,,30.1144444,-84.9872222 kr,suri,Suri,06,,38.036667,128.594167 id,kavetan,Kavetan,21,,-.4186,121.8375 ht,mare bete,Mare Bête,06,,19.3166667,-72.4666667 ma,agdal oumerzgoum,Agdal Oumerzgoum,55,,29.91,-9.61 ru,rodionovskaya pervaya,Rodionovskaya Pervaya,80,,58.316667,53.566667 la,ban tang-alai-phoamang,Ban Tang-Alai-Phoamang,10,,16.316667,106.516667 cu,santa ana,Santa Ana,09,,20.4666667,-76.5 de,raumbach,Raumbach,08,,49.716667,7.65 ua,dalniy beykush,Dalniy Beykush,16,,46.654273,31.512274 tw,jenhua,Jenhua,04,,23.9666667,121.5833333 uy,sauce del yi,Sauce del Yi,07,,-33.4666667,-55.6166667 ee,walk,Walk,19,,57.7744444,26.0452778 pa,calidonia,Calidonia,08,,8.9666667,-79.55 af,qategha,Qategha,08,,33.742578,67.422101 my,rumah manggoi,Rumah Manggoi,11,,1.6,111.4 af,khvahan,Khvahan,01,,37.889653,70.218753 ru,potapovo,Potapovo,20,,57.366667,107.533333 cn,choucun,Choucun,03,,24.721766,114.441134 us,kingdom city,Kingdom City,MO,,38.9527778,-91.9388889 id,gereneng,Gereneng,17,,-8.6874,116.5118 gr,alchak,Alchák,06,,41.1011111,22.4755556 pk,mankwali,Mankwali,04,,29.598523,71.142582 ir,khalilan-e `olya,Khalilan-e `Olya,23,,33.5458,48.7459 ir,chah-e rajab`ali-ye barbari,Chah-e Rajab`ali-ye Barbari,42,,35.199722,60.900278 ir,`aliabad-e qarah gowl,`Aliabad-e Qarah Gowl,01,,36.8438,46.1023 in,mukandpura,Mukandpura,10,,28.046667,76.004444 ng,haw,Haw,27,,10.595903,13.21806 se,sunnasjo,Sunnasjö,24,,62.65,16.6 fr,vars,Vars,B7,,45.762562,.124781 us,dent acres,Dent Acres,TN,,35.1894444,-85.2047222 cn,pengjiahuawu,Pengjiahuawu,01,,31.183333,116.383333 cn,shujiawu,Shujiawu,01,,29.928602,117.509091 pk,chak 499 tda,Chak 499 TDA,04,,30.686717,71.470645 mm,taulangkawng,Taulangkawng,04,,25.6833333,97.5833333 pl,krowica,Krowica,80,,50.1,23.216667 ru,bolshiye saly,Bolshiye Saly,61,3250,47.391389,39.684722 gb,saint ives,Saint Ives,D6,,50.833333,-1.816667 ru,novoilinovka,Novoilinovka,30,,51.166667,138.633333 us,lithopolis,Lithopolis,OH,,39.8027778,-82.8063889 us,valley stream estates,Valley Stream Estates,MD,,39.1080556,-76.9222222 uz,dekhkanabad,Dekhkanabad,16,,40.7466667,68.6961111 rs,ocrkavlje,Ocrkavlje,00,,43.493056,19.335556 se,stormyrbannan,Stormyrbännan,23,,64.366667,20.2 ir,mazra`eh-ye rostam,Mazra`eh-ye Rostam,04,,30.8135,61.644 ph,cabugnayan,Cabugnayan,36,,16.666667,120.333333 pk,pandori lohar,Pandori Lohar,04,,33.470272,73.331919 sb,tofie,Tofie,00,,-8.5666667,157.35 id,sibalaja,Sibalaja,21,,-1.1395,119.919 mz,tchinda,Tchinda,10,,-19.7480556,33.4091667 ru,gubka,Gubka,77,,57.060077,35.40414 km,dzaheni,Dzaheni,02,,-11.5825,43.3625 vn,ham la,Ham La,26,,18.55,105.466667 mx,batopilillas,Batopilillas,07,,27.883333,-108.433333 cn,jingkou xiang,Jingkou Xiang,03,,28.651479,116.160571 ru,artsibashevka,Artsibashëvka,41,,51.8172,37.6692 ir,aq bulaq,Aq Bulaq,13,,34.7359,47.6819 pa,san san drui,San San Drui,01,,9.45,-82.6666667 ng,tsakuwa,Tsakuwa,29,,12.210465,8.629742 eg,aulad rayiq,Aûlad Râyiq,17,,27.2297222,31.0486111 am,aznvadzor,Aznvadzor,06,,40.8769444,44.4169444 pg,kurea,Kurea,06,,-7.8833333,143.2666667 cn,shanong,Shanong,29,,24.648094,102.059532 gh,boasi,Boasi,09,,5.45,-2.6833333 pl,teratyn,Teratyn,75,,50.900357,23.753907 gh,lachea,Lachea,06,,10.1333333,-1.1333333 cn,gongzhuang zhen,Gongzhuang Zhen,30,,23.552797,114.388368 do,la caja,La Caja,01,,18.75,-70.8333333 kr,kuchongpyongnae,Kuchongpyongnae,13,,37.735833,127.428056 cn,tianjiayan,Tianjiayan,32,,30.760659,104.251435 cn,miyan,Miyan,16,,25.075278,109.797222 se,yttre ultervattnet,Yttre Ultervattnet,23,,64.266667,20.816667 ye,tawr muhammad,Tawr Muhammad,06,,13.1666667,44.3666667 pl,boruszyn,Boruszyn,76,,51.62467,14.962081 pk,nehal khan murree,Nehal Khan Murree,05,,27.003874,68.333183 us,clark landing,Clark Landing,KY,,37.1352778,-86.6022222 lt,pajurio,Pajurio,62,,55.2166667,22.25 ru,gigant,Gigant,10,,53.112632,34.547637 ru,zaimka,Zaimka,39,,58.4,98.033333 do,neiba,Neiba,02,18675,18.4666667,-71.4166667 us,bunkerville,Bunkerville,NV,,36.7730556,-114.1272222 af,yakawulang,Yakawulang,30,,36.009434,67.032221 ru,krutoyar pervyy,Krutoyar Pervyy,67,,52.116667,44.7 ir,tekhsem,Tekhsem,08,,37.171,49.592 us,best,Best,TX,,31.2244444,-101.6208333 ru,narodnyy,Narodnyy,86,,51.582107,41.789394 ru,karkova kemenka,Karkova Kemenka,41,,51.5443,34.5404 mx,la cumbre,La Cumbre,15,,18.9375,-100.1 kh,phumi changkam kraom,Phumi Changkam Kraom,02,,11.8833333,106.3833333 ph,canantacan,Canantacan,67,,12.4995,124.7933 ng,umutonu,Umutonu,36,,6.410122,6.5721 ir,sar meshad,Sar Meshad,07,,29.291214,51.703628 ao,ndalatanda,Ndalatanda,05,,-9.3,14.916667 pl,miescisko,Miescisko,78,,51.460329,21.750887 mm,pebyittaw east,Pèbyittaw East,10,,22.4333333,95.1833333 id,mrico,Mrico,07,,-7.0124,110.9691 ru,svobodnoye,Svobodnoye,70,,44.161944,44.613056 ru,patashevskaya,Patashevskaya,06,,61.979948,41.762277 tr,tufanc,Tufanç,25,,40.031812,41.332088 pt,sao matheus da calheta,São Matheus da Calheta,23,,38.65,-27.266667 mx,los chivos,Los Chivos,26,,29.5,-110.566667 kp,chimyondul,Chimyondul,09,,39.0352778,127.0997222 pl,kolonia wozniki,Kolonia Wozniki,74,,51.6,18.79125 my,kampung mangsa ribut,Kampung Mangsa Ribut,07,,4.4462,100.6333 br,icozeira,Icòzeira,05,,-8.933333,-39.316667 ro,pleskucza,Pleskucza,02,,46.3,22.433333 ir,pit ab,Pit Ab,04,,26.0169,60.1242 pk,kalarkot,Kalarkot,02,,29.0886,67.9824 ma,amsamsa,Amsamsa,47,,31.391056,-7.336832 at,rheindorf,Rheindorf,08,,47.433056,9.65 th,changwat khon kaen,Changwat Khon Kaen,22,,16.446711,102.832999 id,mertajati,Mertajati,21,,-.9867,120.3372 mw,patungo,Patungo,13,,-13.5166667,33.3833333 ru,syzikjarvi,Syzikjärvi,28,,61.804993,37.372699 so,baarrow weyne,Baarrow Weyne,13,,2.8666667,45.5333333 in,minzong,Minzong,30,,27.883333,96.933333 br,lua cheia,Lua Cheia,01,,-10.566667,-68.816667 ph,palaypay,Palaypay,67,,12.5529,124.4476 al,kaluci,Kaluçi,40,,40.5913889,20.105 ng,igana,Igana,32,,7.983333,3.25 in,chhungar,Chhungar,12,,33.963889,74.308333 mx,amoles,Amoles,14,,19.883333,-103.883333 cn,miloukeng,Miloukeng,03,,25.556603,115.951042 pg,mui,Mui,12,,-4.8,144.3166667 cm,mbasse,Mbasse,09,,4.0333333,9.1166667 gn,fofossa,Fofossa,16,,9.8955556,-13.0352778 ua,obryv,Obryv,05,,47.098688,38.185226 ir,tappeh hammam-e pa'in,Tappeh Hammam-e Pa'in,10,,32.6497,47.8059 kr,sugongni,Sugongni,13,,37.424722,127.598611 pl,koluszki,Koluszki,74,13343,51.766667,19.8 de,suderfahrenstedt,Süderfahrenstedt,10,,54.583333,9.583333 cn,hudu,Hudu,07,,24.383333,117.818611 id,kutamaya,Kutamaya,07,,-7.539722,109.006667 ht,cabaret,Cabaret,11,,18.4,-72.6 fr,le petit thons,Le Petit Thons,B2,,47.991721,5.890857 id,pandeyan,Pandeyan,08,,-7.2008,112.1044 dz,mazzer,Mazzer,15,,34.5566667,-1.6102778 id,monmata,Monmata,01,,5.2248,95.2685 mx,la joya del valle,La Joya del Valle,10,,25.183333,-105.966667 ve,tacoima,Tacoima,06,,7.8166667,-63.15 cn,jianxing,Jianxing,32,,31.23855,105.85105 cn,xiaqingling,Xiaqingling,30,,25.238056,113.6425 id,paalduamas,Paalduamas,31,,1.4902,124.8695 mm,mayangwa,Mayangwa,03,,16.5166667,95.5833333 lt,meiliskiai,Meiliskiai,60,,55.4833333,23.5333333 af,khadzhi-aslamkhan,Khadzhi-Aslamkhan,40,,35.072645,68.659272 sn,nderi,Nderi,10,,13.95,-15.8 az,akhtakhana,Akhtakhana,15,,39.105144,48.385402 us,la vista,La Vista,NE,15695,41.1838889,-96.0308333 id,wakul,Wakul,07,,-7.062778,110.251944 it,cevo,Cevo,09,,46.083333,10.366667 mx,el progresso,El Progresso,27,,17.25,-91.266667 us,mason,Mason,TN,,35.4116667,-89.5327778 cf,ngakoulapou,Ngakoulapou,11,,5.7055556,20.5744444 ve,la madre,La Madre,15,,10.3036111,-66.0219444 th,ban surao bang pla,Ban Surao Bang Pla,42,,13.592278,100.729306 so,ceel same,Ceel Same,15,,9.3833333,45.1666667 gr,amarousion,Amaroúsion,35,72310,38.05,23.8 my,taman mangkok,Taman Mangkok,09,,5.363886,100.445856 by,klimovichi,Klimovichi,04,,53.6094444,31.9519444 it,siamanna,Siamanna,14,,39.920556,8.764444 hn,hacienda las palomitas,Hacienda Las Palomitas,02,,13.2555556,-87.2661111 th,trakan phut phon,Trakan Phut Phon,75,,15.611834,105.021472 th,ban kluai,Ban Kluai,53,,13.816667,100.183333 id,kubangbelut,Kubangbelut,33,,-6.8086,105.8928 id,gaga 2,Gaga 2,04,,-6.102222,106.715278 do,el burro,El Burro,20,,19.2833333,-69.6666667 cz,nelepec,Nelepec,78,,49.342146,16.376493 cn,guandimiaozhen,Guandimiaozhen,01,,34.358333,116.383333 pk,taus kili,Taus Kili,02,,30.148723,68.621112 us,gold creek,Gold Creek,GA,,33.9261111,-84.7480556 al,kakoz,Kakoz,45,,40.1647222,20.1530556 pl,ponin,Ponin,86,,52.058006,16.588483 mm,konyin,Kônyin,10,,22.9666667,94.7 es,canas,Cañás,58,,43.233692,-8.325567 za,niekerksvlei,Niekerksvlei,03,,-29.480306,26.426045 in,puncha,Puncha,28,,23.166667,86.65 vn,phuoc dong,Phuoc Dong,24,,10.483333,106.616667 de,sonnenmatt,Sonnenmatt,01,,47.733333,7.933333 th,ban lum takhian,Ban Lum Takhian,47,,12.915556,101.373056 sk,kostany,Kostany,08,,49.0333333,18.9 pl,suchodol,Suchodol,80,,49.662574,21.763536 ml,fousseynibougou,Fousseynibougou,07,,12.6372222,-7.0125 cn,xiemadian,Xiemadian,26,,33,107 us,saint john,Saint John,TN,,36.5944444,-85.3072222 gr,eleon,Eleón,33,656,38.35,23.4833333 ua,akkaya,AkKaya,11,,45.093102,34.621912 lk,seruwawila,Seruwawila,31,,8.3666667,81.3166667 kz,enbekshil'derskiy,Enbekshil'derskiy,16,,52.765,71.508889 id,tamangil noehoejanel,Tamangil noehoejanel,28,,-5.833333,132.883333 uy,rincon de giloca,Rincón de Giloca,18,,-31.8333333,-55.7666667 la,ban tinpha,Ban Tinpha,03,,19.903333,104.075556 id,tjiater,Tjiater,30,,-6.733333,107.648611 ru,novo-nikolayevskoye,Novo-Nikolayevskoye,59,,44.891667,132.091389 ru,amoskovo,Amoskovo,60,,57.579633,28.605657 ir,qobazman,Qobazman,09,,34.131193,48.396415 cn,lilianzhangzi,Lilianzhangzi,19,,40.908296,119.523063 ng,abobo,Abobo,23,,9.8,8.283333 ir,raddeh-ye omm ol qasab,Raddeh-ye Omm ol Qasab,15,,30.3469,48.2039 lk,chalampan,Chalampan,31,,8.8166667,79.9666667 ro,valea vintului,Valea Vintului,01,,46.016667,23.466667 sa,hayy al malik `abd al `aziz,Hayy al Malik `Abd al `Aziz,10,,24.768889,46.698056 me,rascici,Rascici,00,,43.472222,19.049722 ie,gortnakistin,Gortnakistin,16,,52.55,-8.25 tr,gumusgun,Gumusgun,62,,39.02132,39.68073 tr,sinebeli,Sinebeli,57,,41.387829,35.346859 pk,kot brandreth,Kot Brandreth,04,,31.131072,72.668467 ru,azmetyevo,Azmetyevo,73,,55.783563,53.858561 sy,kebered,Kebered,09,,36.55,38.45 ar,ongamira,Ongamira,05,,-30.778159,-64.428064 us,majors,Majors,CA,,36.9825000,-122.1422222 us,marion,Marion,TX,,29.5711111,-98.1400000 tw,lichihmashe,Lichihmashe,04,,24.0833333,121.6 lv,skradali,Skradali,14,,55.95,27.3833333 ru,pogonovo,Pogonovo,86,,51.454183,39.106035 tr,kapikaya koyu,Kapikaya Koyu,26,,40.055746,30.700511 lk,senkara-attimoddai,Senkara-attimoddai,31,,8.9,80.55 ht,terre noire,Terre Noire,06,,19.0333333,-72.7333333 ht,zetrois,Zétrois,08,,18.6166667,-73.7 ru,saitova,Saitova,13,,55.2193,60.3972 cn,namtau,Namtau,30,,22.539662,113.911134 id,sumur satu,Sumur Satu,30,,-6.048611,107.190556 id,gapuk satu,Gapuk Satu,08,,-7.8209,112.7301 co,manzanares,Manzanares,12,,8.205556,-76.085 tr,dortyol,Dörtyol,72,,37.207049,40.470288 ba,zaobljaj,Zaobljaj,01,,44.4119444,16.295 md,hasnasenii mari,Hasnasenii Mari,71,,47.916667,27.990278 id,bengle dua,Bengle Dua,10,,-8.106111,110.621944 vn,ap huong thanh,Ap Huong Thanh,48,,9.818889,105.513889 tg,tamdo,Tamdo,22,,9.1666667,1.0833333 zr,musoni,Musoni,00,,-5.5833333,26.1 vn,ap gia kiet,Ap Gia Kiet,06,,9.966667,106 fr,deville,Déville,A7,,49.469423,1.052144 id,sungailiat,Sungailiat,35,,-1.85,106.133333 cz,chlum,Chlum,87,,49.182874,13.447553 hn,mata de platano,Mata de Plátano,07,,13.7588889,-87.0222222 si,ravne na koroskem,Ravne na Koroskem,09,,46.5430556,14.9691667 ng,ijawkiri,Ijawkiri,50,,4.643823,6.596501 ru,staro-zagorye,Staro-Zagorye,60,,58.425638,28.344589 et,giaguala,Giaguala,46,,12.066667,38.866667 pe,mirador,Mirador,08,,-13.1583333,-72.5313889 cn,xiaojiaqiao,Xiaojiaqiao,02,,28.455278,121.488611 cn,gutan xiang,Gutan Xiang,03,,29.453315,117.680219 uz,naukad,Naukad,10,,40.3166667,66.6166667 fr,conde,Condé,B2,,48.867724,5.167944 se,sidskogen,Sidskogen,03,,61.583333,15.866667 sd,kusgila,Kusgila,26,,9.2,33.9833333 cn,hexiang,Hexiang,31,,19.546856,109.708184 cn,baohua,Baohua,04,,32.14449,119.034436 do,la yautia,La Yautía,31,,18.75,-70.3666667 pk,lal khan mangsi,Lal Khan Mangsi,05,,27.834683,67.828907 sy,harfushiyah,Harfushiyah,06,,35.1722222,37.2027778 mx,san vicente pinas,San Vicente Piñas,20,,16.794444,-98.061667 tr,asagiderince,Asagiderince,49,,39.226006,42.04764 nl,doodenhoek,Doodenhoek,06,,51.65,5.5 hn,jalisco,Jalisco,08,,14.55,-87.3166667 br,alto uruguay,Alto Uruguay,23,,-27.3,-54.133333 ru,aksenovo,Aksënovo,39,,58.933889,101.586667 sv,cinquera,Cinquera,02,,13.8833333,-88.9666667 vn,yen kien,Yên Kiên,86,,21.586839,105.182547 iq,tepe garus,Tepe Garus,05,,35.1452778,45.4122222 br,antonio pinheiro,Antônio Pinheiro,05,,-16.516667,-39.933333 ga,kokobe,Kokobé,01,,-0.0333333,9.35 ru,shirkovo,Shirkovo,69,,54.398999,33.576597 cn,xiaheqing,Xiaheqing,15,,39.566667,98.966667 pl,bolkowo,Bolkowo,87,,53.856884,16.071876 vn,xuan nguyen,Xuan Nguyên,26,,18.983333,105.45 ru,yarono,Yarono,87,,68.133333,69.366667 cn,chingang,Chingang,15,,34.858611,105.668611 ru,bekhteyevka,Bekhteyevka,86,,51.757,38.7782 iq,(( al yahudiyah )),(( Al Yahudiyah )),02,,30.4608333,47.945 tw,laohukou,Laohukou,04,,24.8833333,121.05 id,bajik,Bajik,08,,-7.021,112.7625 ro,tomnatic,Tomnatic,36,,45.987778,20.6575 ve,helechal,Helechal,26,,10.5522222,-66.8916667 th,ban ta sang,Ban Ta Sang,16,,15.95,99.916667 us,starks knob,Starks Knob,NY,,43.1216667,-73.5880556 kp,tongnamiri,Tongnamiri,11,,39.6288889,125.5638889 na,schlip,Schlip,30,,-24.0333333,17.1666667 cn,huanggoudianzicun,Huanggoudianzicun,19,,41.2,125.395833 us,thurston,Thurston,OR,,44.0533333,-122.9152778 pg,honinabi,Honinabi,06,,-6.25,142.1833333 mx,crucero el limon,Crucero El Limón,18,,21.666667,-105.025 mm,hkamti,Hkamti,04,,25.35,96.9 it,dobbiaco,Dobbiaco,17,,46.7425,12.231389 in,bohli,Bohli,10,,29.993611,76.910833 ru,nefedovka,Nefedovka,83,,56.296231,39.719962 se,lillan,Lillån,15,,59.316667,15.216667 cn,changchiachuan,Changchiachuan,15,,34.992222,106.203056 at,innerschwende,Innerschwende,08,,47.367778,10.188056 lk,kudakarahela,Kudakarahela,33,,6.7166667,80.6666667 id,kualasiu,Kualasiu,26,,2.8995,99.3916 cn,wuliqing,Wuliqing,29,,24.048056,102.676118 id,bajur timur,Bajur Timur,08,,-7.0314,112.8737 be,pisserotte,Pisserotte,06,,50.216667,5.783333 cn,shenhu,Shenhu,04,,30.849335,120.510367 ao,cacungulo,Cacungulo,06,,-10.717828,14.981439 tr,haskanli koyu,Haskanli Koyu,90,,36.933333,36.95 mz,silva,Silva,02,,-23.61,33.6516667 cn,dashujie,Dashujie,01,,32.020556,117.938889 ro,potlogeni deal,Potlogeni Deal,16,,44.7,25.25 ro,pacalesti,Pacalesti,05,,46.616667,22.4 ir,qasabeh-ye meyghat,Qasabeh-ye Meyghat,15,,30.496111,48.286389 af,chughdan,Chughdan,30,,36.080883,66.654102 es,rute,Rute,51,10113,37.32617,-4.367592 kz,sovkhoz kiyevskiy,Sovkhoz Kiyevskiy,12,,50.1575,71.446944 pk,bibi derai,Bibi Derai,03,,34.382378,72.519981 cn,liuqiu,Liuqiu,31,,19.689238,110.462235 ph,dagatan,Dagatan,20,,14.187778,120.930556 ga,meben i,Mében I,09,,2.1333333,12.15 ro,plopi,Plopi,21,,45.633333,23 us,fairwood,Fairwood,WA,,47.4486111,-122.1561111 ng,sheratu,Sheratu,56,,8.168056,7.129167 id,ngadujara,Ngadujara,18,,-9.5821,119.5631 kr,dangpyeong,Dangpyeong,05,,37.11,127.7331 it,malga di sesis,Malga di Sesis,20,,46.622778,12.687778 ru,klyuchevaya,Klyuchevaya,38,,44.620556,39.145 cn,panzikeng,Panzikeng,01,,30.530057,118.729213 bi,runyinya,Runyinya,14,,-3.0072222,30.1913889 pl,wolka baltowska,Wolka Baltowska,84,,51.033523,21.527527 pk,qasainwala,Qasainwala,04,,31.729304,71.177819 pt,pacos,Paços,22,,40.704297,-8.135998 br,juriti,Juriti,15,,-21.6,-45.383333 eg,abbasieh,Abbasieh,11,,30.0666667,31.2833333 fi,soso,Soso,08,,64.816667,25.933333 ng,hatta,Hatta,35,,10.048902,12.276453 tr,yenipazar,Yenipazar,09,,37.824193,28.197169 ao,caiove,Caiove,06,,-11.939012,14.808545 ca,shoreacres,Shoreacres,02,,49.433333,-117.533333 pl,zabostow duzy,Zabostow Duzy,74,,52.129046,20.039343 cz,chlum svate mari,Chlum Svate Mari,81,,50.15,12.533989 la,ban thongmeng,Ban Thôngméng,04,,17.583333,105.5 es,vallovil,Vallovil,34,,43.35,-5.166667 it,sant'ilario del ionio,Sant'Ilario del Ionio,03,,38.216667,16.2 ru,ponomarevo,Ponomarëvo,52,,57.127599,31.720012 us,quail creek,Quail Creek,GA,,33.4908333,-82.1305556 id,pondok lima payapinang,Pondok Lima Payapinang,26,,3.2976,99.1994 za,makubu,Makubu,09,,-24.425831,30.219215 de,muden,Müden,06,,52.533333,10.366667 mk,gornja drcevica,Gornja Drcevica,25,,41.3497222,22.1961111 in,nanhipur,Nanhipur,36,,26.9649,79.7269 uz,kuvasay,Kuvasay,03,,40.3022222,71.9744444 us,henery,Henery,CO,,37.3983333,-105.9063889 kr,songyori,Songyori,17,,36.95,126.583333 ru,generalskoye,Generalskoye,67,,51.593611,46.340556 tj,viston,Viston,03,,38.8977778,69.29 in,mangan bazar,Mangan Bazar,29,,27.516667,88.533333 id,redonkrapyak,Redonkrapyak,08,,-8.2456,112.0738 us,bates,Bates,OH,,41.5905556,-83.5783333 tr,sebke,Sebke,24,,39.85,39.966667 ro,tapul,Tapul,33,,46.066667,24.083333 gb,saint martins,Saint Martins,W1,,56.45,-3.383333 id,kihujan,Kihujan,30,,-7.1793,107.3522 in,beju,Beju,11,,31.226111,77.068333 ba,mlive,Mlive,01,,44.0858333,17.5180556 ht,ca martin,Ca Martin,06,,19.6333333,-72.65 sa,al muharraqah,Al Muharraqah,17,,16.533333,42.966667 pt,aldeia,Aldeia,11,,40.847708,-7.128465 pg,borakagere,Borakagere,01,,-9.7833333,147.7166667 th,ban yang thi kayae,Ban Yang Thi Kayae,02,,17.816667,98.15 de,stelzenod,Stelzenöd,02,,48.566667,12.783333 mw,mtsekese,Mtsekese,13,,-13.5333333,33.4166667 dk,hyllested,Hyllested,20,,55.279434,11.448039 ci,timboroni,Timboroni,87,,9.938768,-6.368439 ao,quinamba,Quinamba,06,,-11.616667,15.233333 zm,katitiki,Katitiki,07,,-11.1166667,32.25 cd,kyala,Kyala,05,,-10.664444,25.290278 ru,cheremshanka,Cheremshanka,78,,56.22013,69.404279 cn,liuho,Liuho,04,,31.509722,121.255278 ir,qareh chelan,Qareh Chelan,01,,36.6819,45.742 kr,hwangsaemal,Hwangsaemal,14,,36.01866,129.228015 cn,ketian,Ketian,01,,30.069444,117.330556 cn,quanshuiye,Quanshuiye,19,,41.04125,124.987397 mx,rancho bahia,Rancho Bahia,26,,30.6,-112.983333 td,mailao,Maïlao,04,,11.5830556,15.2813889 bo,unido,Unido,08,,-17.2833333,-58.6166667 fr,hautes sieyes,Hautes Sièyes,B8,,44.1,6.2 mk,leskovo,Leskovo,24,,41.2219444,21.1205556 fr,la couarde,La Couarde,B7,,46.194112,-1.425221 af,jonawa,Jonawa,11,,34.397812,63.424535 pk,aluli,Aluli,03,,34.084722,72.974444 mm,wundwin,Wundwin,08,,21.0833333,96.0333333 ve,las duaras,Las Duaras,14,,9.1444444,-70.9716667 pl,jan dziadek,Jan Dziadek,84,,51.1,20.5 ph,mozon,Mozon,09,,13.852598,120.989345 cn,xiashihe,Xiashihe,10,,40.220833,118.018333 ru,novyye atay,Novyye Atay,16,,55.727371,46.420413 mm,pumlai,Pumlai,04,,25.7333333,97.8166667 cn,hejindong,Hejindong,30,,24.203656,114.124958 mx,cuapilla,Cuapilla,30,,18.283333,-96.233333 bo,estancia sankhata,Estancia Sankhata,04,,-17.5333333,-68.7666667 cd,ito-lenkoi,Ito-Lenkoi,01,,-3.483333,17.633333 ru,zhuravlevna,Zhuravlevna,47,,55.398056,35.522778 us,squankum,Squankum,NJ,,40.1661111,-74.1541667 cn,michiangtun,Michiangtun,05,,42.996111,130.140833 mn,haryaata,Haryaata,17,,46.2166667,112.8 co,chuzo,Chuzo,16,,3.304444,-75.316389 mx,buenos aires,Buenos Aires,06,,28.2,-106.733333 ru,yaminskoye,Yaminskoye,04,,53.083333,85.666667 vn,vinh que,Vinh Que,38,,21.333333,105.4 tz,kasama,Kasama,05,,-4.3333333,29.9666667 ir,cheshmeh seyamaki,Cheshmeh Seyamaki,42,,35.69464,59.698541 ir,mast-e pa'in,Mast-e Pa'in,34,,34.2784,49.2884 ir,moo'ijin,Moo'ijin,09,,34.819722,48.399444 se,nyhyttan,Nyhyttan,03,,60.416667,16.416667 lr,kuma town,Kuma Town,10,,5.5030556,-8.7919444 pl,huciska,Huciska,80,,50.279193,22.300327 us,concord hills,Concord Hills,DE,,39.8338889,-75.5458333 ru,kuzmadenye,Kuzmadenye,21,,56.806098,40.877798 us,green hill,Green Hill,TN,,35.8316667,-85.7955556 sy,bostra,Bostra,06,,32.5166667,36.4833333 ma,douar oulad haddou,Douar Oulad Haddou,54,,34.948558,-3.131551 ru,chernyatka,Chernyatka,10,,52.798276,32.783482 hn,otatala,Otatala,10,,14.35,-87.9 in,ritaur,Ritaur,36,,26.4608,79.1903 eg,al ma`sarah,Al Ma`sarah,11,,29.9,31.2833333 ht,marie therese,Marie Thérèse,13,,18.2333333,-72.8 ua,nesvatkova,Nesvatkova,10,,48.955333,32.158057 ee,sirtsi,Sirtsi,03,,59.2702778,26.9169444 ge,chita-tskhali,Chita-Tskhali,62,,42.4,41.6166667 ir,ahurak,Ahurak,44,,36.2412,50.4856 us,gibson corners,Gibson Corners,NY,,42.0408333,-76.2591667 ro,hategana,Hategana,01,,46.033333,23.45 ru,sittseva,Sittseva,13,,55.7867,59.7329 cn,xiaguandiping,Xiaguandiping,26,,33.269638,106.569226 at,ubelbach markt,Ubelbach Markt,06,,47.216667,15.233333 fi,jarvela,Järvelä,13,,60.65,27.766667 tm,kepekli,Kepekli,03,,41.9,59.4166667 ru,yagodnoye,Yagodnoye,15,,64.65,170.4 dk,koblerne,Koblerne,20,,55.011344,12.41564 pg,orivi,Orivi,01,,-8.2333333,146.8166667 th,ban nong kum,Ban Nong Kum,51,,14.516667,100.15 tr,donali,Donali,63,,36.9525,39.048889 ir,`askarabad,`Askarabad,26,,35.1645,51.7768 au,carboor upper,Carboor Upper,07,,-36.666667,146.533333 kr,kolmoe,Kolmoe,17,,36.2785,126.8774 ru,tsentralnyy,Tsentralnyy,30,,50.542129,137.033825 cd,mwepo,Mwepo,05,,-10.976944,25.515 mx,cochoapa el grande,Cochoapa El Grande,12,,17.2,-98.45 ro,bucium-orlea,Bucium-Orlea,21,,45.583333,22.966667 cn,lidun,Lidun,07,,27.051667,119.281111 mg,sahaniveno,Sahaniveno,04,,-18.6666667,48.9833333 fr,sille-le-guillaume,Sillé-le-Guillaume,B5,,48.182664,-.126417 pk,bagarian dharam chand,Bagarian Dharam Chand,04,,31.422778,74.291111 us,kent timbers,Kent Timbers,MD,,38.8958333,-76.3483333 ua,podzamche,Podzamche,19,,50.065211,25.403393 ba,kljen,Kljen,02,,43.1358333,18.2463889 cn,kuanyintang,Kuanyintang,01,,33.800833,116.009444 br,sumare,Sumaré,18,,-23.033333,-52.45 ua,radynuv,Radynuv,19,,51.542434,26.147237 id,semen lor,Semen Lor,07,,-7.168889,110.885556 ir,rameh dan,Rameh Dan,04,,25.397706,61.466083 mx,metzquititlau,Metzquititlau,13,,20.533333,-98.65 ua,tatarkoy,Tatarkoy,11,,45.780173,34.153871 tr,mesudiye,Mesudiye,16,,40.083333,29.533333 ng,lapar,Lapar,40,,10.371078,4.594141 lb,shawaliq,Shawaliq,06,,33.5538889,35.4377778 lt,alangi,Alangi,62,,55.3,22.2166667 pg,atemble,Atemble,12,,-5.0833333,144.7833333 lk,nettipolagedara,Nettipolagedara,32,,7.5,80.1833333 ru,dareyevichi,Dareyevichi,10,,52.633109,32.586125 tr,hacihidir,Hacihidir,45,,38.716667,28.2 do,guayabo dulce,Guayabo Dulce,29,,18.65,-69.2833333 ir,chehel gaz,Chehel Gaz,32,,38.3072,48.0776 us,whitman,Whitman,NY,,42.1952778,-75.3758333 py,estancia campo leon,Estancia Campo León,16,,-22.566667,-59.5 al,peshkepi e siperme,Peshkëpi e Sipërme,45,,39.9666667,20.3105556 ru,shibkovo,Shibkovo,53,,54.4888,83.2857 id,etipewe,Etipewe,36,,-7.966667,139.383333 id,sitiardjo,Sitiardjo,08,,-8.3793,112.6811 ru,fryazino,Fryazino,47,52256,55.960556,38.045556 ma,meskarete,Meskarete,58,,33.87,-3.88 ke,kamusinga,Kamusinga,09,,0.8,34.7 vn,la van,La Van,04,,16.066667,107.666667 id,naga saribu,Naga Saribu,26,,2.2371,99.1123 af,kafar kuh,Kafar Kuh,10,,32.657693,64.941099 tz,buhungire,Buhungire,12,,-2.5833333,32.9166667 pe,destino,Destino,14,,-6.845,-79.8447222 iq,yaniya buyuk,Yaniya Buyuk,18,,34.8536111,44.5638889 nl,goilberdingen,Goilberdingen,03,,51.960402,5.178855 pl,lipienice,Lipienice,78,,51.246383,20.965344 ci,sebedoufla,Sébédoufla,80,,7.735036,-6.402092 ml,titilan,Titilan,02,,17.0,-1.5333333 af,tadzh,Tadzh,40,,35.281193,69.115262 ir,raqeyveh,Raqeyveh,15,,31.5504,49.2384 me,prisoja,Prisoja,00,,42.5375,18.938611 nl,oud-alblas,Oud-Alblas,11,,51.857735,4.704068 us,jamestown,Jamestown,WA,,48.1283333,-123.0858333 gr,vothonas,Vóthonas,49,,36.4,25.45 ru,sankovo,Sankovo,85,,59.25,41.166667 by,ivaniki,Ivaniki,01,,52.1833333,26.0833333 us,evergreen,Evergreen,CO,,39.6333333,-105.3166667 vn,teurlang dong,Teurlang Dong,23,,11.983333,108.116667 ve,san rafael de atamaica,San Rafael de Atamaica,03,,7.5233333,-67.4044444 us,egypt,Egypt,AR,,35.8680556,-90.9455556 ir,sakani,Sakani,16,,35.7397,47.5037 id,renge,Renge,17,,-8.7527,116.4251 cn,hulangwan,Hulangwan,26,,34.799778,107.927353 de,gunstedt,Günstedt,15,,51.216667,11.066667 id,waitaboela 2,Waitaboela 2,18,,-9.554,119.2893 ru,pesochnyy,Pesochnyy,13,,55.133333,61.466667 tr,askasut,Askasut,62,,39.15,39.4 kr,changpyongjong,Changpyongjong,11,,37.533333,126.933333 cn,xinlaozhuang,Xinlaozhuang,15,,34.967841,107.125751 ph,cabungan,Cabungan,38,,13.5106,122.0331 mt,il-brolli,Il-Brolli,00,,35.830556,14.521389 pl,plowizny,Plowizny,75,,51.172483,22.174196 ru,sediny,Sediny,33,,58.036627,48.901114 gb,rosset,Rosset,Z4,,53.1,-2.933333 mx,el maguey,El Maguey,12,,18.4,-101.566667 tw,chiawan,Chiawan,04,,24.0833333,121.6 ir,shahr-i-nau,Shahr-i-Nau,42,,35.000288,60.324899 mm,nyaunggyat,Nyaunggyat,07,,20.7333333,94.95 jp,mochizuki,Mochizuki,26,,36.266667,138.366667 za,gotyibeni,Gotyibeni,05,,-31.970024,28.804196 iq,juddala,Juddala,16,,36.2994444,41.6808333 id,sumbermanggis,Sumbermanggis,08,,-7.9215,111.8586 id,cibuniherang,Cibuniherang,30,,-7.199167,107.740833 id,cibuduk,Cibuduk,30,,-6.404167,106.681667 ru,pyzhyanovo,Pyzhyanovo,90,,57.3589,57.506 es,avinonet de puig ventos,Aviñonet de Puig Ventós,56,,42.250357,2.913098 pe,ciudad juana rios,Ciudad Juana Rios,14,,-6.6277778,-79.4086111 ir,garz-e now,Garz-e Now,11,,27.9164,56.7256 ir,akbarabad,Akbarabad,07,,27.8649,53.6593 vn,truong thanh,Truong Thanh,28,,12.25,109.083333 pk,chak two hundred fifty-nine,Chak Two Hundred Fifty-Nine,04,,30.840538,72.633078 us,la cresta highlands,La Cresta Highlands,CA,,33.5227778,-117.3452778 pk,goth haidar khan kosa,Goth Haidar Khan Kosa,05,,24.455036,67.996239 ru,ishmekeyevo,Ishmekeyevo,08,,54.2017,59.1131 pe,jaccara hacienda,Jaccara Hacienda,08,,-14.2166667,-72.05 th,ban tan nob,Ban Tan Nob,68,,7.273,100.494611 ph,cabubuhayan,Cabubuhayan,33,,14.1914,121.4026 id,wonoreja,Wonoreja,07,,-7.178889,110.490278 cn,xiaohuzhuang,Xiaohuzhuang,01,,30.944444,117.108333 et,corbeta,Corbetá,53,,12.804167,39.647222 lt,skoudvile,Skoudvile,62,,55.4066667,22.5841667 kp,saegiltong,Saegiltong,09,,39.1972222,127.3666667 cn,chentsai,Chentsai,02,,29.584454,120.377378 kr,karhyon,Karhyon,06,,37.7817,128.1739 hr,veliko trgovisce,Veliko Trgovisce,07,,46.0,15.85 ru,vas-palnik,Vas-Palnik,90,,59.107211,54.539593 us,coblentz heights,Coblentz Heights,MD,,39.4050000,-77.5086111 us,davidson river,Davidson River,NC,,35.2533333,-82.6841667 eg,`ezbet el-dank,`Ezbet el-Dank,12,,30.2166667,31.3833333 sd,kwel,Kwel,32,,8.1666667,28.0333333 bi,manga,Manga,02,,-3.5097222,29.4688889 vn,vinh an,Vinh An,27,,13.966667,108.766667 tw,wantanshe,Wantanshe,04,,23.8833333,120.7 ir,mahin,Mahin,07,,30.1951,52.67 pk,ghoz garhi,Ghoz Garhi,01,,33.771685,70.001181 cn,taiping zhen,Taiping Zhen,30,,23.441223,113.483511 cn,shanxikou,Shanxikou,03,,27.430561,115.691116 si,lisec,Lisec,04,,46.1972222,13.8388889 ar,lucero cue,Lucero Cue,09,,-25.233333,-58.033333 gh,kapachuhu,Kapachuhu,11,,10.5,-2.7 fr,la penne-sur-huveaune,La Penne-sur-Huveaune,B8,,43.27952,5.516332 ao,samussamba,Samussamba,14,,-12.25,19.066667 by,mochulna,Mochulna,03,,53.2333333,24.4666667 pl,sczyballen,Sczyballen,85,,53.98419,21.689935 mg,tsararivotra,Tsararivotra,02,,-20.5666667,47.5333333 eg,dakkudah,Dakkudah,05,,30.8586111,30.9405556 cn,zhuojiang,Zhuojiang,03,,27.995715,114.365406 ml,darsalami,Darsalami,00,,14.6166667,-9.3 es,tabagon,Tabagón,58,,41.916667,-8.816667 am,artsvakar,Artsvakar,04,,40.3552778,45.1725 lk,ratmalagaswewa,Ratmalagaswewa,32,,7.65,80.15 tr,yukari ilicek,Yukari Ilicek,50,,38.965997,34.605736 gr,poulithra,Poúlithra,41,,37.1,22.8833333 br,jansen,Jansen,23,,-29.133333,-51.383333 cn,maidika qu,Maidika Qu,14,,31,92.8 bg,kote,Kote,61,,43.05,27.45 de,rommelsdorf,Rommelsdorf,07,,50.933333,7.566667 ua,seleznevka,Seleznëvka,14,,48.392702,38.78758 id,lubukmelehung,Lubukmelehung,37,,.5628,101.567 ir,baba julan,Baba Julan,23,,33.983333,47.65 gb,tre-groes,Tre-groes,X6,,52.066667,-4.316667 la,ban phahom,Ban Phahom,14,,20.016667,103.716667 mz,ampuato,Ampuato,06,,-15.0991667,40.11 ua,nadejdea,Nadejdea,17,,46.222364,29.650434 sn,baqua,Baqua,08,,15.2333333,-16.5833333 lt,praulyay,Praulyay,57,,55.1166667,24.2833333 ir,pel havas,Pel Havas,13,,34.5214,46.5194 id,cisande,Cisande,30,,-6.897778,106.854444 gt,el aguacate,El Aguacate,11,,14.285,-89.593889 ru,ulus khabarta norta,Ulus Khabarta Nörta,11,,50.9,102.816667 gb,wheaton aston,Wheaton Aston,N1,,52.716667,-2.216667 sd,birka,Birka,34,,12.5666667,30.1166667 pt,vila de canas,Vila de Canas,14,,38.945678,-9.183469 cn,anchengfang,Anchengfang,12,,30.462764,114.629057 in,kurumidda,Kurumidda,02,,17.032778,78.574444 ph,tinuntungas,Tinuntungas,P2,,7.719444,122.981389 td,kangarater,Kangarater,07,,13.35,15.6666667 cn,zhuao,Zhuao,02,,27.531389,119.020556 ne,goungo,Goungo,05,,13.8255556,1.2627778 bj,yaneri,Yanéri,03,,9.9833333,2.9166667 ml,sirabougou,Sirabougou,07,,13.2666667,-6.4333333 ye,as sumayqinah,As Sumayqinah,17,,13.8333333,43.55 us,gas point,Gas Point,CA,,40.4155556,-122.5333333 ir,arkovin,Arkovin,36,,36.3139,48.1405 vn,lang soi,Làng Soi,34,,19.8,105.45 do,jaimito,Jaimito,20,,19.3,-69.5333333 id,grendeng,Grendeng,30,,-6.177778,106.623889 kp,ongdong,Ongdong,15,,39.1988889,126.1008333 cn,fuzizhuang,Fuzizhuang,30,,23.330259,113.573436 zr,rety,Rety,09,,2.0833333,30.8833333 id,tjirandjang,Tjirandjang,30,,-6.813333,107.26 pt,valada,Valada,20,,41.665585,-8.800571 gb,cradley,Cradley,D7,,52.45,-2.083333 ru,loze,Loze,30,,51.533333,139.716667 ng,ojikwa,Ojikwa,36,,5.95,5.633333 at,zugthal,Zugthal,06,,47.233333,14.483333 tz,mhande,Mhande,15,,-3.35,33.0 fr,omecourt,Omécourt,B6,,49.611036,1.848682 de,grossgarnstadt,Großgarnstadt,02,,50.25,11.066667 us,snow,Snow,UT,,40.2897222,-111.6947222 eg,sangirg,Sangirg,09,,30.5125,30.9469444 nl,eerste-valtermond,Eerste-Valtermond,01,,52.887013,6.971245 at,unterhaus,Unterhaus,02,,46.798611,13.465 pk,goth haji wahold bakhsh,Goth Haji Wahold Bakhsh,05,,25.662219,68.786235 us,cullom,Cullom,NE,,41.0558333,-96.0233333 dz,mechtet ez zmala,Mechtet ez Zmâla,19,,35.1166667,5.6833333 cn,zhaoying,Zhaoying,01,,32.4,118.427778 us,craigville,Craigville,MA,,41.6394444,-70.3355556 fi,mellola,Mellola,15,,61.15,23.566667 dz,talendjast,Talendjast,18,,36.6833333,5.1 bd,chaita bhimnagar,Chaita Bhimnagar,81,,23.6,89.5666667 pt,mariz,Mariz,17,,41.110065,-8.578935 mm,ngataba,Ngataba,01,,19.0333333,93.8166667 pl,zytowice,Zytowice,74,,51.705317,19.246101 no,ranvik i romsdal,Ranvik i Romsdal,08,,62.75,7.783333 bo,pisculaco,Pisculaco,07,,-18.9166667,-65.45 kp,taedokchon,Taedokchon,13,,41.2833333,127.65 sk,bukovina,Bukovina,01,,48.5333333,18.7333333 pk,qutab garh,Qutab Garh,03,,34.199677,71.9426 my,kampung butul,Kampung Butul,16,,4.9747,115.4771 om,al mahall,Al Mahall,06,,23.1166667,57.9166667 td,ore,Oré,03,,21.25,17.3666667 id,tjirawa tiga,Tjirawa Tiga,30,,-7.6572,108.4348 mz,entipe,Entipe,01,,-12.5294444,39.6413889 id,bitungsari,Bitungsari,30,,-7.2191,108.5357 sy,al faqi`,Al Faqi`,06,,32.9333333,36.1666667 kp,uchongok,Uchongok,17,,40.9108333,129.5219444 au,lyndoch,Lyndoch,05,,-34.601238,138.890945 ee,pajaka,Pajaka,13,,59.0736111,24.4263889 ru,naberezhnoye,Naberezhnoye,47,,55.949167,37.95 th,amphoe phana nikhon,Amphoe Phana Nikhon,75,,15.611834,105.021472 af,chahar dewal,Chahar Dewal,23,,31.575926,65.669977 bd,nandarkona,Nandarkona,81,,24.9333333,90.3 lk,siruvilankuli,Siruvilankuli,31,,8.9833333,80.0166667 us,gandy,Gandy,TX,,30.7186111,-98.2313889 mz,cruzeiro,Cruzeiro,05,,-21.0266667,34.8436111 id,mangliawan,Mangliawan,08,,-7.949444,112.676667 fr,saint-martin-d'ecublei,Saint-Martin-d'Ecublei,99,,48.790805,.679677 hu,mexikoi dulo,Mexikoi Dulo,12,,47.783333,18.75 ro,frasancea,Frasancea,26,,45.083333,22.466667 by,zamoshenye,Zamoshenye,07,,55.05,29.9833333 af,`abbas khan kala,`Abbas Khan Kala,29,,32.469231,69.20712 ru,biryuleva,Biryuleva,47,,55.46107,36.609588 pk,etbar khan karez,Etbar Khan Karez,02,,29.923416,66.713382 id,kuo,Kuo,01,,2.333333,99.833333 af,garmbulak,Garmbulak,27,,34.657883,68.244315 hn,cocotigne,Cocotigne,09,,15.2333333,-83.4 zr,sheko,Sheko,04,,-4.7,24.5666667 ma,el assassa,El Assassa,51,,32.673633,-8.646961 af,qarabaghi,Qarabaghi,28,,32.479421,67.37349 tr,avcilaryaylasi,Avcilaryaylasi,26,,39.85,31.75 mn,altanbulag,Altanbulag,18,,47.7,106.4 ph,manlocahoc,Manlocahoc,N1,,9.7399,122.498 id,roengkang,Roengkang,13,,-2.7,112.733333 kp,choehyonni,Choehyonni,17,,42.0725,129.7794444 ma,amslam,Amslam,47,,30.971813,-8.03434 cd,kibandila,Kibandila,04,,-6.45,25.216667 cn,labuleng,Labuleng,15,,35.201249,102.521167 hr,trgetari,Trgetari,04,,45.0163889,14.065 cn,helingxia,Helingxia,03,,28.095787,114.292212 se,nordmannerod,Nordmanneröd,28,,58.366667,11.983056 fr,les petits moraux,Les Petits Moraux,A7,,49.767126,1.250367 id,tambakan,Tambakan,07,,-6.7976,110.9806 jo,en nabi hud,En Nabi Hud,02,,32.257158,35.910365 ng,obwe,Obwe,28,,5.530507,7.282039 kp,yongsandong,Yongsandong,01,,40.6688889,125.7233333 za,gordon,Gordon,09,,-22.95,30.2 th,ban non,Ban Non,80,,13.7,102.316667 pk,chah jharianwala,Chah Jharianwala,04,,31.77334,72.58267 sd,abuge,Abugé,32,,8.8833333,25.7333333 bd,beta,Beta,81,,23.9833333,89.9 me,marica luka,Marica Luka,00,,42.956944,19.609444 us,pidek keren,Pidek Keren,FM,,6.8727778,158.3147222 br,vila croacia,Vila Croácia,21,,-22.876491,-43.494234 us,southeast,Southeast,DC,,38.8805556,-76.9902778 bg,byal kladenets,Byal Kladenets,43,,41.65,25.6333333 ng,kuillanu,Kuillanu,44,,12.126712,11.476503 ua,bershad,Bershad,23,,48.36782,29.517265 pk,goth budha parsi,Goth Budha Parsi,05,,24.856667,67.2075 us,fair park,Fair Park,AL,,33.4258333,-86.1825000 fr,biding,Biding,B2,,49.05875,6.787083 cn,holih,Holih,08,,47.083333,130.333333 eg,kawm al hamid,Kawm al Hamid,24,,26.8333333,31.4166667 kp,sangsanni,Sangsanni,03,,39.43,127.2347222 mm,anisakan,Anisakan,08,,21.9666667,96.4166667 cn,wenxi,Wenxi,03,,28.417086,115.10689 cn,xigang,Xigang,30,,23.679444,116.573333 it,postal,Postal,17,,46.6,11.183333 id,lebakela,Lebakela,30,,-6.511111,106.661667 se,abron,Åbron,03,,60.85,16.7 al,memajes,Memajes,50,,41.2372222,19.8125 co,las barajas,Las Barajas,35,,9.133333,-74.383333 ru,bateryakavo,Bateryakavo,73,,55.360099,50.368056 mm,balbil,Balbil,02,,23.7833333,94.05 br,mutamba,Mutamba,05,,-11.216667,-46.366667 pk,sanjrani,Sanjrani,05,,26.172254,68.659131 br,valinhos,Valinhos,18,,-25.324722,-50.360556 zr,moga,Moga,00,,2.3666667,27.8166667 mg,bekobaka,Bekobaka,04,,-19.35,48.35 ir,magdun,Magdun,11,,27.231148,54.336292 my,kampung kuala gemas a,Kampung Kuala Gemas A,01,,2.6764,102.7479 be,rabosee,Rabosée,07,,50.283333,5.35 cd,kibinga-fioti,Kibinga-Fioti,01,,-4.416667,17.85 ua,gorishkovskoye,Gorishkovskoye,23,,48.611895,28.553258 jp,piuka cho,Piuka cho,12,,44.475278,142.343056 us,whispering pines,Whispering Pines,TN,,36.2480556,-82.2877778 ua,sidorovka,Sidorovka,08,,47.571131,33.173713 ru,altonovka,Altonovka,59,,44.4,132.53 ir,baqarabad,Baqarabad,32,,38.1394,48.551 cn,rexiru,Rexiru,14,,32.001,93.601 se,sunnas,Sunnäs,03,,61.116667,17.116667 lt,yatskonyay,Yatskonyay,61,,56.3088889,23.7975 gr,assa,Ássa,15,,40.3666667,23.6666667 pl,zdroje,Zdroje,81,,53.369615,23.170471 de,hoheskreuz,Hoheskreuz,15,,50.8,11.05 cn,huijiashan,Huijiashan,26,,34.934067,107.928527 ir,bon mahmud,Bon Mahmud,29,,26.933561,58.177329 cd,kibamba,Kibamba,05,,-10.816667,25.793333 sg,teck chong estate,Teck Chong Estate,00,,1.4155556,103.7616667 ae,palhain,Palhain,05,,25.684119,55.967495 fr,lacres,Lacres,B4,,50.59581,1.752483 ro,gorganu,Gorganu,03,,44.85,25.033333 lk,seruwawa,Seruwawa,32,,7.5833333,80.3333333 in,naichian,Naichian,12,,34.405973,73.89168 mz,tambo,Tambo,08,,-16.0808333,33.3091667 ir,taveh,Taveh,09,,35.1168,49.0271 ua,vorotsev,Vorotsev,15,,49.860392,23.818014 cg,vilitagni,Vilitagni,04,,-4.6766667,11.8275 kr,chongnyangniidong,Chongnyangniidong,11,,37.59046,127.04366 us,plains,Plains,LA,,30.6900000,-91.2055556 cz,piesenreith,Piesenreith,79,,48.716667,14.383333 mn,dara eheiin hiid,Dara Eheiin Hiid,11,,48.0,111.1666667 pk,palosai,Palosai,01,,33.666964,71.298746 gr,pteri,Ptéri,17,,39.5861111,20.5477778 sk,rumince,Rumince,03,,48.3666667,20.3 si,kotle,Kotle,09,,46.5213889,14.9869444 id,cihideung barat,Cihideung Barat,30,,-7.136944,107.555278 id,karangasem lor,Karangasem Lor,07,,-7.188889,110.812778 fr,piano,Piano,A5,,42.446321,9.402472 pk,chakku,Chakku,04,,31.216667,73.383333 es,pandavenes,Pandavenes,34,,43.316492,-5.245164 mx,san marcos,San Marcos,32,,22.266667,-101.95 ir,aminabad,Aminabad,37,,37.233333,54.733333 cd,angali,Angali,00,,2.183333,28.033333 cn,buli,Buli,26,,34.433056,108.786667 cn,wenyan,Wenyan,02,,30.127346,120.170506 id,banjar galiran kaler,Banjar Galiran Kaler,02,,-8.4485,115.6049 th,ban khok yao,Ban Khok Yao,72,,15.983333,104.25 ir,lashidan-e hokumati,Lashidan-e Hokumati,08,,37.224762,49.984039 dz,keramlya,Keramlya,41,,36.1666667,1.3666667 me,srednja mahala,Srednja Mahala,00,,42.197778,19.048611 vu,ipeukeul,Ipeukeul,15,,-19.5166667,169.45 ua,khutor yazvino,Khutor Yazvino,27,,51.483333,29.2 cn,jurenzhuang,Jurenzhuang,04,,33.065774,119.009271 vn,ban ngoai,Ban Ngoai,19,,21.266667,104.683333 us,anvil points,Anvil Points,CO,,39.5161111,-107.9222222 mp,creve coeur,Crève Coeur,23,,-19.6805556,63.4305556 au,nelshaby,Nelshaby,05,,-33.133333,138.1 my,kampung salulong,Kampung Salulong,16,,6.1159,117.1225 cn,wuliyasitai zhen,Wuliyasitai Zhen,20,,45.55,116.833333 de,heddert,Heddert,08,,49.65,6.75 af,husain jay,Husain Jay,11,,33.235649,62.202827 ba,vitasovci,Vitasovci,02,,45.0241667,16.4841667 pk,inayatke,Inayatke,04,,30.9,73.266667 ua,leninske,Leninske,01,,49.716667,32.533333 my,kampong pak chik,Kampong Pak Chik,13,,5.1299,103.1288 ec,llurrimaguas,Llurrimaguas,11,,0.3,-79.0166667 hn,el guailo,El Guailo,02,,13.4666667,-86.85 td,bebouguei,Bébougueï,09,,8.3833333,16.8666667 th,ban kampong du song,Ban Kampong Du Song,31,,6.335806,101.472139 il,al `awja',Al `Awja',01,,30.885365,34.422768 cn,xingaoming,Xingaoming,30,,23.224167,116.2375 vu,ambao,Ambao,06,,-15.2833333,167.9333333 ir,tormi,Tormi,04,,26.792778,60.283333 rw,colline mpare,Colline Mpare,06,,-2.1166667,29.6833333 ru,voskresenki,Voskresenki,25,,54.789706,36.837384 ru,kazennyy-vastashuy,Kazënnyy-Vastashuy,45,,56.8718,48.6205 ru,plesovskaya,Plesovskaya,06,,61.0278,41.2485 pk,chabba purana,Chabba Purana,04,,32.340738,72.973293 mz,uaga,Uaga,01,,-11.2075,39.8491667 es,torallo,Torallo,58,,42.843505,-7.115553 ru,novo-popova,Novo-Popova,69,,55.449444,33.172778 ru,kaftannik,Kaftannik,85,,60.138416,45.029416 my,janing,Janing,07,,5.233333,101.1 pk,chak one hundred-forty adb,Chak One Hundred-forty ADB,04,,29.077505,71.575513 gb,gweek,Gweek,C6,,50.1,-5.216667 mx,yerbabuena,Yerbabuena,06,,26.7,-107.783333 ng,lower atito,Lower Atito,26,,7.0656,8.0431 us,pierceville,Pierceville,NC,,36.4483333,-76.2938889 pk,chak gillan,Chak Gillan,04,,32.095171,74.329879 ua,kirillovka,Kirillovka,05,,47.318586,37.674745 id,patjargantoeng,Patjargantoeng,30,,-7.437,108.3871 az,mel'gam,Mel'gam,50,,40.690322,48.627866 ru,nagornoye,Nagornoye,73,,54.881224,52.038228 cn,luhezhen,Luhezhen,04,,31.700278,121.068611 mx,santa maria chicometepec,Santa María Chicometepec,20,,16.175,-97.966667 cn,cenjiangxu,Cenjiangxu,30,,24.636628,114.917068 my,kampung sengat,Kampung Sengat,07,,4.5415,101.1242 sa,al qusuriyah,Al Qusuriyah,10,,23.710533,44.621141 pe,ccaccahuasi,Ccaccahuasi,04,,-15.4897222,-71.4086111 pk,kot jiandal shah,Kot Jiandal Shah,05,,25.535089,68.461493 ar,belgrano,Belgrano,08,,-32.066667,-60.616667 id,gondok lor,Gondok Lor,07,,-7.156111,110.763333 cn,meichiachiao,Meichiachiao,01,,33.028611,117.2975 gh,bayive wenu,Bayive Wenu,08,,5.9666667,0.7833333 cn,jiupingliang,Jiupingliang,24,,39.601703,112.050187 ci,kanaso,Kanaso,77,,9.252907,-7.606217 ye,riyam,Riyam,07,,14.3416667,44.9336111 cn,yuangengdui wudui,Yuangengdui Wudui,08,,43.800769,130.944039 ru,zayarye,Zayarye,65,,53.289115,50.388124 de,bellersheim,Bellersheim,05,,50.45,8.833333 cl,colina,Colina,12,,-33.2,-70.683333 td,mbourao,Mbourao,10,,9.85,14.7833333 cn,hsienyanghsien,Hsienyanghsien,26,,34.33778,108.70261 pl,lapkeim,Lapkeim,85,,54.332356,20.837073 at,seitling,Seitling,04,,48.483333,14.533333 kp,songpyong,Songpyong,03,,40.1802778,128.1080556 ua,kirilovka,Kirilovka,01,,49.192402,31.09741 ir,'esar,'esar,11,,25.886389,58.271389 ml,ammdalai,Ammdalaï,05,,13.5333333,-6.05 es,torre de la higuera,Torre de la Higuera,51,,37.00678,-6.568196 es,fortanete,Fortanete,52,,40.50533,-.52283 pl,strwiazyk,Strwiazyk,80,,49.444099,22.54963 fi,levala,Levälä,15,,60.916667,22.95 mz,fornos,Fornos,03,,-22.3933333,34.8338889 ua,torgovitsa,Torgovitsa,21,,51.103453,33.311197 ng,darusa,Darusa,51,,13.543949,4.317817 mg,antanantosa,Antanantosa,06,,-24.45,45.9833333 gr,lakkai,Lákkai,30,,38.8666667,21.5166667 lt,galgiai,Galgiai,65,,54.7166667,25.4166667 ee,toorakorve,Tõõrakõrve,04,,59.2727778,25.86 gn,foulandeya,Foulandéya,07,,11.0666667,-11.1833333 hr,obuljeno,Obuljeno,03,,42.6758333,18.1052778 pe,ontave,Ontave,21,,-16.5,-69.65 id,salo,Salo,37,,.3216,100.9879 kp,chagungangnampum,Chagungangnampum,11,,39.5166667,124.7 af,qabl qowl,Qabl Qowl,08,,33.140833,67.336667 lv,mezhaparks,Mezhaparks,25,,57.0,24.1613889 ng,akwa ibami,Akwa Ibami,22,,5.349121,8.24941 us,wright,Wright,FL,23302,30.4555556,-86.6383333 pk,muhammad ishaq,Muhammad Ishaq,05,,24.00792,67.59364 bo,matico,Matico,01,,-19.5166667,-63.8666667 ng,konturde,Konturde,35,,10.425544,13.278834 cn,lutangbang,Lutangbang,02,,30.724668,120.72111 th,ban thap khon,Ban Thap Khon,30,,14.907861,103.950334 cn,daqinggou,Daqinggou,09,,33.900278,111.738056 my,long moh,Long Moh,11,,3.066667,115.066667 ru,kutulukskiy,Kutulukskiy,65,,53.1752,51.3811 sa,as subayhiyah,As Subayhiyah,13,,27.527353,41.443973 pe,shipunahuain,Shipunahuain,12,,-11.7305556,-76.1755556 pl,lipnica murowana,Lipnica Murowana,77,,49.859443,20.528924 cn,yinghe,Yinghe,01,,32.273056,116.526111 id,ngijon,Ngijon,08,,-7.613889,111.286944 mg,andriambekely,Andriambekely,06,,-23.4333333,45.3333333 pe,malcunacu,Malcunacu,08,,-14.4972222,-71.3708333 cn,wangjiayuan,Wangjiayuan,24,,36.316667,110.5 ru,pilkhyn,Pilkhyn,15,,69.233333,179.133333 ir,salihabad,Salihabad,34,,34.227217,49.989045 ru,novo leninskoye-tashino,Novo Leninskoye-Tashino,05,,51.083333,129.7 cn,modot hure,Modot Hure,20,,40.5,106.416667 pk,abro,Abro,02,,28.835426,67.449117 id,ciawitali,Ciawitali,33,,-6.8673,106.2173 mu,belle mare,Belle Mare,13,,-20.195,57.7683333 th,ban wong wian,Ban Wong Wian,18,,16.88425,101.884667 jp,keinokubimachi,Keinokubimachi,27,,32.683333,129.833333 ir,shavaleh,Shavaleh,01,,36.8524,45.3817 cn,yujiabian,Yujiabian,03,,27.589182,116.942735 fr,launay,Launay,A3,,46.753872,.940929 ir,rayegan-e bala,Rayegan-e Bala,09,,35.0747,48.6486 cy,korphi,Korphi,05,,34.8083333,32.9708333 pl,wola serocka,Wola Serocka,78,,52.034879,21.963205 af,khejvand,Khejvand,01,,38.209159,71.021814 gw,nhunanca,Nhunanca,10,,12.5666667,-13.7833333 ir,gurani,Gurani,11,,26.9764,57.1229 eg,kafr al walaja,Kafr al Walaja,14,,30.5402778,31.275 bg,godeschewo,Godeschewo,58,,41.4666667,24.05 bd,sabdi,Sabdi,81,,23.6,90.55 id,beben,Beben,08,,-7,113.916667 tr,arsinci,Arsinci,71,,39.135934,32.887128 cn,zhuangzifang,Zhuangzifang,32,,28.538921,101.903401 my,perekampungan tebing runtoh,Perekampungan Tebing Runtoh,01,,1.4279,103.6588 id,sukareja,Sukareja,30,,-6.305833,107.792778 pg,oremai,Oremai,11,,-4.1833333,144.3166667 ie,kelshabeg,Kelshabeg,31,,52.9330556,-6.6116667 pk,patan,Patan,06,,33.016667,74.3 cn,beigang,Beigang,31,,20.024444,110.557222 af,metakhan,Metakhan,29,,33.241667,68.866389 cu,antigua,Antigua,05,,21.1775,-78.2666667 kp,nangchondong,Nangchondong,06,,38.2116667,125.7983333 cn,jiyutang,Jiyutang,30,,21.756839,109.989731 us,philo,Philo,IL,,40.0069444,-88.1580556 gb,penicuik,Penicuik,V5,14314,55.816667,-3.233333 mg,afitanananivo,Afitanananivo,01,,-13.6333333,49.8166667 my,kampung tanid,Kampung Tanid,16,,6.1677,116.926 cn,huolianzhaihuizumanzu,Huolianzhaihuizumanzu,19,,41.366111,123.735556 id,banjar tibupoh,Banjar Tibupoh,02,,-8.5568,115.0531 cz,jalovisko,Jalovisko,78,,49.056051,16.70575 tr,sekerkoy,Sekerkoy,63,,37.144711,38.32947 pk,saidodero,Saidodero,05,,27.656217,68.323423 ve,la golofa,La Golofa,02,,9.0266667,-63.6944444 ro,zupanek,Zupanek,26,,44.716667,22.4 pk,kinju,Kinju,02,,27.412092,66.854512 it,alessandria,Alessándria,03,,39.95,16.383333 tr,guzelkoy,Güzelköy,31,,36.596155,36.234804 pk,wasaya kokri,Wasaya Kokri,05,,24.515833,67.637222 do,los charquitos,Los Charquitos,03,,18.1666667,-71.3166667 af,sandzelai,Sandzelai,23,,31.387725,67.39145 th,ban sompoi,Ban Sompoi,08,,17.068584,98.668889 pk,hardo ude,Hardo Ude,04,,31.944315,74.064878 id,penggugung,Penggugung,26,,3.1722,98.234 br,roncador,Roncador,02,,-9.7,-36.05 my,kampung tanjung pinang,Kampung Tanjung Pinang,04,,2.137,102.4088 cn,fudao,Fudao,09,,35.876111,114.410833 pk,tupla,Tupla,03,,34.001332,73.331956 mw,maonda,Maonda,23,,-15.3333333,35.4666667 cd,mambanga,Mambanga,00,,2.183333,27.933333 pt,trazoeira,Trazoeira,18,,39.75,-8.3 mz,chefe bie,Chefe Bie,03,,-24.3822222,34.5497222 at,rinnen,Rinnen,07,,47.4,10.716667 cn,mengchi,Mengchi,01,,32.186389,116.399444 us,panther junction,Panther Junction,TX,,29.3283333,-103.2047222 th,amphoe aranyaprathet,Amphoe Aranyaprathet,80,,13.692764,102.501283 in,chande,Chande,16,,19.366667,74.933333 id,tatasan kelod,Tatasan Kelod,02,,-8.6446,115.2267 cd,logobi,Logobi,11,,.316667,28.466667 ly,hagiara,Hagiára,34,,27.0166667,14.4666667 us,seven springs,Seven Springs,NC,,35.2272222,-77.8472222 at,klammgraben,Klammgraben,06,,47.333333,14.45 af,laq jan,Laq Jan,06,,33.145279,63.871599 fr,guecelard,Guécélard,B5,,47.877507,.1293 af,tagab-e hayrak,Tagab-e Hayrak,07,,35.679028,64.059792 ma,bou daha,Bou Daha,55,,30.503348,-9.184994 us,allens hill,Allens Hill,NY,,42.8408333,-77.5152778 us,markleton,Markleton,PA,,39.8605556,-79.2272222 cn,masongling,Masongling,32,,31.305739,103.769603 mx,san mateo tlaixpan,San Mateo Tlaixpan,21,,18.9,-97.733333 ru,michailovskoye,Michailovskoye,30,,52.614444,140.185278 la,ban sen pan ya,Ban Sèn Pan Ya,06,,19.616667,102.483333 vu,lolombivounie,Lolombivounié,06,,-15.3166667,167.85 gb,gortenfern,Gortenfern,V3,,56.766667,-5.916667 af,kuskak,Kuskak,33,,35.658882,65.76371 hu,kisvenyim,Kisvenyim,08,,46.971714,18.756733 mx,san juan cuautlipan,San Juan Cuautlipan,29,,19.411111,-98.397222 ph,bonton,Bonton,51,,16.0007,120.4869 eg,ibrahim hakim,Ibrahim Hakim,20,,31.4141667,31.8336111 tr,dedebag,Dedebag,23,,39.003222,39.899919 cn,waihsiehtsun,Waihsiehtsun,02,,28.438889,120.325278 id,salubanga,Salubanga,38,,-3.4717,120.3025 fr,beinheim,Beinheim,C1,,48.863265,8.084475 in,mukutban,Mukutban,16,,19.8,78.85 iq,naychirivan,Naychirivan,08,,36.8,43.4333333 mm,yaw,Yaw,10,,23.0666667,95.5333333 eg,`izbat as sa`diyah,`Izbat as Sa`diyah,01,,31.2097222,31.55 pl,opolno zdroj,Opolno Zdroj,72,,50.886206,14.92959 tz,ruanlisa,Ruanlisa,03,,-6.05,34.6833333 jm,llhandewey,Llhandewey,14,,17.95,-76.6166667 ir,bar aftab donbaleh rood,Bar Aftab Donbaleh Rood,15,,31.888333,49.994444 af,gandagar,Gandagar,35,,34.494091,70.296951 in,jaitasar,Jaitasar,24,,27.916667,74.416667 jp,kushichin,Kushichin,47,,26.693056,127.908056 us,madonna,Madonna,MD,,39.6130556,-76.5166667 bo,comunidad kkota,Comunidad Kkota,01,,-19.2336111,-65.0288889 be,liers,Liers,04,,50.7,5.566667 us,asherton,Asherton,TX,,28.4433333,-99.7586111 pk,nama,Nama,04,,33.789257,73.468156 mg,vohitrafena,Vohitrafena,02,,-21.6666667,47.2166667 lv,strenci,Strenci,30,1593,57.6166667,25.6833333 dz,oulad soltane,Oulad Soltane,20,,36.4666667,2.8333333 us,luttrell,Luttrell,AL,,34.4402778,-85.9347222 pg,hanjiri,Hanjiri,04,,-8.9166667,147.9166667 ru,malyye yaskovitsy,Malyye Yaskovitsy,52,,58.716839,30.224168 cn,xinchongkou,Xinchongkou,30,,22.883102,111.781042 pt,povoa de baixo,Póvoa de Baixo,17,,41.032582,-8.596152 tn,ksar el krerachefa,Ksar el Krerachefa,28,,33.190735,10.288494 sy,qodjli faouqani,Qodjli Faouqâni,09,,36.7666667,38.1833333 nz,blackwater,Blackwater,E9,,-42.25,171.766667 pe,gaga,Gaga,10,,-10.3263889,-76.4444444 ph,cadalman,Cadalman,28,,18.3438,120.6333 in,landa,Landa,19,,15.466667,74.516667 ru,gabbyasovo,Gabbyasovo,08,,52.108968,52.108968 de,fleckenberg,Fleckenberg,07,,51.133333,8.25 af,moshakah,Moshakah,36,,33.820366,69.639194 ru,bytosh,Bytosh,25,4425,53.901389,34.123889 ng,noma,Noma,40,,11.32775,4.582137 hr,totovec,Totovec,16,,46.34,16.4422222 ru,yuzhnaya,Yuzhnaya,33,,60.19,46.8878 ye,al `amariyah,Al `Amariyah,11,,14.7555556,44.4494444 az,ryglyba,Ryglyba,08,,38.550538,48.596235 ng,ahonge,Ahonge,26,,7.216667,8.5 us,dougherty,Dougherty,GA,,34.3822222,-84.0650000 ir,dezuk,Dezuk,04,,28.916667,61.25 mx,las cuevas,Las Cuevas,06,,26.766667,-105.6 pk,saindad raho,Saindad Raho,05,,26.438659,68.071707 us,harmon,Harmon,ND,,46.9516667,-100.9522222 cn,ganchansi,Ganchansi,06,,37.066667,102.333333 ru,doni,Doni,42,,59.668333,30.230833 be,westrem,Westrem,08,,50.966667,3.866667 ph,san joaquin,San Joaquin,51,,15.933333,120.7 id,kunji,Kunji,41,,-3.383333,119.333333 lv,cebeni,Cebeni,21,,56.7166667,25.0166667 hn,puentecita,Puentecita,18,,15.2166667,-87.0333333 ru,lipki,Lipki,25,,54.11655,33.973718 af,pasaw,Pasaw,06,,32.636555,62.384148 gh,dangbae,Dangbae,08,,8.0666667,0.2333333 by,montsyaki,Montsyaki,01,,52.9666667,24.7666667 hr,novi jankovci,Novi Jankovci,18,,45.24,18.8961111 ir,amir ayyub,Amir Ayyub,07,,30.569844,51.206102 zr,bifubuza,Bifubuza,07,,-3.0755556,28.8263889 eg,kafr husayn bey at tubji,Kafr Husayn Bey at Tubji,14,,30.5,31.4333333 id,kadumuncang,Kadumuncang,30,,-7.3076,106.6091 ir,tazehabad-e sarab,Tazehabad-e Sarab,13,,34.7423,47.5775 ir,darreh neyak,Darreh Neyak,03,,31.184726,51.157649 my,kampung batu dua,Kampung Batu Dua,08,,6.472464,100.213799 at,hinterschiffl,Hinterschiffl,04,,48.65,13.85 cn,hsiaochengtzu,Hsiaochengtzu,05,,42.852778,130.436389 tr,incegiz,Incegiz,34,,41.185681,28.403478 ca,normandville,Normandville,01,,55.866667,-117.366667 cz,sklenarice,Sklenarice,83,,50.704194,15.392337 ru,koshkend,Koshkend,17,,41.740675,48.04282 ph,balabag,Balabag,04,4692,11.97,121.919167 br,sao luis de montes belos,São Luís de Montes Belos,29,23619,-16.533333,-50.333333 cz,erpuzice,Erpuzice,87,,49.807138,13.036336 pl,brzostowice,Brzostowice,78,,51.653424,20.653269 ru,khlestunova,Khlestunova,20,,54.633333,104.7 no,tverfjorddalen,Tverfjorddalen,05,,70.216667,21.883333 br,poco do meio,Poço do Meio,05,,-12.433333,-44.266667 gt,santo toribio,Santo Toribio,12,,16.616667,-89.516667 es,grado del pico,Grado del Pico,55,,41.303785,-3.248319 py,estancia sapiro,Estancia Sapiro,05,,-26.466667,-56.566667 mx,chachoapan,Chachoapan,20,,17.55,-97.3 cz,nove jirny,Nove Jirny,88,,50.104224,14.709505 kr,chojon,Chojon,20,,34.971889,128.402765 id,dasannyiur,Dasannyiur,17,,-8.5975,116.5369 tz,rudiga,Rudiga,18,,-5.4666667,38.0166667 us,manahan ranch estates,Manahan Ranch Estates,MD,,39.6688889,-77.4666667 ir,nartol,Nartol,03,,31.381944,50.733333 cf,gobo,Gobo,15,,6.6833333,19.5166667 tw,hsinhsutsoliao,Hsinhsütsoliao,04,,23.7,120.2333333 ru,balakhnino,Balakhnino,88,,57.294239,40.139672 br,serieme,Serieme,20,,-6.15,-42.516667 by,skurjaty,Skurjaty,07,,55.45,26.85 cn,jiangkaxi,Jiangkaxi,14,,31.401,95.601 cn,hongxiong,Hongxiong,31,,18.632222,109.684217 al,dolaneci,Dolaneci,46,,40.7758333,20.5966667 ci,akpoue kouassikro,Akpoué Kouassikro,86,,7.82715,-4.533386 gh,egyam,Egyam,09,,4.8666667,-1.85 fi,aska,Aska,06,,67.3,26.7 ec,juana de oro,Juana de Oro,08,,-3.3333333,-79.85 sd,hillat khalefa,Hillat Khalefa,53,,17.4211111,33.8844444 es,viveiro,Viveiro,58,,42.183799,-7.950497 ru,ustrozheno,Ustrozheno,25,,54.196122,34.07495 ru,kutuzovo,Kutuzovo,09,,51.175833,37.564722 sy,oum trekiye,Oum Trekiyé,09,,36.35,37.9833333 de,zapkendorf,Zapkendorf,12,,53.85,12.316667 ba,gornja bjeljevina,Gornja Bjeljevina,01,,44.8961111,18.4080556 cn,gaodi,Gaodi,09,,35.908611,114.6675 lk,galagama,Galagama,34,,6.0,80.7 ir,qater gutran-e `olya,Qater Gutran-e `Olya,33,,37.3524,46.5173 pe,chochope,Chóchope,14,,-6.1583333,-79.6486111 bf,doumbala,Doumbala,58,,12.9166667,-4.1666667 ly,el-masciasta,El-Masciásta,53,,32.7986111,13.0 mz,mabutu,Mabutu,04,,-25.9652778,32.5891667 id,dajasabeh,Dajasabeh,08,,-7.178889,112.956944 cn,santauling,Santauling,13,,43.166667,92.7 fr,montviette,Montviette,99,,48.998942,.09623 kr,chondaemi,Chondaemi,06,,38.183333,128.035833 sk,vranov,Vranov,05,23246,48.9,21.6833333 ml,sitahoro,Sitahoro,03,,14.25,-11.35 in,barsesi,Barsesi,36,,26.0073,79.2971 ru,komissarovo,Komissarovo,29,,55.3,85.016667 ru,novoyarkul,Novoyarkul,53,,55.367222,76.963466 ci,massaradougou,Massaradougou,90,,8.018628,-4.40221 ao,nova shavezh,Nova Shavezh,18,,-10.592362,21.318045 mg,antranonkarany,Antranonkarany,01,,-13.7166667,48.4 at,rothfarn,Rothfarn,03,,48.65,15.016667 kr,kalmol,Kalmol,16,,34.734222,127.097383 bd,mohisura,Mohisura,81,,23.9166667,89.7833333 ph,morponros,Morponros,05,,13.116667,123.316667 be,brasschaet,Brasschaet,01,,51.283333,4.45 th,ban khok makham pom,Ban Khok Makham Pom,34,,15.033333,101.025278 af,dahan-e barqeh,Dahan-e Barqeh,09,,33.797539,63.713158 tr,kocaaliler,Kocaaliler,15,,37.316944,30.74 by,yatvesk,Yatvesk,03,,52.9833333,24.05 hr,veliki gorenec,Veliki Gorenec,16,,46.2833333,16.0333333 ru,kinelle,Kinelle,07,,46.242378,48.219309 ua,ivanikuvka,Ivanikuvka,06,,48.834931,24.636275 zr,elizabetha,Elizabetha,09,,1.15,23.6 ma,telamghecht,Telamghecht,54,,34.892421,-3.745337 kh,phumi rokar khpoas,Phumi Rokar Khpoas,19,,11.4,105.0166667 sd,dukali,Dukali,33,,12.3,25.1 mx,coloradas de la virgen,Coloradas de la Virgen,06,,26.583333,-107.4 id,wanasaba kidul,Wanasaba Kidul,33,,-6.0381,106.1004 ir,qal`eh qasimabad,Qal`eh Qasimabad,07,,30.25,53.45 ge,malyye garedzhvari,Malyye Garedzhvari,22,,42.0730556,44.11 ml,naniassoni,Naniassoni,06,,11.5166667,-5.6666667 af,qaryah-ye khosh nazar,Qaryah-ye Khosh Nazar,39,,33.26583,66.74008 id,ngangrangan kidul,Ngangrangan Kidul,10,,-7.913333,110.134167 co,malachi,Malachí,33,,4.333332,-74.655815 de,gablenz,Gablenz,13,,50.683333,12.766667 us,vailoatai,Vailoatai,AS,,-14.3611111,-170.7822222 ir,ishkish,Ishkish,41,,33.316667,59.666667 cn,kaluhochan,Kaluhochan,08,,51.116667,125.983333 gt,magueyes,Magueyes,10,,14.566667,-89.75 lk,bowegoda,Bowegoda,34,,6.1666667,80.0833333 ru,rogovaya,Rogovaya,33,,58.551294,50.727554 ru,belavino,Belavino,37,,57.571795,40.524075 sy,manbej,Manbej,09,,36.5266667,37.9563889 us,crockett,Crockett,WV,,38.2313889,-82.3777778 af,salamjan kalay,Salamjan Kalay,28,,31.942688,66.634687 id,dampaan,Dampaan,08,,-7.2444,112.5274 hu,promontor,Promontor,05,,47.422095,19.033144 la,phon tiou,Phon Tiou,04,,17.883333,104.616667 by,kaminets,Kaminets,06,,54.1666667,27.4166667 bg,dalgo-pole,Dalgo-Pole,51,,42.3166667,24.7666667 pl,szczepanki,Szczepanki,85,,53.968771,21.949465 fr,le breand,Le Bréand,A3,,47.187711,2.219522 us,camelback trailer ranch,Camelback Trailer Ranch,AZ,,33.4700000,-112.0372222 us,oriana,Oriana,VA,,37.1336111,-76.5252778 co,higueron,Higuerón,29,,4.481111,-76.117222 us,beulah,Beulah,NC,,35.4213889,-76.4936111 ru,lamskiye,Lamskiye,43,,52.933461,38.149334 pk,zetban banda,Zetban Banda,03,,34.555714,72.143524 gh,bosomonso,Bosomonso,09,,6.2,-2.4666667 sb,awale,Awale,08,,-9.6166667,159.6666667 at,serfaus,Serfaus,07,,47.033333,10.6 rs,pnis,Pnis,00,,42.313333,20.5225 zm,katusi,Katusi,03,,-15.2166667,23.05 af,band-e qal`ah,Band-e Qal`ah,09,,34.611553,66.630226 ru,repyevka kolkhoznaya,Repyevka Kolkhoznaya,81,,54.0511,47.4514 ru,zavod,Zavod,37,,58.076187,41.490135 ao,carvalho e sa,Carvalho e Sá,08,,-11.966667,15.816667 cn,yangchiayao,Yangchiayao,21,,37.912778,106.656944 ir,bizineh-i-jird,Bizineh-i-Jird,09,,35.0248,48.9439 id,mansak,Mansak,17,,-8.8188,116.3159 id,tjianting-hilir,Tjianting-hilir,30,,-6.880278,107.570278 cn,lofu,Lofu,16,,24.966667,107.383333 pk,gujard kili,Gujard Kili,03,,34.826719,72.602496 br,rosario,Rosário,08,,-20.233333,-41.516667 ph,macilas,Macilas,P2,,7.7313,122.533476 br,nucleo ingles de sousa,Núcleo Inglês de Sousa,16,,-1.933333,-54.166667 cn,baiyanghe kazakzu xiang,Baiyanghe Kazakzu Xiang,13,,43.966667,88 bg,divetsite,Divetsite,46,,42.9,25.2666667 pl,bad dirsdorf kreis reichenbach,Bad Dirsdorf Kreis Reichenbach,72,,50.685547,16.823657 ru,golyatitsy,Golyatitsy,42,,59.516839,29.139303 my,kampung sejagung mukim lapan belas,Kampung Sejagung Mukim Lapan Belas,01,,2.0695,102.9476 af,siah shighlan,Siah Shighlan,08,,33.324199,67.49445 id,petung timur,Petung Timur,08,,-7.9293,113.8014 us,oak orchard,Oak Orchard,WI,,44.7813889,-87.9258333 cn,huaihe,Huaihe,04,,33.004167,118.383333 gr,tzitzifes,Tzitzifés,43,,35.3666667,24.15 id,tjipajung 2,Tjipajung 2,30,,-6.471389,106.828611 ir,gol bazo,Gol Bazo,08,,37.380278,49.819167 ru,erzhey,Erzhey,79,,51.366667,95.9 ru,kuybyshev,Kuybyshev,70,,44.252222,43.794722 mx,mogotes,Mogotes,11,,20.491944,-101.475833 ph,padonton,Padonton,67,,12.2669,124.9443 ch,hagneck,Hagneck,14,,47.057551,7.187787 ir,golpayegan,Golpayegan,28,44920,33.453702,50.288361 ir,pendar kheyl,Pendar Kheyl,35,,36.584331,53.035039 cn,onggon tegin sum,Onggon Tegin Sum,20,,42.233333,109.383333 cn,dengjiaci,Dengjiaci,32,,29.098364,104.83082 th,rong kham,Rong Kham,23,,16.269428,103.746889 th,ban khao ya nua,Ban Khao Ya Nua,14,,16.566667,100.966667 us,garrard,Garrard,KY,,37.1236111,-83.7463889 ie,moveen,Moveen,03,,52.6486111,-9.7008333 tr,chovan,Chovan,72,,37.102778,41.118056 gr,bouka,Boúka,31,,38.9333333,21.15 nl,aalzum,Aalzum,02,,53.340351,6.006151 mz,jimo,Jimo,09,,-18.0666667,35.7333333 cz,v poli,V Poli,83,,50.995551,15.048576 af,dekhi-nazar,Dekhi-Nazar,08,,33.620083,68.153858 md,mikhayleny,Mikhayleny,84,,48.040833,27.613889 cn,baiyanggou,Baiyanggou,26,,32.879941,106.05919 zr,kaseli,Kaseli,12,,-3.7630556,29.05 sb,ravu sondu ulu,Ravu Sondu Ulu,08,,-8.9666667,160.1166667 bd,bri gopalpur,Bri Gopalpur,81,,23.7333333,89.55 id,mboko,Mboko,31,,2.3223,125.4226 es,comba,Comba,34,,43.205381,-6.644503 af,boda,Boda,08,,33.483254,67.991974 al,gryke-noke,Grykë-Nokë,41,,41.7625,20.2783333 mm,kong-sawng,Kong-sawng,11,,22.35,97.6666667 af,wark,Wark,01,,36.674518,71.826811 so,seiemmogh,Seiemmogh,03,,11.0833333,50.6333333 id,suradadi,Suradadi,08,,-8.181389,110.918333 af,hakemi,Hakemi,09,,33.37706,64.31661 nl,koningsoord,Koningsoord,04,,53.43468,6.79622 in,thousand lights,Thousand Lights,25,,13.053611,80.253333 id,cipeujeuh,Cipeujeuh,30,,-6.705,107.187778 us,amsterdam,Amsterdam,MO,,38.3497222,-94.5888889 rs,korlace,Korlace,00,,43.372778,20.652778 ba,plahovici,Plahovici,01,,44.2327778,18.6733333 ru,ovinisci,Ovinisci,60,,57.278,27.955765 ru,podbolotye,Podbolotye,21,,57.221496,40.536021 cl,san antonio,San Antonio,14,,-41.46634,-73.08709 lb,bater ech chouf,Bâter ech Chouf,05,,33.6,35.6166667 be,thielt-sint-martin,Thielt-Sint-Martin,02,,50.933333,4.9 co,socorro,Socorro,10,,8.39479,-73.62448 pk,sawakai,Sawakai,01,,32.539167,69.666389 mw,nsangwe,Nsangwe,19,,-16.5166667,34.95 co,tranquilandia,Tranquilandia,29,,3.4998,-76.562138 pk,mir khun,Mir Khun,05,,26.443521,68.096922 ru,dvorets,Dvorets,90,,58.016503,54.941047 no,sjauset,Sjauset,07,,60.598889,5.330278 be,terblok,Terblok,02,,50.783333,4.45 cf,beloko,Beloko,09,,5.9333333,14.6 br,palmeira d' oeste,Palmeira d' Oeste,27,,-20.383333,-50.783333 kr,taraenomi,Taraenomi,06,,37.3511,128.4718 zr,mange,Mange,02,,1.4166667,21.2666667 la,ban natha,Ban Natha,17,,19.896111,102.128056 lb,chekka aatiqa,Chekka Aatîqa,03,,34.3333333,35.7333333 sd,kuartal,Kuartal,34,,11.1,30.5 cn,liba,Liba,26,,32.390278,107.741389 md,karagasan,Karagasan,88,,46.4675,29.812222 ge,siskala,Siskala,19,,41.4838889,44.6225 eg,beni husein,Beni Husein,14,,30.45,31.3166667 co,el embudo,El Embudo,27,,8.779481,-74.862894 cn,tangjiahe,Tangjiahe,32,,31.024105,107.912473 be,au ferrage,Au Ferrage,06,,49.916667,5.333333 us,royal springs estates,Royal Springs Estates,OH,,39.5786111,-84.2422222 tr,bennist,Bennist,72,,37.527222,40.685 gr,mavrata,Mavráta,27,,38.0666667,20.7333333 fr,mairie de saint-dizier,Mairie de Saint-Dizier,B1,,46.15,2.15 kz,uchtyube,Uchtyube,17,,43.25,71.383333 gw,joao monteirozinho,João Monteirozinho,05,,11.5833333,-15.4166667 jp,oi,Oi,01,,34.716667,136.966667 mz,naiobe,Naiobe,09,,-17.3313889,37.1144444 pk,doghalgai,Doghalgai,03,,34.796794,72.539905 lt,santoki,Santoki,62,,55.3,22.5333333 br,sao jose do bom jardim,São José do Bom Jardim,21,,-22.718333,-43.851389 si,meznar,Meznar,04,,46.07,14.7227778 cn,xiaosang,Xiaosang,30,,24.077903,116.056526 ph,banadero,Banadero,I2,,14.218114,121.166176 ru,litvinovskaya,Litvinovskaya,06,,62.35,42.983333 cn,linganchen,Linganchen,02,,30.595969,120.515748 us,white earth,White Earth,MN,,47.0966667,-95.8430556 id,kroentagan,Kroentagan,04,,-6.209167,106.766389 pk,khhichi kalan,Khhichi Kalan,04,,31.667999,71.039049 ru,sotszemledeliye,Sotszemledeliye,67,,51.658602,43.68133 nl,gendt,Gendt,03,,51.877489,5.970641 ee,ledri,Ledri,14,,58.2736111,22.0272222 kr,taeso,Taeso,17,,36.3455,126.9111 lk,makeliya,Makeliya,32,,7.7166667,80.0833333 cn,dutian,Dutian,30,,21.250835,110.351278 au,cockatoo valley,Cockatoo Valley,05,,-34.616667,138.833333 ml,taodeni,Taodéni,00,,22.6666667,-3.9833333 ba,obodnica,Obodnica,01,,44.6119444,18.6391667 kp,yangjiri,Yangjiri,12,,38.8963889,125.6527778 cn,chalu,Chalu,15,,36.963333,105.143333 ar,saavedra,Saavedra,01,,-37.762726,-62.349919 id,trembelang,Trembelang,08,,-8.4346,114.2005 ru,novaya zarya,Novaya Zarya,83,,56.35,41 pk,maggan jo tar,Maggan jo Tar,05,,24.72,70.6265 cd,aketi,Aketi,00,35158,2.733333,23.766667 ht,biscagne,Biscagne,06,,19.5838889,-72.8758333 de,menkendorf,Menkendorf,12,,53.266667,11.316667 gy,wandapa,Wandapa,17,,4.55,-59.7166667 sn,anabiko,Anabiko,05,,12.85,-12.4666667 cn,cailaolou,Cailaolou,01,,32.108333,115.95 ua,chuginka,Chuginka,14,,48.921197,39.662514 dk,tinkerup,Tinkerup,17,,56.121202,12.253549 no,eiriksrud,Eiriksrud,09,,68.916667,15.083333 ru,pryasnitsino pravyy bereg,Pryasnitsino Pravyy Bereg,06,,61.346111,42.794722 iq,razila,Razila,05,,35.5641667,45.7975 cn,kuanchiaohsu,Kuanchiaohsu,07,,25.022778,118.087222 om,arryop,Arryop,08,,17.1791667,54.4158333 pl,czaszyn,Czaszyn,80,,49.447811,22.216001 pe,la calera,La Calera,15,,-12.1166667,-77.0 id,argotirto krajan,Argotirto Krajan,08,,-8.2885,112.6884 us,harpster,Harpster,ID,,45.9866667,-115.9625000 kp,sangonmuk,Sangonmuk,06,,37.9144444,126.2725 cn,liangwang,Liangwang,18,,26.3475,108.438333 ao,savindiungo,Savindiungo,02,,-11.511603,17.194585 pg,kwanje,Kwanje,12,,-5.7166667,145.7333333 id,dangdeur,Dangdeur,30,,-6.206111,106.42 cn,xiangxingwan,Xiangxingwan,12,,30.173431,114.558675 mx,mariposa,Mariposa,07,,27.166667,-101.75 pk,sural tangai,Sural Tangai,03,,34.805771,72.555133 ng,ipasa,Ipasa,32,,7.916667,4.416667 br,tabatinga,Tabatinga,13,,-3.3,-43.2 de,konigerode,Königerode,14,,51.6,11.216667 us,selman,Selman,FL,,30.5358333,-85.0286111 ph,panlauigan,Panlauigan,H3,,10.587259,123.079502 cz,plevnice,Plevnice,80,,49.437382,15.289138 ru,acireski,Acireski,CI,,43.08135,46.137558 fr,fontenay,Fontenay,A3,,46.588949,2.090186 cn,zhaoshi,Zhaoshi,04,,31.735,120.848056 tr,kucuk sivegen,Küçük Sivegen,38,,38.390125,35.932535 pe,cojal,Cojal,14,,-6.8833333,-79.5166667 hn,managua,Managua,05,,15.0,-89.1333333 ir,`aliabad-e qarneh,`Aliabad-e Qarneh,42,,35.653876,59.749409 ru,novoposelennaya orlovka,Novoposelënnaya Orlovka,76,,53.528,38.6631 af,samandkay,Samandkay,37,,33.175834,69.6775 de,kladen,Kläden,14,,52.633333,11.666667 my,kampung tanjung ruak,Kampung Tanjung Ruak,01,,2.1421,102.6421 ru,teplyy,Teplyy,41,,51.6597,37.3108 cn,shangqiba,Shangqiba,15,,33.868918,105.607492 cn,baiqing,Baiqing,32,,31.066739,105.186399 de,schachtelburg,Schächtelburg,05,,50.333333,9.266667 pl,moskale,Moskale,80,,50.533987,22.104568 gh,alopui,Alopui,08,,6.3666667,0.7 cn,hsinmiaochen,Hsinmiaochen,33,,29.650833,107.046111 ng,ofatura,Ofatura,22,,5.99088,8.280135 hr,butkovici,Butkovici,08,,44.5233333,15.4391667 cn,chedaohu,Chedaohu,12,,29.702587,109.375791 pk,langar khel hathi khan,Langar Khel Hathi Khan,03,,32.507185,70.970817 cn,shicao,Shicao,07,,24.081944,117.371111 ye,suq at talh,Suq at Talh,15,,17.0222222,43.675 pg,pakowabu,Pakowabu,02,,-7.8833333,145.3666667 kr,wolchon,Wolchon,06,,37.1362,129.2914 ru,raototurskaya,Raototurskaya,40,,54.980278,64.640833 cn,piaojing,Piaojing,18,,27.454444,105.686667 gr,kato olga,Káto Ólga,39,,37.9,21.35 gb,stanwix,Stanwix,C9,,54.9,-2.933333 ga,kabaga,Kabaga,02,,-1.3666667,13.9 ir,badiyeh yek,Badiyeh Yek,23,,33.5682,48.4115 sa,khalfah,Khalfah,17,,16.554614,43.089377 mx,tasbata,Tasbata,22,,20.716667,-99.9 al,kimza,Kimza,49,,41.9805556,20.0569444 cn,nanhua nongchang,Nanhua Nongchang,30,,20.451111,110.224167 cz,albrechtitz,Albrechtitz,79,,49.254501,14.306277 de,varel,Varel,06,25303,53.4,8.133333 ru,shapkovo,Shapkovo,60,,57.7295,28.5204 hr,orlovac,Orlovac,15,,43.4225,16.8705556 ru,khutorskoy,Khutorskoy,75,,57.283333,81.933333 do,el alto del aguacate,El Alto del Aguacate,30,,19.25,-70.6666667 ma,oulad lahsene,Oulad Lahsene,45,,33.530114,-7.637667 co,la cristalina,La Cristalina,23,,4.575,-75.648056 kh,p'um andaung krasang,P'um Ândâung Krâsâng,12,,12.5833333,103.8166667 id,plosokuning tiga,Plosokuning Tiga,10,,-7.736944,110.407222 id,palakahan,Palakahan,08,,-7.1868,112.633 ee,kikepere,Kikepere,11,,58.2547222,24.8688889 hu,hokahalom-puszta,Hókahalom-puszta,17,,46.218977,17.280693 th,khlaung daen,Khlaung Daen,68,,7.91493,100.307557 pl,strzepin,Strzepin,86,,52.266096,16.544289 ir,kani zar,Kani Zar,16,,35.6031,47.3983 cn,zhujiawan,Zhujiawan,26,,33.709585,107.396254 id,tlogo lor,Tlogo Lor,07,,-7.750278,110.498889 mz,mechava,Mechava,05,,-20.6775,34.5291667 hr,udovicic,Udovicic,15,,43.5463889,17.0125 us,ford,Ford,MT,,45.1536111,-112.7141667 pl,wokowice,Wokowice,77,,50.015823,20.691275 es,viseo,Viseo,58,,43.045137,-9.247073 ma,yamaa el uad,Yamaa el Uad,57,,35.448356,-5.146221 hr,krivaja,Krivaja,05,,45.2047222,15.7322222 th,ban khlong sieo,Ban Khlong Sieo,60,,8.633333,99.3 cn,nanhsingtu,Nanhsingtu,04,,31.342027,120.903663 hn,la cienaga,La Ciénaga,07,,13.8833333,-86.85 pl,kolonia debowka,Kolonia Debowka,75,,51.283333,22.483333 fr,jasseines,Jasseines,A4,,48.501009,4.3875 pa,camaron,Camarón,08,,8.8833333,-79.6333333 th,ban yai,Ban Yai,34,,14.75,100.6 et,uera-bedzhiro,Uera-Bedzhiro,52,,9.279444,43.390556 lk,iyakkachchi,Iyakkachchi,31,,9.5666667,80.4 ye,ash sha`bah,Ash Sha`bah,12,,16.3333333,43.1666667 pk,gurawr ghari,Gurawr Ghari,03,,36.4391,72.7813 ua,molodia,Molodia,03,,48.223257,26.021392 ir,ezz abad,Ezz Abad,40,,32.080611,54.126306 cn,quanwan,Quanwan,11,,29.643611,109.873611 id,cirampong,Cirampong,30,,-6.357222,106.398333 id,kuang,Kuang,17,,-8.6828,116.3896 in,lamnau,Lamnau,35,,24.1078,78.9834 pl,winiary gorne,Winiary Gorne,84,,50.283333,20.766667 pk,ghurio mahar,Ghurio Mahar,05,,28.048926,69.505196 pg,urapmin,Urapmin,18,,-5.15,141.5166667 cn,dadao,Dadao,16,,25.088889,110.525556 de,oberkaging,Oberkaging,02,,48.15,12 ru,tsaram,Tsaram,11,,50.6,106.6 pk,tazagram,Tazagram,03,,34.45387,72.051086 ir,merkeh derizh,Merkeh Derizh,16,,35.6733,46.1053 id,munggangnangka,Munggangnangka,07,,-7.2491,108.6457 pl,zukowo,Zukowo,86,,52.615993,16.723987 si,rakitovac,Rakitovac,04,,45.4691667,13.9708333 iq,harsham,Harsham,11,,36.4033333,44.0927778 ru,bolshoye kislovo,Bolshoye Kislovo,69,,55.2486,32.3651 me,madgus,Madgus,00,,42.073611,19.281389 es,el figaro,El Figaró,56,,41.720522,2.272911 af,dughabad,Dughabad,17,,34.055833,69.008611 id,cappabattatana,Cappabattatana,38,,-2.6662,120.4931 bg,ptichari,Ptichari,39,,42.9166667,26.2333333 fr,leme,Lème,97,,43.5,-.366667 id,kitematah,Kitematah,26,,3.3964,98.3807 gr,sikea,Sikéa,45,,35.0333333,25.6 co,masagu,Masagú,26,,6.633333,-74.366667 gb,kimberworth,Kimberworth,L3,,53.433333,-1.383333 tw,shenaokeng,Shenaokeng,04,,25.1255556,121.7825 al,marinas mesheqi,Marinas Mesheqi,44,,40.7761111,19.4375 pl,sadoles,Sadoles,78,,52.657475,21.847658 ru,mindegulova,Mindegulova,08,,53.0526,57.339 af,ghors garah,Ghors Garah,23,,31.415556,67.28859 mm,khauchi auk,Khauchi Auk,09,,18.0333333,97.0833333 kg,uchbay,Uchbay,05,,40.3,72.7 my,taman purnama,Taman Purnama,13,,5.2762,103.1612 id,aikerang,Aikerang,18,,-8.5965,117.6281 cn,tieyupu,Tieyupu,26,,33.628333,110.513889 cn,jinjishankou,Jinjishankou,03,,29.335196,115.189912 ci,tyopleu,Tyopleu,78,,7.192476,-7.735934 ir,baghleh,Baghleh,10,,33.5283,46.8218 cn,onsu,Onsu,13,,41.221111,80.246944 af,`aseq kala,`Aseq Kala,28,,32.148611,67.496667 br,sao pedro,São Pedro,22,,-5.155833,-36.285278 id,penibungan,Penibungan,11,,1.183333,108.983333 az,hacixanli,Hacixanli,28,,39.857222,46.271667 br,colegio,Colégio,27,,-23.711314,-47.307933 co,aguacate,Aguacate,20,,1.55,-78.033333 ir,amirabad-e harigan,Amirabad-e Harigan,03,,32.355341,50.430946 de,katzental,Katzental,01,,47.933333,7.85 cn,jilin,Jilin,05,1881977,43.850833,126.560278 mz,mangonzo,Mangonzo,04,,-24.2369444,32.2013889 jp,tateno,Tateno,14,,36.033333,140.116667 ne,tambey touareg,Tambey Touareg,06,,13.9333333,5.7833333 us,gray,Gray,OK,,36.5583333,-100.8233333 ci,bouedi,Bouédi,82,,5.658064,-3.721561 de,gisselberg,Gisselberg,05,,50.766667,8.75 cg,ibamba,Ibamba,07,,-3.35,12.5 id,ciinjuk,Ciinjuk,33,,-6.2663,106.134 tr,bahce,Bahçe,25,,40.1278,42.029929 id,babakanciawi,Babakanciawi,30,,-6.329167,107.529167 in,kulbaria,Kulbaria,28,,22.545278,88.503611 dk,erlev,Erlev,21,,55.242493,9.473844 id,besalen,Besalen,10,,-7.651667,110.465278 ml,sanpakabougou,Sanpakabougou,00,,15.2,-8.1666667 ng,gidan labo,Gidan Labo,24,,11.35,7.083333 hn,el valparaiso,El Valparaíso,07,,14.3,-86.5333333 ng,ikot oru,Ikot Oru,21,,5.162553,7.799853 cn,shangmajia,Shangmajia,15,,35.628521,105.335133 by,babichi,Babichi,07,,55.0166667,27.7666667 pk,basti marjiuna,Basti Marjiuna,04,,28.749875,70.664147 md,dragusenii vechi,Dragusenii Vechi,77,,46.983889,28.450278 cn,dongshanmiao,Dongshanmiao,10,,40.668889,115.723333 sv,montanita jicaro,Montañita Jícaro,14,,13.5333333,-88.5166667 cn,huiyuancun,Huiyuancun,26,,34.936696,109.057195 az,chereke,Chereke,22,,40.561389,47.687222 ir,tayebdar chah kheshti,Tayebdar Chah Kheshti,29,,28.6622,56.4465 ru,martynyata,Martynyata,90,,58.666667,55.633333 pk,firoza,Firoza,04,,28.767497,70.816225 id,munder bawah,Munder Bawah,17,,-8.2763,116.3411 cn,wurag,Wurag,14,,31.802,96.202 us,bacchus,Bacchus,UT,,40.6630556,-112.0952778 pk,ahmad bakhsh zaildar,Ahmad Bakhsh Zaildar,05,,26.662526,68.243852 cn,bishu,Bishu,16,,25.656111,109.785278 af,chanarmasah,Chanarmasah,18,,34.451533,70.527893 af,naubadam,Naubadam,11,,34.293518,62.314312 pk,lakhan baloch,Lakhan Baloch,05,,24.516903,67.65653 cn,purun,Purun,32,,29.420217,105.288836 ru,gostye,Gostye,25,,54.230219,35.143796 id,pangkalanmoentai,Pangkalanmoentai,11,,-2.4,111.266667 bj,tiafarga,Tiafarga,01,,10.8666667,1.5 ru,lipovskiy,Lipovskiy,71,,57.018249,61.118962 ru,kochergovka,Kochergovka,69,,55.3272,32.284323 mk,dobreovo,Dobreovo,83,,42.0238889,22.1958333 mz,matrez,Matrez,07,,-14.3180556,35.6244444 mm,longtang,Longtang,11,,21.4666667,97.7 at,rosenburg,Rosenburg,03,,48.633333,15.633333 mk,Ðermo,Ðermo,31,,42.0516667,20.9683333 td,katchalong,Katchalong,12,,13.1833333,21.7333333 ru,komarovka,Komarovka,62,,53.428333,40.033889 mz,macassa,Macassa,06,,-14.8261111,39.6269444 pk,kot ratta,Kot Ratta,04,,29.585966,70.837831 my,rumah indang,Rumah Indang,11,,1.983333,111.516667 mg,ankilimahavelo,Ankilimahavelo,03,,-19.15,44.6666667 cz,drhotin,Drhotin,86,,49.820205,15.616259 zr,bokuma,Bokuma,00,,-0.6666667,20.9833333 vn,huong tuong,Huong Tuong,30,,21.116667,106.833333 ng,ungwan gateri,Ungwan Gateri,57,,11.221319,6.37924 af,gurichi,Gurichi,30,,36.438436,66.914332 hu,acsad,Acsád,22,,47.32493,16.733496 hu,vashegy,Vashegy,24,,46.833333,17.183333 ht,pont bambou,Pont Bambou,06,,19.0833333,-72.7 ru,novoye sokhnovo,Novoye Sokhnovo,52,,57.664781,32.278947 mk,klinovo,Klinovo,B5,,41.2375,21.9486111 af,karese jabbar,Karese Jabbar,11,,33.124729,62.579454 ga,engasse,Engasse,09,,1.9,11.85 cn,changchunjiuzhu,Changchunjiuzhu,31,,18.883333,109.481111 nl,meer,Meer,05,,50.780396,5.793416 ru,nizhhniy azyal,Nizhhniy Azyal,45,,56.090278,48.729167 id,lambator,Lambator,08,,-7.2046,113.3757 tr,yukarinarli,Yukarinarli,55,,41.183333,35.266451 az,karabudshach,Karabudshach,27,,40.426044,48.058611 mx,mochogueachic,Mochogueachic,06,,27.75,-107.333333 ir,mahjerdu'iyeh,Mahjerdu'iyeh,29,,30.3633,55.4307 id,malingping,Malingping,30,,-6.431944,107.0075 cn,daqiu,Daqiu,07,,25.941944,117.630833 bo,kalka,Kalka,04,,-17.3333333,-68.6666667 id,minangatalu,Minangatalu,41,,-3.0486,119.3252 af,sost pa'in,Sost Pa'in,01,,36.980437,72.750584 es,vilanova i la geltru,Vilanova I La Geltru,56,,41.222982,1.725695 al,gjerbesi,Gjerbësi,40,,40.6291667,20.2511111 dz,arhlal,Arhlal,36,,35.2038889,-1.0638889 id,winong tengah,Winong Tengah,30,,-6.678889,108.421667 pl,mazaniec,Mazaniec,74,,51.215562,18.866351 sv,agua escondida,Agua Escondida,05,,13.8308333,-89.3508333 es,lourido,Lourido,34,,43.417186,-7.104203 tr,zekeriya,Zekeriya,34,,41.198056,29.030278 at,langen,Langen,08,,47.133333,10.116667 pk,ladia,Ladia,04,,32.802932,74.033019 br,oficinas,Oficinas,15,,-17.633333,-41.716667 de,westerwald,Westerwald,06,,52.25,9.25 cg,moukoulakenzo,Moukoulakenzo,11,,-4.2727778,15.0125 pl,krzykawa,Krzykawa,77,,50.308404,19.429828 ua,lesnoy khlebichin,Lesnoy Khlebichin,06,,48.6925,24.924722 ru,ulus ureiska,Ulus Ureiska,93,,50.666667,112.85 us,sharp top,Sharp Top,GA,,34.3630556,-84.4830556 eg,`ezbet muhammad ibrahim `awad,`Ezbet Muhammad Ibrahim `Awad,07,,30.7166667,32.25 cn,niqiutang,Niqiutang,30,,25.030424,113.092455 ir,robat beyk,Robat Beyk,23,,34.004336,48.83738 ma,lajema,Lâjema,51,,32.428512,-9.102206 pa,catalina,Catalina,02,,8.4,-82.1333333 vn,diem truong,Diem Truong,28,,13.6,109.216667 ro,berindei,Berindei,42,,44.116667,24.566667 de,niederneureuth,Niederneureuth,02,,48.666667,13.7 mm,wan hsawngpu,Wan Hsawngpu,11,,20.65,99.3 kr,sojidong,Sojidong,17,,36.5731,126.5377 pk,lakha,Lakha,05,,25.954956,68.204626 pt,salzedas,Salzedas,22,,41.054773,-7.725067 mx,hoyitas,Hoyitas,16,,19.725,-101.383333 ir,darmish kola,Darmish Kola,35,,36.65,51.416667 th,ban lam phakchi,Ban Lam Phakchi,39,,14.076084,100.563445 al,tetaj,Tetaj,47,,42.2797222,19.9533333 ye,kinshia,Kinshia,00,,12.2166667,52.1 ro,chiriacu,Chiriacu,42,,44.047778,25.772222 hu,hoffmann malom,Hoffmann Malom,02,,45.966667,18.283333 dz,beymouth,Beymouth,07,,35.9252778,0.0930556 kz,lebyazh'e,Lebyazh'e,16,,55.041389,70.845278 ng,oyoma,Oyoma,52,,4.775285,6.068006 kp,sangdoktong,Sangdoktong,06,,38.4383333,125.3916667 se,munkhyttan,Munkhyttan,15,,59.616667,15.15 ee,joksi,Jõksi,12,,58.0072222,26.73 mz,nhamessolo,Nhamessolo,10,,-17.2397222,34.0172222 zm,chibunda,Chibunda,06,,-11.9833333,32.5333333 ro,lichitis,Lichitis,36,,45.766667,21.933333 rs,laletic,Laletic,00,,42.534722,21.001389 eg,ad duwayr,Ad Duwayr,17,,26.9625,31.3522222 fi,korpimaki,Korpimäki,14,,63.416667,28.6 ua,tatarnovichi,Tatarnovichi,27,,51.022663,28.874114 gb,buckhaven,Buckhaven,V1,16063,56.166667,-3.033333 af,dzhari-dzhingani-khurd,Dzhari-Dzhingani-Khurd,41,,34.216622,66.387705 es,fonzaleche,Fonzaleche,27,,42.581144,-3.012179 us,pine island,Pine Island,NJ,,39.4202778,-75.4255556 pt,gavinheira,Gavinheira,14,,39.044786,-9.076114 tn,smidja,Smidja,37,,36.456763,10.025317 pe,mungui,Mungui,04,,-15.1827778,-72.9055556 cm,mengeme,Mengémé,11,,3.4333333,11.7 ir,qal`eh chalgah,Qal`eh Chalgah,16,,36.133333,46.8 id,mafoematiti,Mafoematiti,29,,.65,127.416667 pk,nawab bhatti,Nawab Bhatti,05,,26.202427,68.376226 es,iseca vieja,Iseca Vieja,39,,43.401591,-3.371202 mm,hlwazin,Hlwazin,09,,18.7833333,96.5166667 th,ban huai rai,Ban Huai Rai,26,,15.812778,101.71 fr,vimines,Vimines,B9,,45.547409,5.864927 af,sarakhtak,Sarakhtak,10,,32.910574,64.719989 af,sarqul,Sarqul,27,,34.390278,68.466111 gr,proskinitarion,Proskinitárion,11,,40.35,21.9666667 ba,donje biosko,Donje Biosko,01,,43.8869444,18.465 th,ban sala u ma,Ban Sala U Ma,31,,5.991194,101.934917 jm,hutchensons hale,Hutchensons Hale,09,,18.25,-77.2166667 ir,kangeh,Kangeh,36,,36.583333,48.933333 tr,huseyinli,Hüseyinli,38,,38.266667,35.733333 al,kuta,Kuta,44,,40.4733333,19.7663889 cd,luambo,Luambo,05,,-10.816667,26.783333 no,meland,Meland,07,,59.65,5.9 ng,tungan rafi,Tungan Rafi,51,,13.502485,5.285311 sk,zsely,Zsély,01,,48.1333333,19.3666667 hr,obilje,Obilje,12,,44.8405556,15.2513889 br,torre segura,Tôrre Segura,13,,-5.716667,-47.316667 de,kaltental,Kaltental,01,,48.733333,9.133333 pk,basti zaildar ali muhammad saldera,Basti Zaildar Ali Muhammad Saldera,04,,29.986111,72.695833 ru,glushevskiy,Glushevskiy,84,,49.99,42.014444 af,katah cheshmeh,Katah Cheshmeh,09,,34.267968,65.209257 ci,etchimou,Etchimou,82,,5.270709,-4.073958 bf,burasso,Burasso,58,,12.6333333,-3.7166667 tw,kutou,Kutou,04,,23.7166667,120.4333333 us,west weber,West Weber,UT,,41.2488889,-112.0775000 my,kampong batu dua,Kampong Batu Dua,02,,5.6,100.7 de,arnsberg,Arnsberg,02,,48.933333,11.383333 ru,sambatuksa,Sambatuksa,28,,60.93349,33.25101 fr,les rues,Les Rues,A8,,49.020891,1.755973 cn,baliwan,Baliwan,25,,35.905833,116.180556 us,new harmony,New Harmony,OH,,39.0136111,-84.0122222 vn,phu thien,Phu Thien,27,,14.166667,109.033333 us,tongue point village,Tongue Point Village,OR,,46.1969444,-123.7705556 tr,abonunkomu,Abonunkomu,25,,39.6,41.366667 de,gross salitz,Groß Salitz,12,,53.666667,11.05 mx,el chamizal,El Chamizal,22,,20.743056,-99.838889 ma,tadafalte,Tadafalte,55,,31.439984,-5.428415 ph,binaratan,Binaratan,28,,18.1702,120.6514 kp,hagi,Hagi,06,,37.9833333,125.4833333 lb,chiyah,Chiyâh,05,,33.8483333,35.5280556 bo,itau,Itaú,09,,-21.7,-63.9 vn,hoanh dong,Hoành Dông,14,,20.283333,106.45 zr,tambili,Tambili,00,,4.0333333,20.75 pe,chiaraque,Chiaraque,21,,-16.3166667,-69.3166667 td,mineminanga,Minéminanga,01,,13.4666667,17.2 jp,shibunnai,Shibunnai,12,,44.656667,142.054444 pk,chukutans,Chukutans,07,,36.138089,75.063806 cf,chiwa,Chiwa,14,,10.0166667,21.9333333 pe,accocerca,Accocerca,09,,-13.1333333,-74.95 af,shah vali,Shah Vali,39,,32.671036,65.823228 rs,tovrljan,Tovrljan,00,,43.106389,21.4175 cz,rokytnik,Rokytnik,82,,50.49984,16.170017 ru,novoarmetyevo,Novoarmetyevo,08,,53.660801,56.50201 ee,parsi,Pärsi,20,,58.1497222,25.5658333 nl,de heid,De Heid,07,,52.9294,5.024829 ir,chah dozdan,Chah Dozdan,29,,29.67227,54.646838 ve,la maita,La Maita,05,,8.0166667,-67.7166667 zr,yalukutuambole,Yalukutuambole,09,,0.8166667,23.5 cn,laoheishanpentsun,Laoheishanpentsun,08,,43.711758,130.880119 de,wohldorf-ohlstedt,Wohldorf-Ohlstedt,04,,53.716667,10.116667 pk,kang bundala,Kang Bundala,04,,31.305483,72.970953 id,gelagah,Gelagah,15,,-5.113255,105.539065 ao,pegado de cima,Pegado de Cima,12,,-9.465158,16.170302 iq,jabbar,Jabbar,07,,33.2702778,44.4261111 kr,yuji,Yuji,06,,37.2901,128.6334 id,bantaran,Bantaran,08,,-7.867,113.1776 fr,la bediniere,La Bédinière,A3,,47.358101,1.927123 ru,malfino,Malfino,39,,56.0664,91.2715 ec,hacienda el pongo,Hacienda El Pongo,02,,-3.1333333,-79.1 tz,nyangamara,Nyangamara,07,,-10.3666667,39.6666667 cm,longtoka,Longtoka,05,,4.4911111,9.9708333 ma,mzizil tillechte,Mzizil Tillechte,48,,32.235711,-4.72583 kh,phumi rong vien,Phumi Rong Vien,01,,13.7833333,103.4166667 in,rupnagar,Rupnagar,23,52317,30.966389,76.533056 pk,tortangi,Tortangi,02,,30.798203,67.360397 us,rock,Rock,LA,,31.4369444,-92.7344444 ao,chissonde,Chissonde,08,,-11.933333,15.666667 id,gonggong,Gonggong,18,,-8.6315,120.2984 so,mood mooda,Mood Mooda,04,,3.0166667,43.8333333 bi,burazi,Burazi,14,,-3.0108333,30.2705556 za,mosselbaai,Mosselbaai,11,,-34.183067,22.146048 pl,kuznica trzcinska,Kuznica Trzcinska,86,,51.168126,18.044552 sn,ouro sire,Ouro Siré,05,,14.4,-13.05 id,balirama,Balirama,18,,-9.7347,119.3162 cn,shiluojiang,Shiluojiang,30,,24.60869,116.445366 th,nam mi,Nam Mi,10,,17.553722,100.450056 sa,qusayr matruk,Qusayr Matruk,13,,26.660693,41.990872 bg,tschernewo,Tschernewo,43,,42.3333333,25.5166667 de,ilbesheim,Ilbesheim,08,,49.1825,8.055 id,udi,Udi,18,,-8.8922,121.2931 ir,gudar qamban,Gudar Qamban,15,,32.033333,49.566667 ir,hoseynabad akhvond,Hoseynabad Akhvond,41,,32.2275,59.6141 pg,nivi,Nivi,09,,-6.2,145.3333333 fr,reces,Reces,B3,,44.465258,1.1097 cn,changchiawan,Changchiawan,01,,32.48,118.131389 ma,bergount,Bergount,55,,31.244527,-6.868923 th,ban makok,Ban Makok,27,,15,102.016667 cn,xiangmaona,Xiangmaona,14,,31.002,91.602 in,arasankalani,Arasankalani,25,,12.880278,80.198333 af,giro joy,Giro Joy,03,,35.615287,68.31528 ph,malingon,Malingon,71,,6.683611,124.786667 ht,mare colas,Mare Colas,06,,19.5333333,-72.7166667 hn,el corcovado,El Corcovado,17,,13.5241667,-87.4986111 us,reed station,Reed Station,IN,,40.2150000,-85.5180556 gr,liakeika,Liakéïka,38,,38.2666667,21.8333333 gb,steeple claydon,Steeple Claydon,B9,,51.933333,-.983333 id,tampungan,Tampungan,07,,-7.340556,111.082778 us,reynoldsville,Reynoldsville,PA,,41.0969444,-78.8888889 rs,lalici,Lalici,00,,42.6575,20.5975 kz,nalivayka,Nalivayka,10,,41.1525,67.013056 at,rannersdorf an der zaya,Rannersdorf an der Zaya,03,,48.603611,16.716667 us,fleming,Fleming,IN,,38.9736111,-85.8063889 sk,sarisske cierne,Sarisske Cierne,05,,49.35,21.4 lk,yakgaha,Yakgaha,34,,6.05,80.2833333 jp,imuracho,Imuracho,01,,34.733333,137.433333 cn,wangcunpu,Wangcunpu,09,,33.01686,112.412021 ma,id m'barek ouhmad,Id M'barek Ouhmad,47,,31.178954,-9.71457 fr,cezerat,Cézerat,98,,45.208583,2.898817 tw,peifuli,Peifuli,04,,23.6666667,121.4333333 es,santa maria del campo rus,Santa María del Campo Rus,54,,39.559425,-2.423065 id,sitapoyanjulu,Sitapoyanjulu,26,,1.8724,98.8272 ir,mazqan,Mazqan,34,,34.01003,50.381786 kr,janggyeri,Janggyeri,13,,37.050833,127.408889 bg,khursovo,Khursovo,61,,43.5166667,27.2 ve,el toro,El Toro,19,,10.3527778,-63.5608333 sy,jobb el qader,Jobb el Qâder,09,,36.55,38.1833333 mx,tetepan,Tetepan,14,,19.466667,-103.8 gt,san pedro cadenas,San Pedro Cadenas,12,,15.95,-89.25 ve,el masparrito,El Masparrito,05,,8.5333333,-69.7333333 ru,zhitnitsy,Zhitnitsy,60,,56.774149,30.703294 gd,woburn,Woburn,03,,12.0166667,-61.7333333 pe,villa san juan,Villa San Juan,14,,-6.3752778,-79.8 pk,kalanju,Kalanju,05,,25.333832,68.411221 kr,panyang,Panyang,20,,35.641291,128.034437 pk,chhawar,Chhawar,02,,25.533333,61.891667 pk,chak jaspal,Chak Jaspal,04,,32.524702,73.913248 ir,chahar rah,Chahar Rah,28,,31.17391,51.383242 pl,mochowo,Mochowo,78,,52.76564,19.555846 es,riogordo,Ríogordo,51,,36.917273,-4.293179 uz,bagryn',Bagryn',08,,39.3333333,66.05 ci,assoumoukro,Assoumoukro,86,,6.464028,-4.372799 sy,baqat,Baqat,09,,35.8333333,37.3166667 la,tiang lang tap,Tiang Lang Tap,06,,20.9,102.383333 zr,kishi,Kishi,04,,-6.15,25.1166667 ph,cabung-cabung,Cabung-cabung,21,,10.683333,123.783333 cn,chengqian,Chengqian,03,,27.679563,114.242589 br,sitio pedro rosa,Sítio Pedro Rosa,18,,-25.228834,-48.560438 id,torjun utara,Torjun Utara,08,,-7.1458,113.2032 ca,varennes,Varennes,10,,45.683333,-73.433333 ru,tamakulskoye,Tamakulskoye,40,,55.942778,64.453889 tw,matai,Matai,04,,24.6666667,121.1833333 ir,ab-e garm,Ab-e Garm,28,,33.549646,54.933859 it,souchere haute,Souchère Haute,12,,45.016667,6.95 ph,quezon,Quezon,I7,,7.332778,125.679444 us,holiday park trailer park,Holiday Park Trailer Park,VA,,37.3936111,-77.4261111 at,polsen,Polsen,05,,47.3,12.633333 se,torrvallen,Torrvallen,07,,62.466667,14.183333 id,wetevaeden,Wetevaeden,04,,-6.1763,106.8144 ru,koshelevo,Koshelëvo,52,,57.8862,31.835 tr,agapinar,Agapinar,40,,39.413996,33.449237 ru,votyakova,Votyakova,90,,59.203487,54.674824 ru,bolshaya polyana,Bolshaya Polyana,53,,55.1853,81.5341 kp,chongsimdong,Chongsimdong,11,,40.0436111,124.4019444 us,purdys grove,Purdys Grove,NY,,40.9925000,-73.6663889 my,kampung tasik hulu,Kampung Tasik Hulu,03,,6.0201,101.9941 kr,kwaerangni,Kwaerangni,13,,37.180556,126.986667 cn,songjiabanshan,Songjiabanshan,15,,32.910295,104.703198 es,puerto cabras,Puerto Cabras,53,,28.50038,-13.862719 mm,mahlaingkyon,Mahlaingkyon,10,,23.65,96.1333333 hu,sandorfalva,Sándorfalva,06,7738,46.360871,20.09889 bg,tekeler sagur,Tekeler Sagur,52,,43.05,26.55 ee,korevere,Kõrevere,11,,58.6666667,25.0463889 cd,panga,Panga,01,,-3.9,18.683333 kr,baetimaeul,Baetimaeul,13,,37.093611,127.218889 ir,talesh bijar,Talesh Bijar,08,,37.2299,49.4794 af,senderzai,Senderzai,10,,31.78877,64.538945 id,buwaran,Buwaran,07,,-7.336667,109.186111 id,sondo,Sondo,17,,-8.613402,118.698557 mz,chefe lucas,Chefe Lucas,04,,-26.5316667,32.6413889 bj,ouabou,Ouabou,01,,10.4833333,1.45 lt,palevene,Palevene,60,,55.8,24.8833333 bd,guzri,Guzri,81,,23.8333333,90.0666667 sy,saibiye,Saïbîyé,09,,35.9166667,37.1 mx,palo blanco,Palo Blanco,07,,26.75,-101.533333 lv,tymmai,Tymmai,26,,57.3166667,24.4166667 sn,ndoukou,Ndoukou,08,,15.6833333,-16.1833333 us,tullahoma,Tullahoma,TN,18692,35.3619444,-86.2094444 bd,palibari,Palibari,83,,24.95,89.3333333 ve,el respiro,El Respiro,03,,7.2077778,-68.9638889 ir,kahriz-e salah od din,Kahriz-e Salah od Din,09,,34.3208,48.1793 ru,tavrovo,Tavrovo,09,,50.512863,36.576965 us,somers crossroads,Somers Crossroads,NC,,36.0833333,-80.8966667 tr,meselidere,Meselidere,74,,37.785278,41.8675 cn,baitangjiang,Baitangjiang,04,,31.273365,121.012747 ro,buzati,Buzati,28,,47.2,26.55 md,kukhuresht'-de-zhos,Kukhuresht'-De-Zhos,75,,47.929444,28.591944 us,bonaventure,Bonaventure,FL,,28.2736111,-80.6936111 cn,tongwen,Tongwen,30,,21.369629,109.933196 tr,karanlikdere,Karanlikdere,44,,37.923921,37.828725 be,le hally,Le Hally,06,,50.15,5.416667 ru,selenginsk duma,Selenginsk Duma,11,,50.913056,106.240556 mg,songary,Songary,06,,-21.4833333,44.2 th,ban wang ka,Ban Wang Ka,50,,15.152778,98.447084 gw,chafena,Chafena,04,,12.5833333,-14.4166667 af,mamadarghan,Mamadarghan,09,,33.665815,65.145946 sk,dolni mladonice,Dolní Mladonice,01,,48.3333333,19.1333333 ru,pachikha,Pachikha,06,,63.624067,44.389961 cn,cuntouping,Cuntouping,07,,27.037282,118.00534 id,tinuson,Tinuson,21,,-1.5036,123.4619 be,rossem,Rossem,02,,50.966667,4.283333 ph,pinangapogan,Pinangapogan,39,,12.186944,123.804167 ao,nicolau,Nicolau,08,,-12.743611,15.650556 ir,gardab-e `olya,Gardab-e `Olya,07,,30.636627,53.27186 pl,wszedzien,Wszedzien,73,,52.699922,17.964382 bj,pahu,Pahu,02,,6.3833333,2.2166667 lu,liefrange,Liefrange,01,85,49.91,5.8775 ec,valle hermoso,Valle Hermoso,12,,-4.0333333,-79.3833333 us,allen,Allen,SC,,33.9211111,-79.0408333 jp,fumigaeshi,Fumigaeshi,24,,38.494123,141.17145 nl,offingawier,Offingawier,02,,53.030844,5.695021 co,cunare,Cuñaré,08,,.474188,-72.526371 vu,lesasa,Lésasa,12,,-15.6833333,168.1666667 tr,guney,Güney,10,,39.533333,28.4 gb,carston,Carston,H8,,53.333333,-2.9 tr,taftikir,Taftikir,25,,40.066667,41.866667 md,telesheuka-nou,Telesheuka-Nou,70,,48.281389,27.888611 th,ban dong mamuang,Ban Dong Mamuang,52,,13.75,99.883333 kr,bangkkaeul,Bangkkaeul,05,,37.0494,127.5164 fr,saint-stail,Saint-Stail,B2,,48.37409,7.0685 id,jegoran,Jegoran,07,,-7.4075,110.638889 za,parsonsheuwel,Parsonsheuwel,05,,-33.933333,25.583333 co,el cural,El Cural,32,,5.444007,-72.325451 az,chukhur-zami,Chukhur-Zami,17,,40.967143,48.807069 ie,thomastown cross roads,Thomastown Cross Roads,12,,53.1975,-6.9530556 uy,carmen,Carmen,05,,-33.25,-56.0166667 kg,imeni kuybysheva,Imeni Kuybysheva,04,,41.5105556,75.8544444 tr,avsere yaylasi,Avsere Yaylasi,71,,37.55,32.633333 id,genayan,Genayan,07,,-7.363333,110.159167 tr,taslica,Taslica,28,,40.76833,38.446392 jp,kami-kunnebetsu,Kami-kunnebetsu,12,,43.533333,143.666667 ro,mihaileni,Mihaileni,20,2605,46.466667,25.816667 kp,onpungdong,Onpungdong,11,,40.3227778,125.0625 id,kanten satu,Kanten Satu,08,,-7.8175,111.5057 ru,krasnokolye,Krasnokolye,76,,53.890241,36.576488 pk,kutria,Kutria,04,,30.227176,70.818975 af,dekhi-mutriban,Dekhi-Mutriban,14,,35.016689,69.626289 id,bungiite,Bungiite,22,,-5.3507,121.8393 id,panggungpucung barat,Panggungpucung Barat,08,,-8.2858,112.008 td,ardede,Ardédé,12,,13.15,20.6833333 lv,viekalas,Viekalas,29,,56.8,22.85 tr,adakoy,Adaköy,48,,36.307392,29.272235 cf,gombi,Gombi,08,,4.8333333,23.25 ir,alwand,Alwand,41,,31.75,59.879 cn,fulongquan,Fulongquan,05,,44.4,124.616667 de,klein kuh,Klein Kuh,07,,51.366667,7.216667 mx,poza verde,Poza Verde,21,,20.2,-97.4 cn,muhua,Muhua,18,,25.766667,106.383333 us,hope,Hope,IN,,39.3038889,-85.7713889 ke,kaganda,Kaganda,01,,-0.75,36.95 ru,vershino,Vershino,77,,56.31034,35.387813 do,monte adentro,Monte Adentro,05,,18.4333333,-69.65 fr,tallende,Tallende,98,,45.671265,3.127994 es,puerto lobo y endrinales,Puerto Lobo y Endrinales,57,,37.983333,-6.166667 tw,nantzu,Nantzu,04,,23.65,120.5333333 ru,penkino,Penkino,69,,55.621111,34.670278 co,el yeso,El Yeso,02,,8.615,-76.475833 la,ban lapite,Ban Lapite,20,,16.515278,106.334444 id,syahmad,Syahmad,26,,3.5507,98.8717 pg,awat,Awat,17,,-6.1166667,149.7 cm,lamorde-djoungoum,Lamordé-Djoungoum,13,,8.8,12.9 us,chiselville,Chiselville,VT,,43.0711111,-73.1350000 ir,chashmeh gorgi,Chashmeh Gorgi,15,,31.681947,49.820008 us,aztec,Aztec,AZ,,32.8244444,-113.4491667 do,hacienda la estrella,Hacienda la Estrella,05,,18.6666667,-69.8666667 af,golapkhel,Golapkhel,37,,33.215,69.820209 kz,kozhevnikov,Kozhevnikov,07,,51.466667,51.066667 ua,larino,Larino,05,,47.892254,37.927044 ir,sar rud-e ayvak,Sar Rud-e Ayvak,05,,31.265463,50.276032 mx,el cirian,El Cirián,15,,18.6,-100.366667 gh,brofoyedru,Brofoyedru,08,,5.4166667,-0.4666667 id,krajan barat,Krajan Barat,30,,-6.204167,107.498056 dz,mechtat bazina,Mechtat Bazina,04,,35.5888889,7.6413889 sd,gweighin,Gweighin,33,,11.15,24.1833333 ng,tunga mude,Tunga Mude,40,,11.466252,4.506026 ve,santa rosa,Santa Rosa,22,,10.2772222,-68.43 ro,filimon sirbu,Filimon Sirbu,14,,44.05,28.516667 us,mountain cove,Mountain Cove,GA,,33.7886111,-84.0605556 hu,istvandimajor,Istvándimajor,02,,46.283333,18.266667 in,jaitsisar,Jaitsisar,24,,28.75,74.45 pl,poradzice,Poradzice,74,,51.995354,19.11044 lt,polangen,Polangen,58,,55.9175,21.0686111 jp,kuchi-sada,Kuchi-sada,23,,34.666667,136.333333 ph,lapuguin,Lapuguin,15,,13.9905,123.0637 id,tanabebe,Tanabebe,18,,-9.5471,119.046 es,hospicio de granada,Hospicio de Granada,51,,37.133333,-3.633333 bg,chaushovo,Chaushovo,61,,43.1166667,26.6833333 us,wellsville,Wellsville,OH,,40.6027778,-80.6491667 mw,nkhuto,Nkhuto,17,,-11.25,34.2166667 ru,gorelyy,Gorelyy,74,,71.533333,98.8 pl,bolmow,Bolmow,86,,51.931257,18.007324 lt,sharkyay,Sharkyay,61,,55.6833333,22.7833333 sy,mashrafat abu jabbar,Mashrafat Abu Jabbar,09,,36.2666667,37.65 fr,ratenelle,Ratenelle,A1,,46.526351,5.014462 lv,kozul'ni,Kozul'ni,10,,56.55,26.3833333 kr,yongdam,Yongdam,20,,35.225954,128.442079 ph,banilao,Banilao,40,,13.0347,120.8035 rs,grmovo,Grmovo,00,,42.32,21.315278 mm,sagyet,Sagyet,08,,22.4333333,96.0166667 th,ban dong marai,Ban Dong Marai,16,,15.791111,99.701389 fr,chadurie,Chadurie,B7,,45.5,.133333 us,leisure mountain,Leisure Mountain,MD,,39.6052778,-77.4897222 us,sugar mill plantation,Sugar Mill Plantation,GA,,30.7763889,-81.5786111 mx,santa amalia,Santa Amalia,26,,29.433333,-111.883333 lt,vieciunai,Vieciunai,56,,54.05,24.0333333 mg,ankilivalo,Ankilivalo,06,,-20.2833333,44.6333333 kr,wondo,Wondo,16,,34.483333,127.283333 gw,sare samba iafa,Sare Samba Iafa,04,,12.595,-15.0558333 ro,gura vladnici,Gura Vladnici,23,,47.316667,26.883333 mx,yecorame,Yecorame,06,,27.216667,-108.6 ru,vir-xote,Vir-Xote,CI,,43.028143,46.034325 us,amorita,Amorita,OK,,36.9244444,-98.2913889 au,ludmilla,Ludmilla,03,,-12.416667,130.85 jp,kiyosato,Kiyosato,12,,43.85,143.516667 ma,chiahna,Chiahna,58,,34.322492,-3.870708 ma,kriba,Kriba,57,,35.18557,-5.756695 sd,el keneiza,El Keneiza,27,,12.85,34.05 pk,usta muhammad,Usta Muhammad,02,43988,28.179429,68.044538 ru,yakovlevo,Yakovlevo,21,,56.492222,41.072512 hn,amarillo,Amarillo,03,,15.8166667,-85.1666667 us,inglewood,Inglewood,LA,,31.2297222,-92.4211111 do,los amaceyes arriba,Los Amaceyes Arriba,08,,19.5333333,-70.5333333 ve,pedrote,Pedrote,12,,9.335,-65.6638889 us,wargo landing,Wargo Landing,AR,,33.8197222,-91.1500000 cn,heishanzui,Heishanzui,10,,41.031111,116.930833 us,luther corner,Luther Corner,MA,,41.7447222,-71.2236111 al,dushk,Dushk,43,,40.9341667,20.1094444 id,ulak,Ulak,11,,.45,112.266667 mz,lacida,Lacida,03,,-22.7486111,35.0536111 ir,laghuz,Laghuz,37,,36.783888,54.096963 us,watervale,Watervale,MD,,39.5283333,-76.3730556 kz,dolbushinskiy,Dolbushinskiy,13,,53.891389,64.075 tw,shalu,Shalu,04,72263,24.2358333,120.5597222 bd,khiarpara,Khiarpara,83,,25.7,88.9666667 mm,shwehle ywathit,Shwehle Ywathit,09,,17.4,96.5 ir,bohreh-ye za,Bohreh-ye Za,05,,30.384448,51.280708 gb,clough,Clough,R9,,54.283333,-5.833333 gh,bukere,Bukere,10,,10.8,-0.8666667 kz,gor'koye,Gor'koye,16,,53.629444,69.152778 pe,pucucho,Pucucho,12,,-11.8,-75.3666667 bg,oreshaka,Oreshaka,58,,42.9166667,23.8333333 hr,rijeka,Rijeka,08,,44.3983333,15.6233333 ru,vitalyevka,Vitalyevka,54,,57.533333,71.133333 th,ban ko mo yisip hok nai,Ban Ko Mo Yisip Hok Nai,70,,6.336139,101.351056 cn,houcun,Houcun,26,,34.2575,108.570833 tr,bahazik,Bahazik,76,,37.9075,41.236944 ma,tikekht,Tikekht,47,,31.143629,-8.43324 ee,suurekorve,Suurekõrve,01,,59.5305556,25.6533333 kp,haodong,Haodong,07,,38.5416667,126.1675 ph,dupinga,Dupinga,47,,15.5,121.3 ru,yet-kyuyel,Yet-Kyuyel,63,,60.969444,120.7525 iq,beshok-i khwaru,Beshok-i Khwaru,11,,36.6561111,44.6483333 ma,anou naadou,Anou Naâdou,55,,29.71,-9.6 mq,le morne-vert,Le Morne-Vert,00,,14.7,-61.1333333 us,sharpsburg,Sharpsburg,KY,,38.2019444,-83.9294444 my,kampong siong,Kampong Siong,02,,5.78863,100.908617 cn,huangzhongkeng,Huangzhongkeng,07,,28.121626,118.535224 us,windemere,Windemere,MA,,42.3055556,-70.8880556 de,melborn,Melborn,15,,50.983333,10.45 fi,teivaa,Teivaa,14,,61.783333,27.85 cn,liujiaping,Liujiaping,26,,33.305727,106.370581 sy,al yaljah,Al Yaljah,10,,35.025,36.525 se,torhult,Torhult,28,,57.766667,13.716667 sy,umm mu`ayzilah,Umm Mu`ayzilah,01,,36.0791667,41.0475 kr,songpyong,Songpyong,16,,34.433611,126.4775 ru,malyye petrishchi,Malyye Petrishchi,47,,56.083333,38.316667 th,ban noi charoen si,Ban Noi Charoen Si,20,,17.834056,103.555861 md,bocicauti,Bocicauti,63,,48.292222,27.174722 la,ban phou luong,Ban Phou Luong,06,,20.516667,102.75 sn,balo kounda,Balo Kounda,11,,13.15,-13.9 bf,ridri,Ridri,16,,12.2041667,-1.2369444 bd,kasibari,Kasibari,82,,22.5166667,89.05 se,uvafors,Uvafors,09,,56.933333,15.85 ru,ovrazhnaya novaya,Ovrazhnaya Novaya,23,,54.710787,21.874665 pe,san rafael hacienda,San Rafael Hacienda,20,,-4.9883333,-80.5858333 ne,baba-koara,Baba-Koara,03,,12.6666667,3.3 ng,chongolo kura,Chongolo Kura,27,,11.383333,14 cn,daan,Daan,32,,30.220695,105.595566 ru,chumayevka,Chumayevka,57,,52.75193,45.909327 ve,tabacare,Tabacare,03,,7.1666667,-69.8666667 pe,yapuma,Yapuma,08,,-15.0769444,-71.2741667 de,neuendorf am speck,Neuendorf am Speck,14,,52.666667,11.783333 cn,hogjilt,Hogjilt,20,,39.716667,107.333333 fr,drachenbronn,Drachenbronn,C1,,48.988214,7.869478 mm,labya,Labya,04,,24.9,96.0666667 mx,vicam,Vícam,26,8837,27.583333,-110.333333 us,grandview,Grandview,KY,,37.7011111,-86.9302778 sn,pakala,Pakala,09,,13.75,-16.3666667 in,bahirewadi,Bahirewadi,16,,16.283333,74.316667 pl,klein tromnau,Klein Tromnau,82,,53.675753,19.168849 ao,tchipato,Tchipato,14,,-10.693242,22.1728 ph,silangan,Silañgan,H2,,14.0264,122.1787 af,numrozay,Numrozay,23,,31.498044,67.446927 ng,odiapa,Odiapa,26,,7.0508,8.3219 es,vecilla de curueno,Vecilla de Curueño,55,,42.848522,-5.406433 id,atdeling 4,Atdeling 4,01,,2.7046,99.6536 kp,hondong,Hondong,06,,38.1436111,125.6027778 ph,nagmarcaan,Nagmarcaan,28,,18.0702,120.7485 id,duwabatok,Duwabatok,08,,-7.0671,112.6913 la,ban keup,Ban Keup,09,,15.4,106.55 mx,agustin melgar,Agustín Melgar,26,,27.216667,-109.683333 ru,dugino,Dugino,33,,57.374955,49.075858 ci,dehouepleu,Déhouépleu,78,,7.099298,-8.113501 us,stockholm,Stockholm,MN,,45.0363889,-94.2208333 mx,ayutla,Ayutla,20,,15.914444,-95.849722 lk,musali,Musali,31,,8.7666667,79.95 th,ban ruam thai phatthana 10,Ban Ruam Thai Phatthana 10,08,,16.460028,98.7775 lt,syandryunay,Syandryunay,60,,56.0605556,24.2744444 cd,dungi,Dungi,02,,-5.383333,18.2 cn,xiahuzigou,Xiahuzigou,19,,40.963126,119.817095 rs,donje dzepe,Donje Dzepe,00,,43.241111,20.732778 cn,zhangjiazui,Zhangjiazui,03,,29.602704,116.219682 in,ladwa,Ladwa,10,23567,29.994444,77.044444 pk,daulat,Daulat,04,,31.305556,73.729167 cn,nanantsun,Nanantsun,24,,37.484167,112.247778 pk,najigaram,Najigaram,03,,34.646667,72.233333 my,kampung teroi,Kampung Teroi,02,,5.650483,100.47933 us,stanford,Stanford,AR,,36.0972222,-90.6636111 ru,krasnovidovo,Krasnovidovo,56,,52.798284,36.670187 mx,hacienda san enrique,Hacienda San Enrique,07,,27.8,-99.883333 kp,hyangamni,Hyangamni,11,,40.0175,126.2169444 pt,vale formoso,Vale Formoso,18,,39.543676,-8.099405 lk,nekati,Nekati,32,,7.7833333,79.9166667 ma,rahahla,Rahahla,47,,31.788206,-9.134174 us,colgate,Colgate,MT,,47.0105556,-104.7550000 mx,tecoloc chico,Tecoloc Chico,21,,19.866667,-98.2 pl,budzow,Budzow,72,,50.586129,16.699301 bf,kada,Kada,39,,11.4833333,-1.65 vn,pang phey dang,Pang Phey Dang,23,,12.133333,108.15 cn,luogang,Luogang,01,,31.766667,117.316667 us,waco,Waco,NC,,35.3613889,-81.4288889 eg,dakkuda,Dakkûda,05,,30.8586111,30.9405556 cn,chunghwopu,Chunghwopu,12,,29.76034,114.001051 za,fairleigh,Fairleigh,02,,-27.776926,29.926862 eg,`izbat al `arif,`Izbat al `Arif,04,,29.4666667,30.8791667 cn,wangchiachiao,Wangchiachiao,12,,30.135097,111.671119 sy,bert jerad,Bert Jérâd,02,,35.75,35.95 ru,petrykino,Petrykino,69,,55.104167,32.448333 id,ombo,Ombo,22,,-4.4488,121.5157 cn,baishibei,Baishibei,30,,24.457213,116.504051 vu,tavendroua,Tavendroua,10,,-16.35,167.3666667 cn,zhuanmalu,Zhuanmalu,32,,26.428792,102.362066 mg,mafana,Mafana,02,,-20.2166667,45.8833333 ye,al haud,Al Haud,06,,13.7166667,44.7166667 us,fort christanna,Fort Christanna,VA,,36.7133333,-77.8708333 kz,aksuskiy,Aksuskiy,13,,52.135,62.148611 pk,kakkewala,Kakkewala,04,,31.966667,74.343889 af,nowe qadam,Nowe Qadam,09,,34.422882,66.224632 in,anjengo,Anjengo,13,,8.666667,76.766667 il,nes tsiyona,Nes Tsiyona,02,,31.926389,34.803333 cn,zhuoxi,Zhuoxi,02,,29.862491,120.269271 cn,hetupu,Hetupu,01,,30.833333,116.05 zm,kanjelenjele,Kanjelenjele,06,,-13.2833333,31.6833333 ng,macjajakiri,Macjajakiri,50,,4.791316,6.800946 us,heimforth,Heimforth,MI,,44.8575000,-85.7088889 cd,boyakana,Boyakana,02,,3.716667,19 hn,la bodega,La Bodega,08,,13.9316667,-87.2288889 rs,bakraclici,Bakraclici,00,,43.883889,19.785 cr,puente de piedra,Puente de Piedra,01,,10.047589,-84.316332 af,qal'eh-i-hakemi,Qal'eh-i-Hakemi,03,,35.991091,69.505328 cn,zhoujiahe,Zhoujiahe,12,,30.309148,114.017834 af,khvarkalay,Khvarkalay,28,,31.749827,67.313328 af,ma rufkel,Ma rufkel,29,,32.415079,68.155766 ng,oloti,Oloti,32,,8.283333,4.183333 gn,madine,Madiné,26,,12.15,-8.9833333 id,gertok,Gertok,17,,-8.5362,116.1457 sd,ash shajara,Ash Shajara,29,,15.5333333,32.5 id,roengkang,Roengkang,07,,-7.4363,108.8526 vn,ban cha kouan,Ban Cha Kouan,22,,21.55,103.233333 ro,mangureni,Mangureni,39,,45.016667,24.45 ci,labayo,Labayo,92,,8.459802,-3.746049 th,ban ngom mot,Ban Ngom Mot,10,,18.020722,100.695584 in,phall thai,Phall Thai,24,,27.280813,71.357889 ru,linahamari,Linahamari,49,,69.639849,31.321355 zr,ipope,Ipope,00,,-2.55,20.3166667 kh,phumi pu nam,Phumi Pu Nam,10,,12.4666667,107.2333333 cu,la siguanea,La Siguanea,16,,22.0666667,-80.0666667 cn,dongyi,Dongyi,02,,30.285,121.245278 gq,nguolensoc,Nguolensoc,06,,1.1666667,10.5666667 gh,metika,Metika,09,,5.05,-2.9166667 sl,kamanka,Kamanka,02,,8.9666667,-11.95 bo,rea rea,Rea Rea,04,,-17.1166667,-67.0666667 pt,boisias,Boisias,13,,39.410736,-9.056486 cn,napo,Napo,14,,32.416667,81.083333 kr,tanggoktong,Tanggoktong,05,,37.2098,128.297 ph,siuan,Siuan,14,,17.8233,121.3491 af,marga,Marga,23,,31.102603,66.595184 pa,arusa,Arusa,05,,8.05,-77.6166667 ml,tife,Tifé,04,,14.15,-1.5833333 ni,bella vista,Bella Vista,12,,12.65,-85.7666667 ir,tag-i-shahr,Tag-i-Shahr,29,,31.35,56.333333 mz,baruco,Baruco,05,,-18.7491667,34.7719444 de,bistrup,Bistrup,07,,52.1,9.066667 pt,vila pouca,Vila Pouca,22,,40.434318,-8.120187 mx,guazango,Guazango,08,,18.816667,-103.9 de,dobitz,Döbitz,13,,51.383333,12.516667 fr,bouin,Bouin,B7,,46.08505,-.014949 by,zagortsy,Zagortsy,06,,54.2333333,27.2833333 us,woodale homes,Woodale Homes,MD,,39.4669444,-76.3094444 zr,kalomonyi,Kalomonyi,03,,-5.7305556,22.4938889 cm,syo syo,Syo Syo,05,,3.855,9.74 cn,yuanshui,Yuanshui,31,,18.852378,110.345006 br,sitio cachoeira,Sítio Cachoeira,27,,-23.191891,-47.50882 th,ban ba ngo yae,Ban Ba Ngo Yae,31,,6.287528,101.769945 fi,jaaskanjoki,Jääskänjoki,15,,62.9,22.516667 tz,limani,Limani,20,,-5.2833333,39.7833333 us,calhoun mill,Calhoun Mill,SC,,34.0327778,-82.4711111 pg,fas number 2,Fas Number 2,18,,-3.2,141.4833333 eg,`ezbet muhammad,`Ezbet Muhammad,03,,30.9147222,30.0761111 ru,agafonikha,Agafonikha,47,,56.05,37.383333 ir,kehtak,Kehtak,29,,30.683333,54.85 us,bass harbor,Bass Harbor,ME,,44.2400000,-68.3444444 sd,abu haraz,Abu Haraz,27,,14.4833333,33.5166667 iq,dirhamiyah,Dirhamiyah,02,,30.3333333,47.7166667 us,cumberland,Cumberland,RI,34843,41.9666667,-71.4333333 dk,nye nyby,Nye Nyby,21,,55.032509,10.612225 vn,ba Ðen,Ba Ðên,29,,15.8,107.633333 si,gross-laschitz,Gross-Laschitz,04,,45.8322222,14.6363889 ir,sheraf,Sheraf,13,,34.4124,46.739 ru,tikhany,Tikhany,77,,56.077222,33.966944 mz,talama,Talama,06,,-15.5575,40.2902778 la,ban houie nok,Ban Houie Nok,06,,19.883333,102.266667 iq,al ghaduri,Al Ghaduri,04,,31.9555556,44.5361111 cn,wubaoshan,Wubaoshan,32,,28.579116,104.399047 ru,anzhero-sudzhenka,Anzhero-Sudzhenka,29,,56.081,86.0285 id,morong,Morong,08,,-7.1028,113.3038 ec,charupe,Charupe,17,,-1.9333333,-77.7833333 gr,olinthos,Ólinthos,15,1155,40.2833333,23.35 il,karmiyah,Karmiyah,01,,31.604387,34.542596 bf,dantoloma,Dantoloma,46,,11.9,-4.5333333 cn,machi,Machi,20,,40.568056,109.818889 gr,khalandrion,Khalándrion,35,74211,38.0333333,23.8 ru,matyushino,Matyushino,60,,56.863248,28.625084 pt,resgatados,Resgatados,07,,40.268059,-8.703193 ir,sang chin,Sang Chin,35,,36.51361,52.52581 ir,jivar,Jivar,13,,35.0094,45.9574 th,ban khlong yai mueang,Ban Khlong Yai Mueang,47,,12.886944,101.453056 sd,chokagiling,Chokagiling,28,,5.2166667,33.7166667 gw,ponta doce,Ponta Doce,04,,12.5333333,-15.25 id,patukgedangan,Patukgedangan,08,,-7.8297,111.5928 cd,mamfalo,Mamfalo,00,,1.683333,18.15 af,mahi furos,Mahi Furos,11,,34.404911,62.141891 pt,vitoria,Vitória,23,,39.066667,-28.05 be,den duivel,Den Duivel,02,,50.85,4.733333 id,cikasur wetan,Cikasur Wetan,30,,-6.772778,107.113056 ru,trebiat,Trebiat,13,,53.29,59.6617 sd,mura,Mura,28,,4.1677778,30.8675 id,bakungrejo,Bakungrejo,08,,-7.6513,112.8868 cz,friedrichswald,Friedrichswald,83,,50.791719,15.141088 fr,saint-parthem,Saint-Parthem,B3,,44.625907,2.315097 sy,derkouk,Derkouk,12,,35.9833333,36.3833333 so,ufurow,Ufurow,04,,2.7333333,42.9 ru,komarinskiy,Komarinskiy,04,,52.15,81.35 id,datarwangi,Datarwangi,30,,-7.4666,107.4117 us,avoca,Avoca,TX,,32.8655556,-99.7155556 tz,isabe,Isabe,27,,-4.6833333,35.8 ph,singat,Singat,63,,15.6156,120.627 no,stuvland,Stuvland,09,,65.95,13.166667 mg,antsakoamivanditra,Antsakoamivanditra,03,,-15.5166667,48.4833333 pl,podlesie,Podlesie,86,,51.936499,17.938009 rw,remera,Remera,09,,-1.8,29.9833333 ca,indian harbour,Indian Harbour,05,,47.483333,-54.2 sd,korgojok,Korgojok,33,,12.6166667,22.65 us,kibbie,Kibbie,MI,,42.4188889,-86.1875000 mx,el calvario,El Calvario,15,,18.725,-99.891667 ne,gaweye,Gawéye,05,,13.4877778,2.1005556 us,gunnings,Gunnings,TN,,36.5319444,-82.3855556 af,darmadar,Darmadar,01,,37.220057,71.438868 us,welby,Welby,CA,,36.1886111,-121.0686111 ma,douar tougouana,Douar Tougouana,47,,31.428215,-7.955711 dz,douar zagnia,Douar Zagnia,26,,35.46,0.3475 ua,godydobrovodka,GodyDobrovodka,06,,48.600545,25.075414 th,ban mon tok kla,Ban Mon Tok Kla,10,,17.7455,100.148861 us,rondout,Rondout,IL,,42.2800000,-87.8952778 eg,`izbat ash shirkah,`Izbat ash Shirkah,03,,30.7138889,30.6375 mn,taylak somon,Taylak Somon,03,,47.25,90.9666667 gw,pejunguto,Pejunguto,05,,11.6166667,-15.4333333 vn,thanh an,Thanh An,27,,14.133333,109.05 ie,gully bridge,Gully Bridge,15,,52.8927778,-7.4180556 fr,beaumont,Beaumont,97,,44.766623,.769162 ng,sabon kaura,Sabon Kaura,23,,10.674252,8.591688 bd,bintilak,Bintilak,81,,23.0833333,90.2 ua,starotroyany,StaroTroyany,17,,45.675841,29.170072 fj,nakodu,Nakodu,03,,-17.3666667,179.4166667 fr,saint-bonnet-l'enfantier,Saint-Bonnet-l'Enfantier,B1,,45.300572,1.523099 id,bontoraja,Bontoraja,38,,-5.505,119.9739 fr,les platrieres,Les Platrières,B8,,43.55,5.433333 om,takham,Takham,02,,23.425,57.4327778 mx,tlamanaca,Tlamanaca,21,,19.683333,-97.683333 tj,chorgul,Chorgul,02,,38.2475,68.9705556 au,loveday,Loveday,05,,-34.283333,140.433333 ph,humaragina,Humaragina,37,,11.302,124.5584 sl,bongboma,Bongboma,03,,7.0663889,-11.4830556 in,julakalava,Julakalava,02,,14.833333,77.783333 pe,hacienda palomani,Hacienda Palomani,08,,-14.5661111,-71.5055556 zm,likalaba,Likalaba,03,,-13.9333333,23.0 lk,kandepitawela,Kandepitawela,34,,7.65,80.8 co,plantano largo,Plantano Largo,36,,5.579444,-73.980833 fr,etrepy,Étrépy,A4,,48.765064,4.80633 tw,lingtingtsun,Lingtingtsun,04,,24.995,121.3644444 cn,yingxiongshan,Yingxiongshan,15,,33.237271,104.419044 sl,gieboya,Gieboya,03,,8.1333333,-12.2 id,tlumbung b,Tlumbung B,08,,-7.1745,112.0018 za,mbeleni,Mbeleni,05,,-32.1,28.7 pt,cabeco da vela,Cabeço da Vela,13,,39.452647,-9.190343 lt,ruska,Ruska,63,,55.65,22.4666667 lk,kelanimulla,Kelanimulla,36,,6.95,79.9166667 tr,havuzkoy,Havuzköy,83,,37.351439,37.722676 ph,matarais,Matarais,58,,12.683333,123.933333 pl,bornitz,Bornitz,85,,53.798469,19.365437 ht,calas,Calas,09,,19.7666667,-72.4333333 my,panching,Panching,06,,3.8958,103.1458 af,abd ol samad khan,Abd ol Samad Khan,19,,31.231417,62.174012 us,manse,Manse,KY,,37.5877778,-84.4377778 cn,longkengkou,Longkengkou,30,,22.430143,112.707344 ir,guchi,Guchi,35,,36.639582,50.587746 tr,ahirli,Ahirli,71,,37.238742,32.118812 gr,xylochorion,Xylochórion,22,,39.4955556,21.5227778 pl,kunicha,Kunicha,81,,53.687312,23.063658 sn,daro marnane,Daro Marnane,10,,13.8333333,-15.4666667 id,rejasantun 1,Rejasantun 1,01,,2.8577,99.626 ba,guvninovci,Guvninovci,02,,43.0158333,18.2808333 zr,mulenda,Mulenda,03,,-6.8,21.2166667 gh,efiduasi,Efiduasi,02,,6.85,-1.4 se,overalve,Överälve,03,,61.883333,16.333333 kr,malga,Malga,13,,37.533333,127.7 gr,bafion,Báfion,35,,38.2833333,23.8 eg,el-handasa,El-Handasa,21,,31.2619444,30.8388889 cn,xinxie,Xinxie,04,,32.068575,121.249358 jp,ikinohama,Ikinohama,31,,34.375,133.6 de,kloster groningen,Kloster Gröningen,14,,51.933333,11.2 pe,carrizal,Carrizal,11,,-14.9016667,-75.1141667 de,natho,Natho,14,,51.95,12.216667 ph,cadu-olan,Cadu-Olan,18,,11.4755,122.9344 iq,shaykh hawwazi,Shaykh Hawwazi,18,,34.9513889,44.7211111 af,surkho parsa,Surkho Parsa,40,,34.923772,68.647946 sy,ras el ain chemali,Râs el Aïn Chémâli,09,,36.5833333,38.35 fr,annesse-et-beaulieu,Annesse-et-Beaulieu,97,,45.164157,.571927 id,blangsalamusim,Blangsalamusim,01,,5.0595,97.5349 pl,hotny wolmeva,Hotny Wolmeva,81,,54.117299,23.468413 us,cascade springs,Cascade Springs,SD,,43.3333333,-103.5500000 th,ban khun nam ngaeng noi,Ban Khun Nam Ngaeng Noi,04,,19.316667,101.116667 pk,goth lal,Goth Lal,04,,29.23869,71.577249 pe,puerto de belen,Puerto de Belen,16,,-3.7602778,-73.2472222 eg,nuju` `arab ghalib abu hasab allah,Nuju` `Arab Ghalib Abu Hasab Allah,10,,28.5166667,30.8833333 us,eagle,Eagle,ID,18351,43.6955556,-116.3530556 af,koh-e sur,Koh-e Sur,42,,35.607702,69.989259 no,nakkestad,Nakkestad,19,,58.066667,7.083333 ru,urevy,Urevy,77,,56.988064,33.314621 be,herderen,Herderen,05,,50.816667,5.566667 br,secretario,Secretário,21,,-22.325278,-43.1825 ht,roche filee,Roche Filée,06,,19.7,-72.6666667 tg,hedjegan,Hédjégan,02,,6.3405556,1.4686111 ua,olkhovets,Olkhovets,06,,48.794012,25.379695 fr,blois-sur-seille,Blois-sur-Seille,A6,,46.749034,5.669536 tr,kuruhuyuk,Kuruhüyük,38,,39.146272,35.472775 cn,xiangjiawan,Xiangjiawan,11,,27.282222,110.196944 mm,sawye,Sawye,08,,21.7166667,96.0166667 fr,la chapelle-aux-filzmeens,La Chapelle-aux-Filzméens,A2,,48.383806,-1.825738 ng,ingawa,Ingawa,24,,12.639682,8.050276 mz,topeia,Topeia,07,,-14.39,37.2913889 ml,koubita,Koubita,04,,15.3666667,-4.5833333 mg,ambalaharahotra ouest,Ambalaharahotra Ouest,02,,-23.2333333,46.5333333 ir,garmi abakan,Garmi Abakan,04,,26.827638,60.976207 ve,ines,Inés,08,,8.5666667,-68.1166667 de,allmosen,Allmosen,11,,51.583333,14.1 pl,gutkowice,Gutkowice,74,,51.763311,20.036831 ve,el saladito,El Saladito,20,,7.7902778,-72.4497222 sk,chanava,Chanava,03,,48.3333333,20.3 ru,maletino,Maletino,88,,57.465233,39.467918 id,pewaneang,Pewaneang,38,,-2.3496,119.7757 us,frogtown,Frogtown,MO,,37.9797222,-90.7663889 ru,lopatkova,Lopatkova,71,,59.384778,63.361828 in,dabom,Dabom,30,,27.8,93.983333 kp,hasongdam,Hasongdam,06,,37.8833333,125.1166667 br,cordeiropolis,Cordeirópolis,27,25639,-22.483333,-47.466667 id,bodjongmalaka,Bodjongmalaka,30,,-6.999444,107.605833 ru,peypiya,Peypiya,42,,59.760559,28.706792 cn,menba,Menba,14,,30.166667,92.2 ar,sanford,Sanford,21,,-33.145543,-61.278387 ch,mellingen,Mellingen,01,,47.417707,8.270511 sa,hujrah,Hujrah,13,,26.833333,41.366667 za,ficksburg,Ficksburg,03,,-28.873682,27.881286 hn,el chaparral,El Chaparral,04,,14.6166667,-88.0166667 fr,croisance,Croisance,98,,44.899056,3.61377 zr,kahia,Kahia,00,,-7.15,26.8666667 bf,nabibougou,Nabibougou,50,,12.1666667,0.5 ir,estahrak,Estahrak,04,,27.813235,59.816387 gt,el oxaqueno,El Oxaqueño,08,,15.466667,-92.066667 ir,siah chenar,Siah Chenar,35,,36.697188,53.221068 pl,glomno,Glomno,85,,54.325278,20.768333 ir,sirizjan,Sirizjan,07,,29.2763,52.0095 af,khoshi chinahha-ye pa'in,Khoshi Chinahha-ye Pa'in,17,,34.009364,69.04172 us,north oakland,North Oakland,PA,,40.9219444,-79.7936111 uz,yaka-duka,Yaka-Duka,06,,40.8333333,71.55 us,pioneer,Pioneer,AL,,33.1663889,-87.8850000 ro,portari,Portari,38,,46.75,27.7 mx,xochiltenango,Xochiltenango,21,8337,18.933333,-97.85 cn,boai,Boai,31,,19.791969,110.560429 ua,velika pobivanka,Velika Pobivanka,21,,50.502422,33.820603 ee,saxbi,Saxbi,07,,59.0211111,23.1619444 ng,gidan-isa,Gidan-Isa,51,,13.098317,5.115748 gh,kuntanase,Kuntanase,02,,6.5333333,-1.4833333 gt,xenacoch,Xenacoch,07,,14.666667,-90.633333 bd,pangasia,Pangasia,80,,22.7166667,90.6 kr,sojongi,Sojongi,19,,36.2872,127.2519 dk,norre haurvig,Nørre Haurvig,18,,55.923632,8.162483 tr,cakirlar,Cakirlar,20,,38.191111,29.316944 ru,sadovaya,Sadovaya,52,,57.865318,31.356747 ru,pervomayskiy,Pervomayskiy,16,,54.914008,46.958314 th,ban khi ka,Ban Khi Ka,30,,15.188972,104.161195 si,cikecka vas,Cikecka Vas,09,,46.7227778,16.3213889 ru,inela,Inela,20,,59.883333,109.333333 ru,ilyukhintsy,Ilyukhintsy,33,,58.4723,49.6205 tw,yuhsiayun,Yuhsiayün,04,,24.8166667,121.3666667 ir,mohammadabad-e `abed,Mohammadabad-e `Abed,42,,36.116389,58.915833 cn,changyingbao,Changyingbao,26,,34.405925,108.086088 tz,mbaleni mchenzani,Mbaleni Mchenzani,21,,-6.0333333,39.25 gq,bedoum,Bedoum,07,,2.15,11.0833333 cn,peichingho,Peichingho,04,,31.823251,121.748211 cl,alvarado,Alvarado,01,,-33.05,-71.116667 pl,rostki strozne,Rostki Strozne,78,,52.844686,21.233616 my,kampong kolek,Kampong Kolek,06,,3.9104,103.107 bo,orcoyo,Orcoyo,01,,-19.05,-64.8333333 id,ratambulu,Ratambulu,07,,-7.320278,109.408333 sd,yaguru,Yaguru,27,,11.25,34.8666667 cn,turfan,Turfan,13,,42.933333,89.166667 mz,dumecha,Dumecha,01,,-11.6611111,40.2122222 ir,hinijan,Hinijan,28,,31.609735,51.869294 cg,angomon,Angomon,03,,0.0441667,15.0044444 td,kale ayerom,Kalé Ayérom,07,,13.55,15.6166667 ba,zabasca,Zabasca,02,,43.2825,18.5383333 pl,jesionowo,Jesionowo,85,,53.943816,20.526541 ng,wuro jato,Wuro Jato,35,,8.533333,11.616667 dz,menzel,Menzel,37,,36.3738889,7.7947222 mn,hanh,Hanh,13,,51.5125,100.6638889 cz,kaiserswalde,Kaiserswalde,83,,51.002332,14.430967 ir,do tuper,Do Tuper,15,,32.221111,49.695 ve,acurigua,Acurigua,11,,11.3088889,-69.4527778 ru,kurskiy vtoroy,Kurskiy Vtoroy,04,,53.416667,80.966667 af,takak,Takak,02,,34.825284,63.506949 ru,noy noroye,Noy Noroye,69,,54.779167,32.270556 cm,otele,Otélé,11,,3.5833333,11.25 tr,kizlac,Kizlac,91,,37.178319,36.642004 ua,birkovskoye,Birkovskoye,27,,51.492403,29.020372 kp,sankaiho,Sankaiho,07,,38.7961111,125.6975 us,beaverton,Beaverton,PA,,40.8433333,-78.3061111 cn,kiaotow,Kiaotow,19,,41.209167,123.724167 bo,cerro del ojo del agua,Cerro del Ojo del Agua,07,,-20.9666667,-65.8 th,ban dong charoen,Ban Dong Charoen,03,,19.482472,99.714111 cn,hunjiang,Hunjiang,19,,40.868889,125.681944 ph,babag,Babag,60,,5.916667,120.916667 cn,jinshanzui xiang,Jinshanzui Xiang,03,,28.733511,116.560325 mx,rancho el sahuaro,Rancho El Sahuaro,26,,30.95,-112.966667 ir,cham-e zaman,Cham-e Zaman,23,,33.383333,48.383333 br,santa gertrudes,Santa Gertrudes,17,,-6.6,-38.25 lr,deeworh,Deeworh,11,,5.6963889,-9.7258333 cn,shangliang,Shangliang,21,,35.516667,106.1 id,luwu,Luwu,18,,-8.4828,120.4612 ml,donbira,Donbira,08,,15.6833333,-4.0166667 az,baladzha shakhnazarli,Baladzha Shakhnazarli,17,,41.280833,48.903611 am,bulakhlar,Bulakhlar,10,,39.7352778,45.5377778 ne,dirgouma,Dirgouma,04,,14.3666667,6.7833333 cn,chizhou,Chizhou,30,,22.989455,116.290707 ru,stepanova,Stepanova,69,,55.255576,32.271159 cn,luoyang,Luoyang,18,,25.1625,106.616667 ua,palcha,Palcha,24,,50.776384,25.641758 cn,qamdun,Qamdün,14,,30.583333,97.966667 ru,imovan,Imovan,92,,58.666667,162.383333 gw,ancaninho,Ancaninho,06,,11.35,-15.85 mx,constitucion,Constitución,03,39915,25.036944,-111.664444 lk,aladeniya,Aladeniya,29,,7.3333333,80.5666667 co,hidalta,Hidalta,33,,5.635206,-74.635522 gr,kavousi,Kavoúsi,46,,35.1166667,25.85 ru,krivenkovskoye,Krivenkovskoye,38,,44.1826,39.2392 rs,kopernice,Kopernicë,00,,42.611111,21.627222 bi,kiremba,Kiremba,13,,-3.6002778,30.0622222 th,ban rim lao santi,Ban Rim Lao Santi,03,,19.845222,99.815722 co,los medios,Los Medios,02,,5.963611,-75.523333 us,oakland,Oakland,IL,,39.6538889,-88.0261111 jp,taketa-machi,Taketa-machi,30,,32.966667,131.4 td,bidougou,Bidougou,08,,8.3333333,15.55 pk,ibrahim chandio,Ibrahim Chandio,05,,26.756814,67.827716 ua,beshuy,Beshuy,11,,44.783333,34.1 mx,sitio del palmar,Sitio del Palmar,20,,16.514167,-96.499167 ir,amir salar-e `olya,Amir Salar-e `Olya,07,,28.9104,52.696 id,mabuk,Mabuk,11,,-.216667,112.2 pg,nenamo,Nenamo,02,,-7.8833333,146.1833333 ao,calongo,Calongo,01,,-12.566667,14.233333 id,babakanlampit,Babakanlampit,30,,-7.1038,107.4332 ru,krasilnikova,Krasilnikova,56,,53.328153,35.776831 pk,band mahi,Band Mahi,05,,27.020669,68.02503 cd,lukangaka,Lukangaka,00,,-3.816667,24.016667 ne,alarsas,Alarsas,01,,17.0166667,8.0 mx,el ritiro,El Ritiro,25,,25.45,-108.466667 fi,gamlas,Gamlas,13,,60.239444,24.887778 us,otter,Otter,OH,,40.2758333,-83.4191667 bd,porapara,Porapara,83,,24.9166667,89.1833333 pk,sal khetar,Sal Khetar,04,,33.784227,73.272969 af,anaro tangay,Anaro Tangay,18,,34.55888,70.73584 de,itterbeck,Itterbeck,06,,52.5,6.8 sd,ilyas,Ilyas,27,,14.9,33.2833333 lt,skliausciai,Skliausciai,63,,56.35,21.95 ci,allo,Allo,82,,5.299019,-3.886955 ru,nilkoba,Nilkoba,44,,61.333333,148.866667 ir,dehnow-ye sadat-e vosta,Dehnow-ye Sadat-e Vosta,07,,30.312079,51.37911 ir,kuh shah,Kuh Shah,11,,28.106667,56.827778 tw,kangao,Kangao,04,,24.8833333,121.8333333 ph,seres,Seres,P1,,7.483333,123.25 kr,kashimori,Kashimori,16,,34.383611,126.496667 ph,cacamilingan sur,Cacamiliñgan Sur,63,,15.683333,120.416667 ua,arapovka,Arapovka,07,,50.110278,37.194722 ru,sidorovka,Sidorovka,85,,60.5164,46.7975 cn,nancha,Nancha,24,,37.913056,111.828889 br,piacaguera,Piaçaguera,18,,-25.479486,-48.475783 kr,ganeungol,Ganeungol,13,,37.184722,126.926111 ua,obzyr,Obzyr,24,,51.454161,25.21723 hn,guante,Guante,08,,14.55,-87.1 us,bates,Bates,MI,,44.7727778,-85.4441667 bd,char jamuna,Char Jamuna,80,,21.9333333,90.4 bd,uttar palahar,Uttar Palahar,81,,24.5833333,90.6166667 id,sotol,Sotol,37,,.2121,101.6129 af,molla senzar menah,Molla Senzar Menah,29,,32.059167,69.024445 ir,jeyhan kuh,Jeyhan Kuh,09,,34.481,48.506899 sy,houaijet kalkali,Houaïjet Kalkali,09,,36.65,38.1666667 us,de witt,De Witt,IA,,41.8233333,-90.5380556 mz,cachite,Cachite,09,,-18.1166667,36.75 gy,awaruwaunawa,Awaruwaunawa,19,,2.6666667,-59.2 cn,heishanzhuang shangjie,Heishanzhuang Shangjie,24,,39.095392,113.117176 cn,hongsiwa,Hongsiwa,24,,39.74788,112.614364 pk,chattu,Chattu,03,,33.938275,73.089437 pl,siedlimowo,Siedlimowo,73,,52.488473,18.223434 us,wigwam villa mobile home park,Wigwam Villa Mobile Home Park,AZ,,33.4686111,-112.0897222 ni,la bocana,La Bocana,15,,11.6,-85.85 md,rotunda,Rotunda,73,,48.244167,27.306389 pl,szynwald,Szynwald,73,,53.403431,17.614954 si,rudnica,Rudnica,09,,46.1494444,15.5375 lt,genkunai,Genkunai,61,,55.95,23.35 co,tumechico,Tumechico,36,,6.016667,-73.466667 vn,cho vac,Cho Vac,34,,19.85,105.8 de,brugge,Brügge,10,,54.183333,10.066667 vn,buon ma then,Buon Ma Then,07,,13.35,108.85 pk,wawananwala,Wawananwala,04,,32.310797,71.459264 de,bielefeld,Bielefeld,07,327198,52.033333,8.533333 se,hyttan,Hyttan,10,,60.183333,16.2 mm,pinping,Pinping,11,,22.1833333,97.0166667 eg,sibirbay,Sibirbay,05,,30.8208333,31.0102778 pg,ben,Ben,11,,-3.5333333,142.7166667 hn,humul,Humul,08,,13.7666667,-87.4666667 do,cachanes,Cachanes,06,,19.2166667,-70.0333333 id,kampungwolu,Kampungwolu,08,,-7.6775,112.8946 ru,pyatnitskiy,Pyatnitskiy,56,,52.828369,35.409469 be,sint-hubertus,Sint-Hubertus,09,,51.083333,3.216667 ir,dehnow,Dehnow,03,,31.712395,50.589706 ru,staryy ukyrchelon,Staryy Ukyrchelon,11,,50.5451,104.9156 la,ban muong panh,Ban Muong Panh,04,,17.616667,105.133333 ir,dam-e ab,Dam-e Ab,15,,31.495552,49.905168 kp,sandang,Sandang,11,,39.6333333,124.7 mx,rancho las delicias,Rancho Las Delicias,07,,26.766667,-101.55 il,julius,Julius,01,,31.683333,34.65 ht,valade,Valade,08,,18.4,-73.4333333 nl,nieuw weper,Nieuw Weper,02,,53.021445,6.344581 tn,sidi bou djobline,Sidi Bou Djobline,15,,35.398333,11.039444 kr,chammak,Chammak,14,,36.5352,129.064 mz,ungula,Ungula,02,,-24.7169444,32.8675 hr,torre di parenzo,Torre di Parenzo,04,,45.3008333,13.6252778 ir,`ali beyglu-ye `olya,`Ali Beyglu-ye `Olya,33,,36.8974,46.9613 sv,santa efigenia,Santa Efigenia,11,,13.97,-89.4125 ph,infanta,Infanta,H2,5321,14.744949,121.649533 ua,chistopolye,Chistopolye,26,,47.383333,36.816667 iq,shuman,Shuman,02,,30.5494444,47.8286111 us,foxhall courtside,Foxhall Courtside,DE,,39.1766667,-75.5880556 gr,kato klainia,Káto Klaínia,37,,37.7833333,22.8666667 it,villafrati,Villafrati,15,,37.9,13.483333 tr,zidikan,Zidikân,04,,39.803333,42.673611 ve,rosalino,Rosalino,08,,9.8527778,-68.1916667 la,ban houapiang,Ban Houapiang,14,,19.25,103.533333 kh,touk meas,Touk Meas,06,,10.6666667,104.5666667 ee,iyri,Iyri,14,,58.4269444,22.7672222 ng,iwrogbovwa,Iwrogbovwa,36,,5.532581,6.0174 cn,dayatun,Dayatun,08,,45.183866,127.13383 af,soro,Soro,05,,34.319745,67.067698 tr,kemeragzi,Kemeragzi,07,,36.880786,30.862498 al,prangulli,Prangulli,49,,42.2319444,19.7147222 co,el cedrito,El Cedrito,37,,5.184167,-75.608889 cn,zitang,Zitang,03,,28.174542,115.132204 bd,behur,Behur,86,,24.9,92.3333333 ng,chilgori,Chilgori,51,,12.833333,5.016667 so,jaaraahorato,Jaaraahorato,16,,9.8333333,43.3166667 us,palo alto,Palo Alto,VA,,38.4233333,-79.3705556 us,white oak,White Oak,MS,,34.4908333,-90.1591667 sy,jrainate,Jraïnâte,02,,35.5833333,35.9666667 uz,myan-tyube,Myan-Tyube,01,,40.5025,72.3261111 pk,sultanabad colony,Sultanabad Colony,05,,25.491802,68.8478 my,kampung teluk tasik,Kampung Teluk Tasik,13,,5.561803,102.6991 mk,vollkovija,Vollkovija,64,,41.7158333,20.6688889 at,ganz,Ganz,06,,47.6,15.683333 ao,muata,Muata,16,,-5.933333,14.233333 ir,saqandi kola,Saqandi Kola,35,,36.437798,53.222301 id,candiperglon,Candiperglon,07,,-7.171667,110.352222 de,buchholz in der nordheide,Buchholz in der Nordheide,06,,53.333333,9.866667 am,evdzhilar,Evdzhilar,03,,40.0427778,44.1458333 at,freidegg,Freidegg,03,,48.1,14.966667 ve,curasima,Curasíma,11,,11.0833333,-69.6166667 ru,yasnaya polyana,Yasnaya Polyana,73,,55.2259,53.3575 ir,deh darvishan,Deh Darvishan,23,,33.293,49.4911 mx,el rusio,El Rusio,06,,30.066667,-108.05 by,staryye gaby,Staryye Gaby,06,,54.8833333,27.2666667 zr,doba,Doba,08,,-4.4166667,14.2666667 se,lindshammar,Lindshammar,12,,57.216667,15.133333 ao,inhacalunga,Inhacalunga,14,,-11.457286,20.656205 gh,furu,Furu,11,,10.6166667,-2.8666667 za,impenjati,Impenjati,02,,-30.926502,30.297458 cn,xicheng,Xicheng,24,,37.451944,112.124722 rs,lesocke,Lesockë,00,,42.662778,21.648056 ao,cauiui,Cauíui,14,,-11.452378,20.750506 fr,rouinon,Rouinon,B8,,44.360966,6.12167 af,ghawchak,Ghawchak,18,,34.427616,70.412476 ir,deh khumsir pa`in,Deh Khumsir Pa`in,05,,30.732986,51.323796 tw,puchiangtsun,Puchiangtsun,04,,23.7,120.3166667 ma,oulad aliouate,Oulad Aliouate,47,,32.222704,-8.315898 br,sitio narciso schafascheck,Sítio Narciso Schafascheck,26,,-26.1416,-49.885 br,sao goncalo do rio acima,São Gonçalo do Rio Acima,15,,-20.016667,-43.533333 bg,chavaklar,Chavaklar,43,,41.4833333,25.2833333 tr,mistin,Mistin,72,,37.323878,41.083515 fr,le grand-bornand,Le Grand-Bornand,B9,,45.943464,6.441107 mx,nuevo centro de poblacion papagayos,Nuevo Centro de Población Papagayos,24,,22.35,-99.466667 zr,kasibili,Kasibili,10,,-2.45,26.85 ve,santa rosa de amonadona,Santa Rosa de Amonadona,01,,1.4872222,-66.9113889 mg,ambaravarandrafia,Ambaravarandrafia,03,,-17.2833333,45.05 ve,joana,Joana,09,,9.0955556,-60.9844444 lr,jida,Jida,11,,5.9333333,-9.6333333 us,forest lawn,Forest Lawn,NY,,43.2488889,-77.5036111 ph,hacienda diamante,Hacienda Diamante,H3,,10.86484,123.022404 ua,poselok moldava,Posëlok Moldava,17,,46.233333,30.433333 ba,sahinovici,Sahinovici,01,,44.0433333,18.0133333 cn,weiyuanhien,Weiyüanhién,15,,35.135833,104.210556 kr,tonggangni,Tonggangni,12,,37.511389,126.526944 cf,ancien dangado,Ancien Dangado,04,,4.0166667,15.8 ru,mari-vozzhay,Mari-Vozzhay,80,,56.012568,52.109393 la,ban phougnakha,Ban Phougnakha,07,,20.529722,101.730556 tr,belloti,Belloti,72,,37.366667,40.083333 us,mehlville,Mehlville,MO,29175,38.5083333,-90.3227778 tw,kuanyinshan,Kuanyinshan,04,,23.4,121.35 mk,orlanci,Orlanci,B4,,41.5036111,21.0394444 us,demuth,Demuth,CA,,41.3377778,-121.2650000 id,banjar bono kaja,Banjar Bono Kaja,02,,-8.5564,115.3156 tg,yabangole,Yabangolé,11,,10.15,0.5666667 ro,kelemenpatak,Kelemenpatak,27,,46.95,25.333333 sd,hufeira,Hufeira,27,,14.1,33.8333333 zr,busumba,Busumba,10,,-4.8166667,27.5 et,botor becho,Botor Becho,51,,8.366667,37.283333 gr,vlachatanon,Vlachátanon,17,,39.825,20.6386111 mr,djilalfa,Djilalfa,04,,15.5833333,-12.75 co,palomas,Palomas,33,,4.405937,-73.172965 ru,sobino,Sobino,60,,58.1734,28.6536 ae,husn dibba,Husn Dibba,06,,25.619547,56.272912 ro,gross tschanad,Gross Tschanad,36,,46.133333,20.583333 pl,luben,Luben,87,,53.315825,16.342876 rs,lalinovac,Lalinovac,00,,42.92,21.641667 rs,siljomani,Siljomani,00,,43.307222,21.348056 vu,tanboun,Tanboun,13,,-15.4666667,166.75 th,ban tu pa hi le,Ban Tu Pa Hi Le,70,,6.318417,101.281528 af,ghwayah,Ghwayah,10,,33.061682,65.130766 ng,zakyi,Zakyi,26,,7.233333,8.7 gr,skamneli,Skamnéli,17,,39.9133333,20.8505556 cn,baimashi,Baimashi,02,,29.2421,118.715878 us,utuloa,Utuloa,AS,,-14.2644444,-170.6172222 us,westwood hills,Westwood Hills,GA,,33.9511111,-83.4608333 ru,sotniki,Sotniki,20,,53.506,101.3454 th,ban ko kok,Ban Ko Kok,47,,12.65,101.55 ua,parnevatoye,Parnevatoye,07,,49.4125,37.445556 ir,zirmanlu,Zirmanlu,01,,37.723,45.2052 cn,kuyuan,Kuyüan,21,,36.006667,106.280833 by,andrzejki,Andrzejki,06,,54.7166667,26.9833333 tr,mollaosman,Mollaosman,04,,39.75,42.95 mm,hkoche,Hkoche,10,,24.4333333,96.05 pk,chhanni wachna,Chhanni Wachna,04,,31.919968,73.877261 id,sandangpangan,Sandangpangan,30,,-6.952222,107.606667 fr,sergines,Sergines,A1,,48.342029,3.262131 pk,bao bandi,Bao Bandi,03,,34.32574,73.094228 lv,pastva barbeles,Pastva Barbeles,04,,56.4502778,24.5983333 id,pantanlumu,Pantanlumu,01,,4.0494,97.1163 ru,pirogovo,Pirogovo,77,,56.486237,35.53138 tg,koueve,Kouévé,18,,6.45,0.7833333 ao,chingango,Chingango,04,,-14.4,19.166667 pg,pompameri,Pompameri,08,,-5.8666667,145.1 ir,kalateh-ye hajji rostam,Kalateh-ye Hajji Rostam,42,,35.569196,59.932112 by,byki,Byki,02,,52.2483333,31.5930556 fr,monteaux,Monteaux,A3,,47.48762,1.113107 id,kokoleh 2,Kokoleh 2,31,,1.6134,125.0264 sl,kuinuntambaia,Kuinuntambaia,02,,9.0166667,-11.2833333 ke,tambach,Tambach,08,,0.6,35.5166667 kr,kyochon,Kyochon,19,,36.3734,127.4717 ng,gwu,Gwu,26,,8.016667,8.766667 ma,dar mouden,Dar Mouden,57,,34.955055,-5.632394 za,kwadlomo,KwaDlomo,05,,-31.718058,27.868592 id,katengkong,Katengkong,38,,-3.0336,119.9859 id,bunta,Bunta,21,,-1.4216,120.6964 ru,belovo,Belovo,29,79424,54.4165,86.2976 id,serang wetan,Serang Wetan,07,,-7.0214,109.5976 gh,fiakonya,Fiakonya,08,,5.8666667,-0.0333333 pg,amora,Amora,09,,-6.5833333,145.5666667 pk,shaikh goth,Shaikh Goth,05,,27.923902,68.5359 pe,sarana hacienda,Sarana Hacienda,20,,-4.9166667,-81.0833333 ye,khadra',Khadra',17,,13.2936111,43.2597222 us,brenham,Brenham,TX,14609,30.1666667,-96.3975000 rs,xerxa,Xërxa,00,,42.078889,20.685278 pl,stacze,Stacze,85,,53.784725,22.624232 ao,sumbi,Sumbi,06,,-10.985553,14.339235 no,gislingrud,Gislingrud,13,,59.583333,11.266667 np,siwanagar,Siwanagar,00,,27.5166667,82.8 sy,az zarah,Az Zarah,11,,34.7166667,36.25 de,deersheim,Deersheim,14,,51.983333,10.783333 in,sithampundi,Sithampundi,25,,11.233333,77.9 th,ban phak sun wichai ahan sat,Ban Phak Sun Wichai Ahan Sat,31,,6.337195,101.940889 bg,jabaltschewo,Jabaltschewo,39,,42.7833333,27.25 id,wonosunyo,Wonosunyo,08,,-7.6193,112.6481 us,braebrooke,Braebrooke,MD,,39.2708333,-76.8125000 cm,ine okpo,Ine Okpo,09,,4.55,8.8 cn,zhaokang,Zhaokang,24,,35.720526,111.247252 vn,xom tac bien,Xom Tac Bien,25,,8.7,104.95 id,sogitia tengah,Sogitia Tengah,34,,.3243,123.4406 fm,barabato,Barabato,04,,9.5030556,138.1283333 mm,wabaw dumhpawng,Wabaw Dumhpawng,04,,24.2166667,97.35 az,keltakhnaly,Keltakhnaly,51,,40.866667,46.183333 pk,goth shoib,Goth Shoib,05,,24.654411,68.097664 ir,sar hamman,Sar Hamman,35,,36.566667,52.766667 us,stelbars lindland,Stelbars Lindland,CO,,40.5744444,-106.0641667 cn,libeiyang,Libeiyang,02,,27.836111,120.663611 ru,krasnaya rechka,Krasnaya Rechka,44,,61.783333,152.266667 ru,zamyatino,Zamyatino,47,,54.814839,38.933671 ru,krymskaja,Krymskaja,38,,44.929336,37.991166 cz,doudleby nad orlici,Doudleby nad Orlici,82,1927,50.107118,16.258362 pg,gidobada,Gidobada,01,,-9.7961111,147.6133333 tr,temelli,Temelli,68,,39.7275,32.355278 al,skalgrah,Skalgrah,42,,41.2902778,19.5169444 us,new rockport colony,New Rockport Colony,MT,,47.8636111,-112.0227778 id,pondok sulpa sulpa,Pondok Sulpa Sulpa,26,,3.23,98.7844 cz,bohunice,Bohunice,78,,48.9,16.183333 br,ferraz,Ferraz,27,,-23.640301,-47.46586 ng,ungwan mallam koshi,Ungwan Mallam Koshi,57,,11.635755,6.554198 my,kampong pomatodan,Kampong Pomatodan,16,,5.666667,116.366667 bd,bara saonta,Bara Saonta,83,,24.5833333,89.0666667 ir,hajjiabad,Hajjiabad,38,,35.5478,50.0202 pl,bereznica wyzna,Bereznica Wyzna,80,,49.351523,22.359338 dk,reso,Resö,19,,56.679827,9.876212 af,kandi khel,Kandi Khel,14,,35.0583,69.632721 jo,khirbat aiyub,Khirbat Aiyub,02,,32.002239,35.70304 tz,chionga,Chionga,07,,-10.5666667,39.3333333 ye,al hauta,Al Hauta,04,,14.4888889,48.2108333 ye,ukaib,Ukaib,06,,13.7580556,44.5716667 ng,okuje,Okuje,47,,6.9041,7.2993 fr,escamps,Escamps,A1,,47.729221,3.473794 th,ban nong bua phae,Ban Nong Bua Phae,20,,17.568406,103.483689 vn,trung dong,Trung Dong,86,,21.183611,105.171433 af,oy mad,Oy Mad,02,,34.948623,63.049173 br,patundova,Patundova,27,,-22.383333,-48.633333 ru,kamennyy sholokh,Kamennyy Sholokh,51,,55.1368,41.891851 se,slommehagen,Slommehagen,28,,58.566667,12.433333 zw,mount pleasant,Mount Pleasant,04,,-17.7769444,31.0486111 cn,jiacanggongma,Jiacanggongma,15,,35.095356,103.039157 iq,madarras,Madarras,14,,31.85,47.1833333 na,donkerhoek,Donkerhoek,40,,-23.6333333,15.9666667 ht,bofort,Bofort,06,,19.1833333,-72.4166667 ru,krinitsa,Krinitsa,10,,52.5156,32.4297 hu,ince,Ince,17,,46.395175,17.197848 be,essene,Essene,02,,50.9,4.133333 id,caplang,Caplang,07,,-7.603056,109.614167 it,regona,Regona,09,,45.233333,10.216667 ru,velyevo,Velyevo,47,,56.25,37.066667 ml,bantanko,Bantanko,03,,12.6333333,-11.05 th,ban pak phung,Ban Pak Phung,14,,16.766667,101.233333 eg,nazlat musa,Nazlat Musa,10,,28.6666667,30.6833333 mw,deep bay,Deep Bay,21,,-10.45,34.2666667 eg,`izbat alinah,`Izbat Alinah,03,,31.0669444,30.5538889 cl,santa fe,Santa Fe,05,,-26.416667,-70.183333 th,pak nam,Pak Nam,74,,13.9,101.883333 it,pescantina,Pescantina,20,14175,45.483333,10.85 us,san felipe,San Felipe,TX,,29.7927778,-96.1005556 ir,harmidul,Harmidul,16,,35.88,46.2008 ir,narku,Narku,29,,29.816667,55.5 lv,vitini,Vitini,08,,56.4333333,22.9333333 id,polengan,Polengan,07,,-7.582222,110.334722 ng,jaba,Jaba,35,,10.198079,12.99854 af,menareh pay,Menareh Pay,41,,33.159902,65.435155 si,zodize in selva di piro,Zodize in Selva di Piro,04,,45.8822222,14.0816667 hr,kosnica,Kosnica,21,,45.7666667,16.0833333 ru,novaya estoniya,Novaya Estoniya,10,,53.324722,33.528611 af,badur chanbar,Badur Chanbar,08,,32.789497,67.782394 co,anaconia,Anaconia,16,,2.928229,-75.100215 ru,kusikka,Kusikka,28,,62.2,32.233333 vn,tan tu,Tan Tu,27,,14.833333,108.983333 sy,barikha,Barikha,02,,35.6333333,36.05 om,suhayrah,Suhayrah,02,,23.8602778,56.6416667 th,ban lao,Ban Lao,78,,16.580167,104.480861 cn,cheyaoxian,Cheyaoxian,15,,36.607079,106.858588 ro,cernele,Cernele,17,,44.333333,23.733333 ca,sainte-hedwidge-de-roberval,Sainte-Hedwidge-de-Roberval,10,,48.483333,-72.35 id,banjar lebubabakan,Banjar Lebubabakan,02,,-8.5114,115.4221 cn,kaochien,Kaochien,02,,29.051944,121.255 cn,wenan,Wenan,10,,38.866667,116.466667 es,pezuela de las torres,Pezuela de las Torres,29,,40.416132,-3.173627 fr,lussant,Lussant,B7,,45.961056,-.824833 us,woodfield heights,Woodfield Heights,SC,,34.7902778,-82.3830556 by,korshuki,Korshuki,04,,53.4333333,29.5333333 mm,lagatbum,Lagatbum,04,,24.2666667,97.6 ru,noroselye,Noroselye,69,,54.381731,32.022121 cn,shegongkeng,Shegongkeng,03,,26.896317,115.818721 kr,samgyeri,Samgyeri,20,,35.225278,128.501111 ir,mirza panak,Mirza Panak,37,,37.290701,55.411419 gt,agua blanca,Agua Blanca,11,2719,14.5,-89.65 jp,minami-rinkan,Minami-rinkan,19,,35.483333,139.45 ru,budy,Budy,57,,53.771871,44.662712 ar,media flor,Media Flor,22,,-27.416667,-64.333333 cn,dutian,Dutian,11,,27.179722,110.074167 ro,baciu,Baciu,09,,45.6,25.666667 pk,chak two hundred seventy-five,Chak Two Hundred Seventy-Five,04,,31.347979,72.81933 ru,chuyevo,Chuyevo,09,,51.1343,37.1121 mw,ngulu,Ngulu,07,,-13.75,33.8833333 pl,michakzowa,Michakzowa,77,,49.763665,20.608505 in,savalanga,Savalanga,19,,14.1,75.516667 gr,flampoura,Flámpoura,19,,39.0602778,20.7511111 id,tanjakanbasijan,Tanjakanbasijan,30,,-6.8301,108.5569 us,willis wharf,Willis Wharf,VA,,37.5155556,-75.8069444 mx,palmilla,Palmilla,11,,21.143056,-101.023333 pk,nabi bakhsh jalbani,Nabi Bakhsh Jalbani,05,,24.269724,67.922595 gn,koema,Koéma,29,,7.4261111,-9.0677778 mx,llano verde,Llano Verde,21,,19.75,-98.116667 cn,mengtsunchen,Mengtsunchen,26,,34.16646,109.215175 pl,blotnica,Blotnica,84,,51.11608,20.509977 ir,ginegan,Ginegan,29,,30.315676,57.265834 it,villa san sebastiano,Villa San Sebastiano,01,,42.016667,13.3 it,il monte,Il Monte,13,,40.066667,18.016667 ir,khorasha,Khorasha,43,,37.12067,56.814941 be,noordschote,Noordschote,09,,50.95,2.816667 pk,pungi,Pungi,03,,33.419178,70.829562 tg,agbatitoe,Agbatitoé,13,,7.0666667,1.1333333 us,haverhill,Haverhill,IA,,41.9450000,-92.9605556 id,karangtewang,Karangtewang,07,,-7.298056,109.353056 af,mulla-khazrat,Mulla-Khazrat,17,,33.9075,68.953889 cf,tchanga,Tchanga,01,,7.9666667,21.9 cn,tsaolinkang,Tsaolinkang,12,,30.521784,112.048149 cn,dajinchang,Dajinchang,33,,31.566667,108.5 cn,dashantou,Dashantou,07,,25.710286,116.294089 hn,jimerito,Jimerito,18,,14.9833333,-87.2166667 ir,vazmela,Vazmela,35,,36.077635,53.188866 us,spring run,Spring Run,WV,,39.4325000,-81.1675000 ma,rhachacha,Rhachacha,52,,34.881867,-6.132545 cn,gudongshang,Gudongshang,19,,40.795405,123.529758 mx,zuniga,Zúñiga,30,,18.033333,-94.802778 pl,male zakrzewo,Male Zakrzewo,85,,53.256919,20.311064 me,dubrave,Dubrave,00,,42.558333,19.056389 se,ullvattern,Ullvättern,22,,59.45,14.316667 ug,obulubulu,Obulubulu,80,,1.7166667,33.1166667 se,vastra agebo,Västra Agebo,09,,56.683333,15.833333 af,nanga,Nanga,08,,32.480474,67.814473 mx,guisiopa,Guisiopa,25,,25.666667,-107.133333 ru,maslenka,Maslenka,83,,56.198632,40.317399 cn,neizichong,Neizichong,01,,30.888502,119.543011 tw,neianshe,Neianshe,04,,23.5666667,119.5 th,ban nam chut,Ban Nam Chut,60,,9.3,99.216667 pk,goth qabul setho,Goth Qabul Setho,05,,27.184056,68.241811 cn,yachong,Yachong,31,,18.79726,109.419165 sy,mashrafiyat tall tutun,Mashrafiyat Tall Tutun,09,,36.1166667,37.95 zr,ngoma,Ngoma,10,,-2.6833333,25.9833333 de,bullenhorst,Bullenhorst,10,,53.683333,10.466667 ug,kachulagenyi,Kachulagenyi,93,,-0.95,29.65 de,durrn,Dürrn,01,,48.966667,8.766667 us,bridgeville,Bridgeville,PA,,40.3561111,-80.1102778 az,koybulagi,Koybulagi,17,,41.133333,49.016667 do,colorao,Colorao,28,,18.95,-68.9666667 cn,dongxinfang,Dongxinfang,22,,39.941389,116.062222 dk,fredsted,Fredsted,21,,55.238528,9.433587 et,circos,Circos,51,,9.65,39.383333 us,monticello,Monticello,KY,,36.8297222,-84.8491667 th,si mun mueang,Si Mun Mueang,01,,18.162472,97.916528 ru,berestovka,Berestovka,55,,52.4549,54.0937 in,tola sehi,Tola Sehi,24,,28.242,75.7049 co,punta nueva,Punta Nueva,27,,9.096104,-74.8841 co,la palmita,La Palmita,10,,8.204167,-73.424444 ru,bolshiye taytsy,Bolshiye Taytsy,42,,59.658333,30.106111 bf,nioasna,Nioasna,16,,11.9166667,-1.65 gb,dolgellau,Dolgellau,Y2,,52.75,-3.883333 au,howard,Howard,04,,-25.31934,152.55986 ru,malyye yagury,Malyye Yagury,70,,45.441389,43.015 tr,mollafeyyat,Mollafeyyat,21,,37.953611,40.668889 us,box canyon,Box Canyon,ID,,44.3788889,-111.4047222 ph,kamanga,Kamanga,71,,6.54422,124.267933 jo,en naquba,En Naquba,09,,31.567316,35.684809 id,ongkrak tengah,Ongkrak Tengah,30,,-6.874167,106.776111 ly,ghanimah,Ghanimah,50,,32.7002778,14.0444444 ru,shchelskaya,Shchelskaya,34,,64.817983,53.77332 kr,songhangni,Songhangni,13,,37.475833,127.460278 it,semestene,Semestene,14,,40.4,8.716667 cn,zhangjiadayuanzi,Zhangjiadayuanzi,32,,31.756252,106.017151 ru,veselovo,Vesëlovo,77,,58.465116,37.416766 ro,fundatica,Fundatica,09,,45.433333,25.3 ir,kolah kabud-e `olya,Kolah Kabud-e `Olya,13,,34.5545,46.8451 lb,aitanit,Aïtanît,01,,33.5613889,35.6691667 mz,namarro,Namarro,01,,-12.4213889,40.2805556 ec,santa lucrecia,Santa Lucrecia,02,,-3.0166667,-79.05 co,alto redondo,Alto Redondo,32,,5.210587,-72.774387 cn,junjian,Junjian,02,,30.022548,119.223482 ao,bete,Bete,02,,-11.916667,17.7 es,el serrano,El Serrano,51,,37.668215,-6.075362 id,alue awe,Alue Awe,01,,5.0305,97.1538 us,loomis,Loomis,CA,,38.8213889,-121.1919444 ir,shalah kosh,Shalah Kosh,10,,33.7523,46.7826 pk,karlwala,Karlwala,04,,30.986111,72.958333 do,palma cana,Palma Cana,23,,18.7,-71.2666667 tr,polat,Polat,44,,38.158067,37.853777 in,dhoribahal,Dhoribahal,37,,22.7,83.883333 ir,almirza,Almirza,16,,35.5025,47.3008 me,konate,Konate,00,,43.007222,19.329722 zm,nangulwe notulu,Nangulwe Notulu,03,,-15.05,22.95 af,khwazagak,Khwazagak,09,,34.906731,65.304445 es,villar de corneja,Villar de Corneja,55,,40.474615,-5.43307 rs,kasevar,Kasevar,00,,43.25,21.283333 ma,id u mart,Id U Mart,55,,29.28,-10.05 tr,pevro,Pevro,02,,37.980176,38.458735 us,sunview,Sunview,MD,,39.6819444,-76.0775000 id,kore,Kore,17,,-8.4909,118.6556 it,molinella,Molinella,05,14943,44.616667,11.666667 ru,tretya pyatiletka,Tretya Pyatiletka,84,,48.600897,44.670451 ne,fareygorou-kaina,Fareygorou-Kaïna,03,,13.3833333,3.15 gh,kapilim,Kapilim,06,,8.1833333,-0.7333333 es,sauri,Sauri,56,,42.445537,1.073283 ua,orlovka,Orlovka,14,,48.423838,39.630324 ir,raichun,Raichun,07,,28.589,52.9734 af,gul mir,Gul Mir,11,,34.217056,62.576771 id,gedungtinggi,Gedungtinggi,04,,-6.162,106.8476 ec,majagua,Majagua,10,,-1.1,-79.8666667 us,mill seat,Mill Seat,TN,,35.8391667,-87.2044444 zr,wuba-rive,Wuba-Rive,01,,-3.9333333,18.0 us,oakwood,Oakwood,IA,,43.0091667,-92.7769444 us,oxyoke,Oxyoke,CO,,39.3030556,-105.1977778 us,heflin,Heflin,NC,,35.7100000,-78.2077778 ir,mahutak,Mahutak,29,,29.9573,56.4015 be,thier a liege,Thier à Liège,04,,50.666667,5.583333 se,skarsjo,Skärsjö,10,,60.4,15.533333 kp,mawidok,Mawidok,03,,40.4008333,128.3955556 mk,prnalija,Prnalija,C6,,41.7547222,22.3913889 id,tanjungpinang,Tanjungpinang,22,,-4.7032,122.5337 tr,ute,Üte,65,,38.92012,43.778603 us,cattertons reach,Cattertons Reach,MD,,38.7083333,-76.6247222 cd,musimbi,Musimbi,12,,-3.283333,28.3 id,ciguntur,Ciguntur,30,,-6.647222,106.930278 us,woods mill,Woods Mill,OH,,38.9369444,-82.3397222 cn,hongwuyue,Hongwuyue,02,,30.306665,120.247054 eg,kafr el-bagur,Kafr el-Bâgûr,09,,30.4177778,31.0241667 lk,wattekele,Wattekele,35,,7.05,81.0833333 id,tlogomayong,Tlogomayong,07,,-7.265833,110.368333 mx,jaralillo,Jaralillo,32,,21.866667,-102.983333 hr,sporcici,Sporcici,12,,44.8186111,15.1886111 mm,tatmaw,Tatmaw,01,,20.2166667,93.0 th,ban pa sak,Ban Pa Sak,02,,18.551861,98.862611 fi,gamla vaasa,Gamla Vaasa,15,,63.066667,21.733333 id,poentianau,Poentianau,37,,-.75,102.25 sk,hrachovy dvor,Hrachový Dvor,02,,47.75,17.8833333 cn,diexiang,Diexiang,03,,29.241044,116.274919 et,adi tigre,Adi Tigre,53,,13.233333,39.35 br,guaribas i,Guaribas I,13,,-3.163333,-43.245 kr,monmaul,Monmaul,14,,36.4292,129.2369 fo,grogv,Grógv,00,,62.15,-6.7666667 gq,ibenga,Ibenga,08,,0.9333333,9.3166667 cn,yungpehhsien,Yungpehhsien,29,,26.646227,100.780728 hr,sinovcici,Sinovcici,15,,43.5033333,16.6355556 de,auerberg,Auerberg,02,,47.733333,10.733333 sn,leibar,Leïbar,04,,15.9847222,-16.4697222 it,corsanego,Corsanego,08,,44.375833,9.088333 kp,hoegoltonggu,Hoegoltonggu,13,,41.5102778,127.1066667 zr,letshu,Letshu,10,,-4.1166667,24.5166667 gw,anecuene,Anecuene,06,,11.1666667,-16.0333333 fr,saint-leonard,Saint-Léonard,B1,,45.835656,1.491738 cn,lanhopu,Lanhopu,12,,32.890556,109.775833 au,argents hill,Argents Hill,02,,-30.616667,152.75 ru,kriulino,Kriulino,60,,57.233313,28.213157 ru,kugo-yeya,Kugo-Yeya,61,,46.462564,40.503913 cn,pingtan,Pingtan,30,,20.682724,109.950593 ru,verkhniy kazaklar,Verkhniy Kazaklar,73,,56.2642,50.6172 bd,paschim debarpara,Paschim Debarpara,81,,24.1833333,88.9833333 gb,birkenshaw,Birkenshaw,G8,,53.75,-1.683333 br,sitio fonte sao jose,Sítio Fonte São José,27,,-23.729477,-47.495439 tr,kalyoncu,Kalyoncu,93,,40.753239,31.064966 lr,zozowoa (1),Zozowoa (1),12,,6.9,-11.3166667 lk,padiketuwewa,Padiketuwewa,30,,8.2666667,80.6333333 vn,van loc tay,Van Loc Tay,27,,14.933333,108.816667 ng,aiebiosu,Aiebiosu,16,,7.016667,3.9 ro,vadu pasii,Vadu Pasii,11,9034,45.166667,26.9 my,kampong tebing tinggi,Kampong Tebing Tinggi,06,,3.2683,102.5485 cn,chagze,Chagzê,14,,28.601,86.501 fr,honskirich,Honskirich,B2,,48.940898,6.959645 pk,goth kamlani,Goth Kamlani,05,,25.2045,68.062301 mx,celestino gasca,Celestino Gasca,25,,23.85,-106.833333 rw,muyage,Muyage,04,,-2.4333333,29.6833333 ua,mayak,Mayak,11,,45.347744,32.4966 sk,haligovce,Haligovce,05,,49.3666667,20.45 fr,chatillon-sur-oise,Châtillon-sur-Oise,B6,,49.7899,3.420631 ir,buzqan,Buzqan,34,,34.429709,49.658253 id,simoentoe,Simoentoe,21,,.8778,120.242 id,gerak tani,Gerak Tani,01,,2.9748,99.5752 it,adrano,Adrano,15,36184,37.666667,14.833333 sn,ngolotie,Ngolotié,10,,14.2166667,-16.15 mm,kyunhla,Kyunhla,08,,21.45,96.1166667 id,moearakloeloep,Moearakloeloep,05,,-2.35,102.033333 th,ban mae tam luang,Ban Mae Tam Luang,03,,19.97425,100.218111 mx,tabelchia,Tabelchia,14,,20.866667,-105.133333 tr,kuleli,Kuleli,45,,38.766667,28.483333 ng,gidan husaini,Gidan Husaini,57,,12.113901,6.897128 af,norachine,Norachine,36,,33.78521,69.424484 de,enichenbrunn,Enichenbrunn,02,,49.066667,11.983333 gh,horti,Horti,08,,6.05,0.8 us,galloway farms,Galloway Farms,NC,,35.5483333,-77.2644444 cn,kongxinzhai,Kongxinzhai,32,,32.438549,103.647214 ru,aferkovo,Aferkovo,21,,57.146705,41.637555 cm,fotsi,Fotsi,08,,5.1166667,10.1 us,butner,Butner,OK,,35.2608333,-96.4586111 cn,caogouquan,Caogouquan,26,,34.947826,107.852767 ru,podnavoloki,Podnavoloki,62,,53.668428,39.573736 ir,atimaz,Atimaz,43,,37.013899,57.498169 tr,kalecik,Kalecik,62,,39.052202,39.104605 ao,calucamba,Calucamba,08,,-11.566667,15.483333 ma,dar triaai,Dar Triaâï,51,,33.204004,-8.335247 th,ban yamu,Ban Yamu,62,,8.001389,98.399278 tw,chienkungkuan,Chienkungkuan,04,,24.6833333,121.1166667 cf,bodoum,Bodoum,13,,5.3666667,16.5666667 de,werschberg,Werschberg,07,,50.866667,7.433333 mg,anketrakabe,Anketrakabe,01,,-12.55,49.3333333 de,adolphsdorf,Adolphsdorf,06,,53.216667,8.983333 bo,padilla,Padilla,06,,-10.4666667,-66.45 bd,kamalapur,Kamalapur,84,,22.8,90.25 ua,tsvetkovo,Tsvetkovo,01,,49.152311,31.537388 tr,alcakgedik,Alçakgedik,81,,37.222811,34.983005 br,fartura,Fartura,20,,-2.994722,-41.315278 so,garabcad,Garabcad,12,,9.9166667,47.5166667 ca,les escoumains,Les Escoumains,10,,48.35,-69.416667 bo,itayo,Itayo,08,,-19.85,-63.3166667 cn,xujia,Xujia,19,,40.61687,122.535771 cm,njikatnkie,Njikatnkie,08,,5.75,10.9166667 vn,mai diem,Mai Diêm,35,,20.533333,106.583333 cn,lezhucun,Lezhucun,30,,22.972585,113.238284 td,doy,Doy,08,,8.4666667,15.75 us,clarksburg,Clarksburg,NY,,42.6197222,-78.8316667 mz,mquitchaculo,Mquitchaculo,09,,-15.1733333,37.3766667 ru,gvozdovo,Gvozdovo,52,,57.320831,31.769645 mm,nawnghsan,Nawnghsan,11,,21.5833333,98.2833333 it,fornazzo,Fornazzo,15,,37.733333,15.116667 td,madlama,Madlama,04,,10.8,16.0166667 ru,opranevo,Opranevo,77,,57.4647,36.7072 pg,samo number 1,Samo Number 1,15,,-3.1666667,152.5666667 vn,ban rang luong,Ban Rang Luong,26,,19.583333,104.366667 es,casas las torres,Casas Las Torres,52,,40.266667,-.566667 vn,xom co trach,Xom Co Trach,31,,11.2,106.4 co,umbria,Umbría,24,,5.252778,-75.843333 th,ban noi kut khla,Ban Noi Kut Khla,27,,14.993333,101.783611 gr,suli-dinu,Súli-Dínu,17,,39.7147222,20.6058333 my,kampung gramma,Kampung Gramma,16,,5.3622,115.5782 rs,cajici,Cajici,00,,43.343333,20.573333 cn,maokouchai,Maokouchai,11,,28.583333,109.35 mx,san pablo lachiriega,San Pablo Lachiriega,20,,16.843611,-96.014167 cn,chuantantsun,Chuantantsun,24,,37.263056,113.003333 cm,angelo,Angelo,10,,6.8333333,14.1333333 ma,douar ben scri,Douar Ben Scri,46,,34.204131,-5.29541 mx,las praderas,Las Praderas,01,,21.8,-102.75 cn,naitzushan,Naitzushan,05,,43.716111,127.438611 pg,kompia,Kompia,16,,-5.5,144.65 ma,acherodene,Acherodene,57,,34.9,-4.83 ph,solar de central,Solar de Central,O3,,15.426053,120.632432 de,dorsel,Dorsel,08,,50.383333,6.8 gr,kokla,Kókla,40,,37.2666667,21.8666667 af,mullah abdullah,Mullah Abdullah,23,,31.527848,65.800159 fr,chignat,Chignat,B1,,45.948959,1.812503 af,naray obeh,Naray Obeh,18,,34.498981,70.726476 ir,chaman ja`far beyg-e pa'in,Chaman Ja`far Beyg-e Pa'in,23,,34.3486,47.7472 ph,tagcolot,Tagcolot,43,,8.370278,124.4475 mm,teinmyok,Teinmyok,09,,18.8,96.2166667 ro,zahoreni,Zahoreni,07,,47.95,27.05 jp,yotsutsuji,Yotsutsuji,22,,35.533333,135.1 ve,la cabecera,La Cabecera,02,,10.1,-63.9633333 pk,chhinewala khu,Chhinewala Khu,04,,31.385623,71.14486 ru,maloye kutyevo,Maloye Kutyevo,77,,56.271389,32.819722 pk,dera malla singh,Dera Malla Singh,04,,31.774738,73.461286 cn,lienhwahsien,Lienhwahsien,03,,27.05,113.9 tr,hacilar,Hacilar,04,,39.164952,42.809582 pl,strassburg an der oder,Strassburg an der Oder,76,,52.067149,15.360165 cg,loulou-mayekou,loulou-Mayékou,01,,-4.0761111,12.9047222 ru,vazhkurya,Vazhkurya,34,,61.860514,51.918666 pk,jhaterwala,Jhaterwala,04,,32.403548,72.236348 af,bowyla,Bowyla,07,,35.732388,64.415581 id,bandjarredjo,Bandjarredjo,08,,-7.253,112.6438 id,pijiombo,Pijiombo,08,,-7.9849,112.4127 ru,proyezdnoy,Proyezdnoy,65,,52.746417,50.435445 ru,polomy,Polomy,37,,57.587482,43.179413 us,glenville,Glenville,DE,,39.7125000,-75.6402778 us,milo,Milo,ID,,43.6108333,-111.8830556 ma,anguim,Anguim,55,,30.85,-8.7 th,ban huai mae sai,Ban Huai Mae Sai,03,,19.983972,99.730222 ao,santo antonio,Santo António,08,,-11.616667,16 tr,alcik,Alcik,21,,38.176731,40.285453 pt,meireles,Meireles,05,,41.358892,-7.171118 ru,nizhnyaya zamarayka,Nizhnyaya Zamarayka,56,,52.054147,37.305332 id,cimahi satu,Cimahi Satu,30,,-6.37,107.183056 th,ban tanjong po,Ban Tanjong Po,67,,6.592167,99.958611 sl,foniko,Foniko,03,,7.3233333,-11.5880556 td,manil,Manil,10,,10.5166667,15.9 ir,kas,Kas,11,,27.5543,56.4317 cd,kisenge,Kisenge,09,,1.35,30.183333 pe,usua,Usua,06,,-5.3,-79.3 ye,bayt al umaysi,Bayt al Umaysi,11,,14.7791667,44.0480556 mm,kywindaw,Kywindaw,07,,21.0,94.2333333 cz,zbetschno,Zbetschno,88,,50.038598,13.938933 mx,huamelulpam,Huamelulpam,20,,17.4,-97.6 pl,krotoszyn stary,Krotoszyn Stary,86,,51.712088,17.435274 br,ariquemes,Ariquemes,24,58102,-9.933333,-63.066667 ng,inu,Inu,54,,7.844648,5.10866 kp,kumchangdong,Kumchangdong,15,,39.3630556,125.5216667 ru,kuzintsy,Kuzintsy,33,,58.247163,50.166141 ir,qarleq-e jadid,Qarleq-e Jadid,13,,34.4239,48.0409 cu,pichardo,Pichardo,03,,22.8166667,-81.2666667 id,babakansawar,Babakansawar,30,,-6.451944,107.709167 mx,rancho el arenal,Rancho El Arenal,28,,24.916667,-98.383333 sy,bassir,Bassîr,06,,33.05,36.2333333 ir,qarehchi-ye ma`dani,Qarehchi-ye Ma`dani,33,,38.833333,46.383333 ua,guta mezhigovskaya,Guta Mezhigovskaya,13,,50.673798,30.310014 mw,gwede,Gwede,07,,-13.65,33.7333333 cn,caina,Caina,14,,29.401,90.901 ir,mehr abad meibod,Mehr Abad Meibod,40,,32.205197,54.048567 tr,selbuku,Selbükü,11,,40.18479,30.114169 ru,blagoveshchenskiy zavod,Blagoveshchenskiy Zavod,08,,55.035,55.978056 us,valley,Valley,WA,,48.1752778,-117.7236111 ru,ozorya,Ozorya,17,,42.051667,47.450556 cn,kutsuikou,Kutsuikou,26,,35.710833,109.453611 gh,pokukrom,Pokukrom,02,,7.0,-1.95 ir,shah bekandi,Shah Bekandi,36,,36.366667,48.666667 cn,shiermedi,Shiermedi,26,,34.083103,107.236274 cn,yujiahe,Yujiahe,03,,27.061238,114.972107 vn,gia thuy thuong,Gia Thuy Thuong,27,,14.816667,108.733333 pk,durewali,Durewali,04,,30.516411,70.694313 id,pager,Pager,15,,-4.883333,105.05 iq,baytawi,Baytawi,10,,34.35,45.2833333 pk,ublan garai,Ublan Garai,01,,33.669881,71.358366 us,lehman springs,Lehman Springs,OR,,45.1530556,-118.6608333 no,mellenfjord,Mellenfjord,18,,70.083333,19.716667 de,kuchalb,Kuchalb,01,,48.666667,9.816667 us,walapai,Walapai,AZ,,35.3444444,-113.8833333 ir,kur cheshmeh,Kur Cheshmeh,42,,37.473295,59.118314 pa,berolizar,Berolizar,04,,9.05,-80.3166667 jp,managura,Managura,19,,35.541944,139.258889 af,binisherafgan,Binisherafgan,17,,34.241389,69.113056 mg,bepalso,Bepalso,05,,-19.7166667,47.3166667 bd,char indrapasa,Char Indrapasa,84,,22.5833333,90.15 pl,mikoleska,Mikoleska,83,,50.536506,18.827648 id,lalengpare,Lalengpare,38,,-4.3257,120.0463 jo,um ed dananir,Um ed Dananir,02,,32.085256,35.816298 mx,bolonchencahuich,Bolonchencahuich,04,,19.45,-90.166667 pk,thatti raju,Thatti Raju,04,,32.023741,72.347288 se,malhaga,Mälhaga,18,,58.983333,17.6 gr,orinon korakovounion,Orinón Korakovoúnion,41,,37.3,22.7666667 sd,shudaydah,Shudaydah,27,,14.1166667,33.6833333 us,point pleasant,Point Pleasant,KY,,37.4511111,-87.1005556 co,los llanitos,Los Llanitos,16,,2.391389,-75.747778 pk,muhammad hasan khan gola,Muhammad Hasan Khan Gola,02,,28.5,68.532271 ir,jarn,Jarn,15,,31.550208,49.543197 de,berka,Berka,15,,50.95,10.083333 pa,el bijao,El Bijao,07,,7.7166667,-80.2833333 fr,mauves,Mauves,B5,,47.297382,-1.387627 ua,zhmiivka,Zhmiivka,13,,51.010678,29.523217 ir,pa'in rah kala,Pa'in Rah Kala,35,,36.579232,52.616389 cn,anchangxian,Anchangxian,19,,40.968245,120.638724 ru,goncharka,Goncharka,77,,57.6733,37.2658 bd,baktarpur,Baktarpur,81,,23.75,89.6833333 cn,yemin,Yemin,19,,42.5,123.916667 al,varibop,Varibop,44,,40.5977778,19.5780556 us,east earl,East Earl,PA,,40.1100000,-76.0330556 us,alpine lake,Alpine Lake,WV,,39.4747222,-79.5008333 us,campbell,Campbell,NM,,33.6080556,-104.1963889 mx,la presita,La Presita,07,,28.266667,-102.616667 bo,comunidad jolencia baja,Comunidad Jolencia Baja,01,,-20.7166667,-64.8666667 de,maibach,Maibach,05,,50.383333,8.566667 us,springdale,Springdale,WA,,48.0575000,-117.7402778 be,barcene,Barcène,07,,50.283333,5.1 in,inda jashanpur,Inda Jashanpur,36,,27.7775,79.0805 ao,tunda,Tunda,02,,-11.812127,16.680672 kp,chokchonni,Chokchonni,09,,38.7813889,127.16 ba,sanicani,Sanicani,02,,44.9172222,16.7638889 cn,kiangwan,Kiangwan,23,,31.321161,121.489833 mx,alameda,Alameda,15,,19.516667,-99.316667 ru,osipovo,Osipovo,83,,56.370994,41.480339 pk,chak one hundred twenty-eight tda,Chak One Hundred Twenty-Eight TDA,04,,31.048791,71.068791 ph,languyan,Languyan,26,,7.466389,126.594444 tr,yolbilen,Yolbilen,72,,37.090789,41.338253 kr,chukkokponmaul,Chukkokponmaul,06,,38.135,128.011389 tw,tingyungfeng,Tingyungfeng,04,,22.8166667,121.0833333 pk,jhok arbab,Jhok Arbab,02,,28.8696,67.802 si,zgornja dobrava,Zgornja Dobrava,04,,46.3166667,14.2166667 mw,mbemdela,Mbemdela,24,,-15.9333333,34.9666667 ua,khotomlya,Khotomlya,07,,50.0224,36.879219 de,gessmannszell,Geßmannszell,02,,49,12.566667 th,ban phrao nuea,Ban Phrao Nuea,17,,17.860861,102.691889 pl,kiekrz,Kiekrz,86,,52.489877,16.776314 ci,tiepa,Tiépa,79,,6.236943,-5.921069 hu,cserta,Cserta,01,,46.2,18.883333 mx,cubes,Cubes,24,,21.933333,-98.55 ir,avard,Avard,35,,36.619118,53.779427 ps,ash shaykh falih,Ash Shaykh Falih,00,,32.283333,35.566667 cu,san pablo,San Pablo,14,,22.2313889,-79.2025 mx,taxco,Taxco,21,,19.85,-97.75 cd,bokaata,Bokaata,02,,.083333,20.783333 th,ban sa,Ban Sa,75,,14.866667,104.833333 al,aryirokastron,Aryirokastron,45,,40.0758333,20.1388889 ng,kwamapi,Kwamapi,31,,9.5,6.583333 bd,baruidanga,Baruidanga,82,,22.65,89.3333333 ro,secueni,Secueni,20,,46.25,24.983333 cn,chengguan,Chengguan,03,,27.933046,116.294779 ir,bujikdan,Bujikdan,22,,28.6436,51.0776 be,schriek,Schriek,01,,51.033333,4.683333 mx,san bartolo ortotitlan,San Bartolo Ortotitlan,15,,19.618056,-99.615556 id,madjid,Madjid,29,,1.1,127.766667 gh,yaberaugo,Yaberaugo,06,,10.8666667,-0.1 mm,sawnkyun,Sawnkyun,02,,22.1666667,93.9166667 ve,aduana,Aduana,13,,10.5666667,-69.68 at,olsach,Olsach,02,,46.753611,13.583889 ru,rybnoye,Rybnoye,74,,72.766667,104.8 my,sungai ligi,Sungai Ligi,11,,1.4,111.1 zm,chieseko,Chieseko,01,,-13.6166667,22.8166667 in,naina,Naina,33,,15.116667,74.083333 af,kawdak,Kawdak,09,,34.386463,64.629242 pl,tczow,Tczow,78,,51.326766,21.442206 al,krna,Krna,42,,41.5091667,19.7927778 ci,attiekro,Attiékro,89,,5.255126,-2.974819 co,la borrachera,La Borrachera,35,,9.683333,-75.116667 zm,kawengere,Kawengere,06,,-14.05,31.15 se,morkamala,Mörkamåla,02,,56.333333,14.633333 td,toulao ii,Toulao II,10,,9.7333333,14.8833333 tr,kavraz,Kavraz,52,,40.98721,37.590705 et,aiscia,Aiscia,52,,10.752222,42.569444 th,ban na dok mai,Ban Na Dok Mai,17,,18.033333,103.333333 pe,ancorane,Ancorane,21,,-17.1333333,-69.6166667 fr,saint-aunes,Saint-Aunès,A9,,43.640898,3.965382 tr,bolucekyuva,Bölücekyuva,14,,40.263603,30.810879 de,muhren,Mühren,10,,53.75,10.3 ir,kara-darrekh,Kara-Darrekh,38,,36.433333,49.483333 us,north tiverton,North Tiverton,RI,,41.6647222,-71.1919444 ru,koltyrikha,Koltyrikha,85,,60.12125,41.674732 pk,zaimki kili,Zaimki Kili,02,,31.195577,68.437261 th,ban lao pa fang,Ban Lao Pa Fang,02,,18.618278,98.834111 ve,la clemencia,La Clemencia,12,,8.1833333,-65.7333333 cn,oujiashan,Oujiashan,15,,32.980165,105.271955 ch,menzingen,Menzingen,24,,47.177637,8.59215 cn,tangji,Tangji,16,,25.26,109.92 mm,mogyobit,Mogyobit,10,,23.05,95.4833333 ru,rekusha,Rekusha,77,,58.4169,36.3307 cn,zaoyang,Zaoyang,12,184509,32.127222,112.754167 pk,said alam,Said Alam,02,,29.928841,66.741917 er,felhit,Felhit,00,,16.65,38.0333333 pl,puszcza marianska,Puszcza Marianska,78,,51.978505,20.353544 cz,kanovsko,Kanovsko,84,,49.394516,17.422982 de,morschreuth,Morschreuth,02,,49.75,11.266667 ua,korchevka,Korchëvka,27,,50.119249,27.950994 ru,vtoroy orochen,Vtoroy Orochen,63,,58.55,125.383333 td,aouta,Aouta,04,,11.7333333,15.4666667 ir,chah molla,Chah Molla,41,,32.6438,60.3662 ru,basino,Basino,69,,55.2076,32.0447 fr,sorbiers,Sorbiers,B8,,44.375105,5.562764 af,naw-e tang,Naw-e Tang,09,,35.192593,65.134041 cr,jocotes,Jocotes,03,,10.470046,-85.561646 ng,keko,Keko,39,,12.480966,8.912337 ir,shirin akhar,Shirin Akhar,07,,28.5288,52.1936 de,rottmersleben,Rottmersleben,14,,52.216667,11.4 td,pakai,Pakaï,09,,7.6166667,15.6333333 es,el higueral,El Higueral,51,,37.31745,-4.25599 kh,svai arac,Svai Arac,02,,12.1,105.1333333 af,kaz'yan,Kaz'yan,13,,34.895765,69.107972 us,candyland estates,Candyland Estates,TN,,36.1952778,-85.4694444 vn,an lac,An Lac,29,,15.766667,108.283333 tr,yanyayla,Yanyayla,37,,41.016667,33.883333 fr,lebecourt,Lébécourt,A7,,49.218464,1.504433 ch,bort,Bort,05,,46.717012,7.847706 sk,kolonica,Kolonica,03,,48.9666667,22.2666667 pk,goth hahi moujai,Goth Hahi Moujai,05,,27.105075,68.452238 pl,zery czubiki,Zery Czubiki,81,,52.597736,22.666818 fr,boussac,Boussac,B3,,44.278193,2.366524 kr,songgye,Songgye,16,,35.15,126.333333 bi,nyakayi,Nyakayi,21,,-3.33,30.3138889 ir,nava khan,Nava Khan,08,,36.701237,49.958077 sn,toubakouta,Toubakouta,09,,13.7666667,-16.4666667 af,kharburi,Kharburi,27,,34.418333,68.815556 kp,anchungdogi,Anchungdogi,17,,41.3097222,129.4797222 ru,filippenkov,Filippenkov,61,,48.359607,40.213067 br,castanha,Castanha,22,,-6.116667,-35.383333 bd,dhulla,Dhulla,81,,23.95,90.05 in,bhaunti,Bhaunti,35,,25.316667,78.116667 cn,yandang,Yandang,07,,26.789379,118.076906 tm,bardzan,Bardzan,04,,39.2,63.3666667 de,gundremmingen,Gundremmingen,02,,48.5,10.4 us,gale,Gale,IN,,39.7666667,-86.4666667 ve,el banco,El Banco,12,,8.9333333,-65.8833333 af,gheybi,Gheybi,41,,33.869252,66.275081 ru,gorodok,Gorodok,20,,53.916667,100.45 ru,nizhniy,Nizhniy,33,,59.914236,47.343039 cn,suifu,Suifu,32,,28.766667,104.623832 me,petnik,Petnik,00,,42.833056,19.904722 gb,cropwell bishop,Cropwell Bishop,J9,,52.9,-.983333 au,valery,Valery,02,,-30.383333,152.95 fr,la couronne,La Couronne,B8,,43.337615,5.053331 sa,shoowaya,Shoowaya,17,,16.983333,42.733333 pl,mostki nowe,Mostki Nowe,78,,52.252745,20.308384 de,bagow,Bagow,11,,52.516667,12.716667 mm,u-ni-ya,U-ni-ya,04,,24.2333333,97.2333333 fr,saint-nicolas-aux-bois,Saint-Nicolas-aux-bois,B6,,49.594527,3.431182 hu,koroninitanya,Koroninitanya,16,,47.416667,19.533333 cz,senov,Senov,83,,50.992377,14.382757 us,amandaville,Amandaville,KY,,36.8966667,-85.3111111 pe,champacancha,Champacancha,08,,-14.4213889,-71.0591667 lr,joja,Joja,12,,6.8,-11.2666667 pl,miescisko ulica,Miescisko Ulica,86,,52.72225,17.369029 so,kuudud,Kuudud,09,,-0.0166667,42.5666667 mx,san pedro cumuapa primera seccion,San Pedro Cumuapa Primera Sección,27,,18.020833,-93.133333 de,hainmuhlen,Hainmühlen,06,,53.583333,8.883333 ci,nangakaha,Nangakaha,87,,9.060922,-5.7436 mm,kalmadaung,Kalmadaung,01,,20.45,93.35 mg,ambohivola,Ambohivola,06,,-25.1833333,45.0333333 au,naughtons gap,Naughtons Gap,02,,-28.8,153.1 fr,montas,Montas,A1,,47.105354,3.584404 gh,dusie,Dusie,11,,9.8394444,-1.9988889 us,brink,Brink,OK,,36.8411111,-98.6119444 bd,fulbaria,Fulbaria,81,,24.0666667,90.6166667 pl,marianowo,Marianowo,78,,52.752783,21.479191 ph,kolasi,Kolasi,12,,8.2425,124.918889 bd,hatshibpur,Hatshibpur,83,,24.8333333,88.9333333 cn,banpu,Banpu,02,,29.937778,121.425556 af,malangkhel,Malangkhel,14,,35.126656,69.470004 af,cheheldokhtaran,Cheheldokhtaran,13,,34.378056,69.124722 de,nutzfelde,Nutzfelde,06,,53.266667,10.516667 ir,gesaleh,Gesaleh,29,,28.4038,57.7289 hn,laguna de chiligatoro,Laguna de Chiligatoro,10,,14.2833333,-88.15 th,ban fak bueng,Ban Fak Bueng,10,,17.222084,100.170028 sd,al ubayyid,Al Ubayyid,56,,13.1833333,30.2166667 sy,ett toun,Ett Toûn,10,,35.35,36.2666667 cn,renzhongling,Renzhongling,32,,32.029562,104.350182 mn,uruga,Uruga,20,,47.9166667,106.9166667 am,shagap',Shagap',02,,39.8666667,44.9 sb,verabuni,Verabuni,08,,-10.4666667,162.05 ir,`emarat,`Emarat,42,,37.032821,59.760559 cn,dahetun,Dahetun,09,,32.736389,113.054167 ir,bushikan-e deylami,Bushikan-e Deylami,07,,29.722856,51.511711 id,malappo,Malappo,21,,-.2432,122.2831 do,los candelones,Los Candelones,25,,19.7333333,-70.8666667 kz,kara-murun,Kara-Murun,12,,49.233333,72.983333 bd,bet biramgram,Bet Biramgram,83,,25.0,88.85 kp,wolmisan,Wolmisan,06,,37.9166667,125.55 pl,mencowizna,Mencowizna,73,,52.804952,19.108629 ve,la mitisus,La Mitisus,14,,8.8861111,-70.6538889 re,l'ilet,L'Îlet,00,,-21.3,55.6 ve,poza amarilla,Poza Amarilla,19,,10.6216667,-62.7988889 az,alukend,Alukend,26,,40.115278,46.051944 br,sitio libio roscheski,Sítio Líbio Roscheski,26,,-26.2039,-49.8467 pl,wroczynszczyzna,Wroczynszczyzna,81,,53.616064,23.248493 cn,lincheng,Lincheng,11,,26.869319,109.663365 cz,rakova u konice,Rakova u Konice,84,,49.607733,16.951309 br,cannavieiras,Cannavieiras,05,,-15.65,-38.95 bd,puratan bandura,Puratan Bandura,81,,23.65,90.1166667 bd,chauhatta,Chauhatta,81,,23.5666667,89.8833333 ao,chiputa,Chiputa,14,,-13.883333,21.283333 ru,bestuzhevskoye,Bestuzhevskoye,38,,43.488299,39.947156 co,pimentel,Pimentel,11,,7.309982,-77.088621 pk,sono khatri,Sono Khatri,05,,27.835568,68.381311 sy,hikr beit aaliane,Hikr beït Aaliâne,14,,34.85,35.9 pk,muhammad parhar,Muhammad Parhar,05,,24.676842,68.316768 ua,szelwow,Szelwów,24,,50.721427,24.780662 id,aekkela,Aekkela,26,,2.5167,98.7646 mk,rabetino,Rabetino,B4,,41.5441667,21.0663889 ru,ivanovshchina,Ivanovshchina,77,,57.265335,32.773742 ru,zerkalskoye,Zerkalskoye,04,,52.4852,81.8327 ru,taraskovo,Taraskovo,71,,57.1315,60.0626 td,giba,Giba,10,,11.0166667,15.3 ru,svertnevo,Svertnevo,85,,59.406202,43.629951 es,caleruega,Caleruega,55,,41.825479,-3.485933 mg,kotombona,Kotombona,04,,-19.4833333,48.9166667 th,ban sai khan,Ban Sai Khan,56,,13,99.9 ro,rastoltu-desert,Rastoltu-Desert,31,,47.05,23.133333 ir,setolu,Setolu,11,,27.1939,52.9656 lk,kehelbaddara,Kehelbaddara,36,,7.1333333,79.9666667 br,umburana,Umburana,17,,-7.8,-38.183333 tr,sakizlik,Sakizlik,55,,41.005266,36.19351 us,glenmont village,Glenmont Village,MD,,39.0597222,-77.0555556 ru,sharakan,Sharakan,93,,50.8444,118.4105 sd,`abd al karim,`Abd al Karim,27,,13.0666667,33.8166667 zr,mukoso,Mukoso,00,,-7.4,17.2 ma,douar ait moussi,Douar Aït Moussi,47,,32.048359,-7.97516 tr,balkat,Balkat,63,,36.870278,38.989444 cn,sitou,Sitou,26,,34.503602,107.466646 ru,byakovtsy,Byakovtsy,37,,58.9404,46.2435 id,cibabat-girang,Cibabat-girang,30,,-6.88,107.556111 es,almorcita,Almórcita,51,,37.00262,-2.790509 at,loosdorf,Loosdorf,03,,48.066667,14.666667 hu,faragotanyak,Faragótanyák,11,,47.7,20.133333 er,mai-ti,Mai-ti,00,,13.0,42.2166667 id,cipelah satu,Cipelah Satu,30,,-7.198611,107.259444 in,singraul,Singraul,35,,23.85,82.266667 ru,pogranichnoye,Pogranichnoye,84,,51.053056,45.104444 lr,plembe,Plembe,11,,6.2666667,-9.85 bg,sheykh-dzhumaya,Sheykh-Dzhumaya,44,,41.5,25.3 in,chataktoli,Chataktoli,38,,22.633333,84.85 br,corguinho,Córguinho,06,,-2.816667,-40.4 ua,kaminskoye,Kaminskoye,26,,46.55,36.983333 my,taman kota kulai,Taman Kota Kulai,01,,1.6669,103.5792 th,ban pae ling,Ban Pae Ling,02,,18.294222,98.535417 rs,milkovce,Milkovce,00,,42.41,22.000278 ke,kwa bechombo,Kwa Bechombo,02,,-3.9333333,39.6166667 gn,sirimana,Sirimana,26,,11.2333333,-8.5666667 fr,bellay,Bellay,B6,,49.151677,1.886808 ru,murovo,Murovo,42,,60.066667,32.966667 kh,phumi sre rumduol,Phumi Sre Rumduol,09,,11.9666667,106.4 id,waas tengah,Waas Tengah,30,,-7.2641,107.8848 gn,gialan,Gialan,28,,11.9666667,-11.2666667 bg,egrek,Egrek,43,,41.3333333,25.6166667 th,ban thung,Ban Thung,02,,18.689722,98.881445 id,bangoan,Bangoan,30,,-7.4423,111.4415 in,ismail khanpet,Ismail Khanpet,02,,17.625278,78.159722 it,colliano,Colliano,04,,40.716667,15.283333 id,matawae,Matawae,18,,-8.6205,120.8554 th,ban phan lam,Ban Phan Lam,57,,11.25,99.466667 pl,chorobel,Chorobel,74,,51.241397,18.354335 co,el delirio,El Delirio,19,,3.591667,-74.364444 tj,igron,Igron,02,,38.2272222,69.3127778 kr,bongcheonsibildong,Bongcheonsibildong,11,,37.472222,126.966389 gm,fantumbu,Fantumbu,04,,13.4,-13.8666667 co,cascajal,Cascajal,10,,8.066667,-73.766667 af,ebrahimkheyl-e vosta,Ebrahimkheyl-e Vosta,28,,32.467082,67.533706 rs,runjani,Runjani,00,,44.558611,19.255278 lk,kurundankulama,Kurundankulama,32,,8.0333333,80.2666667 ir,guzan,Guzan,33,,38.6376,46.8551 af,malikhel,Malikhel,08,,32.20082,67.995903 mn,bayanhushuu,Bayanhushuu,02,,46.7166667,100.1333333 pk,bhurj,Bhurj,03,,34.306475,73.116282 id,nyangkokot satu,Nyangkokot Satu,30,,-6.487222,106.895278 ru,tyurmerovskiy,Tyurmerovskiy,83,,55.9278,41.1254 ao,lola,Lola,13,,-14.3,13.616667 eg,al khattarah al kubra,Al Khattarah al Kubra,14,,30.6802778,31.8080556 pl,budki suradowczynskie,Budki Suradowczynskie,73,,52.8,19.316667 pk,kater,Kater,03,,35.371283,71.957295 de,russheim,Rußheim,01,,49.184722,8.422222 mx,chacmulun,Chacmulún,31,,20.183333,-89.333333 mx,el bocua,El Bocua,13,,20.715278,-99.169444 ci,sogbeni,Sogbéni,90,,7.868149,-4.506993 af,balamurgab,Balamurgab,38,,35.347174,70.148498 fi,eerikkala,Eerikkälä,13,,60.5,27.666667 mm,paungdu,Paungdu,07,,20.55,94.5833333 tz,mgawsi,Mgawsi,04,,-8.7333333,35.85 ws,sasaai,Sasaai,00,,-13.6166667,-172.1333333 kp,kwaejon,Kwaejon,07,,38.8538889,126.715 mx,el crucero,El Crucero,22,,21.438889,-99.627778 us,newton,Newton,WI,,43.9938889,-87.7263889 th,ban mai khlong noi,Ban Mai Khlong Noi,02,,19.906028,99.233111 cg,koumbou-liambou,Koumbou-Liambou,04,,-4.0966667,11.3411111 lk,yakkilagama,Yakkilagama,32,,7.7833333,80.0166667 ru,lipovy polyany,Lipovy Polyany,83,,55.384285,40.454426 pk,dhingarwala,Dhingarwala,04,,31.991667,73.108333 ng,yutiage,Yutiage,26,,8.416667,9.7 co,rosa blanca,Rosa Blanca,03,,6.512757,-70.984743 de,eigentshofen,Eigentshofen,02,,49.35,11.816667 kr,soyonpyong,Soyonpyong,12,,37.610556,125.708333 pl,otrocz,Otrocz,75,,50.818302,22.572542 md,orac,Orac,79,,46.668333,28.463056 vn,co dinh,Co Dinh,26,,18.166667,105.733333 id,petukangan utara,Petukangan Utara,04,,-6.1764,106.9261 de,prasdorf,Prasdorf,10,,54.383333,10.3 pk,kabeel,Kabeel,04,,33.119524,73.221354 br,fazenda sao roque,Fazenda São Roque,11,,-21.7,-54.25 ir,qareh qashli,Qareh Qashli,37,,36.896739,54.173881 mx,san ramon martinez,San Ramón Martínez,19,,23.904444,-100.318056 jp,takasho-machi,Takasho-machi,37,,34.966667,138.383333 it,massa fermana,Massa Fermana,10,,43.15,13.466667 tz,semewani,Semewani,20,,-5.1833333,39.7833333 se,solsebo,Solsebo,09,,57.766667,15.933333 mx,puertas,Puertas,24,,21.733333,-99.616667 id,prandon,Prandon,30,,-7.3995,111.478 af,kerchigal khune,Kerchigal Khune,34,,35.220556,71.588333 cn,dachitang,Dachitang,32,,30.127095,103.152012 il,sede ilan,Sedé Ilan,03,,32.748879,35.42185 zm,siabele,Siabele,04,,-16.2333333,28.4666667 ru,akinishno,Akinishno,77,,56.551245,31.176976 eg,el qal`a,El Qal`a,23,,26.0,32.8166667 af,gandah qol,Gandah Qol,41,,33.870278,66.962222 kr,kuryongmal,Kuryongmal,13,,37.9286,127.0015 br,parque dinamarca,Parque Dinamarca,27,,-23.300977,-46.593429 tr,saraycik,Saraycik,31,,36.234907,36.127674 kr,soltong,Soltong,13,,37.053333,127.455556 id,ngadireso,Ngadireso,08,,-8.07376,112.778182 ir,hamzeh,Hamzeh,25,,36.188889,54.593611 cn,wangjiazhuang,Wangjiazhuang,09,,34.401389,110.488611 lr,nyude,Nyude,11,,6.2958333,-10.2238889 mn,narin teli sume,Narin Teli Sume,15,,45.95,101.4833333 fr,biblisheim,Biblisheim,C1,,48.898925,7.794291 us,waltonville,Waltonville,PA,,40.2402778,-76.6827778 us,gardnersville,Gardnersville,NY,,42.7238889,-74.5825000 ua,verkhi,Verkhi,05,,48.35,38.3 cn,majunying,Majunying,24,,40.090833,113.224722 id,kruengraja,Kruengraja,01,,5.5895,95.5145 tj,nakhal'bek,Nakhal'bek,03,,38.65,68.3166667 ru,korchagi,Korchagi,33,,57.2762,47.9309 mm,ngante,Ngante,13,,16.4761111,97.6558333 ro,cauasd,Cauasd,02,,46.783333,21.816667 kp,soktunni,Soktunni,08,,38.2202778,126.8625 lt,kangailai,Kangailai,62,,55.2,22.2833333 cz,bily kamen,Bily Kamen,80,,49.436685,15.507372 id,sadantua,Sadantua,38,,-2.7952,119.9179 tr,asagi keferzo,Asagi Keferzo,76,,37.843448,41.302467 la,ban pahin noy,Ban Pahin Noy,14,,19.45,104 ru,bolshakovka,Bolshakovka,23,,54.429826,20.647446 ci,frondobo,Frondobo,86,,6.544957,-4.650986 ph,dipangpang,Dipangpang,31,,16.992045,122.381942 az,kazynkhaly,Kazynkhaly,26,,39.970928,46.279838 es,cortijada las viudas,Cortijada Las Viudas,51,,36.89465,-2.370757 ar,epu pel,Epu Pel,11,,-37.586831,-64.308812 mm,sawlawge,Sawlawge,05,,16.9666667,98.2833333 kh,phum kgach leat,Phum Kgach Leat,05,,12.4666667,105.0833333 ec,las huacas,Las Huacas,08,,-3.35,-80.1833333 mx,las vigas,Las Vigas,24,,23.633333,-100.933333 kp,norunaemol,Norunaemol,06,,38.045,125.6116667 br,abobora,Abóbora,27,,-24.637699,-48.172946 gl,kakortok,Kakortok,03,,60.7166667,-46.0333333 br,porto de sauipe,Pôrto de Sauípe,05,,-12.4,-37.916667 za,tyutyuza,Tyutyuza,05,,-32.790779,26.928601 es,valderas,Valderas,31,,37.818819,-1.027782 kp,mokpodong,Mokpodong,12,,38.9763889,125.6066667 id,soai,Soai,28,,-8.116667,127.766667 ec,las mercedes,Las Mercedes,08,,-3.3166667,-79.8833333 af,dzangal kalay,Dzangal Kalay,28,,31.750572,67.352922 kp,huahyondongyangjicham,Huahyondongyangjicham,11,,39.7333333,125.8166667 id,ngancah,Ngancah,07,,-7.814167,111.270556 us,hunters square,Hunters Square,VA,,38.7305556,-77.4638889 pk,thatta beg,Thatta Beg,04,,30.869444,72.975 sl,gaigba,Gaigba,01,,7.85,-10.7166667 ru,mosty,Mosty,23,,54.514722,21.685556 nz,tadmor,Tadmor,F5,,-41.433333,172.75 ru,mamonovo,Mamonovo,83,,55.8339,41.3629 no,breidstein,Breidstein,07,,60.483333,5.4 vn,ap hoa hung,Ap Hoa Hung,37,,10.3,105.933333 us,orkney,Orkney,KY,,37.4300000,-82.7352778 us,slab city,Slab City,NH,,43.0986111,-71.7616667 ir,kulu kuh,Kulu Kuh,04,,28.503201,61.267781 cn,shakhe,Shakhe,10,,36.938333,114.505833 th,ban tia,Ban Tia,70,,6.187167,101.200472 cd,bombili moke,Bombili Moke,00,,-.266667,20.2 cn,zhupenghou,Zhupenghou,02,,27.794167,119.044444 ng,egure,Egure,48,,6.416667,5 mx,rancho cerro colorado,Rancho Cerro Colorado,26,,28.7,-109.733333 fr,antraigue,Antraigue,B1,,46.35,2.266667 er,mansciua,Mansciua,00,,15.85,38.2666667 my,taman sentosa,Taman Sentosa,05,,2.5652,101.8119 al,drize,Drizë,44,,40.6983333,19.5419444 au,hexham,Hexham,02,,-32.833333,151.683333 mg,tsitombonana,Tsitombonana,02,,-20.2666667,47.0166667 ma,ait ben cherif,Aït Ben Cherif,55,,29.378697,-10.045128 ru,verkhniye kazanishchi,Verkhniye Kazanishchi,17,,42.735474,47.137804 ir,mahaleh-ye sa`adatabad,Mahaleh-ye Sa`adatabad,11,,27.4558,56.5503 ir,marjanabad,Marjanabad,26,,35.5347,51.3072 ml,bougoudirani,Bougoudirani,05,,12.6333333,-5.2166667 lb,bir hassen,Bîr Hassen,05,,33.85,35.5 id,ganggong,Ganggong,08,,-7.7052,111.4769 vn,buon m'rao,Buon M'rao,07,,12.95,108.333333 ua,solonchaky,Solonchaky,16,,46.643679,31.818656 sy,dar es salamlam,Dâr es Salamlam,11,,34.8666667,36.55 tw,hupen,Hupen,04,,23.7333333,120.6166667 gn,bingoueda,Bingouéda,13,,8.8769444,-10.0097222 mz,amussa,Amussa,09,,-18.3833333,36.5666667 ru,zakharovo,Zakharovo,88,,56.866667,38.316667 af,malakheyl',Malakheyl',29,,32.761839,68.411089 hr,markovici,Markovici,08,,44.5997222,15.2936111 sy,ghanamah,Ghanamah,09,,36.6833333,37.8 al,dajc,Dajç,49,,41.9916667,19.4105556 cn,caihong,Caihong,32,,28.403454,102.946525 mz,manlia,Manlia,07,,-13.8061111,37.915 pl,kluczewo,Kluczewo,78,,53.047432,20.010041 af,deh-e zayr,Deh-e Zayr,26,,36.148097,70.327645 us,wilborn,Wilborn,MT,,46.8836111,-112.3422222 ru,yablochkovo,Yablochkovo,57,,52.42655,43.799759 af,spisangak,Spisangak,05,,34.916452,68.232369 td,kouziouet,Kouziouet,12,,12.0166667,21.65 pl,nowina,Nowina,86,,52.829537,16.464536 cn,nanbeicun,Nanbeicun,04,,31.132778,120.656667 eg,beni `adi,Beni `Adi,04,,29.1986111,31.1625 gr,katakhas,Katakhás,16,,40.4677778,22.5416667 ua,chiudey,Chiudey,03,,48.052468,25.62208 cn,chengjiaying,Chengjiaying,32,,30.090239,103.002696 az,charkhany,Charkhany,53,,41.043696,49.063435 br,uniao,União,21,,-21.216667,-41.4 pl,kobyle,Kobyle,74,,52.132832,18.943916 pl,zurada,Zurada,77,,50.253339,19.547021 vn,khe se,Khe Se,19,,22.016667,104.55 mw,makanyila,Makanyila,22,,-13.55,34.3833333 ma,assaron tili,Assaron Tili,58,,35.041778,-4.35119 tr,muzeyyen,Müzeyyen,11,,39.809857,29.791051 tw,waiwuchienliao,Waiwuchienliao,04,,23.8833333,120.3 mx,pozo carmen,Pozo Carmen,24,,22.316667,-100.6 sd,mi`wan,Mi`wan,34,,11.5,31.15 de,mitteltritt,Mitteltritt,10,,54.566667,8.533333 so,haf gudud mahan,Haf Gudud Mahan,10,,5.7666667,47.8166667 la,ban khoa,Ban Khoa,04,,17.65,104.95 th,ban wang nam sai,Ban Wang Nam Sai,18,,17.055639,101.517639 ru,staraya domoserdka,Staraya Domoserdka,81,,53.725696,46.454619 ir,`eshqabad,`Eshqabad,41,,33.206899,59.164925 af,shawaruz,Shawaruz,10,,32.399336,64.745959 ru,lebedevo,Lebedevo,39,,57.116667,95.598056 lv,beberbeki,Beberbeki,25,,56.9436111,23.9555556 us,saint benedict,Saint Benedict,ND,,46.7244444,-96.8411111 cn,dadaoqinggou,Dadaoqinggou,19,,41.254698,124.85371 fr,fontaine-le-pin,Fontaine-le-Pin,99,,48.973577,-.283083 tr,bagcigaz,Bagcigaz,24,,39.741203,38.437259 bo,la espanola,La Española,07,,-21.9,-65.7833333 rs,culjkova,Culjkova,00,,42.592778,21.4375 fi,vannais,Vannais,15,,60.316667,22.15 ru,malyye nivki,Malyye Nivki,52,,57.743972,30.757559 sk,velka lomnica,Velka Lomnica,05,,49.1166667,20.3666667 cn,wula,Wula,16,,23.8425,106.5125 pt,sao domingos de ana loura,São Domingos de Ana Loura,08,,38.866919,-7.497011 cn,duqiao,Duqiao,03,,29.085259,117.316574 bd,dhusandu,Dhusandu,81,,23.8166667,89.3333333 dk,mesinge,Mesinge,21,,55.498624,10.646972 et,daleti,Daleti,47,,9.866667,36.1 ao,quissoni,Quissoni,15,,-6.286677,15.481134 ir,sabzu,Sabzu,29,,29.41,57.771 ir,now dasheh,Now Dasheh,13,,35.1808,46.2544 my,permatang tok getam,Permatang Tok Getam,09,,5.488606,100.401174 de,epplas,Epplas,02,,50.316667,11.833333 cn,taoyuan,Taoyuan,04,,31.981641,118.89597 id,alue-puteh 1,Alue-puteh 1,01,,4.7666,97.3315 tr,haydarbey,Haydarbey,65,,39.010054,43.424965 pk,sumayar,Sumayar,07,,36.8208,74.5554 th,ban a lao,Ban A Lao,30,,14.833333,104.716667 ma,ait rhamoun,Aït Rhamoun,48,,31.77607,-5.286192 bd,palakhal,Palakhal,80,,23.3866667,90.8572222 pl,sulinki,Sulinki,75,,52.144316,23.108823 ma,el kolla,El Kolla,57,,35.054564,-5.108914 id,lebakdjero 1,Lebakdjero 1,30,,-7.0524,107.8967 hr,bosancici,Bosancici,15,,43.585,16.5780556 ru,merkushi,Merkushi,77,,56.066667,33.266667 cn,huangpingyang,Huangpingyang,05,,43.353324,129.67615 de,feldbergen,Feldbergen,06,,52.2,10.15 mx,miguel hidalgo tercera seccion,Miguel Hidalgo Tercera Sección,27,,17.566667,-92.941667 kp,sojungdong,Sojungdong,12,,38.95,125.8666667 ir,kud,Kud,04,,30.8658,61.6476 cn,changjia,Changjia,19,,41.632946,124.626409 in,inderhama,Inderhama,12,,34.170833,74.8625 de,oberschmerach,Oberschmerach,01,,49.15,9.966667 ru,prigorodnyy,Prigorodnyy,83,,56.5146,39.7053 fj,tokala,Tokala,01,,-19.1166667,179.7833333 cn,wenchuntsun,Wenchuntsun,08,,44.433333,129.5 pe,papayal hacienda,Papayal Hacienda,20,,-5.2361111,-79.6491667 ru,novaya kazamaska,Novaya Kazamaska,80,,56.823598,53.532114 ly,qabilat sidi mu`ammar,Qabilat Sidi Mu`ammar,27,,32.5,13.8833333 us,otto,Otto,TX,,31.4488889,-96.8086111 fm,zabez,Zabez,04,,9.4533333,138.0652778 cn,tudikeng,Tudikeng,01,,29.696757,116.71652 ma,douar oulad hamouda,Douar Oulad Hamouda,51,,32.291411,-8.773023 ru,ashkovo,Ashkovo,60,,56.2736,29.0364 ru,novyy izrail,Novyy Izrail,70,,44.218056,43.916667 lv,pusca,Pusca,14,,56.1166667,27.8166667 id,pulaumajang,Pulaumajang,11,,.9,112 gw,samba nhamaracunda,Samba Nhamaracunda,10,,12.4666667,-14.1333333 bj,kouroukougounga,Kouroukougounga,03,,9.6166667,3.2333333 ru,serovskaya,Serovskaya,47,,55.300207,39.811079 gb,portsmouth,Portsmouth,C2,,53.733333,-2.15 ph,caliclic,Caliclic,I7,,7.108333,125.669722 mx,canada morelos,Cañada Morelos,21,,18.733333,-97.416667 th,ban yang toe,Ban Yang Toe,75,,14.65,104.983333 eg,kafr el-saiyid salih,Kafr el-Saiyid Salih,14,,30.6186111,31.7427778 ci,lomara,Lomara,87,,10.351741,-6.338875 ph,villia,Villia,56,,7.439444,124.233333 mx,santa catalina,Santa Catalina,03,,26.55,-112.35 es,las canalejas,Las Canalejas,51,,37.366667,-1.766667 fr,le vialard,Le Vialard,98,,44.86679,2.904758 pe,hacienda alcantarilla,Hacienda Alcantarilla,15,,-11.0833333,-77.55 it,castiglione messer raimondo,Castiglione Messer Raimondo,01,,42.533333,13.883333 cn,xingwei,Xingwei,30,,24.295833,115.053333 om,al mukhailif,Al Mukhailif,02,,24.1222222,56.9286111 hn,la sosa,La Sosa,08,,14.1,-87.15 ru,varzino,Varzino,49,,68.357154,38.373782 hu,peterdipuszta,Peterdipuszta,02,,45.979722,18.350556 zm,kasangala,Kasangala,07,,-11.3333333,31.75 id,turitempel,Turitempel,07,,-7.606389,110.814444 hu,alsopuszta,Alsópuszta,21,,46.466667,18.683333 ye,qaryat al `urrah as sufla,Qaryat al `Urrah as Suflá,16,,15.4986111,44.1783333 gn,kailahoun,Kaïlahoun,13,,8.7183333,-10.1205556 gb,threapwood,Threapwood,Z4,,53,-2.833333 rs,prkosava,Prkosava,00,,44.393889,20.425278 sy,tsharikh `abdi,Tsharikh `Abdi,04,,36.7,38.7666667 mw,kapyepye,Kapyepye,12,,-13.3333333,35.3833333 pk,goth abdul hakim khaskheli,Goth Abdul Hakim Khaskheli,05,,26.759546,68.288948 se,vappebylund,Väppebylund,21,,59.533333,17.316667 kz,kol'taban,Kol'taban,04,,50.05,56.283333 us,zumbro,Zumbro,MS,,33.7794444,-90.6761111 ru,kuzhuntay,Kuzhuntay,55,,51.021356,55.558463 tr,tastepe,Tastepe,17,,39.907457,26.303658 cn,wencun,Wencun,04,,31.735278,120.896111 kr,kagok,Kagok,14,,35.703332,128.692596 us,sealston,Sealston,VA,,38.2613889,-77.3322222 es,poboeiros,Poboeiros,58,,42.383333,-7.466667 tr,finikigeli,Finikigeli,80,,37.441751,42.05243 th,ban i phum,Ban I Phum,15,,15.15,99.516667 co,matasano,Matasano,02,,6.578611,-75.641111 uz,maburek,Maburek,08,,39.2552778,65.1527778 es,edreira,Edreira,58,,42.264816,-6.922454 id,telargedang,Telargedang,30,,-6.858611,108.258333 tr,ak bunar,Ak Bunar,34,,41.280699,28.809535 no,fjeldskaar,Fjeldskaar,19,,58,7.083333 mn,bayan baratuin,Bayan Baratuin,18,,46.8666667,106.25 ng,idu,Idu,37,,6.183333,5.766667 cn,onor,Onor,20,,48.866667,121.216667 ru,zinino,Zinino,88,,57.765278,39.982857 id,wawousu,Wawousu,22,,-4.2307,123.0454 ee,altia,Altia,08,,59.5808333,26.1133333 ir,lamis,Lamis,23,,33.427661,49.506758 ao,vihele,Vihele,02,,-12.341933,16.424735 eg,al burghuthi,Al Burghuthi,08,,29.4666667,31.2166667 hn,la galera,La Galera,02,,13.1166667,-86.9833333 id,lenggorsari,Lenggorsari,30,,-7.2897,108.2381 nl,rottum,Rottum,04,,53.383738,6.619789 my,kampong tebuan,Kampong Tebuan,13,,4.2981,103.3861 om,araqi,Araqi,05,,23.2802778,56.5363889 cr,santo tomas,Santo Tomás,08,,9.478096,-83.778293 cn,pannayunchinghung,Pannayünchinghung,29,,21.991015,100.734086 gt,delicias,Delicias,11,,14.25,-90.133333 br,pussazeiro,Pussazeiro,13,,-9.383333,-46.016667 de,saalborn,Saalborn,15,,50.883333,11.316667 cn,luqianlujia,Luqianlujia,03,,28.375898,116.83304 fi,mantyniemi,Mäntyniemi,15,,63.083333,24.55 cn,xilian luonan fenchang,Xilian Luonan Fenchang,31,,19.582381,109.523824 si,podgora,Podgora,04,,45.6844444,14.4897222 pt,longos,Longos,04,,41.520203,-8.363849 za,mtukazi,Mtukazi,05,,-31.084477,29.32203 gb,merioneth,Merioneth,Y2,,52.833333,-3.833333 mx,macavera,Macavera,25,,25.75,-108.033333 cn,hsianingchiang,Hsianingchiang,11,,28.333333,112.916667 bd,kolchari,Kolchari,81,,23.5833333,90.1166667 br,sitio adauto a. franco,Sítio Adauto A. Franco,18,,-25.9938,-49.2228 pl,lissaken kreis johannisburg,Lissaken Kreis Johannisburg,85,,53.526285,22.028007 la,ban nong kiet,Ban Nong Kiet,11,,18.166667,103.133333 id,rustoord,Rustoord,36,,-3.333333,137.9 lb,beit hassan hsain,Beït Hassan Hsaïn,01,,34.3166667,36.3 ir,chapan `olya,Chapan `Olya,16,,36.1663,46.5774 ga,nzingayong,Nzingayong,01,,0.6166667,9.6833333 vn,lang chang,Làng Chàng,11,,21.316667,106.033333 cn,masesumdo,Masêsumdo,14,,32.107,93.707 ru,ivanishchevskoye,Ivanishchevskoye,40,,56.217,63.5444 us,alcorns,Alcorns,GA,,32.4094444,-83.1102778 iq,jasim al muhammad,Jasim al Muhammad,04,,32.1508333,45.1366667 ru,yukhnovo,Yukhnovo,60,,56.721594,28.775389 so,sigaalow,Sigaalow,07,,4.75,45.1833333 ba,brutusi,Brutusi,01,,43.6825,18.405 ir,seyd,Seyd,22,,27.841944,52.308611 af,khargul',Khargul',41,,34.264335,66.306499 lk,rathgalla,Rathgalla,32,,7.45,80.3333333 co,mesa negra grande,Mesa Negra Grande,33,,4.523718,-73.394738 id,bontobilabila,Bontobilabila,38,,-4.7799,119.5586 ca,grand coulee,Grand Coulee,11,,50.433333,-104.816667 cn,mengjiawan,Mengjiawan,21,,37.433333,104.916667 eg,salamun qibli,Salamun Qibli,09,,30.5702778,30.8858333 bo,pichuma,Pichuma,04,,-17.15,-69.4166667 ng,shagari,Shagari,51,,12.62746,4.993586 fr,rivalais,Rivalais,98,,46.25459,2.931993 co,el voladero,El Voladero,29,,4.164167,-76.130278 kr,wolsongdong,Wolsongdong,18,,35.070278,126.816111 af,shokhak,Shokhak,28,,32.061683,66.732294 gh,akotaa,Akotaa,02,,6.5166667,-2.2 by,svyatotskiy,Svyatotskiy,02,,51.5,29.35 bf,begeuntiga,Begeuntiga,15,,13.1166667,-1.4166667 cd,kimuela,Kimuela,08,,-4.95,13.45 id,karoeni,Karoeni,18,,-9.4348,119.3101 id,mulusan,Mulusan,10,,-8.012222,110.54 cn,chiameiso,Chiameiso,05,,42.445826,129.67362 ke,timboiwo,Timboiwo,08,,0.4166667,35.8 td,kaorom,Kaorom,04,,13.05,15.3666667 in,ganu ka nagla,Ganu ka Nagla,36,,26.7589,79.223 tg,ahotokope,Ahotokopé,18,,6.4166667,0.85 my,plaman sagah,Plaman Sagah,11,,1.333333,110.2 de,brandhofle,Brandhöfle,01,,48.933333,9.683333 ro,ciopea,Ciopea,02,,45.55,22.983333 mz,chefe zuande,Chefe Zuande,03,,-24.3580556,35.2441667 ru,karakansk,Karakansk,53,,54.233333,82.666667 hk,nam chung cheng uk,Nam Chung Cheng Uk,00,,22.5166667,114.2 id,buo,Buo,24,,-.466667,100.766667 pk,reki zai,Reki Zai,02,,27.874487,66.48603 mz,medumane,Medumane,03,,-21.6808333,34.1041667 bj,boro,Boro,03,,10.9333333,2.8333333 ci,morifingso,Morifingso,75,,8.516832,-7.277622 ec,palma,Palma,09,,1.09,-78.8133333 pk,nanga par,Nanga Par,06,,34.194095,73.943866 id,ka boer boer,Ka Boer Boer,39,,-2.75,132.35 so,getitale,Getitale,16,,9.6,44.8166667 au,alstonville,Alstonville,02,,-28.84186,153.440216 ru,novonikolskoye,Novonikolskoye,37,,57.45608,42.88362 ao,ipanga,Ipanga,16,,-6.393448,12.441963 ch,hintere-windspillen,Hintere-Windspillen,22,,46.4,7.3 be,prairies de gimbes,Prairies de Gimbes,06,,50.083333,5.333333 mx,sancito,Sancito,25,,25.3,-108.183333 it,lurago marinone,Lurago Marinone,09,,45.716667,8.983333 mm,namhsan,Namhsan,11,,22.9666667,97.1666667 bd,gunaighar,Gunaighar,80,,23.6,90.9666667 ua,tyuytyube,TyuyTyube,11,,46.033333,34.15 id,sisir,Sisir,18,,-8.5051,120.7427 pk,bachrianwala,Bachrianwala,04,,30.8,72.366667 ug,namwezi,Namwezi,90,,0.4333333,33.15 kz,pavlogradka,Pavlogradka,03,,50.733333,71.216667 hr,botic,Botic,15,,43.6177778,16.6355556 ro,alamor,Alamor,33,,45.933333,23.983333 de,fuchsstein,Fuchsstein,02,,49.45,11.8 ca,musgrave town,Musgrave Town,05,,48.416667,-53.883333 kr,sonindong,Sonindong,01,,33.483333,126.7 af,qeslaqe hazara,Qeslaqe Hazara,41,,34.169854,65.752582 cn,xora,Xora,14,,29.003,91.303 ru,svetik,Svetik,06,,61.5574,48.1992 us,crossmans,Crossmans,NJ,,40.4850000,-74.3216667 de,werth,Werth,07,,50.783333,6.283333 sa,sarrar,Sarrar,06,,26.987883,48.386124 my,kampong buluh minyak,Kampong Buluh Minyak,07,,4.966667,100.983333 af,khushkawak,Khushkawak,05,,34.056667,66.873611 af,sofa-i-bala,Sofa-i-Bala,42,,35.207518,69.460449 ng,idibi enen ekeya,Idibi Enen Ekeya,21,,4.879333,8.143937 ee,tannassilma,Tännassilma,12,,58.0336111,27.0133333 sn,diougol diara,Diougol Diara,05,,12.4833333,-12.6 cd,okaka,Okaka,00,,-2.3,23.483333 ua,duby,Duby,27,,51.460473,28.284927 kz,turksib,Turksib,15,,50.45,80.033333 ao,dangere,Dangerê,17,,-9.100268,19.981465 us,leoma,Leoma,TN,,35.1613889,-87.3480556 uz,khujaobod,Khujaobod,01,,40.6694444,72.5597222 pe,tayapata,Tayapata,15,,-10.6241667,-76.9786111 fr,dampvitoux,Dampvitoux,B2,,49.013282,5.84227 fr,saint-marcel-les-sauzet,Saint-Marcel-lès-Sauzet,B9,,44.595009,4.806226 id,muarakketua,Muarakketua,37,,.0168,101.0253 gb,bishops waltham,Bishops Waltham,F2,,50.95,-1.216667 ir,khameneh,Khameneh,33,,38.1934,45.6309 cu,el catmito,El Catmito,05,,21.2333333,-77.3005556 gr,saktouri,Saktouri,35,,37.4166667,23.4 vn,ban giap,Ban Giap,02,,22.05,105.533333 id,cioa,Cioa,30,,-7.1452,106.509 ma,gzanaia,Gzanaïa,57,,35.703712,-5.914049 ng,birni,Birni,27,,10.480962,12.089544 cn,miaogang,Miaogang,32,,29.822014,102.85682 bf,youlabako,Youlabako,69,,10.4166667,-3.1 cn,yangyaoxian,Yangyaoxian,15,,36.588699,106.948096 tw,chiangti,Chiangti,04,,23.5833333,119.6166667 cn,chonglicheng,Chonglicheng,01,,30.547222,117.461111 cz,klein borowitz,Klein Borowitz,83,,50.501426,15.665173 id,keude bakongan,Keude Bakongan,01,,2.9264,97.4817 it,villamagna,Villamagna,16,,43.483333,10.833333 kz,alma-atinskiy,Alma-Atinskiy,03,,51.531111,65.79 cn,jiangjiagou,Jiangjiagou,05,,41.175072,125.964319 kr,naedaeji,Naedaeji,13,,37.331389,127.13 pl,biskupice,Biskupice,73,,52.640184,18.546829 al,gojan,Gojan,49,,41.9791667,20.0030556 mx,atlalaquian,Atlalaquian,30,,18.748611,-97.116667 tg,zamoue,Zamoué,03,,7.6166667,1.5 pt,olival,Olival,17,5715,41.050244,-8.544163 sy,rass el ouata,Râss el Ouata,02,,35.2333333,35.9666667 ve,panadero,Panadero,19,,10.3833333,-64.25 er,hashaso,Hashaso,00,,14.4677778,39.2486111 ph,curipang,Curipang,48,,16.516681,121.224339 fr,damville,Damville,A7,,48.869303,1.074575 ph,parang,Parang,K9,,14.6617,121.1227 ng,fan manga,Fan Manga,43,,8.6,11.233333 cz,svitanov,Svitanov,79,,48.666667,14.383333 cn,houqingyangbao,Houqingyangbao,19,,40.643333,123.518889 na,nuwe kabbe,Nuwe Kabbe,28,,-17.6833333,24.6666667 pt,surribas,Surribas,20,,42.10625,-8.255662 in,thiruvellarai,Thiruvellarai,25,,10.95,78.666667 kr,tunmal,Tunmal,13,,37.1142,127.6223 gh,tabeasi,Tabeasi,11,,10.3333333,-2.3 es,cazurra,Cazurra,55,,41.415834,-5.704542 vn,van thai,Van Thai,26,,19.1,105.683333 cn,wala,Wala,14,,31.601,98.301 mx,el jaripeo,El Jaripeo,04,,18.141667,-91.333333 de,plotzensee,Plötzensee,16,,52.533333,13.316667 pe,toropuquio,Toropuquio,05,,-15.05,-73.8833333 ba,potpecine,Potpecine,02,,43.9219444,18.8486111 us,terry estates,Terry Estates,TN,,35.1794444,-87.0483333 ru,tyugeyevka,Tyugeyevka,73,,55.133019,51.787946 kp,tongnimni,Tongnimni,17,,42.6975,130.2075 kg,arslanbab,Arslanbab,03,,41.3333333,72.9333333 cn,yingnan,Yingnan,23,,31.519889,121.672628 br,sitio barro,Sítio Barro,27,,-23.741181,-47.089294 ir,dahna,Dahna,29,,30.3481,56.7706 pk,asni,Asni,04,,29.02088,70.252475 fr,la batterie,La Batterie,B9,,45.357275,4.556389 es,espejo de tera,Espejo de Tera,55,,41.884695,-2.486529 cn,jiangpeicun,Jiangpeicun,30,,22.080655,110.583634 ir,golat,Golat,41,,32.283333,59.916667 sn,bakhere,Bakhère,08,,15.4666667,-16.3166667 id,gimikja,Gimikja,36,,-7.083333,139.583333 pa,el salero,El Salero,06,,7.75,-80.8166667 ng,kirowa,Kirowa,24,,12.783278,8.686886 af,meskarha,Meskarha,09,,33.528226,64.424842 ir,deh-e malek,Deh-e Malek,42,,34.248056,59.719722 af,naqchin,Naqchin,27,,34.291389,68.306111 ug,kitovu,Kitovu,86,,0.45,33.4333333 cz,zrcadlova hut',Zrcadlova Hut',79,,48.883333,14.216667 id,batujaban,Batujaban,17,,-8.7332,116.5336 rs,trnci,Trnci,00,,42.483889,22.425556 al,lajthize,Lajthizë,48,,41.8741667,20.2055556 fr,saint-amans-du-pech,Saint-Amans-du-Pech,B3,,44.314685,.885714 it,pertengo,Pertengo,12,,45.233333,8.416667 us,ladue,Ladue,MO,,38.6497222,-90.3805556 bo,acachilo,Acachilo,01,,-19.2833333,-65.2 cn,hsiaoyangchieh,Hsiaoyangchieh,29,,24.233333,103.45 kp,kuryonni,Kuryonni,07,,38.3230556,125.7988889 pk,dharekri,Dharekri,04,,32.768319,74.108582 ru,dolgoye pleso,Dolgoye Plëso,90,,60.476563,57.444803 tr,karandi,Karandi,37,,41.233333,34 lt,gronscie,Gronscie,63,,56.2166667,22.0166667 cn,shierdebao linchang,Shierdebao Linchang,19,,41.098333,119.953333 th,ban tha to,Ban Tha To,68,,6.757056,100.534056 kr,maepori,Maepori,05,,37.0339,128.2991 cn,gaomiaowan,Gaomiaowan,15,,36.571326,107.027452 id,gagawarung,Gagawarung,30,,-6.074722,106.444722 ro,timisul-de-sus,Timisul-de-Sus,09,,45.533333,25.566667 lt,kotyle,Kotyle,59,,54.8666667,23.1333333 id,jingglengan,Jingglengan,07,,-7.0246,110.8793 ir,badumak,Badumak,42,,34.131782,58.406572 ir,danarat,Danarat,28,,32.613667,51.744461 lk,timbirigaswela,Timbirigaswela,32,,7.4833333,79.8833333 mx,el triangulo,El Triángulo,07,,25.683333,-103.033333 ml,narale,Naralé,03,,15.1833333,-11.3 cn,kanyucheng,Kanyucheng,04,,34.884447,119.087819 us,rowena,Rowena,SD,,43.5202778,-96.5555556 ph,uyaoy,Uyaoy,36,,16.716667,120.35 cn,moujiaao,Moujiaao,32,,26.462815,102.316485 fr,le muret,Le Muret,B9,,45.017572,4.619006 ga,nkomi,Nkomi,01,,0.3666667,10.2666667 de,hahnenbusch,Hahnenbusch,01,,49.116667,9.65 gn,kolente,Kolenté,16,,10.1,-12.6166667 cz,lhota nad rohanovem,Lhota nad Rohanovem,79,,49.139604,13.689374 sd,wad ed dagal,Wad ed Dagal,29,,15.4,32.5 id,dusun 5 kinamang,Dusun 5 Kinamang,31,,.8614,124.475 ht,morne rouge,Morne Rouge,13,,18.35,-72.4666667 cr,alto poro,Alto Poró,08,,9.898387,-84.42191 ph,pinanaan,Pinanaan,67,,12.453611,124.521111 cm,djamonomine,Djamonomine,04,,4.1166667,13.25 ao,calonda quarto,Calonda Quarto,17,,-8.51248,20.54967 mz,chande,Chande,01,,-11.0497222,40.2541667 pk,goth jurno jamali,Goth Jurno Jamali,05,,26.555556,67.405556 ru,bolshiye korkiamyaki,Bolshiye Korkiamyaki,42,,60.433333,30.25 ve,pinero,Piñero,08,,8.9333333,-68.05 hn,piedra blanda,Piedra Blanda,15,,15.2,-86.65 gb,alltbeath,Alltbeath,V3,,57.233333,-5.183333 sl,makerifi,Makerifi,02,,8.9166667,-12.1333333 cn,guangyang,Guangyang,01,,30.353056,117.967778 ru,tseplyayevka vtoraya,Tseplyayevka Vtoraya,09,,50.59923,37.051046 vn,hoi son,Hoi Son,27,,14.166667,108.95 in,adambakkam,Adambakkam,25,,12.9925,80.204444 id,tandjoengbaliha,Tandjoengbaliha,29,,-2.397828,126.059233 af,qadir kelay,Qadir Kelay,10,,31.850166,64.683429 cn,sohsien,Sohsien,14,,31.85,93.666667 cn,peipeichuangtsun,Peipeichuangtsun,24,,35.434722,110.635 mx,recharachic,Rechárachic,06,,28.75,-108.183333 ru,maloye,Maloye,CI,,42.941389,45.699444 ru,selishchi,Selishchi,83,,55.7645,41.7548 rs,sredni deo,Sredni Deo,00,,43.504722,20.325278 us,shoals,Shoals,IN,,38.6663889,-86.7911111 bj,goborou,Goborou,03,,9.7833333,2.8666667 af,garmah junubi,Garmah Junubi,10,,32.086948,64.665652 ba,culici,Culici,02,,44.4313889,17.0633333 pg,tmingondok,Tmingondok,06,,-6.0,141.4666667 id,toyamas barat,Toyamas Barat,08,,-8.3943,114.1928 sk,dedinky,Dedinky,03,,48.8666667,20.3833333 kh,p'um pen,P'um Pen,01,,12.5666667,103.4666667 us,white rock hill,White Rock Hill,VA,,37.4030556,-79.1397222 th,ban khok kung,Ban Khok Kung,26,,16.133333,102.166667 si,lindek,Lindek,09,,46.3666667,15.3166667 ve,kilometro cuatro,Kilómetro Cuatro,16,,10.0838889,-63.0938889 cm,sadoka,Sadoka,10,,6.9,14.25 cn,gangbochong,Gangbochong,11,,29.25989,111.814651 tr,camili,Camili,64,,38.55,29.083333 fr,garel,Garel,B1,,45.07542,1.987812 kh,phumi kampong pouthi,Phumi Kampong Pouthi,13,,14.0666667,105.7833333 de,fargau-pratjau,Fargau-Pratjau,10,,54.333333,10.416667 rw,kaboza,Kaboza,03,,-2.5666667,28.9666667 us,versailles,Versailles,IL,,39.8850000,-90.6558333 ua,honyatychi,Honyatychi,15,,49.558241,23.899838 tr,hacialiler,Hacialiler,07,,36.448181,30.283839 rs,fushdrin,Fushdrin,00,,42.671389,20.584444 ng,dalhat,Dalhat,27,,10.184477,12.080958 af,kareze mullajum`a,Kareze Mullajum`a,06,,32.201225,61.659302 pl,blonice,Blonice,86,,52.104569,18.071721 jp,kita-sunamachi,Kita-sunamachi,40,,35.683333,139.833333 ng,umudike,Umudike,45,,5.476476,7.549084 us,berenice,Berenice,ID,,43.8277778,-112.9733333 sl,tinehun,Tinehun,01,,7.9538889,-11.23 th,ban plaeng 1,Ban Plaeng 1,02,,17.932056,98.698139 ve,riachon,Riachón,07,,9.9294444,-67.8583333 bg,golyem duvandzhiy,Golyem Duvandzhiy,43,,42.3666667,25.8666667 fr,leintrey,Leintrey,B2,,48.623887,6.738541 zm,mungwela,Mungwela,05,,-13.15,29.9166667 kz,entuziast,Entuziast,03,,51.983889,67.271667 id,cimanyah,Cimanyah,30,,-6.871944,107.440833 ph,dinabongan,Dinabongan,B3,,12.1983,124.6069 sd,meshra rek,Meshra Rek,32,,8.4166667,29.2666667 id,bergat wetan,Bergat Wetan,07,,-6.622,111.002 ir,jabuk'alu,Jabuk'alu,36,,35.8975,47.9598 ph,concepcion,Concepcion,F7,,14.0827,121.3388 de,froschauerhof,Froschauerhof,08,,49.616667,8.033333 sd,fadulay,Fadulay,26,,8.1302778,30.8269444 fi,etelapaa,Eteläpää,15,,62.366667,21.566667 ug,kawolongojo,Kawolongojo,56,,0.4,32.1666667 id,gorda 2,Gorda 2,30,,-6.175278,106.336667 by,krugi,Krugi,07,,54.4352778,30.0366667 af,swonak kala,Swonak Kala,29,,32.470726,69.205463 sn,keur omar oumi,Keur Omar Oumi,10,,13.7666667,-16.0333333 us,halfway,Halfway,TX,,34.1880556,-101.9519444 zm,kasonkomona,Kasonkomona,07,,-9.1,31.0333333 tt,l'anse noire,L'Anse Noire,07,,10.8333333,-60.9666667 id,tahele selatan,Tahele Selatan,34,,.5271,121.4836 cn,lomenchen,Lomenchen,15,,34.754167,105.024722 us,holy city,Holy City,CA,,37.1569444,-121.9777778 vn,xom truong toc,Xom Truong Toc,24,,10.95,106.166667 cn,hsunkiensze,Hsünkiensze,12,,31.384167,111.615833 es,niharra,Niharra,55,,40.589447,-4.838954 ru,kolos,Kolos,55,,51.2899,55.2978 ir,darbidu,Darbidu,07,,29.3779,54.3806 at,forsthartl,Forsthartl,03,,48.816667,15 us,ansley place,Ansley Place,TX,,30.2433333,-103.1380556 gr,kompotion,Kompótion,20,,39.1022222,21.0852778 et,dimbira,Dimbira,54,,7.25,35.883333 tz,mkungu,Mkungu,07,,-10.3666667,39.2666667 pk,bolasabad,Bolasabad,05,,25.424453,69.156012 sd,es sa`ata,Es Sa`ata,34,,13.6166667,29.9833333 la,ban dong,Ban Dông,13,,17.716667,101.241667 ru,zhivoderka,Zhivoderka,71,,56.586591,57.883476 id,marongsari,Marongsari,07,,-7.442222,109.992778 cn,haowai,Haowai,19,,42.680065,121.962896 ru,ivashkma balka,Ivashkma Balka,09,,50.670278,37.465278 th,ban pak khlong khoen nok,Ban Pak Khlong Khoen Nok,48,,12.358778,102.201111 sy,kafer aammim,Kafer Aammim,12,,35.8166667,36.8666667 pk,sonehri,Sonehri,05,,26.192048,67.990529 de,tuckelhausen,Tückelhausen,02,,49.65,10.016667 ru,vishnevskiy,Vishnëvskiy,38,,45.379722,40.587222 ru,donets,Donets,69,,55.147918,31.951252 cn,xiada liangping,Xiada Liangping,12,,30.065693,110.1568 za,crocodile valley estates,Crocodile Valley Estates,07,,-25.473558,31.018905 lk,galgomuwa,Galgomuwa,32,,7.35,80.2 hr,jakuseveo,Jakuseveo,21,,45.7625,16.0161111 cn,keluotou,Keluotou,32,,29.327223,102.246882 cn,huangnian,Huangnian,24,,36.364167,113.116389 se,oggestorp,Öggestorp,08,,57.733333,14.383333 kh,phumi pech chou,Phumi Pech Chou,16,,13.5833333,103.4166667 ng,imeki,Imeki,16,,6.481908,4.161513 be,egypten,Egypten,09,,51.183333,3.316667 ru,solovyevskiy,Solovyevskiy,11,,54.95,113.35 ph,masiway,Masiway,47,,15.7754,121.0953 tz,engare nairobi,Engare Nairobi,26,,-3.05,37.0 ml,kimi,Kimi,07,,11.45,-7.1666667 ng,gidan matomi,Gidan Matomi,51,,13.094699,5.327835 ug,rwempogo,Rwempogo,52,,-0.4833333,31.0833333 gb,city of derry,City of Derry,S6,,55,-7.25 tw,leyuan,Leyüan,04,,23.8333333,120.7333333 cn,pienchuang,Pienchuang,01,,32.725556,118.030556 tw,erhchunghsi,Erhchunghsi,04,,23.1241667,120.3875 sk,cabalovce,Cabalovce,05,,49.2333333,21.9666667 rs,steinsitz,Steinsitz,00,,45.94,19.165278 vn,plei pa ai brui,Plei Pa Ai Brui,07,,13.433333,108.466667 zr,bendele,Bendele,00,,3.7666667,26.6833333 hn,baditos,Baditos,16,,14.9333333,-88.3333333 ir,hisar pain,Hisar Pain,36,,35.8451,48.2865 pl,lopiennik gorny,Lopiennik Gorny,75,,51.05,23.033333 la,ban nonghin,Ban Nonghin,09,,15.566667,105.7 pw,akuro,Akuro,00,,7.6936111,134.6280556 cd,bobei,Bobei,00,,2.5,18.85 th,ban chaang,Ban Chaang,51,,14.283333,100.133333 pk,shori chatta,Shori Chatta,04,,32.145353,73.717535 hn,el agua caliente,El Agua Caliente,05,,14.55,-88.85 sk,na breh,Na Breh,08,,49.4333333,18.8666667 th,ban sung noen,Ban Sung Noen,20,,17.195222,103.692556 ir,tamizian,Tamizian,26,,35.623,51.947 al,kamze,Kamzë,50,11026,41.3816667,19.7602778 id,embodo,Embodo,34,,.5178,121.8291 us,canaan,Canaan,VI,,17.7622222,-64.7969444 mx,el recuerdo,El Recuerdo,10,,25.783333,-103.333333 af,kudikhel,Kudikhel,18,,34.233711,69.949928 cn,linghe zhen,Linghe Zhen,04,,32.432011,121.078849 id,petorok,Petorok,17,,-8.6669,116.379 ir,jalilabad,Jalilabad,33,,37.109,46.6988 pk,waliana,Waliana,04,,31.229167,73.395833 fr,raillicourt,Raillicourt,A4,,49.651441,4.587059 es,el gollizo,El Gollizo,54,,38.510063,-2.412557 ru,staraya vogulka,Staraya Vogulka,71,,57.336446,58.522412 ir,sangar,Sangar,07,,28.7531,52.5487 au,aura,Aura,07,,-37.933333,145.416667 ba,cerovi,Cerovi,02,,44.9586111,17.9377778 pe,ichubamba,Ichubamba,08,,-13.4833333,-72.3166667 ir,chah-e zebr-e bon dasht,Chah-e Zebr-e Bon Dasht,07,,28.2788,54.5685 rs,gjyrgjeviku i madh,Gjyrgjeviku i Madh,00,,42.612778,20.657778 hn,jocotal,Jocotal,17,,13.5833333,-87.5666667 iq,umm kharfah,Umm Kharfah,14,,31.6,47.1 mm,pakaw,Pakaw,10,,24.2,95.8666667 bd,char ajudhya,Char Ajudhya,81,,23.55,89.9333333 ru,ust-angarsk,Ust-Angarsk,39,,58.096667,93.048333 us,little boston,Little Boston,WA,,47.8525000,-122.5688889 dz,el a'nabra,El A'Nabra,15,,35.0833333,-1.9 my,kapar,Kapar,12,,3.133333,101.383333 la,ban namao,Ban Namao,03,,20.483611,104.241667 id,jelok,Jelok,10,,-7.838611,110.207222 ie,greaghnafarna,Greaghnafarna,24,,54.1016667,-8.095 cd,boendu,Boendu,02,,1.366667,21.4 af,kotayi-sokhta,Kotayi-Sokhta,27,,34.514444,68.644167 cn,xinying,Xinying,31,,19.510994,110.175972 pk,waral khan jamali,Waral Khan Jamali,05,,27.951348,67.82263 ir,qareh kand,Qareh Kand,01,,36.5763,46.0781 id,peniti,Peniti,11,,.133333,109.166667 de,hopfingen,Höpfingen,01,,49.6025,9.428611 ng,iwrekpokpor,Iwrekpokpor,36,,5.560378,6.124449 ec,puca corral,Puca Corral,02,,-3.1666667,-79.1166667 no,fausko,Fausko,04,,60.883333,8.483333 om,as samad,As Samad,06,,22.8177778,58.1558333 by,slizheno,Slizheno,07,,55.0333333,29.4 de,amecke,Amecke,07,,51.3,7.95 ve,santa rita,Santa Rita,12,,8.1380556,-66.2563889 hn,vuelta del cerro,Vuelta del Cerro,02,,13.1788889,-87.1219444 af,`ishqabad,`Ishqabad,23,,31.65028,65.072999 bo,estancia llallagua,Estancia Llallagua,04,,-17.2666667,-69.3666667 in,batwaha,Batwaha,35,,24.8718,78.8066 us,tanglewood,Tanglewood,PA,,41.4150000,-75.1708333 ro,stingaceaua,Stingaceaua,26,,44.6,23.316667 id,padas wetan,Padas Wetan,08,,-8.2201,112.0096 kh,kompong chamlang,Kompong Chamlang,18,,11.05,105.7666667 vn,can ho meo,Can Ho Meo,19,,22.4,103.783333 jp,nishikawa,Nishikawa,31,,34.966667,133.816667 cn,pianlianzitun,Pianlianzitun,08,,45.771757,127.508444 pl,wischniewen,Wischniewen,85,,53.757566,22.5283 rs,gardhesh,Gardhesh,00,,42.695833,21.496944 th,amphoe mueang phitsanulok,Amphoe Mueang Phitsanulok,12,,16.824806,100.258584 ro,lissa,Lissa,42,,43.8,25.133333 id,mangkul,Mangkul,11,,-2.566667,110.266667 af,mah-e now,Mah-e Now,01,,38.400154,70.693199 ir,ab garmak-e bala,Ab Garmak-e Bala,15,,32.0615,48.7719 kr,sogurongi,Sogurongi,06,,37.3334,128.9017 cn,xiaxiyuan,Xiaxiyuan,29,,24.867847,102.433962 no,sjolisaeter,Sjølisæter,01,,60.233333,11.5 us,feltham,Feltham,ID,,44.2072222,-116.9300000 es,alcudiola,Alcudiola,60,,38.933333,-.166667 br,pau fincado,Pau Fincado,23,,-29.916667,-54.316667 id,taraghaino,Taraghaino,26,,1.0743,97.7957 id,dlisen,Dlisen,07,,-7.006,109.9443 pt,vinhos,Vinhós,21,,41.224466,-7.83775 pl,bodzanow,Bodzanow,79,,50.340301,17.382326 id,teluk-dalem,Teluk-dalem,01,,2.8634,99.6675 me,pakljesica,Pakljesica,00,,42.731944,19.405278 bg,mandriza,Mandriza,43,,41.3833333,26.1333333 ro,bogdan,Bogdan,29,,44.2,24.2 cz,kobyli,Kobyli,85,,50.133333,17.633333 ru,teterina,Tetërina,39,,56.2,93.05 mx,uvero,Uvero,23,,18.633333,-88.2 ro,chiroiu,Chiroiu,41,,44.6,26.5 lb,fdar el faouka,Fdar el Faouka,05,,34.1333333,35.7 cn,sanyi,Sanyi,15,,35.250314,105.101428 pg,haiyaru,Haiyaru,09,,-6.75,145.4166667 id,seneubok kranji,Seneubok Kranji,01,,2.9976,97.5149 my,kampung semut gatal,Kampung Semut Gatal,08,,6.376563,100.261825 td,broudou,Broudou,07,,13.6166667,15.3166667 ch,gais,Gais,10,,47.361608,9.451705 pe,cabaconde,Cabaconde,04,,-15.6213889,-71.9788889 ci,lossakouankro,Lossakouankro,86,,7.216667,-4.316667 my,rumah sangong,Rumah Sangong,11,,1.916667,112.366667 pk,nunaranwala,Nunaranwala,04,,30.363889,71.361111 ru,moseyevo,Moseyevo,69,,55.097986,34.905962 bd,nehalpur,Nehalpur,81,,23.8333333,89.7833333 kr,paekhak,Paekhak,13,,38.031667,126.921111 us,delorme,Delorme,WV,,37.5691667,-82.1422222 pg,andumosom,Andumosom,06,,-6.2,142.2833333 id,pengkeling,Pengkeling,17,,-8.675,116.3399 vn,xom bung chong,Xom Bung Chong,65,,9.550278,106.035278 ua,katerinovka,Katerinovka,09,,48.850347,27.055321 mx,amado nervo,Amado Nervo,10,,23.833333,-104.166667 my,kampong selarong,Kampong Selarong,02,,5.475418,100.577519 cu,nautico,Náutico,02,,23.0972222,-82.4513889 cn,dache,Dache,18,,28.425833,109.204444 cn,lotzukou,Lotzukou,05,,43.729318,130.340416 ua,nahorany,Nahorany,03,,48.543415,26.799436 ph,caaguititan,Caaguititan,67,,12.3784,124.3415 pl,grabowo siwki,Grabowo Siwki,78,,53.233333,20.733333 sy,sitt ghaliyah,Sitt Ghaliyah,02,,35.6333333,35.9833333 bf,limbere,Limbéré,40,,14.1166667,-2.5 fr,les fougerets,Les Fougerêts,A2,,47.740758,-2.212765 id,koter,Koter,18,,-8.6273,120.3561 mm,majai,Majai,04,,25.3666667,96.4666667 ir,qazel qayeh,Qazel Qayeh,32,,38.8392,47.791 cn,goutouwang,Goutouwang,01,,33.425,116.933333 ge,tokholcha,Tokholcha,54,,41.9311111,44.9638889 et,mederu,Mederu,51,,9.23,42.152222 us,zinzer,Zinzer,CO,,37.5602778,-106.0938889 ma,iboujane el mellah,Iboujane el Mellah,47,,31.190553,-8.789727 de,waddens,Waddens,06,,53.55,8.433333 ru,pechengulskiy,Pechengulskiy,53,,56.216667,79.35 gr,vounoi,Voúnoi,34,,38.5666667,23.8166667 ga,boumabango,Boumabango,07,,-0.95,12.95 ua,vashkivtsi,Vashkivtsi,03,5764,48.384915,25.510231 ba,lamesi,Lamesi,01,,44.6352778,18.6538889 ru,zlatoust-26,Zlatoust-26,13,,54.815,58.459167 vu,matnavando,Matnavando,06,,-15.4666667,167.8333333 in,savli,Savli,09,,22.566667,73.216667 mz,ganda,Ganda,10,,-19.3172222,33.24 ba,cozalovo brdo,Cozalovo Brdo,01,,44.7272222,18.3222222 ua,yurkovo,Yurkovo,26,,47.654504,35.65502 at,eppenstein,Eppenstein,06,,47.128333,14.7375 mx,el nanche,El Nanche,12,,18.216667,-100.491667 al,verrij,Verrij,47,,41.9236111,20.3208333 ru,zakuleyskiye,Zakuleyskiye,20,,53.7362,103.0987 cn,shapingzi,Shapingzi,32,,28.051847,103.419543 it,santa maria,Santa Maria,04,,40.283333,14.95 hk,tai chik sha,Tai Chik Sha,00,,22.3,114.2833333 ru,roslyakovskiy,Roslyakovskiy,33,,59.433333,50.333333 ru,bolshoy gornyy kuyuk,Bolshoy Gornyy Kuyuk,73,,56.149722,48.979444 gr,megalo khorio,Megálo Khorió,30,,38.8333333,21.7333333 fi,kellomaki,Kellomäki,08,,64.3,28.516667 cn,huangpiling,Huangpiling,03,,29.0667,115.192086 ir,darbagh,Darbagh,08,,37.147778,49.254722 mg,ambalahady,Ambalahady,03,,-14.3,48.9333333 pk,sahawa,Sahawa,06,,33.024889,73.8258 ga,benga,Benga,09,,1.6166667,11.6833333 cn,chiatzu,Chiatzu,30,,22.877914,116.067054 tr,nurluca,Nurluca,53,,41.022685,40.898343 ua,tiapcze,Tiapcze,06,,49.029616,23.904363 bg,malko schiwatschewo,Malko Schiwatschewo,43,,42.2,25.4666667 gr,artsai,Artsaí,19,,39.255,20.6072222 sn,gabasse,Gabassé,04,,14.55,-13.4833333 pg,emu village,Emu Village,02,,-7.3333333,144.4 ru,panshonki,Panshonki,33,,57.924398,51.52972 ng,jamdudi,Jamdudi,35,,9.016667,12.266667 us,yeso,Yeso,NM,,34.4391667,-104.6094444 id,cibedol,Cibedol,30,,-6.9725,107.061111 ml,fidiko,Fidiko,00,,12.1666667,-11.4 al,fushe-peshtani,Fushë-Peshtani,40,,40.6472222,20.0436111 mm,heinun,Heinun,04,,24.2833333,96.9 ua,koroviya,Koroviya,03,,48.228878,25.970532 ec,el salto,El Salto,18,,-0.4333333,-78.4166667 es,casa motor de don pedro,Casa Motor de Don Pedro,60,,39.316667,-.433333 pe,san bartolome,San Bartolome,08,,-14.2252778,-71.4013889 za,mqele,Mqele,05,,-32.021424,28.894571 fr,sournia,Sournia,A9,,42.727331,2.442226 ar,noquebe,Noquebe,12,,-31.206319,-66.749939 us,pittsburg,Pittsburg,IA,,40.7463889,-91.9916667 hn,el volcan,El Volcán,12,,14.05,-88.1166667 lt,smalininkay,Smalininkay,62,,55.0755556,22.5797222 us,bayliss,Bayliss,CA,,39.5827778,-122.0447222 us,spring mill woods,Spring Mill Woods,IN,,39.9155556,-86.1647222 us,alazan,Alazan,TX,,31.5830556,-94.7858333 us,ronald,Ronald,MN,,46.4472222,-93.0550000 sd,lwol,Lwol,26,,6.7,32.9666667 mx,rancho cilantrillo,Rancho Cilantrillo,19,,25.366667,-100.316667 ph,pangauanen,Pangauanen,49,,11.099167,119.331667 tr,erikbelen,Erikbelen,60,,40.452691,37.142324 gb,kirkby knowle,Kirkby Knowle,J7,,54.283333,-1.266667 cz,neu-rumburg,Neu-Rumburg,84,,50.180168,16.924579 ng,pakuti,Pakuti,31,,9.4,6.95 us,bass river,Bass River,MA,,41.6527778,-70.2041667 cn,lujiangzhai,Lujiangzhai,32,,27.792972,105.791339 ru,barzunovo,Barzunovo,47,,55.670375,38.648834 cn,shibaocheng,Shibaocheng,15,,39.8,96.066667 tr,yigitpinar,Yigitpinar,25,,40.047872,41.595391 cn,daping nongchang,Daping Nongchang,11,,25.795,112.696944 cn,shihchiaao,Shihchiaao,02,,29.356111,121.443889 us,racetrack,Racetrack,MT,,46.2788889,-112.7477778 ru,novikovo,Novikovo,47,,55.422359,37.039929 vn,mang brei,Mang Brei,10,,14.95,108.233333 ir,sula mahalleh,Sula Mahalleh,08,,37.5846,49.0391 ml,attai,Attaï,08,,16.1833333,-3.7 de,fehndorf,Fehndorf,06,,52.766667,7.1 ir,zeynekanlu,Zeynekanlu,43,,37.046183,58.098238 la,ban xia,Ban Xia,14,,19.55,103 ru,knyazhe-selo,Knyazhe-Selo,69,,54.600144,32.803352 ve,los conejos,Los Conejos,02,,9.4952778,-64.8555556 ru,kuzhetsovo,Kuzhetsovo,04,,51.683333,82.016667 tz,buyango,Buyango,19,,-1.1486111,31.6447222 ir,eymanabad,Eymanabad,08,,37.253975,49.739772 il,mitulla,Mitulla,03,,33.279182,35.579501 ru,verkhne-suyetka,Verkhne-Suyetka,04,,53.3,80.033333 tj,"sangiugul""","Sangiugul""",02,,38.1438889,69.9069444 ph,pasongcawayan,Pasongcawayan,20,,14.347449,120.870513 br,fidalgo,Fidalgo,22,,-6.316667,-38.066667 kp,paegadong,Paegadong,14,,38.7986111,125.3927778 us,elburn,Elburn,IL,,41.8922222,-88.4722222 be,speche,Spèche,06,,49.916667,5.3 fr,fougayrolles,Fougayrolles,B3,,44.018788,3.350619 de,mendhausen,Mendhausen,15,,50.383333,10.466667 ru,istrovka,Istrovka,10,,52.507449,32.560333 fi,sosso,Sosso,08,,65.933333,29.533333 ci,kombara bambarassou,Kombara Bambarassou,90,,7.996184,-4.559176 it,mezzocorona,Mezzocorona,17,,46.216667,11.116667 af,qanjogha,Qanjogha,31,,36.728268,65.816317 mm,ywathagon,Ywathagon,09,,18.3,95.5333333 kr,namchang,Namchang,17,,36.8637,127.1971 id,en 'botit,En 'botit,28,,-3.768137,126.486983 td,dombala,Dombala,08,,9.1,16.3 id,bangoenpoerba,Bangoenpoerba,26,,3.3752,98.8152 tr,vaizkantarasi,Vaizkantarasi,63,,37.190867,38.688349 fo,trangisvag,Trangisvåg,00,,61.5666667,-6.8333333 ph,laoingen,Laoingen,29,,17.65,120.466667 fr,janville,Janville,A8,,48.513523,2.270638 pk,drug pura,Drug Pura,05,,28.0148,67.9606 bf,nonfesso,Nonfesso,55,,10.1333333,-4.7833333 af,kariz-e maydanak,Kariz-e Maydanak,11,,33.640724,62.360603 cn,najenpaoliko,Najenpaoliko,20,,44.483333,114.3 ci,netetoagui,Nététoagui,76,,5.363983,-6.453635 mw,loba,Loba,09,,-12.4833333,33.6 pk,imam bagh jatoi,Imam Bagh Jatoi,05,,25.416602,68.385822 ba,donji vlasnici,Donji Vlasnici,01,,43.3472222,17.7188889 ru,yaglyayarvi,Yaglyayarvi,28,,62.35,31.866667 na,onhunda,Onhunda,33,,-17.4166667,16.5833333 pt,carapinhal,Carapinhal,07,,40.101293,-8.328784 bg,riben dol,Riben Dol,51,,41.75,25.0333333 ru,maloye zagbolotye,Maloye Zagbolotye,85,,60.283333,36.3 us,cline,Cline,WA,,48.0622222,-117.7505556 ru,pasenovo,Pasenovo,88,,58.010273,38.138745 se,jock,Jock,14,,66.65,22.716667 cn,sangongqiao,Sangongqiao,11,,28.184167,109.636389 au,tara,Tara,02,,-34.5,147.166667 ar,balde,Balde,19,,-33.342004,-66.622258 do,culebra,Culebra,18,,19.9,-71.0 id,mantadulu,Mantadulu,38,,-2.4489,120.9174 ru,grobovo,Grobovo,93,,51.6494,117.1134 ru,beloye ozero,Beloye Ozero,13,,55.6219,60.3752 id,totoad,Totoad,28,,-5.754167,132.675833 et,bura arba,Bura Arba,51,,9.316667,38.9 so,sehcai aveggio,Sehcai Aveggio,09,,0.55,41.6333333 br,sitio makuda,Sítio Makuda,18,,-23.527395,-50.745353 cn,yangtian,Yangtian,24,,37.176944,113.011111 my,nabah,Nabah,16,,6.2922,116.5166 ru,petrovka,Petrovka,05,,50.316667,128.1 us,souder,Souder,MO,,36.7888889,-92.4583333 cn,huangwan,Huangwan,11,,27.342222,110.687222 gb,dedham,Dedham,E4,,51.95,.983333 pe,amani,Amani,21,,-14.4961111,-69.6713889 ru,zhestyanka,Zhestyanka,67,,51.6032,49.409 pa,el barrero,El Barrero,07,,7.8333333,-80.3 et,angorch'a,Angorch'a,51,,9.833333,38.766667 ru,gabishevo,Gabishevo,73,,55.609538,49.143517 az,livadirgya,Livadirgya,31,,38.817912,48.395279 ir,abrao,Abrao,28,,32.1708,51.4527 se,angarden,Ängården,28,,57.683333,11.95 ci,yau,Yau,89,,5.797729,-3.138227 af,imarat,Imarat,23,,31.519178,66.389197 af,barakzo,Barakzo,23,,32.203381,65.479978 ph,canglang,Canglang,H8,,9.4104,122.8085 mx,zacatenco,Zacatenco,09,,19.5,-99.116667 bd,baorabari,Baorabari,81,,23.95,89.8833333 pt,renhadouro,Renhadouro,17,,41.305944,-8.127581 so,osbolei,Osbolei,08,,0.5383333,42.7519444 se,gnarpsmasuga,Gnarpsmasuga,03,,62.037778,17.4125 vn,giong vam sat,Giong Vam Sat,65,,9.356389,106.066111 ml,ngoroudougou,Ngoroudougou,06,,11.3666667,-5.5666667 il,sulam tsor,Sulam Tsor,03,,33.085445,35.114523 ph,pakias,Pakias,72,,5.040278,119.763333 zr,mamfu,Mamfu,05,,-10.6547222,25.7055556 cz,temelinec,Temelinec,79,,49.179187,14.360745 cd,tshimbade,Tshimbade,03,,-5.05,22.266667 no,ytterheien,Ytterheien,09,,66.35,14.133333 pk,marlwar,Marlwar,04,,31.640278,74.448333 gh,chiripon,Chiripon,08,,5.9166667,-0.2166667 ru,verkhniy melkhituy,Verkhniy Melkhituy,20,,53.649722,103.124722 ke,bora imani,Bora Imani,02,,-2.2,40.8666667 mx,rancho santa rita,Rancho Santa Rita,07,,26.7,-101.266667 bj,koni,Koni,03,,10.8166667,3.6833333 hu,cakohaza,Cakóháza,09,,47.69659,17.287352 sk,martovce,Martovce,04,,47.85,18.1333333 id,pasirlutung,Pasirlutung,30,,-6.775278,107.252778 sl,fodi town,Fodi Town,04,,8.1833333,-13.1333333 tr,yukaridikencik,Yukaridikencik,55,,41.252872,36.677216 az,kyurt,Kyurt,38,,40.805035,47.691726 lt,pashaltuonis,Pashaltuonis,62,,55.2713889,22.6041667 ph,pagsagnahan,Pagsagñahan,19,,13.7242,124.2716 mx,potrero nuevo,Potrero Nuevo,10,,24.55,-104.716667 my,kampung sungai buah,Kampung Sungai Buah,12,,2.88,101.7641 ua,lyudavka,Lyudavka,23,,49.156735,28.122075 ml,zielabougou,Ziélabougou,07,,11.9,-7.8 ua,kholopechi,Kholopechi,24,,50.793644,24.769824 id,tjikande 1,Tjikande 1,30,,-6.205833,106.363611 mx,tzucox,Tzucox,23,,19,-87.5875 rs,sojina mahala,Sojina Mahala,00,,42.680278,22.298611 th,ban khlong thing,Ban Khlong Thing,68,,7.010861,100.724528 ru,bolshoye zagorye,Bolshoye Zagorye,77,,58.194851,35.489861 zr,makombo,Makombo,00,,3.6166667,27.4666667 ng,thali,Thali,27,,10.479312,12.219958 th,ban huai yang kham,Ban Huai Yang Kham,76,,17.353167,102.484722 tr,dolek,Dölek,23,,38.503034,39.878261 ir,siah peleh,Siah Peleh,13,,33.816667,46.716667 pl,pozga,Pozga,78,,52.90904,19.926347 nl,hengsdal,Hengsdal,03,,51.833333,5.883333 bg,negentsite,Negentsite,46,,42.8666667,25.3166667 it,fornovo san giovanni,Fornovo San Giovanni,09,,45.5,9.683333 ch,saulcy,Saulcy,26,,47.302383,7.154036 us,breezy point,Breezy Point,NY,,40.5563889,-73.9266667 th,ban na seang,Ban Na Seang,10,,17.877834,100.81125 it,ponzone,Ponzone,12,,44.583333,8.45 se,alstugorna,Alstugorna,02,,56.216667,15.583333 uy,carpinteria,Carpintería,05,,-32.8333333,-56.1833333 tr,zyuneybir,Zyuneybir,63,,36.733611,39.035556 kp,kangpodong,Kangpodong,03,,40.0833333,128.3166667 sd,wad el mak,Wad el Mak,32,,8.0666667,27.0166667 fr,ollezy,Ollezy,B6,,49.734561,3.143993 ua,dendobryy,DenDobryy,02,,51.977524,31.292432 ru,nizovitsy,Nizovitsy,60,,58.37,27.871667 ph,badio,Badio,28,,17.9557,120.512 ru,borisovskiy,Borisovskiy,13,,54.268333,60.672222 cn,bajia,Bajia,07,,24.592798,116.969524 de,edesheim,Edesheim,08,,49.263333,8.135 gb,borough of stockport,Borough of Stockport,N2,,53.397276,-2.123453 id,rawangbaru barisan satu,Rawangbaru Barisan Satu,26,,3.0528,99.6866 ch,riffenmatt,Riffenmatt,06,,46.766212,7.35285 iq,mundhir `ajami,Mundhir `Ajami,01,,33.4636111,43.2405556 co,ballenato,Ballenato,20,,1.375,-78.599444 lr,komb town,Komb Town,18,,6.2675,-9.2116667 kr,ansolti,Ansolti,14,,36.442222,128.566389 nz,livingstone,Livingstone,G2,,-44.966667,170.583333 us,avalon terrace,Avalon Terrace,VA,,36.8161111,-76.1927778 af,rashak,Rashak,41,,34.324544,65.980153 us,millville,Millville,IA,,42.7000000,-91.0741667 mx,rancho la silla,Rancho La Silla,10,,22.85,-104.4 ua,cheska,Cheska,19,,50.35,26.2 ne,guidan boubou,Guidan Boubou,07,,14.5,8.1333333 us,bluff city,Bluff City,KS,,37.0763889,-97.8747222 ne,garin gero,Garin Géro,03,,13.3333333,4.0666667 th,ban ka lae ngae,Ban Ka Lae Ngae,31,,6.237528,101.652278 ru,didino,Didino,71,,56.80645,59.728385 us,emma,Emma,IN,,41.6111111,-85.5411111 ng,wumbo,Wumbo,27,,12.366667,14.35 cn,wuchiachieh,Wuchiachieh,19,,41.322778,125.370556 af,babarangi,Babarangi,03,,36.099862,69.027378 rs,mirez,Mirëz,00,,42.180833,20.590278 jp,noshirominato,Noshirominato,02,,40.203889,140.024167 tr,arapli,Arapli,37,,41.33294,33.826659 ru,dmitriyevskiy,Dmitriyevskiy,67,,52.133333,44.316667 cm,mesong,Mésong,14,,3.3833333,12.4166667 ba,bukovica donja,Bukovica Donja,02,,44.1333333,19.1833333 af,tadzh,Tadzh,08,,32.627647,67.766763 th,ban laem priang,Ban Laem Priang,68,,6.983555,100.681695 id,djelbuk,Djelbuk,08,,-8.0839,113.7592 ru,rossypnoye,Rossypnoye,86,,50.5285,40.6674 us,swanton,Swanton,IA,,42.5000000,-92.6922222 ru,khorrkikt,Khorrkikt,18,,60.983333,100.566667 af,ghogazai,Ghogazai,36,,34.032759,69.590428 in,thingsat,Thingsat,31,,24.2,92.933333 pe,acupampa,Acupampa,15,,-12.7922222,-75.9041667 kh,ta seng,Ta Sêng,13,,13.4,104.7833333 us,apple greene,Apple Greene,MD,,38.7161111,-76.6541667 gh,fanti nyankumasi,Fanti Nyankumasi,04,,5.3833333,-1.15 be,petit-enghien,Petit-Enghien,03,,50.683333,4.083333 cn,shanma,Shanma,07,,24.363889,117.526667 mu,petit gamin,Petit Gamin,16,,-20.1038889,57.5175 fi,suutila,Suutila,15,,60.833333,22.033333 ir,dom kamar,Dom Kamar,28,,33.5,50.3 af,guzarah-ye `ulya,Guzarah-ye `Ulya,11,,34.348946,63.179382 mx,santa ana,Santa Ana,10,,24.35,-105.733333 cd,kawaka,Kawaka,05,,-9.433333,23.6 hn,el robledal,El Robledal,15,,14.4666667,-86.7 bf,tanlale,Tanlalé,37,,13.0166667,-1.4833333 cn,chenke,Chenke,12,,30.136943,114.355248 ru,boldyrev,Boldyrev,07,,46.350658,48.573968 ua,borshchovoye,Borshchovoye,07,,50.000783,37.123887 mx,la aguja,La Aguja,18,,21.704167,-104.370833 ru,medvedeva,Medvedeva,39,,56.5062,92.4063 cn,daliao,Daliao,03,,29.048105,114.119062 cn,guanyintan,Guanyintan,11,,26.486389,111.889444 az,rustam-aliyev,Rustam-Aliyev,19,,40.501944,45.765278 ug,moicha,Moicha,77,,3.5333333,31.25 ru,gavrilkova,Gavrilkova,21,,57.254267,41.700166 cn,dujiatai,Dujiatai,10,,39.411667,114.896389 af,tas bulaq,Tas Bulaq,07,,35.561944,64.131667 br,tres bocas,Três Bôcas,23,,-29.116667,-55.716667 ir,tang-e zanganeh,Tang-e Zanganeh,22,,28.893931,50.8783 de,kuckstorf,Kuckstorf,06,,52.866667,10.666667 al,saranda,Saranda,51,,39.8755556,20.0052778 bo,estancia aruntamaya,Estancia Aruntamaya,04,,-17.0666667,-68.5833333 vn,hoa than,Hoa Than,35,,20.6,106.566667 bg,tatar pazardzhik,Tatar Pazardzhik,48,,42.2,24.3333333 ve,loma larga,Loma Larga,11,,10.7655556,-68.5038889 mx,lucas guerra,Lucas Guerra,20,,16.416667,-94.95 ph,diezmo,Diezmo,33,,14.225926,121.082728 se,fallmoren,Fallmoren,07,,62.5,14.033333 cn,kasuonangba,Kasuonangba,14,,31.501,91.401 lt,dauglaukis,Dauglaukis,62,,55.1872222,22.2169444 ng,shao,Shao,30,,8.583333,4.566667 ua,vishnevoye,Vishnëvoye,20,,44.731052,33.605617 ph,tananas,Tananas,21,,10.185484,123.7001 ir,darreh panbehdan,Darreh Panbehdan,16,,35.5979,46.3466 pk,kurumb,Kurumb,02,,26.108115,61.882407 us,lynnfield,Lynnfield,DE,,39.7888889,-75.5083333 tr,semukan,Semukan,72,,37.5,40.35 lk,sinhala detiliange,Sinhala Detiliange,32,,7.5333333,80.4666667 za,magatle,Magatle,09,,-24.455434,29.401195 us,white hall,White Hall,AR,,34.2738889,-92.0908333 gh,sang,Sang,06,,9.4166667,-0.2833333 mx,puerto de san benito,Puerto de San Benito,05,,14.733333,-92.416667 cn,baishe zhen,Baishe Zhen,03,,27.040416,116.436818 ru,novo-fastovichi,Novo-Fastovichi,25,,53.465164,35.213012 br,placido silveira,Plácido Silveira,23,,-30.866667,-54.35 uz,akkurgan,Akkurgan,03,,40.6,71.0833333 ru,myagkoye pole,Myagkoye Pole,90,,57.566667,57.016667 cn,guihuamingtang,Guihuamingtang,02,,29.4534,119.986184 rs,bulimacevska mahala,Bulimacevska Mahala,00,,42.436111,22.010833 ru,merezen,Merezen,16,,55.383671,47.190087 al,romesi,Romësi,44,,40.5588889,19.6813889 gr,tripai,Trípai,40,,36.95,21.8666667 ye,al ahadiyah,Al Ahadiyah,06,,13.8,44.9 se,ravike,Rävike,28,,57.933333,13.366667 pl,kajetanowice,Kajetanowice,74,,50.891529,19.493836 ph,humaguichic,Humaguichic,54,,12.5507,122.1335 bg,gartschinowo,Gartschinowo,52,,43.5166667,26.15 lv,bregzi,Bregzi,05,,57.1,25.7166667 cr,tapesco,Tapesco,01,,10.219547,-84.40154 zm,mpandwa,Mpandwa,07,,-10.35,32.95 ir,deh juqeh,Deh Juqeh,07,,30.123012,53.591038 ve,guaratibano,Guaratibano,22,,10.2283333,-68.7041667 be,krabbenhoek,Krabbenhoek,08,,51.233333,4.25 vc,wallibou,Wallibou,03,,13.3166667,-61.2166667 uz,tungatar,Tungatar,10,,39.7333333,67.3333333 pk,thatta chuher shah,Thatta Chuher Shah,04,,31.181944,73.473611 mr,hassei larha,Hasseï Larha,01,,15.65,-8.05 ir,sharfabad,Sharfabad,07,,30.616667,52.933333 ru,perevoloka,Perevoloka,42,,59.044312,27.780141 gw,com,Com,06,,11.8166667,-15.7166667 cn,poposhang,Poposhang,32,,29.585923,102.444081 tr,saritas,Saritas,04,,39.875046,42.992575 pk,mateke,Mateke,04,,31.994814,73.462367 kr,namchangni,Namchangni,16,,35.216111,126.436389 ng,jaekil,Jaekil,46,,11.6757,10.0136 af,ziarat-e khwajah jir,Ziarat-e Khwajah Jir,02,,34.829722,63.115833 mn,narst,Narst,18,,47.7,107.7833333 id,patakean,Patakean,41,,-3.116667,119.066667 ir,anbis,Anbis,42,,35.078203,59.246097 us,leinbachs,Leinbachs,PA,,40.3925000,-75.9947222 cn,chujiang,Chujiang,32,,30.577596,103.291735 bg,dzhumalikioy,Dzhumalikioy,52,,43.1166667,26.0833333 tr,dodurga,Dodurga,82,,40.601237,32.988282 lt,zhmirklyay,Zhmirklyay,40,,56.1333333,23.4227778 ir,ma'mun,Ma'mun,23,,33.594245,49.523279 cn,lugezhai,Lugezhai,10,,40.016667,118.083333 ke,banga,Banga,02,,-4.1,39.2333333 ba,pecukici,Pecukici,01,,43.5852778,17.2869444 cn,hedong,Hedong,15,,34.97765,107.449093 af,abgarmak,Abgarmak,02,,34.662094,63.600279 mx,cocuacan,Cocuacán,21,,18.65,-98.1 jp,oginuno,Oginuno,42,,36.766667,137.033333 ht,port paix,Port Paix,03,,19.95,-72.8333333 sn,ngankal,Ngankal,07,,15.0666667,-16.5666667 af,kaddzhauz,Kaddzhauz,05,,34.48,67.03 id,lengos,Lengos,18,,-8.8332,120.3129 in,lutawali,Lutawali,36,,26.3847,79.2742 pk,muhallah munawwar badshah,Muhallah Munawwar Badshah,03,,34.029671,71.602456 ng,rakpaku,Rakpaku,41,,8.166667,6.766667 kh,phumi krang russei,Phumi Krang Russei,04,,11.2666667,104.65 ph,bioy,Bioy,68,,16.2775,121.362 sb,raurembo,Raurembo,08,,-9.8,160.2833333 us,white oak run,White Oak Run,LA,,30.5930556,-91.0152778 pk,gurha bhartha,Gurha Bhartha,04,,33.448396,73.19372 af,arbapan,Arbapan,18,,34.439477,70.588967 sd,el gurra`a `abd el ghani,El Gurra`a `Abd el Ghani,38,,15.1405556,33.5327778 my,sungai seluang,Sungai Seluang,02,,5.446313,100.549936 cn,shangyong,Shangyong,30,,22.865078,113.163177 id,wirun,Wirun,08,,-7.035,111.7936 br,sitio sapatu,Sítio Sapatu,27,,-24.6001,-48.3635 il,kefar witkin,Kefar Witkin,02,,32.381256,34.877366 vn,blac da dong,Blac Da Döng,23,,11.483333,107.483333 mz,lipula,Lipula,07,,-13.4058333,37.7297222 bd,lodpara,Lodpara,80,,23.2833333,90.8 cn,chikochen,Chikochen,08,,49.583333,128.45 jp,nagahama,Nagahama,36,,34.866667,132.05 ge,makhalakauri,Makhalakauri,04,,41.5666667,42.4166667 ir,ugink,Ugink,04,,26.585833,60.021111 cn,laohuchuang,Laohuchuang,04,,32.25,120.516667 bo,vicoma,Vicoma,05,,-18.2166667,-68.0666667 de,elberschwenden,Elberschwenden,01,,48.933333,10.25 eg,sa`dalla,Sa`dalla,24,,26.6166667,31.7 hu,harta,Harta,01,3716,46.698465,19.030532 id,playangan,Playangan,30,,-6.385278,106.534722 ni,valle las zapatas,Valle Las Zapatas,08,,12.6277778,-86.7025 id,cironko,Cironko,30,,-7.083056,107.700278 ir,esfia jan,Esfia Jan,28,,32.708056,51.101389 cn,yunling xiang,Yunling Xiang,29,,28.292837,98.971567 cn,haiqinghuoluo,Haiqinghuoluo,19,,41.456093,125.021895 zr,tokoleko,Tokoleko,09,,1.2833333,29.15 gh,mangu,Mangu,11,,10.0666667,-2.5166667 eg,kutamah,Kutamah,03,,30.8938889,30.3819444 ru,skryteya,Skryteya,69,,55.570387,32.118979 us,wing road,Wing Road,SC,,33.4208333,-80.0666667 us,tiverton,Tiverton,RI,19432,41.6258333,-71.2138889 ml,busse,Busse,05,,13.5,-5.9333333 br,mandacaru,Mandacaru,17,,-7.466667,-38.333333 ne,guidan nomao,Guidan Nomao,04,,14.4333333,7.4166667 br,sitio nercisa cadena,Sítio Nercisa Cadena,18,,-26.0132,-49.9582 id,wonotirto,Wonotirto,07,,-7.0931,109.9714 jm,geneva,Geneva,11,,17.9333333,-77.7333333 dk,lille sjorup,Lille Sjørup,18,,56.529432,10.31172 be,moere,Moere,09,,51.05,2.6 ir,seh kuheh,Seh Kuheh,04,,30.7775,61.4422 mm,aung tang,Aung Tang,02,,21.1666667,93.0333333 ch,wattenwil,Wattenwil,05,,46.769727,7.508348 id,pijenan,Pijenan,07,,-7.663611,110.510556 tr,sogukpinar,Sogukpinar,49,,38.541446,41.472 ru,krivoye,Krivoye,85,,59.4485,39.1404 ch,villars,Villars,23,,46.295398,7.056995 af,qal`ah-ye arbab faqir,Qal`ah-ye Arbab Faqir,11,,34.208274,62.082896 de,johanniskreuz,Johanniskreuz,08,,49.333333,7.816667 cn,liling,Liling,03,,27.235052,114.536678 ro,marcusul,Marcusul,26,,44.566667,24.016667 ir,asak hisar,Asak Hisar,38,,36.1445,49.6675 ru,krasnaya,Krasnaya,73,,55.800184,49.031336 ir,tuz devaz,Tuz Devaz,22,,28.3528,51.3684 au,gapuwiyak,Gapuwiyak,03,,-12.5031,135.810516 af,karez 'isa khan,Karez 'Isa Khan,10,,32.160742,64.772255 ie,killeigh,Killeigh,23,,53.2133333,-7.4494444 id,djuwet 1,Djuwet 1,08,,-7.3876,112.5303 hu,tatahaza,Tataháza,01,,46.174075,19.300284 pk,dhaung,Dhaung,04,,33.105413,73.120146 us,taggart,Taggart,VA,,37.7227778,-78.4216667 bo,cananbari,Cananbari,04,,-16.9666667,-68.4333333 ma,dir el ksebt,Dir el Ksebt,48,,33.215909,-5.841202 rs,tobolac,Tobolac,00,,43.557222,21.111667 sy,qattinah,Qattinah,01,,36.8,40.05 se,sorbole,Sörböle,24,,62.233333,17.133333 us,floral park,Floral Park,PR,,18.4200000,-66.0533333 mz,chefe lourenco,Chefe Lourenço,06,,-16.5830556,39.5822222 ro,lugojel,Lugojel,36,,45.666667,21.966667 id,kualabaru,Kualabaru,01,,2.3531,97.7078 ru,bolshezadoyevskoye,Bolshezadoyevskoye,17,,43.868657,46.822969 id,djrangwulu,Djrangwulu,08,,-7.1394,112.9928 ve,el tranquero,El Tranquero,02,,9.6166667,-65.4166667 ph,balincanaway,Balincanaway,51,,15.894722,120.654722 ru,khomutets,Khomutets,72,,52.0321,40.7697 ua,olshanskaya novoselitsa,Olshanskaya Novoselitsa,13,,49.988783,30.323708 fr,carros,Carros,B8,10849,43.789413,7.18395 us,panther lake,Panther Lake,NY,,43.3261111,-75.9008333 cd,libenge,Libenge,02,27051,3.65,18.633333 ir,murd abi,Murd Abi,07,,30.120477,51.538632 us,valley junction,Valley Junction,OR,,45.0622222,-123.5708333 af,khak-i-chagir,Khak-i-Chagir,05,,34.5975,67.1775 jp,omika,Omika,08,,37.6,141 kr,kosori,Kosori,11,,37.54753,127.10351 it,calanna,Calanna,03,,38.183333,15.716667 pg,hujavasusu,Hujavasusu,04,,-8.7666667,148.05 cn,zhuocun,Zhuocun,01,,30.380556,117.227778 pk,talab sarai,Talab Sarai,04,,31.268611,74.1025 pt,santo amaro,Santo Amaro,02,,40.774141,-8.55426 ir,qatar qu'i,Qatar Qu'i,28,,31.822739,51.527007 tn,douar ez zafra,Douar ez Zafra,18,,37.251623,9.691654 cd,malembe-lunga,Malembe-Lunga,03,,-4.65,20.8 sy,abu al kahf,Abu al Kahf,09,,36.3666667,37.85 td,ouandalla,Ouandalla,04,,12.9958333,15.7322222 vn,ban nha luong,Ban Nha Luong,26,,19.383333,104.2 cn,yangju,Yangju,04,,32.05645,121.146811 cn,gaggo,Gaggo,14,,31.2,89.9 gn,ndeyri,Ndeyri,23,,10.7166667,-11.8166667 af,surubi,Surubi,18,,34.090141,70.553642 cn,liuhuai,Liuhuai,03,,29.467185,115.205587 ru,dubovyy,Dubovyy,09,,51.066048,36.84807 id,bolontio,Bolontio,34,,.9819,122.4195 kh,phumi samraong,Phumi Samraong,14,,11.0333333,105.5833333 pl,pawlowek,Pawlowek,73,,53.15383,17.868803 cg,misasa bakota,Misasa Bakota,05,,-2.7936111,13.6597222 kp,ukkaam,Ukkaam,06,,37.9733333,126.0294444 bd,brahman jatigram,Brahman Jatigram,81,,23.2666667,89.7333333 cn,tunghsiang,Tunghsiang,04,,31.560278,120.234167 my,kampong penghula setapa,Kampong Penghula Setapa,13,,4.4103,103.4145 nl,verrenbest,Verrenbest,06,,51.518047,5.392686 id,tjisepet,Tjisepet,30,,-7.2873,108.3735 ru,teplyy klyuch,Tëplyy Klyuch,71,,56.598095,58.161314 ca,kenney,Kenney,08,,46.816667,-79.583333 de,jockgrim,Jockgrim,08,,49.098889,8.267778 ru,pryskukha,Pryskukha,60,,56.628499,30.160361 ke,hindi,Hindi,02,,-2.1813889,40.825 lt,varda,Varda,56,,54.3833333,23.8666667 id,maredapare,Maredapare,18,,-9.6291,119.4122 sl,gbulia,Gbulia,02,,9.1,-11.7 ye,zi§ulumah,Z̧ulumah,04,,14.3127778,48.9319444 cn,centan nongchang erdadui,Centan Nongchang Erdadui,11,,29.683732,111.873958 ug,aketo,Aketo,50,,1.8666667,32.3833333 mx,minas viejas,Minas Viejas,24,,22.4,-99.333333 ru,selgon,Selgon,30,,49.5875,135.417778 de,shipkau,Shipkau,11,,51.516667,13.883333 kr,onggijom,Onggijom,06,,37.4729,129.1294 es,navaescurial,Navaescurial,55,,40.471629,-5.277555 cn,shoutang,Shoutang,30,,24.230278,113.465556 mm,yebu,Yebu,09,,17.6,97.0166667 se,konga,Konga,27,,55.983333,13.2 hn,virginia,Virginia,13,,14.0166667,-88.5666667 ie,ballypickas,Ballypickas,15,,52.9030556,-7.2966667 ve,los mollejones,Los Mollejones,26,,10.5138889,-67.2 ru,lambiselga,Lambiselga,28,,61.735857,32.970034 br,sao goncalo,São Gonçalo,06,,-3.05,-40.3 cn,chingkang,Chingkang,11,,28.466667,112.766667 th,ban chik thoeng,Ban Chik Thoeng,75,,15.333333,105.116667 id,entabai,Entabai,11,,.816667,110.516667 mx,el infierno,El Infierno,32,,23.166667,-103.916667 lb,dhar el baidar,Dhar el Baidar,05,,33.8166667,35.7666667 id,pendaleman,Pendaleman,17,,-8.6844,116.2404 dz,el khadra,El Khadra,42,,34.0666667,0.6 tz,nyamhali,Nyamhali,12,,-2.7333333,32.2666667 zr,pene-ngongo,Pene-Ngongo,10,,-3.95,26.0166667 tr,demirci,Demirci,61,,40.988959,39.555936 tr,osmancik,Osmancik,19,,40.978184,34.804697 mg,behompa,Behompa,06,,-24.45,45.8666667 hu,schmidttanya,Schmidttanya,18,,48.216667,21.7 iq,umm jigayir,Umm Jigayir,16,,32.5833333,45.2666667 la,ban houei sai,Ban Houei Sai,22,,20.2775,100.412778 kp,tanbong,Tanbong,13,,41.5041667,128.2852778 af,mapan,Mapan,28,,32.171809,67.608757 ye,al madillah,Al Madillah,04,,14.9166667,48.1333333 td,marou,Marou,14,,9.35,16.8166667 br,sitio pedrao,Sítio Pedrão,18,,-23.679987,-50.192986 tr,karabucak,Karabucak,81,,37.35,35.883333 ne,balma,Balma,07,,14.35,8.6 ma,douar el hajer,Douar el Hajer,58,,34.451523,-4.99743 ru,novo islamskaya,Novo Islamskaya,39,,57.5347,91.9142 fr,choye,Choye,A6,,47.391211,5.759083 mz,chixampeca,Chixampeca,08,,-14.6675,33.5805556 cn,huangmao,Huangmao,32,,32.09187,106.397144 al,zall-herri,Zall-Herri,50,,41.3894444,19.8275 in,purwa duje,Purwa Duje,36,,26.8268,79.6115 iq,tubzawah,Tubzawah,11,,36.3,43.7666667 lv,vecslabada,Vecslabada,19,,56.2666667,27.9833333 ru,taranki,Taranki,90,,57.9475,56.6208 cn,neizhubu,Neizhubu,07,,26.809441,117.848051 ga,mourima,Mourima,05,,-2.6666667,11.0333333 ru,yermolayevka,Yermolayevka,29,,55.633333,87.5 id,pasirpeso,Pasirpeso,30,,-6.948056,107.144167 ne,paliadouga,Paliadouga,05,,13.2666667,2.3 ee,varesmyae,Varesmyae,12,,58.0541667,27.5252778 td,kaleki,Kaléki,04,,11.0666667,16.0666667 us,lincoln addition,Lincoln Addition,UT,,40.7119444,-112.1041667 lr,jlepie,Jlepie,09,,7.0544444,-8.5702778 ru,strokovo,Strokovo,47,,56.083611,36.051705 pg,korpani,Korpani,07,,-6.0666667,155.3 eg,el-furusut,El-Furûsût,01,,31.145,31.9177778 ma,talamfrot,Talamfrot,57,,35.263368,-5.270898 id,dalung,Dalung,30,,-6.415278,106.262222 mx,santuario primera seccion,Santuario Primera Sección,27,,18.2,-93.058333 yt,mrowale,Mrowalé,00,,-12.7866667,45.1252778 cn,xiaerchang,Xiaerchang,12,,29.61316,114.338609 kh,p'um prei kpo,P'um Prei Kpo,12,,12.6,103.8666667 ma,tamarsellx,Tamarsellx,57,,35.08369,-4.59139 ht,vindio,Vindio,03,,19.7483333,-73.0416667 id,kerukmunggang,Kerukmunggang,07,,-7.645278,110.204722 us,sligo,Sligo,OH,,39.4416667,-83.9202778 md,paruceni,Paruceni,80,,47.149444,28.100556 ru,yassy,Yassy,11,,53.9,110.566667 cn,toudaopu,Toudaopu,19,,41.726584,124.83648 pg,dimifa,Dimifa,05,,-6.0833333,143.6833333 cn,weihsin,Weihsin,29,,27.850811,104.968739 cz,hradec,Hradec,83,,50.608282,14.287591 kh,khum preah ponlea,Khum Preah Ponlea,18,,11.0,105.8666667 lk,selagama colony,Selagama Colony,29,,7.5833333,80.5833333 eg,kafr el-waq,Kafr el-Wâq,03,,30.9127778,30.2494444 cf,bagari,Bagari,09,,5.2166667,14.7833333 ng,osu,Osu,25,,5.946792,6.987343 id,kutapengkih,Kutapengkih,26,,3.2008,98.1215 ir,goleh sorkheh,Goleh Sorkheh,13,,35.0376,47.4161 be,paradis,Paradis,07,,50.316667,5.133333 fr,montroy,Montroy,B7,,46.155433,-1.010939 cn,shenbei,Shenbei,04,,33.280605,119.72765 us,casnovia,Casnovia,MI,,43.2347222,-85.7905556 co,callemar,Callemar,12,,8.665045,-75.664704 id,ngalang-alangan,Ngalang-alangan,07,,-7.4975,110.721667 tr,kusluvan,Kusluvan,52,,40.6875,37.617778 se,svarvareboden,Svarvareboden,27,,56.116667,13.35 cd,yaingoli,Yaingoli,02,,.566667,22.5 co,romerillos,Romerillos,09,,1.809543,-77.095569 us,sugar creek ranch,Sugar Creek Ranch,IL,,37.5722222,-88.9272222 lr,mambahn,Mambahn,17,,6.2844444,-10.4902778 ir,izadiyeh,Izadiyeh,42,,35.329794,59.791541 ci,ahouri kouakou,Ahouri Kouakou,74,,5.982267,-4.454209 de,kleinheringen,Kleinheringen,14,,51.116667,11.666667 bd,doharo,Doharo,81,,23.7166667,89.3 de,allmenrod,Allmenrod,05,,50.633333,9.316667 hu,amand,Ámánd,09,,47.55,17.75 tr,saronis,Saronis,65,,37.833333,44.05 se,efnebyn,Efnebyn,28,,59,12.466667 ua,nagornoye,Nagornoye,11,,44.8,33.8 us,hills point,Hills Point,MD,,38.6033333,-76.2372222 us,edson,Edson,WI,,44.9300000,-91.0347222 mx,la compania,La Compania,20,,16.566667,-96.816667 au,arable,Arable,02,,-36.35,149.033333 zr,mbabune,Mbabune,00,,2.8333333,27.6333333 cd,kionde,Kionde,00,,-6.15,25.716667 mm,thabyewa,Thabyewa,08,,20.9666667,95.9833333 ro,colonesti,Colonesti,38,2162,46.566667,27.3 tw,hsilang,Hsilang,04,,24.85,121.35 es,tintores,Tintores,58,,41.968744,-7.437195 gh,mangbiri,Mangbiri,06,,10.4333333,-0.1833333 sa,raqiyah,Raqiyah,14,,21.772215,40.346491 lk,pahala tammana,Pahala Tammana,32,,7.6333333,79.9 pk,chugian,Chugian,03,,34.624106,73.295577 pk,ghulamwala,Ghulamwala,01,,31.288373,71.818375 th,ban pa pao,Ban Pa Pao,05,,18.478611,99.187222 ng,gaaji,Gaaji,26,,7.35,8.6 vn,teurlang tho,Teurlang Tho,23,,11.933333,108.15 de,fliessen,Fließen,08,,50.016667,6.533333 pg,bowat,Bowat,13,,-1.9833333,147.15 ru,staroaynskoye,Staroaynskoye,64,,48.45,142.066667 it,san vincenzo nuovo,San Vincenzo Nuovo,01,,41.833333,13.516667 bd,enayetpur,Enayetpur,82,,23.0333333,89.1166667 mn,dzalaata,Dzalaata,07,,44.3166667,107.9 pl,cichorajka,Cichorajka,74,,51.966667,19.716667 pt,gilbarbedo,Gilbarbedo,04,,41.756563,-8.255477 ru,igotoiskaya,Igotoiskaya,11,,50.6365,105.4582 ml,rounde,Roundé,08,,15.8166667,-3.5833333 ee,wohma,Wöhma,20,,58.6283333,25.5483333 gh,sayerano,Sayerano,09,,6.4666667,-2.8666667 ar,m. torres,M. Torres,21,,-33.527062,-61.464676 fr,pierric,Pierric,B5,,47.686761,-1.735903 us,eatonville,Eatonville,WA,,46.8675000,-122.2652778 id,merikat,Merikat,26,,3.2676,98.7321 et,ma'o,Ma'o,51,,9.3,34.716667 lk,adiyakulam,Adiyakulam,31,,8.8,80.0166667 kz,embaaul,Embaaul,06,,47.016667,54.183333 sn,mbississ,Mbississ,08,,15.4333333,-16.3166667 ph,mercedes,Mercedes,21,2463,10.6686,124.4021 kr,naehori,Naehori,16,,34.733333,126.083333 bf,yona,Yona,63,,12.1,-3.3833333 by,wielemicze,Wielemicze,01,,52.0166667,27.2333333 cz,vlkov nad lesy,Vlkov nad Lesy,82,,50.205155,15.385307 us,frederickson,Frederickson,WA,,47.0963889,-122.3575000 gh,fantevi korpe,Fantevi Korpe,08,,5.9166667,0.5 th,ban khlong sothon,Ban Khlong Sothon,44,,13.68925,101.051695 ru,ostrova,Ostrova,25,,54.163824,35.553143 ir,naukash,Naukash,23,,33.5305,48.1194 cn,nanchaokuchih,Nanchaokuchih,09,,33.447432,112.714225 gn,guera,Guéra,12,,11.7166667,-13.0666667 id,lauku,Lauku,38,,-3.8055,120.3666 de,rhedebrugge,Rhedebrügge,07,,51.833333,6.75 vn,an ngai,An Ngãi,27,,13.883333,109.1 vn,buon nie ea sah,Buôn Nié Ea Sah,07,,12.883333,108.15 tr,olukpinar,Olukpinar,12,,38.787305,40.455605 in,digligiri,Digligiri,18,,25.4,89.85 pl,jozefowo,Jozefowo,86,,52.33733,17.927813 ru,bolshe-mostovaya,Bolshe-Mostovaya,71,,58.898138,60.668623 kr,togamni,Togamni,17,,36.633333,126.966667 tr,akbogaz,Akbogaz,79,,40.021465,34.144301 es,balbaina,Balbaina,51,,36.66809,-6.229311 lk,halgolla,Halgolla,34,,7.4666667,80.6666667 th,ban san na kaeng,Ban San Na Kaeng,03,,19.538778,99.81875 pe,monte viejo hacienda,Monte Viejo Hacienda,20,,-5.35,-80.7666667 ru,kolobovo,Kolobovo,76,,53.7304,38.449012 us,golden,Golden,NM,,35.2669444,-106.2133333 mg,amoatsy,Amoatsy,04,,-17.3,49.0 pk,sanjarpur,Sanjarpur,04,,28.251498,69.975453 et,giyo,Giyo,51,,8.8,36.883333 az,k'ochahmedli,K'ochahmedli,18,,39.535,47.126389 gr,mitropoli,Mitrópoli,23,1572,39.3394444,21.8369444 pk,dhok haral,Dhok Haral,04,,32.795647,73.142584 af,siah kholah,Siah Kholah,10,,32.663135,64.727707 gq,bondei,Bondei,08,,0.9833333,9.5 zr,yaolia,Yaolia,09,,0.8333333,23.6166667 cn,meihuading,Meihuading,01,,29.635496,118.54248 us,half moon shores,Half Moon Shores,TN,,35.7288889,-84.6694444 cn,yuejin guoyuan,Yuejin Guoyuan,19,,41.260466,121.194166 fr,arsaillier,Arsaillier,B1,,45.730628,1.957936 th,ban khlong mai,Ban Khlong Mai,44,,13.484139,100.935417 ir,vahidabad,Vahidabad,29,,28.8683,58.8468 mm,wanhwehsai,Wanhwehsai,11,,20.6,97.5666667 ru,tinkan,Tinkan,59,,42.908611,132.519722 kr,chayangiltong,Chayangiltong,11,,37.53672,127.07977 fr,ville-savoye,Ville-Savoye,B6,,49.293813,3.641185 cn,tsungpu,Tsungpu,01,,30.616667,117 ua,krasnyy mayak,Krasnyy Mayak,05,,47.929609,37.204064 in,nawalia nagla,Nawalia Nagla,36,,27.8412,79.2437 ma,douar fersiou,Douar Fersiou,52,,34.742418,-5.689677 id,sumberkerep kulon,Sumberkerep Kulon,07,,-7.936667,110.856389 gh,hia,Hia,02,,6.2166667,-1.7666667 be,harinsart,Harinsart,06,,49.716667,5.533333 pk,bamanwala,Bamanwala,04,,31.284537,71.173419 se,morkhult,Mörkhult,08,,57.366667,14.166667 ru,smutikha,Smutikha,77,,57.611944,37.106944 ml,wari,Wari,07,,13.6,-5.65 gr,aroni,Aróni,43,,35.5166667,24.1166667 ng,adebisi,Adebisi,32,,7.716667,3.5 ar,f. varela,F. Varela,01,,-34.827222,-58.395556 pe,quiscapata,Quiscapata,09,,-13.3,-75.4333333 ru,zherebtsovo,Zherebtsovo,53,,55.118,83.275 ph,ngibab,Ñgibab,28,,18.216667,120.6 ru,staroye gatishche,Staroye Gatishche,41,,51.533333,35.633333 ni,isabel grande,Isabel Grande,10,,11.9833333,-86.2833333 us,countryside farms,Countryside Farms,DE,,39.5886111,-75.7169444 cu,jovas,Jovas,16,,22.3313889,-80.2166667 ir,falhi,Falhi,15,,31.5799,48.9537 fr,crabier,Crabier,97,,44.768157,.708352 th,ban ta sang,Ban Ta Sang,48,,12.553694,101.968444 us,elmwood,Elmwood,AR,,36.1441667,-93.1052778 cn,shangda,Shangda,30,,24.026111,113.485 ph,bantigue,Bantigue,H2,,13.966667,121.683333 bf,sasaka,Sasaka,43,,13.35,-1.8666667 ir,qara agach,Qara Agach,33,,37.1288,46.9754 pe,cupine,Cupine,23,,-17.2747222,-70.3630556 mt,il-hamrun,Il-Hamrun,00,,35.884722,14.484444 zm,kapwanyia,Kapwanyia,07,,-12.8333333,30.85 ru,tinsarino,Tinsarino,16,,55.75736,47.987196 fi,luskala,Luskala,13,,60.333333,23.8 ua,poselok pokrovskiy,Posëlok Pokrovskiy,05,,47.93464,38.277669 us,hogeye,Hogeye,AR,,35.9202778,-94.2675000 ru,staraya tavolzhanka,Staraya Tavolzhanka,65,,52.744,51.701 ve,cantarrana,Cantarrana,06,,4.4344444,-61.7116667 af,bar kurdar,Bar Kurdar,34,,35.002174,70.640442 td,rimete,Rimété,12,,13.7833333,21.6333333 ru,ust-ulagan,Ust-Ulagan,03,,50.633333,87.966667 ru,kirgiz-mayaki,Kirgiz-Mayaki,08,,53.6324,54.7979 iq,qula sutaw,Qula Sutaw,05,,34.7155556,45.4625 id,tjiroengkang,Tjiroengkang,30,,-7.0029,108.0996 cn,chingwan,Chingwan,16,,22.211944,110.585 ro,siciu,Siciu,31,,47.25,22.883333 ma,chaaba el foukania,Chaaba el Foukania,47,,31.58,-7.63 us,salina,Salina,UT,,38.9577778,-111.8591667 ir,kanyavar,Kanyavar,29,,30.17,57.3425 sl,mafengeri,Mafengeri,02,,8.3833333,-12.9166667 af,khinjak-mazar,Khinjak-Mazar,10,,33.096874,65.081602 na,uulungawaanayaangolo,Uulungawaanayaangolo,37,,-18.0666667,15.85 cn,zhongxiangcun,Zhongxiangcun,26,,34.05548,109.969655 fr,equevillon,Équevillon,A6,,46.760223,5.940091 se,tarrajaur,Tårrajaur,14,,66.433333,19.7 mz,lima,Lima,07,,-11.8816667,34.9333333 us,cunningham,Cunningham,WA,,46.8222222,-118.8052778 pk,rahim jo goth,Rahim jo Goth,05,,26.216667,68.95 ru,talazhany,Talazhany,90,,58.705574,56.449107 ir,shurrukh,Shurrukh,42,,36.315112,60.626812 us,hubbard,Hubbard,TN,,35.7577778,-83.8833333 et,caligi,Caligi,52,,9.652222,42.633889 vn,bu dang,Bu Dang,76,,11.8,107.25 mm,wan pawm,Wan Pawm,11,,21.1666667,99.0833333 ru,kostylevo,Kostylëvo,69,,54.397427,32.93199 id,genengpandan,Genengpandan,08,,-7.698611,111.288333 ve,cambalache,Cambalache,04,,10.4372222,-67.5555556 lb,bqezqacha,Bqezqacha,03,,34.25,35.9833333 ru,rovnovladimirovskiy,Rovnovladimirovskiy,65,,52.911795,50.367661 cz,kojetin,Kojetin,85,,49.561313,17.9825 de,sticht,Sticht,06,,53.65,9.016667 th,ban chan di,Ban Chan Di,64,,8.35,99.6 pe,paucal,Paucal,06,,-6.9994444,-79.1363889 il,shoqeda,Shoqeda,01,,31.422181,34.523919 ne,gwindogoro,Gwindogoro,06,,13.9166667,5.4833333 ir,bandanow,Bandanow,22,,27.8748,52.2656 bd,majhiali,Majhiali,82,,23.0166667,89.2 co,las maporas,Las Maporas,03,,6.548815,-71.075079 us,howard,Howard,KY,,37.9888889,-85.9608333 cu,pablo,Pablo,07,,21.8113889,-78.4233333 ir,cheshmeh pahn tataj,Cheshmeh Pahn Tataj,09,,34.4589,48.7675 id,solokankendal,Solokankendal,30,,-5.972778,107.035278 cz,struhare,Struhare,87,,49.589655,13.600918 gh,debiso,Debiso,04,,5.4666667,-0.8166667 al,(( sailard )),(( Sailard )),40,,40.4922222,20.3797222 cn,xiaweng,Xiaweng,03,,28.407556,117.115511 er,mestamer,Mestamer,00,,15.2666667,39.05 es,villarroya de la sierra,Villarroya de la Sierra,52,,41.463463,-1.7835 ye,lakmat ad duki,Lakmat ad Duki,06,,13.8166667,44.65 lt,reseiniai,Reseiniai,61,,55.3736111,23.1216667 th,ban khung khi sua,Ban Khung Khi Sua,37,,14.683333,100.866667 ru,orlovo,Orlovo,52,,57.0533,31.1038 ru,novaya,Novaya,64,,46.712755,142.885369 cn,comar,Comar,14,,32.101,91.501 mx,cabra,Cabra,24,,22.283333,-100.983333 pk,nabi bakhsh panwhar,Nabi Bakhsh Panwhar,05,,24.639444,67.59 cg,londela-kaye,Londela-Kaye,07,,-4.8419444,13.3941667 cz,skalka,Skalka,80,,49.480636,15.492181 mx,rancho san diego,Rancho San Diego,07,,28.05,-100.583333 fm,mauvais accueil,Mauvais Accueil,02,,6.8169444,158.1666667 ru,khvoshchevka,Khvoshchëvka,10,,51.979,34.2796 kz,karatauskiy,Karatauskiy,17,,43.166667,70.216667 ph,alegria,Alegria,30,,10.983333,122.65 gh,lokokorpe,Lokokorpe,08,,6.1666667,0.8166667 id,kedung dua,Kedung Dua,30,,-6.119444,106.365556 sa,kihlah,Kihlah,13,,26.610432,42.643787 ve,llano grande,Llano Grande,18,,9.2833333,-69.9883333 cn,shahejie zhen,Shahejie Zhen,03,,29.60794,115.887205 td,dougandy,Dougandy,09,,8.2333333,16.9 in,marjali,Marjali,12,,32.851389,74.770833 id,hulumea,Hulumea,41,,-3.0132,119.2502 sv,san antonio la laguneta,San Antonio La Laguneta,06,,13.6,-88.8833333 iq,jasim al `umran,Jasim al `Umran,09,,30.9094444,46.5163889 th,ban don tum,Ban Don Tum,53,,13.963778,100.106333 az,karudzhikh,Karudzhikh,35,,39.166667,46.016667 zr,bokutola,Bokutola,02,,0.1333333,21.6833333 tw,pachiaoting,Pachiaoting,04,,23.7833333,120.3666667 ye,bi'r ghuwaybi,Bi'r Ghuwaybi,14,,15.4666667,45.3666667 af,sangul kheyl,Sangul Kheyl,08,,32.945065,68.248154 us,haigler,Haigler,NE,,40.0138889,-101.9388889 us,warren center,Warren Center,PA,,41.9377778,-76.1811111 gt,el morrito,El Morrito,04,,14.866667,-89.433333 ir,tormeyanak,Tormeyanak,09,,34.632,48.1735 gl,igterajivit,Igterajivit,02,,70.45,-22.3833333 cz,brevenec,Brevenec,84,,49.857138,17.155116 ua,sokoliki gurske,Sokoliki Gurske,15,,49.081862,22.888496 mx,santa clara,Santa Clara,06,,27.716667,-105.516667 se,draget,Draget,28,,58.333333,11.333333 pl,kowalewo gory,Kowalewo Gory,86,,52.269403,17.918214 cn,mori,Mori,13,,43.816667,90.183333 pk,fateh bamb,Fateh Bamb,04,,31.461964,70.958786 sn,ndiaovene,Ndiaovène,08,,15.4666667,-16.45 us,tree haven,Tree Haven,NC,,35.3311111,-82.5102778 ru,langio,Langio,64,,53.05,141.916667 in,palra,Palra,36,,25.7,80.466667 cn,tunglo,Tunglo,15,,38.432222,100.803889 ml,keniedife,Kéniédifé,03,,13.8,-9.8666667 vn,xuan diem,Xuân Diêm,29,,15.933333,108.166667 za,narrap,Narrap,08,,-29.566667,17.916667 id,meruya,Meruya,30,,-6.310556,106.701389 jp,hinomisaki,Hinomisaki,36,,35.433333,132.633333 cu,figueredo,Figueredo,02,,23.0,-82.4 co,bebarama,Bebaramá,11,,6.009534,-76.574141 hn,las lajitas,Las Lajitas,15,,14.9333333,-86.3833333 vn,trieu duong,Trieu Duong,26,,18.816667,105.4 cn,wuying,Wuying,21,,36.44849,106.153306 al,schataj,Schataj,42,,41.5577778,19.4908333 ch,savatan,Savatan,22,,46.216667,7.016667 ve,rio viejo,Río Viejo,08,,9.4,-68.7 ru,krasnyy dobrovolets,Krasnyy Dobrovolets,72,,52.6097,40.2293 ee,oara,Oara,11,,58.4622222,24.3205556 ru,malaya gryaznukha,Malaya Gryaznukha,67,,51.661777,43.125557 us,fairview,Fairview,WA,,47.8444444,-119.5113889 ph,camudlas,Camudlas,46,,9.7325,123.1115 tr,ebemu,Ebemu,05,,40.653141,35.943326 pe,hichuhichu,Hichuhichu,04,,-15.745,-71.7630556 af,surkh joy,Surkh Joy,41,,33.41292,65.485906 ua,lukashivka,Lukashivka,23,,48.728218,28.17213 vn,khuc long,Khuc Long,26,,18.7,105.433333 cn,aojiapu xiang,Aojiapu Xiang,19,,41.911058,124.777331 gf,weni we,Weni Wé,00,,3.6833333,-53.95 cn,tongtiangou,Tongtiangou,05,,40.900833,125.791389 gq,baho grande,Bahó Grande,04,,3.5166667,8.8166667 iq,salaf al `awdah,Salaf al `Awdah,14,,31.5988889,46.8738889 au,malabar,Malabar,04,,-27.583333,152.583333 ua,lenina velikaya,Lenina Velikaya,15,,49.394218,22.923834 mg,maroria,Maroria,01,,-12.8333333,48.9666667 it,frattins,Frattins,06,,46.270556,13.210556 mx,la mata,La Mata,20,,16.625,-94.976667 sy,`ajjaz,`Ajjaz,10,,35.6166667,36.9166667 us,mayport,Mayport,PA,,41.0336111,-79.2516667 by,dobrosnevichi,Dobrosnevichi,04,,53.8752778,30.1394444 bf,boukou,Boukou,19,,12.55,-1.8833333 uz,changir,Changir,07,,40.1,65.9333333 in,akkaraivadi,Akkaraivadi,22,,10.883333,79.833333 se,raxed,Räxed,22,,59.816667,12.55 bd,akain,Akain,81,,23.5333333,89.8333333 ru,novgorodovo,Novgorodovo,47,,55.16919,37.317079 vn,lao chong khoan chay,Lao Chông Khoan Chay,19,,21.85,104 vn,hoa khue,Hòa Khuê,29,,16.033333,108.216667 gr,tseligkades,Tseligkádes,20,,39.3175,21.2836111 de,metelsdorf,Metelsdorf,12,,53.85,11.433333 pk,inzargai,Inzargai,02,,30.782263,67.151903 tr,gevri,Gevri,63,,36.732778,38.7125 ir,sarvarabad,Sarvarabad,34,,34.6808,49.221 my,kampung paya resak,Kampung Paya Resak,13,,5.2601,103.1114 cn,luchuan,Luchuan,29,,25.519848,102.475807 se,odelas,Odelås,23,,64.833333,17.983333 id,seraran,Seraran,39,,-3.233333,133.666667 ru,uspenka,Uspenka,09,,50.54,38.1097 ru,terekhina,Terëkhina,54,,55.916667,73.85 ru,dylma,Dylma,30,,52.966667,139.933333 cn,yangzitou,Yangzitou,11,,25.824444,111.941667 zm,chiwekwe,Chiwekwe,06,,-14.0666667,31.35 tr,islegen,Islegen,66,,39.78115,34.984932 cd,kibundu,Kibundu,12,,-3.983333,29.116667 my,paya asam kumbang,Paya Asam Kumbang,04,,2.2586,102.3797 ph,santol,Santol,37,,11.248056,124.791944 ee,myza klostri,Myza Klostri,07,,58.7386111,23.8341667 zr,kabilashi,Kabilashi,00,,-7.4833333,29.8666667 de,miesberg,Miesberg,02,,48.166667,12.1 de,baach,Baach,01,,48.233333,9.483333 mm,wan namkam,Wan Namkam,11,,20.85,99.9166667 cm,kalfu,Kalfu,12,,10.2827778,14.9327778 by,zhaki,Zhaki,06,,53.6666667,27.4333333 sd,qawz baynah,Qawz Baynah,33,,13.4,25.45 in,kantanagar,Kantanagar,28,,24.35,88.316667 gr,kranokhorion,Kranokhórion,09,,40.4547222,21.0938889 ru,korobovskaya,Korobovskaya,33,,58.559647,49.401365 pe,samangara,Samangara,20,,-4.5833333,-79.55 ir,bazmitan,Bazmitan,03,,32.118611,50.508333 cn,tuwuxia,Tuwuxia,30,,24.377724,114.556377 cn,ganjiachang xiang,Ganjiachang Xiang,12,,29.75,112.066667 ng,chikuto,Chikuto,39,,12.292586,9.210146 se,vita hasten,Vita Hästen,09,,57.216667,15.75 in,sanosra,Sanosra,09,,22.3,71.2 id,krajan lama,Krajan Lama,08,,-8.0327,113.2962 ru,nizhnearmetovo,Nizhnearmetovo,08,,53.660801,56.50201 br,alexandrina,Alexandrina,30,,-8.183333,-39.7 bg,gorni domlyan,Gorni Domlyan,51,,42.5666667,24.9 cf,beboulo,Beboulo,00,,7.6333333,16.4666667 cn,yagongtang,Yagongtang,30,,22.617181,114.769296 us,chapman,Chapman,KS,,38.9722222,-97.0222222 id,waturu,Waturu,28,,-7.516667,131.666667 mz,lamejo,Lamejo,05,,-21.0355556,34.8563889 ir,nareh sang olya,Nareh Sang Olya,41,,32.757149,59.838796 td,romekho,Romékho,01,,13.2,18.1833333 in,betul,Betul,33,,15.133333,73.95 ml,baddyano,Baddyano,08,,16.0833333,-3.6666667 id,lemburtegal,Lemburtegal,30,,-6.235278,106.316111 cn,yangjiazhuang,Yangjiazhuang,24,,37.257778,111.610833 ne,dagaradi,Dagaradi,07,,14.9333333,8.9833333 fr,peyrie,Peyrie,97,,44.542566,1.01466 ch,hinterkappelen,Hinterkappelen,05,,46.967781,7.379561 cn,jiangxiping,Jiangxiping,16,,25.613056,110.562222 ir,qabr-e mohammad,Qabr-e Mohammad,23,,33.4655,46.9659 dk,barup,Bårup,19,,57.076034,8.655838 ph,cordoba,Cordoba,21,29288,10.251944,123.949444 ir,`eyn khatun-e bala,`Eyn Khatun-e Bala,29,,29.4016,56.5693 pk,dera khokharanwala,Dera Khokharanwala,04,,31.748275,71.223518 tw,linchia,Linchia,04,,22.5166667,120.3666667 ro,teasca,Teasca,07,,47.716667,26.683333 es,caserio san saturnino de osoniort,Caserío San Saturnino de Osoniort,56,,41.902641,2.381477 ro,caciulatesti,Caciulatesti,26,,43.95,23.95 id,jogjogan 2,Jogjogan 2,30,,-6.667222,106.936389 bd,baher char,Baher Char,84,,22.4833333,90.3833333 cn,taoziba,Taoziba,32,,28.106466,105.669649 ph,calapan,Calapan,13,,13.4117,121.1803 de,parleithen,Parleithen,02,,49.05,11.616667 id,tepok,Tepok,30,,-6.236111,106.371667 jp,suginomemachi,Suginomemachi,08,,37.75,140.466667 py,colonia sommerfeld,Colonia Sommerfeld,04,,-25.433333,-55.716667 id,ciwenay,Ciwenay,07,,-7.310556,108.972222 jp,kami-sakkuru,Kami-sakkuru,12,,44.202222,142.974722 fr,le montcel,Le Montcel,A8,,48.709645,3.204442 mz,chinchanga,Chinchanga,10,,-17.9563889,33.1769444 ve,la candelaria,La Candelaria,05,,8.45,-70.0333333 ph,bonod,Bonod,18,,11.3502,122.7059 id,bogol,Bogol,07,,-6.7336,110.8294 th,udhaidhani,Udhaidhani,15,,15.379389,100.0245 ru,rusanova,Rusanova,77,,56.290744,31.504872 ve,guanata,Guanata,12,,9.3333333,-66.75 id,terasbendung,Terasbendung,30,,-6.090833,106.287778 ng,gutan,Gutan,48,,6.472392,4.552466 tr,geycek,Geycek,40,,39.099762,34.479762 tn,ksar de lala,Ksar de Lala,30,,34.392032,8.820838 id,sewunut,Sewunut,07,,-6.893698,109.717265 kz,ordzhonikidzevskiy,Ordzhonikidzevskiy,13,,52.685,62.039444 zr,ekolombe aboko,Ekolombe Aboko,00,,-3.4666667,20.9666667 kr,kwagyori,Kwagyori,03,,35.55,126.833333 co,surimena,Surimena,19,,3.85,-73.283333 tw,chuehchuehssushe,Chüehchüehssushe,04,,23.4166667,120.7 ir,hurameh,Hurameh,07,,27.671,52.6473 ar,daheza,Daheza,05,,-31.629196,-63.043861 cn,xinglongping,Xinglongping,26,,33.513889,108.446944 kp,munungni,Munungni,06,,37.7905556,126.1402778 eg,jazirat adh dhahab,Jazirat adh Dhahab,08,,29.9833333,31.2166667 de,grosszecher,Großzecher,10,,53.6,10.9 ir,serkan,Serkan,10,,33.546,46.8369 kz,aktyube,Aktyube,09,,43.833333,52.816667 pt,bravais,Bravãis,20,,41.800481,-8.449994 kr,hwabong,Hwabong,14,,36.2693,128.0852 tr,direvli,Direvli,07,,36.252696,32.531012 pg,kolimiogo,Kolimiogo,14,,-7.1166667,145.9 jm,buckup,Buckup,04,,17.8833333,-77.5 my,rumah uchau,Rumah Uchau,11,,2.733333,112.433333 pw,gakkibu,Gakkibu,00,,7.3619444,134.5122222 ng,use offot,Use Offot,21,,5.022563,7.971117 af,sangkul',Sangkul',27,,34.518889,67.388889 cn,hongshiyan,Hongshiyan,09,,33.216667,113.683333 id,ketambe,Ketambe,01,,3.6831,97.6486 bg,emirollar,Emirollar,43,,41.75,25.3666667 bd,kumun,Kumun,81,,23.9666667,90.5 kr,pulgunbong,Pulgunbong,06,,37.6719,127.9706 mm,ywagale,Ywagale,03,,16.7,95.0666667 co,carauquia,Carauquia,02,,6.768611,-75.899722 us,northwood,Northwood,WA,,48.9644444,-122.4061111 mn,partidzani negdel,Partidzanï Negdel,20,,48.1666667,106.6666667 pl,sidorowka,Sidorowka,81,,54.234725,22.920805 td,irbou,Irbou,07,,13.45,14.5666667 mx,luis cardoso,Luis Cardoso,20,,17.616667,-95.85 pl,godlewo warsze,Godlewo Warsze,78,,52.726315,22.292907 fr,brousses-et-villaret,Brousses-et-Villaret,A9,,43.342989,2.256344 ir,nasarkan-e sofla,Nasarkan-e Sofla,37,,36.990487,54.675795 in,jivaram ki dhani,Jivaram ki Dhani,24,,28.1911,75.4655 mm,nanthalethe,Nanthalethe,11,,20.5333333,96.6 pe,talaneo,Talaneo,20,,-5.0666667,-79.5333333 cu,guasimas,Guasimas,02,,23.0086111,-82.2977778 us,wann,Wann,NV,,36.2333333,-115.1125000 mg,ankilahila,Ankilahila,06,,-19.0,45.3333333 tz,nanyanji,Nanyanji,07,,-9.85,39.5833333 ng,enangendak,Enangendak,22,,6.374306,8.633633 my,munggu tajau,Munggu Tajau,11,,1.133333,111.666667 gh,mlichakpo,Mlichakpo,08,,5.7166667,0.0166667 am,shishkert,Shishkert,08,,39.0708333,46.3508333 tr,belenobasi,Belenobasi,07,,36.818064,31.591143 de,wustensachsen,Wüstensachsen,05,,50.5,10.016667 ro,gradinari,Gradinari,29,2489,44.566667,24.266667 fr,oucques,Oucques,A3,,47.822525,1.293831 me,rasinovici,Rasinovici,00,,43.264444,19.333611 zm,kawisha,Kawisha,03,,-14.35,23.6333333 be,'s-gravenwezel,'s-Gravenwezel,01,,51.266667,4.55 zm,kasanga,Kasanga,01,,-13.0833333,23.0166667 be,najauge,Najauge,07,,50.1,4.7 lt,gustonys pirmasis,Gustonys Pirmasis,60,,55.7333333,24.15 ru,kuryaninovo,Kuryaninovo,88,,56.749323,39.042202 cm,idenau,Idenau,09,,4.2333333,8.9833333 id,silumut,Silumut,07,,-7.550278,109.579722 us,kearney,Kearney,NE,28758,40.6994444,-99.0811111 cn,shanshang,Shanshang,02,,28.368056,120.866944 ye,qaryat `usayq,Qaryat `Usayq,11,,14.7319444,44.1369444 de,boitwarden,Boitwarden,06,,53.35,8.483333 ir,havila,Havila,23,,33.614,49.1008 ni,wiwinak,Wiwinak,17,,14.6166667,-84.4666667 fr,estaque,Estaque,B8,,43.361369,5.318096 nl,bantega,Bantega,02,,52.842308,5.798492 mx,la herradura,La Herradura,24,,21.983333,-98.716667 hr,baska stara,Baska Stara,12,,44.9580556,14.6916667 fi,honkakoski,Honkakoski,15,,61.75,22.133333 by,yurzdyka,Yurzdyka,06,,53.8833333,28.6 zr,mongonzi,Mongonzi,02,,0.8333333,17.9 ro,blidaru,Blidaru,26,,44.55,23.083333 us,kulshan,Kulshan,WA,,48.8375000,-122.1366667 am,berdavan,Berdavan,09,3150,41.2027778,45.0033333 cd,tshikulela,Tshikulela,03,,-6.233333,21.583333 rs,stanovc i eperm,Stanovc i Epërm,00,,42.758611,21.042778 co,hacienda canafistula,Hacienda Cañafistula,27,,9.298304,-75.534791 hu,kuthalom,Kúthalom,03,,46.866667,20.95 id,sekepondok dua,Sekepondok Dua,30,,-6.903333,107.645278 ca,ipiarjuk,Ipiarjuk,14,,73.033333,-85.166667 my,kota bharu,Kota Bharu,07,,4.3988,101.0787 ph,laon,Laon,16,,13.7305,123.3948 id,maulewa,Maulewa,18,,-9.9169,120.0392 ua,simirky,Simirky,25,,48.758495,22.577494 dk,vind,Vind,18,,56.25641,8.563979 cn,yeduonuo,Yeduonuo,15,,33.497179,104.586247 tr,hidiraga,Hidiraga,22,,41.733333,26.683333 lk,magamayagama,Magamayagama,34,,6.2,80.85 cl,guacarhue,Guacarhue,08,,-34.35,-71.033333 ng,kwaya,Kwaya,55,,9.716667,11.033333 ir,jalambadan,Jalambadan,42,,36.473072,57.442191 in,muria,Muria,24,,25.852778,75.509722 id,sawahlega,Sawahlega,30,,-6.826667,107.918056 ir,jow darab,Jow Darab,41,,32.8,59.216667 mz,mutadua,Mutadua,09,,-17.1441667,38.325 id,celungan,Celungan,10,,-7.745278,110.267778 hu,pilisvorosvar,Pilisvörösvár,16,13150,47.617785,18.911081 lk,kitulwala pahalagama,Kitulwala Pahalagama,36,,7.2333333,80.0833333 br,forquilha,Forquilha,05,,-10.2,-38.616667 cn,fahuachiaochen,Fahuachiaochen,23,,30.865278,121.420833 tr,bobiyan,Bobiyan,21,,38.166667,40.466667 ba,donji vranjevici,Donji Vranjevici,01,,43.2430556,17.9125 id,goloborong,Goloborong,18,,-8.4301,120.4926 kr,chugwolri,Chugwolri,20,,35.505723,128.649196 co,puerto lleras,Puerto Lleras,11,,7.159722,-76.666111 ru,cheremkhovo,Cheremkhovo,75,,57.483333,81.966667 lk,hirikuluwa,Hirikuluwa,36,,7.2,80.05 ar,loreto,Loreto,06,,-27.768342,-57.275308 cn,baishazhang,Baishazhang,30,,24.12974,116.366394 rs,gornji barani,Gornji Barani,00,,42.577222,20.402222 mx,goliat,Goliat,28,,25.9,-98.883333 ie,knockbodaly,Knockbodaly,13,,52.5516667,-6.9463889 ru,russkiy-sukhoy uzyak,Russkiy-Sukhoy Uzyak,08,,53.2,54.983333 bg,gyundyuzleri,Gyundyuzleri,52,,42.9833333,26.1666667 gw,calaba,Calaba,04,,11.7166667,-15.1833333 fr,landes,Landes,A7,,49.787368,1.628931 us,saint huberts,Saint Huberts,NY,,44.1572222,-73.7736111 lt,griguliai,Griguliai,62,,55.5166667,22.3333333 se,hogstaby,Högstaby,23,,66.083333,14.75 ng,ilase,Ilase,16,,6.7,2.783333 ru,cheganda,Cheganda,80,,55.954323,53.520219 es,bean,Beán,58,,43.016667,-8.383333 de,emmerich,Emmerich,07,29753,51.833333,6.25 ml,tomona,Tomona,07,,13.5,-6.9 de,nieder sandhausen,Nieder Sandhausen,06,,53.266667,8.85 be,thier des poursais,Thier des Poursais,06,,50.133333,5.8 ru,lvovskiy desyatyy,Lvovskiy Desyatyy,17,,43.435641,47.259674 cn,hejiagoucun,Hejiagoucun,26,,32.996838,107.654527 ru,alekseyevka,Alekseyevka,30,,49.29979,140.231482 py,puesto cabayuray-carujha,Puesto Cabayuray-Carujhá,04,,-24.9,-56.4 mx,los capornos,Los Capornos,26,,27.616667,-109.383333 tr,damyani,Damyani,19,,40.749006,34.097634 ru,borovaya polyanshchina,Borovaya Polyanshchina,67,,52.372821,44.417856 us,dogtown,Dogtown,CA,,38.2138889,-121.0875000 th,ban lao kaeo maeng,Ban Lao Kaeo Maeng,77,,16.168007,104.87686 ve,la yagua,La Yagua,16,,9.8722222,-62.9877778 gt,ixtacapa,Ixtacapa,11,,14.216667,-89.85 rs,tresnjaci,Tresnjaci,00,,43.251389,22.422222 fr,montriond,Montriond,B9,,46.197085,6.694531 ni,felix ernesto lopez toruno,Felix Ernesto Lopez Toruño,08,,12.6944444,-86.7186111 id,rorogan,Rorogan,30,,-6.896944,107.168611 br,araras,Araras,04,,-2.566667,-65.8 cz,tecovice,Tecovice,90,,49.220811,17.586687 be,beloy,Beloy,06,,49.866667,5.533333 ao,quivuta,Quivuta,15,,-7.7,15.7 id,kalibamban,Kalibamban,07,,-7.388889,109.181667 ng,oko ito,Oko Ito,05,,6.616667,3.666667 gh,palang,Palang,06,,8.7666667,-0.3333333 cn,papanchieh,Papanchieh,19,,41.817222,125.091111 ru,studenoye,Studenoye,53,,53.613624,77.532876 ru,bolshoye pole,Bolshoye Pole,33,,56.993885,47.146974 de,rabenstein,Rabenstein,05,,50.383333,9.366667 id,banjar pedawa,Banjar Pedawa,02,,-8.2367,115.0258 vn,sinh chai,Sinh Chái,19,,22.083333,104.116667 tr,mollamelik,Mollamelik,25,,40.116667,42.033333 ml,kayo,Kayo,07,,12.8197222,-7.6038889 ua,vorontsovka,Vorontsovka,11,,45.844703,33.796646 cn,yeniuguilan,Yeniuguilan,11,,25.951944,112.058333 ru,danilovskaya,Danilovskaya,33,,60.2388,47.0709 cn,chencun,Chencun,32,,28.246355,104.496172 cn,shanhe,Shanhe,14,,33.601047,79.801537 cn,kuantai,Kuantai,10,,36.316111,114.099722 cn,kaibayumqog,Kaibayumqog,14,,33.1,92.9 de,chammunster,Chammünster,02,,49.216667,12.7 cn,shexia,Shexia,11,,25.423056,112.295 bj,kirao,Kirao,03,,10.2166667,2.8833333 ye,hasan,Hasan,12,,16.1166667,43.7333333 us,sterling,Sterling,VA,,39.0061111,-77.4288889 bd,barjapur,Barjapur,81,,24.2,90.6666667 us,leon,Leon,KS,,37.6902778,-96.7819444 id,babakan cilaketan,Babakan Cilaketan,33,,-6.5631,106.3385 cn,chaokouchi,Chaokouchi,01,,33.766667,118.083333 lv,malpils muiza,Malpils Muiza,26,,57.0111111,24.9630556 do,la llanada,La Llanada,18,,19.7,-70.7833333 il,`ayn waybah,`Ayn Waybah,01,,30.653333,35.238611 ve,oficina barrantia,Oficina Barrantia,15,,10.1666667,-66.7 pl,pawlowice gorzowskie,Pawlowice Gorzowskie,79,,51.003561,18.391758 cd,lida,Lida,00,,2.466667,19.583333 gb,moreton on lugg,Moreton on Lugg,F7,,52.1,-2.733333 tw,maoshengtso,Maoshengtso,04,,24.1,120.5333333 gw,sincha galea,Sinchã Galeà,01,,12.1333333,-14.55 ru,lyubeznoye,Lyubeznoye,33,,57.3221,48.9748 co,caserio playon de catalina,Caserío Playon de Catalina,38,,10.378889,-74.509167 ru,pomasyal,Pomasyal,45,,56.878333,49.401111 nl,zevenbergschen hoek,Zevenbergschen Hoek,06,,51.673454,4.677601 cn,beilijia,Beilijia,26,,34.9609,109.313811 es,porto de mazarron,Porto de Mazarrón,31,,37.569552,-1.260052 ee,soonlepa,Soonlepa,02,,58.8480556,23.01 lb,kafr qahil,Kafr Qahil,03,,34.35,35.85 cd,kalumbi,Kalumbi,05,,-5.9,28.6 ru,zaboloty,Zaboloty,85,,59.6455,38.9859 sl,kpawura,Kpawura,01,,8.45,-10.7166667 tr,hirbaseyhmahmut,Hirbaseyhmahmut,72,,37.394722,40.906111 cn,kongzhuang,Kongzhuang,24,,35.323056,112.960278 br,espigao do bugre,Espigão do Bugre,26,,-26.1827,-49.813 fr,vieux les hopitaux neufs,Vieux les Hôpitaux Neufs,A6,,46.778301,6.372101 se,ramnared,Ramnared,06,,56.983333,12.866667 az,ekhshem,Ekhshem,68,,40.742368,47.154221 na,otjikundua,Otjikundua,40,,-22.0333333,17.6 cn,dagkar,Dagkar,06,,33,100.05 rs,budakove,Budakovë,00,,42.355,20.925 cn,jiadongling,Jiadongling,31,,19.466215,109.812765 af,sheykh miran,Sheykh Miran,36,,34.00056,69.568808 af,lala,Lala,40,,34.807778,68.6125 af,garikalay,Garikalay,23,,31.723686,66.824162 ru,maleyevskiye,Maleyevskiye,32,,63.7,64.7 ee,myza khyreda,Myza Khyreda,13,,59.0238889,24.9130556 id,babakancimoyan,Babakancimoyan,33,,-6.4985,105.9248 es,gumucio,Gumucio,59,,43.233142,-2.788661 id,kangkung kidul,Kangkung Kidul,07,,-7.198611,110.758611 ru,troitskoye,Troitskoye,72,,51.909669,42.596511 eg,kafr qashshash,Kafr Qashshash,14,,30.8113889,31.9941667 my,nanga pelu,Nanga Pelu,11,,1.433333,111.683333 mx,rancho los labos,Rancho Los Labos,19,,25.416667,-100.233333 id,alur slamet,Alur Slamet,26,,4.2371,98.0161 br,bacabal iii,Bacabal III,13,,-3.506389,-43.338333 mm,pangping,Pangping,11,,20.9,97.3666667 kp,yunamchon,Yunamchon,06,,38.0472222,125.9805556 vn,bo son,Bo Son,11,,21.166667,106.066667 us,texas city,Texas City,TX,43879,29.3836111,-94.9025000 hr,retkovci,Retkovci,18,,45.2333333,18.6530556 zm,nambindi,Nambindi,03,,-15.95,23.2 tr,kharabaky,Kharabaky,72,,37.580278,41.649444 ru,sedelki,Sedëlki,43,,52.165323,38.95092 kr,maljokpat,Maljokpat,01,,33.25,126.6 ro,podurile,Podurile,38,,45.883333,26.816667 bd,khejurtala,Khejurtala,81,,23.8,89.0166667 la,ban lo se,Ban Lo Sé,06,,20.483333,101.866667 cz,christophsgrund,Christophsgrund,83,,50.766667,14.933333 mx,nopalera,Nopalera,06,,27.05,-106.766667 ir,shaveh-ye hamid,Shaveh-ye Hamid,15,,31.2158,49.3015 rs,bogosevce,Bogosevce,00,,42.171944,20.878611 kp,hongmulli,Hongmulli,09,,39.0472222,127.5313889 id,tapua,Tapua,41,,-3.2492,119.2087 no,kvalvag,Kvalvåg,07,,59.532222,5.434722 se,sevedholm,Sevedholm,07,,63.233333,12.166667 pk,bhure khan rind,Bhure Khan Rind,05,,25.720283,68.294761 cn,xiaogujiazi,Xiaogujiazi,19,,40.770014,122.295383 tr,yukarielyakut,Yukarielyakut,37,,41.373241,33.842843 pt,cabanas do chao,Cabanas do Chão,14,,39.142555,-9.047124 ma,douar cheikh hamadi,Douar Cheikh Hamadi,51,,32.023541,-9.153149 at,herrenberg,Herrenberg,06,,47.483333,15.366667 ru,khrushchova,Khrushchova,86,,51.5076,38.932 ma,aerem,Aerem,58,,35.05,-4.43 ru,vypasnoy,Vypasnoy,84,,47.609741,43.579228 cf,liton,Liton,17,,4.55,18.5166667 at,kettenreith,Kettenreith,03,,48.083333,15.383333 mm,sanchi,Sanchi,12,,14.4333333,98.1333333 mx,palmitas,Palmitas,24,,21.783333,-100.033333 us,warfield,Warfield,TX,,31.9208333,-102.2183333 id,cimeta satu,Cimeta Satu,30,,-6.803611,107.5425 af,bali band,Bali Band,41,,33.76008,66.701969 ru,keruyembay,Keruyembay,55,,50.9358,60.1538 mx,los parajes,Los Parajes,12,,18.183333,-101.183333 ru,sharom,Sharom,92,,54.416667,158.233333 ec,san vicente,San Vicente,12,,-4.0666667,-79.5666667 sa,maqta` ar rijma,Maqta` ar Rijma,14,,20.8,39.4 mm,shwebozu,Shwebozu,17,,16.8691667,96.5969444 cn,luojiaying,Luojiaying,20,,40.879167,111.846944 br,sylverio nery,Sylverio Nery,04,,-3.116667,-58.15 cd,bolomi,Bolomi,00,,-.55,22.016667 br,canoa grande,Canoa Grande,13,,-5.366667,-46.016667 ch,morschwil,Morschwil,15,,47.468667,9.421782 se,hornas,Hörnäs,24,,63.3,18.55 tr,akgun,Akgün,60,,40.764803,36.816571 fr,augisey,Augisey,A6,,46.55303,5.492951 vu,etpouleo,Etpouléo,15,,-20.2333333,169.7666667 se,aberget,Åberget,24,,63.15,16.983333 ru,zhestovo,Zhestovo,47,,56.016667,37.65 bd,parkul,Parkul,81,,23.7166667,89.35 gr,charkovista,Charkovísta,17,,39.5433333,20.775 pk,ali muhammad,Ali Muhammad,02,,28.741356,67.512784 cn,loyeh,Loyeh,16,,24.847568,106.576396 kr,songjong,Songjong,18,,35.138611,126.796111 et,bogi,Bogi,51,,9.366667,35.6 cz,schiessglock,Schiessglock,88,,50.416667,13.666667 cn,huijiatai,Huijiatai,21,,35.566667,106.3 mm,kazun-in,Kazun-in,08,,19.9833333,96.2166667 ma,fnideq,Fnideq,57,,35.851919,-5.357022 ru,shchukino,Shchukino,46,,54.5372,45.8078 ru,vlasikha,Vlasikha,37,,57.339393,40.747424 ru,teterkino,Tetërkino,60,,56.05,30.533333 ir,geleh deh,Geleh Deh,33,,37.5323,46.8564 pt,alcaria queimada,Alcaria Queimada,09,,37.398407,-7.656916 ph,alusiman,Alusiman,H3,,10.2244,122.9813 ve,el medanito,El Medanito,03,,7.3861111,-67.4138889 zm,kettle kuka,Kettle Kuka,05,,-12.55,30.5 ro,ghecit,Ghecit,08,,45.283333,28.033333 vn,na xam,Na Xam,22,,21.683333,103.083333 us,wilhoit,Wilhoit,AZ,,34.4258333,-112.5861111 af,shkharm,Shkharm,01,,37.933508,70.653955 ru,smolikha,Smolikha,78,,55.593611,69.048889 tr,kayseran,Kayseran,65,,38.934715,44.091577 cn,taomiao,Taomiao,01,,33.2,115.366667 vn,quan suoi,Quan Suoi,14,,20.15,105.883333 ru,zavidovo,Zavidovo,85,,58.878266,38.581985 ir,lisar,Lisar,08,,37.968333,48.898056 cn,juncha,Juncha,26,,34.19239,109.666434 ve,morichito,Morichito,12,,7.7058333,-66.2761111 us,saint matthews,Saint Matthews,SC,,33.6647222,-80.7780556 kp,pomdong,Pomdong,12,,39.1697222,125.8138889 am,dzitankov,Dzitankov,07,1162,40.5155556,43.8133333 cn,tungshentou,Tungshentou,24,,39.386872,112.580422 pl,moczkowo,Moczkowo,87,,52.984426,15.190719 cn,huentien,Huentien,05,,42.963333,126.747778 tr,kiyrik koyu,Kiyrik Köyü,65,,37.801389,43.248611 pk,banda kando,Banda Kando,03,,35.170479,72.197684 cm,koudoukomo,Koudoukomo,11,,3.55,12.0666667 ma,el mers,El Mers,47,,31.253864,-9.221217 br,lyndoya,Lyndoya,27,,-22.516667,-46.65 us,indian pass,Indian Pass,FL,,29.6902778,-85.2644444 ro,cornetelu,Cornetelu,29,,44.683333,24.466667 id,agung,Agung,30,,-6.755,108.339444 hn,copen campo,Copén Campo,06,,15.45,-87.8833333 kp,maehwadong,Maehwadong,07,,38.2061111,126.1405556 rw,kisunzu,Kisunzu,03,,-2.5333333,28.9333333 ba,malic,Malic,02,,44.7619444,16.8858333 gh,kanyasi,Kanyasi,02,,6.7333333,-1.5666667 md,malaiesti,Malaiesti,58,,46.9825,29.552222 ph,puzon,Puzon,51,,16.209,120.4782 ee,saia,Saia,14,,58.3297222,22.47 gn,ore dimma,Ore Dimma,20,,11.45,-12.3 la,ban bakkut,Ban Bakkut,02,,14.9,105.916667 ru,tveritsy,Tveritsy,88,,57.632265,39.919843 ve,lamedero,Lamedero,02,,10.0488889,-64.4216667 sd,al hammadiyah,Al Hammadiyah,34,,13.2,30.4166667 us,douglas park,Douglas Park,IL,,41.7938889,-89.7344444 ph,lakaron,Lakaron,H3,,10.4659,122.8681 tz,jimbo,Jimbo,02,,-7.7666667,39.8666667 af,khanowkhel,Khanowkhel,23,,31.547174,64.878777 ru,koshlyachye,Koshlyachye,33,,59.121944,50.671944 cn,hongqigou,Hongqigou,19,,40.010783,123.694598 ru,nizhne-kondryuchenskoye,Nizhne-Kondryuchenskoye,61,,47.75,40.946944 au,warrion,Warrion,07,,-38.233333,143.566667 pk,sodam khel,Sodam Khel,01,,32.700278,70.082778 ua,mazyarnya vavrshkova,Mazyarnya Vavrshkova,15,,50.1,24.6 ru,mari-kuzhery,Mari-Kuzhery,45,,56.359722,49.0475 id,daleng timur,Daleng Timur,18,,-8.6935,120.2123 pl,tankow,Tankow,76,,52.93905,15.357544 cm,konene,Konene,07,,6.4166667,10.3666667 kz,degilen',Degilen',15,,49.8,77.983333 lt,zhaguni,Zhaguni,60,,55.3833333,24.3666667 ru,zimnik,Zimnik,29,,55.6607,84.9245 mz,massacage,Massacage,05,,-20.3675,33.7488889 gh,zundem,Zundem,10,,10.6666667,-1.3833333 id,pandes dua,Pandes Dua,07,,-6.9557,110.1413 ma,tlaloun,Tlaloun,48,,32.505494,-4.170969 kr,sinnoru,Sinnoru,12,,37.270278,126.437778 mm,mi-le,Mi-le,11,,20.2,97.3666667 de,leuzhof,Leuzhof,02,,49.35,10.166667 pk,hundal,Hundal,04,,32.423114,74.53035 bd,gangina,Gangina,81,,23.7166667,90.65 ht,fond picard,Fond Picard,06,,19.1666667,-72.3333333 de,dachtmissen,Dachtmissen,06,,52.466667,10.05 th,ban san khi laeng,Ban San Khi Laeng,06,,18.200833,99.498056 ir,khazar-e yek,Khazar-e Yek,15,,31.7086,48.7034 ru,ilchibayevo,Ilchibayevo,08,,56,54.65 ml,bima,Bima,04,,14.9166667,-3.7666667 bo,veladero,Veladero,08,,-18.2666667,-64.2666667 pg,horetu,Horetu,09,,-6.5833333,145.45 mm,pwe-nwa,Pwe-nwa,11,,21.05,96.5666667 ru,zhelobovo,Zhelobovo,62,,53.6913,40.7225 kz,ayt-pay,Ayt-Pay,07,,49.483333,50.566667 mx,paso del muerto,Paso del Muerto,16,,19.325,-101.616667 ro,capul plaiului,Capul Plaiului,16,,44.95,25.566667 mx,san mateo nopala,San Mateo Nopala,15,,19.483333,-99.25 pk,khan muhammad rela,Khan Muhammad Rela,05,,27.569921,68.184215 co,la ranrada,La Ranrada,16,,3.206944,-74.820556 us,terrys fork,Terrys Fork,VA,,37.0458333,-80.2647222 pt,bouca velha,Bouça Velha,20,,41.741245,-8.664759 tn,xuiba,Xuiba,23,,35.769722,10.628056 pe,chacaibamba,Chacaibamba,12,,-11.4833333,-75.15 id,jebulan,Jebulan,07,,-7.513889,110.331389 pk,chak three hundred ninety-three jb,Chak Three Hundred Ninety-Three JB,04,,30.970943,72.415327 cn,shangchangshe,Shangchangshe,26,,34.862778,108.713056 us,genesee depot,Genesee Depot,WI,,42.9666667,-88.3711111 tr,akkaya koyu,Akkaya Köyü,68,,40.08537,32.116255 la,dak liang,Dak Liang,09,,15.4,107.466667 id,pusungi,Pusungi,21,,-.8713,121.6276 ua,nerazh,Nerazh,27,,50.604101,28.887182 gb,lurgashall,Lurgashall,P6,,51.016667,-.666667 bf,namobonga,Namobonga,42,,12.4666667,1.6 ru,petrowsk,Petrowsk,67,,52.306389,45.391667 fr,baugy,Baugy,A3,,47.08181,2.728479 ci,traore,Traoré,82,,5.243915,-4.229374 br,nova,Nova,30,,-7.916667,-38.216667 be,voort,Voort,05,,50.8,5.316667 cn,laoheyan,Laoheyan,32,,29.66526,105.240488 tz,karema,Karema,00,12630,-6.8166667,30.4333333 th,ban tha kin nam,Ban Tha Kin Nam,51,,14.916667,100.083333 tz,kizimzumbi,Kizimzumbi,23,,-6.95,39.0166667 mx,rancho la purisima,Rancho La Purisima,28,,24.633333,-99.35 ng,onidundu,Onidundu,32,,7.621667,3.918889 cn,yongan zhen,Yongan Zhen,24,,39.695712,113.687079 be,guignies,Guignies,03,,50.55,3.366667 ru,sovkhoz dory,Sovkhoz Dory,47,,56.268428,35.914441 my,kampung kata,Kampung Kata,05,,2.8571,102.2215 ro,ragmanu,Ragmanu,42,,45.15,25.683333 id,kudur,Kudur,08,,-7.1322,111.6477 ug,namigoye,Namigoye,93,,-0.8333333,29.6833333 kz,belokamenka,Belokamenka,15,,50.166667,82.583333 my,bukit zaharah,Bukit Zaharah,01,,1.4567,103.7571 br,gunza,Gunza,21,,-22.947402,-43.476753 gh,yarkau,Yarkau,09,,4.8333333,-1.9666667 cz,mlada boleslaz,Mlada Boleslaz,88,,50.42311,14.919316 cn,shihtienpu,Shihtienpu,01,,32.266667,116.033333 cm,mbiret,Mbiret,10,,6.1833333,12.8666667 mz,minguene,Minguene,03,,-23.8263889,34.8719444 ar,ledesma,Ledesma,05,,-33.60643,-62.623041 br,franquinha,Franquinha,03,,.9,-50.083333 ne,gindo,Gindo,04,,13.8333333,6.55 id,pasoeng,Pasoeng,30,,-7.1239,108.159 ir,shami,Shami,25,,35.452197,54.604871 id,dukuhsumur,Dukuhsumur,07,,-6.9728,109.0426 id,pulaualurbuluh,Pulaualurbuluh,01,,4.3047,97.9424 eg,bani mu'minah,Bani Mu'minah,18,,28.9833333,30.9 pl,sawity,Sawity,85,,54.274968,20.119818 bo,santibanez,Santibañez,02,,-17.55,-66.25 ba,avlija,Avlija,01,,43.8397222,16.9830556 id,blang melingge,Blang Melingge,01,,5.7392,95.0424 ve,boca de macareito,Boca de Macareíto,09,,8.9080556,-61.9838889 it,altavilla,Altavilla,04,,40.533333,15.133333 pa,san felipe,San Felipe,08,,8.95,-79.5333333 de,dorf kornberg,Dorf Kornberg,05,,51.05,9.866667 mx,cuauhzapotitan,Cuauhzapotitan,30,,19.9,-97.15 bg,runya,Runya,46,,42.9833333,25.55 us,hamden,Hamden,OH,,39.1597222,-82.5269444 hr,vagan,Vagan,08,,44.4091667,15.7 ht,cesseles,Cesselès,11,,18.6166667,-72.2333333 mg,ampasiginera,Ampasiginera,05,,-20.1833333,46.5666667 de,zwickau,Zwickau,13,99343,50.733333,12.5 pk,malik sadiq,Malik Sadiq,02,,31.031841,66.736933 ng,lade,Lade,54,,8.766667,5.616667 cn,yanglaojun,Yanglaojun,03,,29.248114,116.377902 ph,palinpinon,Palinpinon,46,,9.3189,123.2546 by,unoritsa,Unoritsa,02,,52.4616667,30.3255556 ir,dehnow-e sadat,Dehnow-e Sadat,29,,29.9888,56.1743 ir,boreyje`,Boreyje`,15,,30.786749,48.809102 cn,maikun,Maikun,32,,32.910185,101.754793 cn,shangnanwu,Shangnanwu,02,,29.791986,119.873901 co,parorimaha,Parórimaha,17,,11.62307,-72.104066 de,schillwitzhausen,Schillwitzhausen,02,,48.7,11.616667 cz,libice,Libice,88,,49.737833,14.206719 pk,bara gate,Bara Gate,03,,33.9821,71.526 sv,san jose ingenio,San José Ingenio,11,,14.3666667,-89.4 kr,namsam,Namsam,03,,35.916667,126.9 af,bagak,Bagak,28,,31.729727,66.305893 us,saxet,Saxet,TX,,31.9658333,-94.2986111 mx,la fragua,La Fragua,32,,23.05,-103.6 pe,anchiguay,Anchiguay,05,,-13.0058333,-73.7730556 bd,uttar gorail,Uttar Gorail,81,,23.7833333,89.9 us,alpine,Alpine,PA,,40.0786111,-76.8730556 ve,guevara,Guevara,04,,10.4166667,-67.8 cd,mondzongele,Mondzongele,00,,3.05,21.35 bg,kaur alan,Kaur Alan,39,,42.0333333,26.2 ie,bellanaboy,Bellanaboy,14,,54.0091667,-8.0591667 jp,shumarinai,Shumarinai,12,,44.276389,142.159444 ru,nadezhenka,Nadezhenka,81,,53.9685,48.0443 kp,torung,Torung,09,,38.6925,127.8916667 ir,darreh chitu,Darreh Chitu,22,,29.1878,51.1604 gb,mydrim,Mydrim,X7,,51.859722,-4.486389 de,altenrhein,Altenrhein,07,,52.3,7.483333 bw,lokwabe,Lokwabe,00,,-24.1666667,21.8333333 ml,guemoukoura,Guémoukoura,07,,14.2666667,-9.3166667 id,ragoenan,Ragoenan,04,,-6.2902,106.8223 pk,goth abdur rehman,Goth Abdur Rehman,02,,25.585024,66.719587 cn,wangbaohe,Wangbaohe,09,,33.334555,112.964395 vn,doi son,Doi Son,14,,20.6,105.966667 de,untergessenbach,Untergessenbach,02,,48.666667,12.983333 ng,iboju,Iboju,05,,6.422849,3.5294 pg,hagaulo,Hagaulo,09,,-6.2666667,145.3666667 mz,mecote,Mecote,01,,-13.6391667,39.4958333 hu,szeleczkyresz,Szeleczkyrész,16,,47.05,19.383333 dz,timeiaouine,Timéïaouîne,34,,20.4447222,1.7986111 pk,mallahna,Mallahna,04,,32.45092,74.803737 au,bonshaw,Bonshaw,02,,-29.05,151.266667 lb,el qornah,El Qornah,03,,34.4833333,36.1666667 us,beach haven,Beach Haven,NJ,,39.5591667,-74.2436111 ph,otoyan,Otoyan,40,,12.340749,121.165713 fr,fresnes,Fresnes,A1,,47.607616,4.439514 br,varzea da ema,Várzea da Ema,02,,-9.4,-37.283333 pk,chere,Chere,08,,33.404167,73.275 au,rydalmere,Rydalmere,02,,-33.8,151.05 cn,henghezi,Henghezi,19,,41.394722,120.283056 de,hasslberg,Haßlberg,02,,47.75,12.616667 ar,obraje abatos,Obraje Abatos,22,,-26.4,-64.033333 in,launa,Launa,36,,26.1176,79.3285 hu,alsojaras,Alsójárás,01,,46.183333,18.966667 pk,chichiana khu,Chichiana Khu,04,,31.833691,73.865802 pg,kombaku,Kombaku,08,,-5.95,144.95 cn,huangshafa muchang,Huangshafa Muchang,07,,27.588889,118.665556 ua,shakhi,Shakhi,19,,51.607295,26.891963 az,imamkulikend-kishlak,Imamkulikend-Kishlak,44,,41.554357,48.435948 us,mount gretna heights,Mount Gretna Heights,PA,,40.2480556,-76.4647222 iq,kani darka,Kani Darka,05,,35.5797222,45.6127778 eg,al fikriyah,Al Fikriyah,10,,27.9347222,30.8197222 mm,hlapato,Hlapato,13,,16.0383333,97.5888889 ro,galiciuica,Galiciuica,26,,44.1,23.383333 hu,nandormajor,Nándormajor,24,,46.973011,16.991501 ua,novyy pochayev,Novyy Pochayev,22,,50,25.516667 fr,les houilleres,Les Houillères,A3,,46.648477,2.217238 pk,khera,Khera,04,,30.383269,70.966026 cn,gushi,Gushi,09,80666,32.2,115.8 us,hill acres,Hill Acres,TN,,35.1672222,-84.8130556 ru,malakhovka,Malakhovka,73,,54.4976,52.6047 cn,tanhu,Tanhu,03,,27.813232,116.010375 ph,anoling,Anoling,11,,9.7594,124.5764 pk,pharala,Pharala,03,,34.022222,72.958056 bd,saguli,Saguli,81,,24.4666667,90.9833333 kp,ungoltong,Ungoltong,06,,38.6013889,125.4708333 cn,shatien,Shatien,09,,35.45,114.433333 zm,nyawandu,Nyawandu,01,,-13.6666667,22.5166667 th,ban o krathing,Ban O Krathing,53,,13.921818,100.002203 pe,suamachay,Suamachay,12,,-11.2188889,-75.7452778 pk,dhok ham,Dhok Ham,04,,32.877952,72.278679 vn,lang cha,Làng Cha,19,,22.166667,104.583333 ar,chinguillo,Chinguillo,18,,-29.713538,-69.160728 de,grossbruchter,Großbrüchter,15,,51.333333,10.65 ba,knjeginjac,Knjeginjac,01,,43.8394444,18.4363889 es,l'alcora,L'Alcora,60,,40.066667,-.2 zr,mudiandambo,Mudiandambo,03,,-6.0666667,22.5166667 es,villar de santiago,Villar de Santiago,55,,42.916967,-6.246257 pe,tallancara,Tallancara,04,,-15.1188889,-71.3447222 us,manitoba junction,Manitoba Junction,MN,,46.9066667,-96.2472222 no,toften,Toften,18,,68.8,16.5 bg,tsaryuvets,Tsaryuvets,43,,41.6666667,25.35 es,sinues,Sinués,52,,42.653495,-.649077 th,ban khoi,Ban Khoi,51,,14.583333,100.05 gb,winthorpe,Winthorpe,H7,,53.166667,.333333 lv,grugule,Grugule,22,,56.5,26.2666667 ba,supcane,Supcane,02,,44.2933333,18.8558333 af,bataw bala,Bataw Bala,07,,35.71516,64.782143 ru,vishnevyy,Vishnëvyy,07,,46.8225,47.9357 pe,santa elena,Santa Elena,13,,-7.485,-79.5558333 ve,el cascabel,El Cascabel,23,,10.6463889,-71.1208333 ph,agcauayan,Agcauayan,40,,13.7598,120.2648 pt,monte joao dias,Monte João Dias,18,,39.55,-8.016667 cn,baota,Baota,01,,31.221932,118.79758 id,rantaupandjang,Rantaupandjang,14,,2.15,117.416667 cn,duiyan,Duiyan,32,,29.980971,102.952373 ph,tuquipa,Tuquipa,01,,17.333333,120.65 id,boyolayar,Boyolayar,07,,-7.268333,110.838056 ir,azbizan,Azbizan,34,,35.3029,49.8965 pl,radoryz smolany,Radoryz Smolany,74,,51.8,20.133333 us,north woodbury,North Woodbury,CT,,41.5502778,-73.2058333 lv,maz renda muizas centrs,Maz Renda Muizas Centrs,15,,57.0666667,22.25 lt,sokai,Sokai,62,,55.1041667,21.9561111 hn,el espinal,El Espinal,15,,14.6,-86.2 id,dongkas,Dongkas,21,,.358,120.2558 cn,qingchengshan,Qingchengshan,32,,30.897635,103.584137 cn,yuziwu,Yuziwu,29,,24.695631,102.806943 jp,sakai,Sakai,13,,34.45,134.783333 ua,yalgy,Yalgy,07,,50.198333,37.263333 ru,nagorsk,Nagorsk,33,4982,59.317222,50.807778 ru,komissarovskoye pervoye,Komissarovskoye Pervoye,54,,54.504353,72.725209 sd,faki musa,Faki Musa,27,,14.3,33.2166667 se,risudden,Risudden,14,,66.15,23.833333 pk,ian muhammad,Ian Muhammad,02,,28.0952,67.8097 au,wellington mills,Wellington Mills,08,,-33.466667,115.9 dk,draeby,Dræby,21,,55.450325,10.521489 ec,morona miazal,Morona Miazal,15,,-2.6230556,-77.7947222 af,tatar,Tatar,27,,34.341944,68.706667 us,harrison,Harrison,NJ,14094,40.7463889,-74.1566667 us,the hand,The Hand,NH,,44.8797222,-71.0919444 bj,bessassi boko,Bessassi Boko,03,,10.3833333,3.4666667 me,ramovici,Ramovici,00,,42.870556,20.138889 mx,potosil,Potosil,05,,16.75,-92.733333 ve,san rafael,San Rafael,15,,10.0744444,-66.2136111 ye,ali bin nagi,Ali Bin Nagi,14,,13.8166667,45.3333333 et,fait abereic,Fait Abereic,51,,9.133333,35.016667 us,trabuco canyon,Trabuco Canyon,CA,,33.6625000,-117.5894444 ir,chah-e mehdiabad,Chah-e Mehdiabad,41,,32.866944,58.949722 ye,al hudayran,Al Hudayran,17,,13.7833333,44.4 ir,veshnam,Veshnam,04,,25.4102,60.7818 gr,lefkopetra,Lefkópetra,12,,40.4280556,22.1852778 it,san gottardo,San Gottardo,20,,46.169722,12.114444 fj,daviqele,Daviqele,01,,-19.15,178.0 dz,douar alh ben frea,Douar Alh Ben Fréa,26,,35.55,-0.0666667 pe,angostura hacienda,Angostura Hacienda,20,,-4.9419444,-80.3777778 id,ulee tutue,Ulee Tutue,01,,5.2878,96.0067 so,lassah,Lassah,15,,8.75,45.6333333 pl,zeronie,Zeronie,74,,51.524335,19.467995 ua,gaydayka,Gaydayka,09,,49.555795,26.516334 af,sheykhal'kar,Sheykhal'kar,27,,34.463333,67.771389 ir,gabrchi,Gabrchi,29,,27.0696,57.7211 mm,hawtipe,Hawtipè,06,,18.9,97.15 mx,las peruleras,Las Peruleras,14,,20.05,-104.516667 ru,valerino,Valerino,54,,55.0743,74.8094 ye,al aysoina,Al Aysoina,14,,15.0333333,45.55 th,wan yao,Wan Yao,48,,12.445722,102.238667 gr,kefaladhos,Kefaládhos,45,,35.05,25.1833333 gh,butre,Butre,09,,4.8166667,-1.9166667 gr,elaiochori,Elaiochóri,31,,39.0344444,21.1561111 lk,vanchiyankulam,Vanchiyankulam,31,,8.8666667,79.95 se,havraljunga,Havraljunga,27,,56.366667,13.65 ir,ghovaileh,Ghovaileh,15,,31.2107,49.1066 td,bimi,Bimi,01,,12.8,18.2166667 mx,la palmillita,La Palmillita,03,,23.799444,-109.861944 rs,prapacan,Prapacan,00,,42.552778,20.331111 ht,bernaco,Bernaco,07,,19.0,-72.0333333 tr,yigitbasi,Yigitbasi,39,,41.933333,27.65 ma,el mers n'ait tislit,El Mers n'Ait Tislit,56,,32.271006,-6.403802 de,waldsiedlung,Waldsiedlung,05,,50.133333,8.866667 th,hin tab,Hin Tab,50,,14.6,98.716667 ru,khayto,Khayto,20,,54.3527,101.7605 pe,pamparacay,Pamparacay,03,,-14.1833333,-72.6333333 cd,lukola,Lukola,03,,-6.933333,23.333333 cd,kabale,Kabale,04,,-5.966667,23.866667 us,blairsden,Blairsden,CA,,39.7811111,-120.6155556 kp,hangpodong,Hangpodong,06,,37.9833333,125.6 ru,abdurakhmanova,Abdurakhmanova,08,,52.556389,58.625 cz,krovi,Krovi,80,,49.308188,16.263214 br,guabiraba,Guabiraba,06,,-2.9,-39.933333 cn,baiyang,Baiyang,32,,29.116759,103.212073 gb,east saltoun,East Saltoun,U6,,55.9,-2.833333 af,gumqowl,Gumqowl,08,,33.002488,67.388827 at,mahresdorf,Mahresdorf,03,,47.733333,16.033333 ci,masamola,Masamola,75,,8.361602,-7.934756 pl,pawlow,Pawlow,77,,50.292565,20.887521 mz,deguere,Dèguère,09,,-16.3805556,37.4477778 hu,bukkosd,Bükkösd,02,,46.107507,17.9882 de,gross ossnig,Groß Oßnig,11,,51.683333,14.366667 ru,kozlovo selo,Kozlovo Selo,77,,56.757026,31.854455 ph,palapug,Palapug,18,,11.605,122.823056 id,pakunden,Pakunden,07,,-7.471111,109.542222 eg,zuhra,Zuhra,10,,28.1833333,30.7333333 mx,delegacion de ixtacalco,Delegación de Ixtacalco,09,,19.396667,-99.084722 ru,tyurino,Tyurino,07,,46.445902,48.6251 ir,bab kiki,Bab Kiki,29,,29.168097,57.372422 us,warrenton,Warrenton,IN,,38.1730556,-87.5327778 id,klabar,Klabar,07,,-7.353611,109.552222 cn,yunpan,Yunpan,11,,27.777222,113.251667 mq,les coteaux,Les Coteaux,00,,14.4833333,-60.9833333 md,moleshty,Moleshty,78,,46.785833,28.778056 th,ban tham suea,Ban Tham Suea,76,,17.049195,103.32775 tr,akcay,Akçay,31,,36.603391,36.200246 jp,shinjo,Shinjo,31,,35.166667,133.566667 fi,turkhauta,Turkhauta,13,,60.816667,24.816667 me,kraljske bare,Kraljske Bare,00,,42.749444,19.612778 cn,mudemu,Mudemu,29,,24.822686,102.043257 tg,toman,Toman,06,,10.7166667,0.0333333 pt,quinta,Quintã,21,,41.293068,-7.857231 us,cape porpoise,Cape Porpoise,ME,,43.3725000,-70.4386111 in,ughi,Ughi,23,,31.226111,75.380278 cn,bakeshiying,Bakeshiying,10,,40.733333,117.233333 ru,tretiye levyye lamki,Tretiye Levyye Lamki,72,,53.203135,41.273299 my,kampung kura,Kampung Kura,03,,5.850722,101.930315 ph,pitogo,Pitogo,21,,10.366667,123.966667 af,kadzhalak,Kadzhalak,05,,34.057333,67.061541 mz,didia,Didia,08,,-14.5147222,34.3322222 ru,dmitrovy gorki,Dmitrovy Gorki,42,,59.35,29.666667 mx,petulchacan,Petulchacan,31,,20.1,-88.866667 ng,angigo,Angigo,27,,12.116667,14.65 pk,kandasole,Kandasole,02,,25.381312,62.980271 jm,johnston village,Johnston Village,09,,18.4,-77.25 es,castejon del puente,Castejón del Puente,52,,41.961272,.161015 hu,ujkutpuszta,Újkútpuszta,08,,46.95,18.333333 et,mello,Mello,52,,10.052222,42.0625 ru,torginka,Torginka,39,,55.794,93.9133 vn,bon ya lou,Bon Ya Lou,23,,12.216667,108.433333 no,rora,Røra,10,493,63.866667,11.4 ir,hinag,Hinag,25,,35.891158,53.404676 cn,nuoshuihe,Nuoshuihe,32,,32.378702,107.190286 ph,kulit,Kulit,02,,8.947222,125.356944 af,gav,Gav,09,,34.438694,64.453491 ir,tupraq kandi,Tupraq Kandi,32,,39.551944,47.661944 ph,batao,Batao,70,,6.48,124.926389 dk,thuro by,Thurø By,21,,55.047398,10.663847 al,(( treg )),(( Treg )),50,,41.25,19.6666667 dz,mechta el guetaifia,Mechta el Guetaïfia,37,,36.2811111,8.2852778 us,teaberry woods,Teaberry Woods,DE,,38.4705556,-75.0977778 ir,`aliabad-e sofla,`Aliabad-e Sofla,29,,30.851026,56.500667 fr,saint-jean-des-murgers,Saint-Jean-des-Murgers,A3,,48.491262,.972465 lk,bandanagoda,Bandanagoda,36,,6.4833333,80.0166667 cn,ronghua,Ronghua,11,,29.848581,111.377219 vn,dat set,Dat Set,28,,12.316667,108.983333 tr,shali,Shali,72,,37.069722,40.568333 us,garfield,Garfield,IL,,41.0850000,-88.9561111 uz,khasanbay,Khasanbay,14,,41.4002778,69.2616667 pl,klokock,Klokock,73,,52.809275,19.175008 ru,kyrynastakh,Kyrynastakh,63,,61.45,137 co,la furatena,La Furatena,26,,5.879722,-73.898889 do,los ranchos de tavero,Los Ranchos de Tavero,25,,19.2833333,-70.7166667 kr,sanggarhyon,Sanggarhyon,14,,36.385906,128.891797 dk,stevelt,Stevelt,21,,55.274543,9.640383 pl,golkowice,Golkowice,77,,49.543764,20.575789 id,garduiman,Garduiman,33,,-6.017,106.0136 pk,burzwala,Burzwala,04,,30.82449,71.819368 af,sinazm,Sinazm,01,,38.188014,70.570868 tr,buyuk elmagolu,Büyük Elmagölü,81,,37.163824,35.902189 pe,puma pucro,Puma Pucro,05,,-13.9833333,-73.8166667 sl,kasikoia,Kasikoia,01,,8.8,-10.9 ir,surava,Surava,10,,33.8748,46.214 za,mpothula,Mpothula,05,,-31.9113,27.184606 id,boraplupur,Boraplupur,18,,-8.724,122.2671 ro,contesti de jos,Contesti de Jos,03,,44.983333,25 ph,progreso,Progreso,40,,12.418044,121.075313 iq,sumeicha,Sumeicha,18,,33.8466667,44.2344444 cn,miaoping,Miaoping,15,,33.230659,105.761355 ir,bagh-e khoshk,Bagh-e Khoshk,29,,29.8148,55.9831 my,tamsu,Tamsu,11,,1.183333,111.416667 es,ledrada,Ledrada,55,,40.468776,-5.720381 id,jenangan,Jenangan,08,,-7.5423,111.8311 ru,marfinskaja,Marfinskaja,61,,47.595029,38.526493 gr,(( khlimbourita )),(( Khlimbouríta )),31,,39.0836111,21.15 pe,sama grande,Sama Grande,23,,-17.7930556,-70.4925 pt,tojeiras,Tojeiras,06,,39.808156,-7.709993 gt,pasasagua,Pasasagua,05,,14.933333,-90.083333 us,waltham,Waltham,MN,,43.8216667,-92.8769444 pe,quebrada honda,Quebrada Honda,23,,-17.1666667,-70.5166667 hr,biskupec,Biskupec,20,,45.9619444,16.2425 cg,lekati ii,Lékati II,05,,-2.7227778,13.8425 pk,nali malazai,Nali Malazai,02,,30.475965,69.207842 uz,inichka,Inichka,10,,39.8666667,67.3333333 id,munegajut,Munegajut,18,,-8.6497,122.1252 jp,sozya,Sozya,31,,34.666667,133.75 eg,shawbak bastah,Shawbak Bastah,14,,30.5775,31.5355556 lk,nanwatta,Nanwatta,32,,7.4833333,80.1333333 il,et tire,Et Tire,02,,32.234097,34.950232 cn,luoshiqiao,Luoshiqiao,11,,27.155556,111.464167 ve,guarapito,Guarapito,22,,10.4513889,-68.6436111 no,mebo,Mebø,19,,58.066667,8 th,ban hua yang,Ban Hua Yang,11,,16.433333,99.55 md,piatra alba,Piatra Alba,78,,46.933333,28.816944 ht,bassan,Bassan,11,,18.6091667,-72.3263889 us,texas,Texas,KY,,37.6555556,-85.1102778 ir,abrang sar,Abrang Sar,35,,36.333333,52.85 id,pepeuntasan,Pepeuntasan,30,,-6.998889,107.671944 ru,zonovskaya,Zonovskaya,33,,58.266667,50.416667 mx,pinos,Pinos,12,,17.966667,-101.55 ye,hajabah,Hajabah,06,,13.15,44.2666667 pl,lysiec,Lysiec,83,,50.686502,19.071068 ru,oleni,Oleni,90,,58.0523,57.5895 pl,opoczka mala,Opoczka Mala,75,,50.883238,21.83677 kp,taosaduktong,Taosaduktong,17,,42.0291667,129.1816667 us,watauga point,Watauga Point,TN,,36.3269444,-82.2669444 co,fenicia,Fenicia,29,,4.082483,-76.366899 id,rangkiloh,Rangkiloh,01,,4.2406,96.0683 pk,baghia,Baghia,05,,25.755476,68.467662 ht,tutoi,Tutoi,09,,19.7666667,-72.3833333 us,gill hall,Gill Hall,PA,,40.2991667,-79.9622222 cd,sompo,Sompo,00,,-4.766667,26.216667 au,jupiter creek,Jupiter Creek,05,,-35.133333,138.766667 ve,moporo,Moporo,20,,8.2833333,-71.9166667 de,dromersheim,Dromersheim,08,,49.916667,7.966667 eg,naj` az zunayqah,Naj` az Zunayqah,23,,25.3838889,32.5083333 cn,disiling,Disiling,03,,28.869475,115.368397 eg,kawm an nur,Kawm an Nur,01,,30.7291667,31.2963889 de,ramhorst,Ramhorst,06,,52.35,10.016667 id,meracang timur,Meracang Timur,30,,-6.158889,106.284167 za,bokpoortlaagte,Bokpoortlaagte,09,,-24.580341,29.173815 pk,kashmir kahul,Kashmir Kahul,02,,31.247026,69.65696 cn,baishatou,Baishatou,30,,22.691115,111.660555 gb,auchgoyle,Auchgoyle,T8,,56.116667,-5.25 jm,whitby,Whitby,04,,18.2,-77.5666667 ru,kalinintsy,Kalinintsy,90,,58.105808,55.99167 mz,noniare,Noniare,09,,-17.0508333,36.8272222 fr,le reel,Le Réel,A7,,49.627582,1.162953 es,villabanez,Villabáñez,39,,43.321189,-3.962296 ir,khersabad-e bozorg,Khersabad-e Bozorg,13,,34.4864,46.7399 mg,fasintsara,Fasintsara,02,,-20.7,47.7 cn,kaitong,Kaitong,05,62537,44.813513,123.149999 ro,tarina,Tarina,23,,47.416667,26.883333 ar,las lomas,Las Lomas,06,,-28.483108,-59.021389 th,ban krathum rai,Ban Krathum Rai,33,,14.766667,100.366667 ge,urtkhva,Urtkhva,28,,42.0333333,43.5666667 my,kampong kandang,Kampong Kandang,04,,2.1889,102.3031 bd,pandura,Pandura,81,,24.6,90.05 tr,ciknahar,Ciknahar,39,,41.95439,27.678855 ru,khomutovo,Khomutovo,25,,53.977566,35.31231 lk,mahawila,Mahawila,34,,6.4,80.0666667 ne,gamdebari koara,Gamdebari Koara,03,,13.3166667,3.0833333 kr,hongjedong,Hongjedong,11,,37.5874,126.9406 sa,al faydah,Al Faydah,02,,24.391706,45.336483 lb,chemarine,Chemarine,05,,33.6833333,35.5 ru,novoye sindrovo,Novoye Sindrovo,46,,54.345107,44.086627 in,kapuriya,Kapuriya,24,,26.936389,73.063333 pk,qutubuddi punjabi,Qutubuddi Punjabi,05,,26.493072,68.072688 us,lake shore,Lake Shore,TN,,35.9186111,-84.5119444 zr,lemfu,Lemfu,01,,-4.5666667,18.3 id,seppange 2,Seppange 2,38,,-4.6677,120.0282 ir,shahr `anbar,Shahr `Anbar,10,,32.45,47.483333 ru,primorskiy,Primorskiy,20,,53.585,103.7227 ua,pavlenkova,Pavlenkova,14,,49.705485,39.085524 ir,farzullah,Farzullah,23,,33.6759,47.8599 dz,douar ahl cadi,Douar Ahl Cadi,36,,35.4466667,-0.8422222 ir,shureh-ye pa'in,Shureh-ye Pa'in,34,,33.728642,50.314975 om,falaj sudayriyin,Falaj Sudayriyin,02,,23.7013889,56.5108333 tz,katili,Katili,24,,-8.3,31.05 ee,kaasiku,Kaasiku,07,,58.9322222,23.9108333 jm,moneymuck,Moneymuck,01,,17.75,-77.2333333 ne,babantabki,Babantabki,07,,13.7166667,9.0333333 ie,blackwater bridge,Blackwater Bridge,11,,51.85,-9.75 mx,segui,Seguí,06,,28.383333,-108.133333 ht,platonal,Platonal,07,,18.7833333,-71.85 us,millpoint,Millpoint,MD,,39.5286111,-77.6858333 cz,hostim,Hostim,78,,49.019429,15.895791 tr,firanli,Firanli,17,,39.733844,26.215901 se,knisselbo,Knisselbo,03,,61.216667,16.433333 af,meydanak,Meydanak,05,,34.77804,66.749584 cz,ullrichsgrun,Ullrichsgrun,81,,49.986207,12.480845 co,tunja,Tunja,35,,10.1,-75.25 eg,ab`adiyet el-roda,Ab`adiyet el-Roda,21,,31.0730556,30.8875 zr,mopa,Mopa,00,,2.7333333,24.75 be,mopertingen,Mopertingen,05,,50.866667,5.566667 cn,lutougou,Lutougou,32,,31.320067,105.259009 uz,nishan,Nishan,08,,38.6225,65.6869444 et,adi hak'eyti,Adi Hak'eyti,53,,13.297545,39.567982 us,advocates choice,Advocates Choice,MD,,39.6416667,-76.9833333 jp,kodagawa,Kodagawa,08,,37.15,140.266667 hk,ko tin hom,Ko Tin Hom,00,,22.45,114.1333333 ve,culebra,Culebra,14,,9.0575,-71.1608333 ir,dulniri,Dulniri,01,,36.0659,45.4506 my,kampung bukit minyak,Kampung Bukit Minyak,02,,5.819951,100.630985 id,beak daya,Beak Daya,17,,-8.5651,116.571 fr,budos,Budos,97,,44.53369,-.386902 ht,duperac,Dupérac,09,,19.6666667,-72.4833333 pk,hussain bakhsh,Hussain Bakhsh,05,,28.062997,68.14669 cd,muli-matiso,Muli-Matiso,11,,.033333,28.566667 af,jaryan,Jaryan,03,,36.223027,69.625238 cn,hetiankeng,Hetiankeng,03,,27.372593,114.578854 ua,zolotyye prudy,Zolotyye Prudy,05,,48.731456,37.024196 kr,kubaemi,Kubaemi,13,,37.381111,127.674722 se,karlshall,Karlshäll,14,,65.583333,22.066667 pk,mahbub chapara,Mahbub Chapara,04,,33.116638,71.497462 ng,guni,Guni,31,,9.8075,6.9425 kr,onnamni,Onnamni,13,,37.286944,127.134722 ru,rogalevskoye,Rogalevskoye,53,,54.348,81.5964 jp,iikuma,Iikuma,18,,31.434167,131.0375 cn,linggangdun,Linggangdun,02,,30.052778,121.315833 ng,unubi,Unubi,25,,5.96031,7.041625 gn,ouakouman,Ouakouman,13,,8.4730556,-10.0172222 ge,khevsha,Khevsha,19,,42.3930556,44.6805556 th,ban nong khon,Ban Nong Khon,75,,14.383333,105.083333 ph,gassi,Gassi,43,,8.5975,124.437778 mx,atexcac,Atexcac,21,,19.15,-98.533333 lr,maiyehn,Maiyehn,12,,7.0408333,-11.3488889 ir,div kola,Div Kola,35,,36.582,52.903 kz,baygequm,Bäygequm,14,,44.315278,66.459444 tr,sazlikoy,Sazlikoy,57,,41.722909,34.875401 id,pandaon,Pandaon,30,,-6.691667,106.644167 tz,mtoni,Mtoni,25,,-6.1333333,39.2166667 zr,tsupa,Tsupa,09,,0.65,28.8333333 bo,marcarani,Marcarani,05,,-18.05,-68.0 ci,akakomoekrou,Akakomoékrou,92,,7.44764,-3.523878 cn,taliu,Taliu,10,,38.082222,115.713333 cn,wenchuan,Wenchuan,08,,45.935169,127.1091 mx,cosolapa,Cosolapa,30,7996,18.608333,-96.675 af,khwajah chakab,Khwajah Chakab,11,,34.733127,62.639632 mm,pyinlaha,Pyinlaha,11,,23.5166667,96.5833333 kz,dzhusaly,Dzhusaly,04,,50.333333,54.85 cz,prause,Prause,83,,50.628746,14.321328 dz,douar goura,Douar Goura,07,,36.0611111,0.2908333 mw,bang,Bang,20,,-13.2166667,34.2833333 ma,ait razine,Aït Razine,47,,31.280797,-8.267045 th,ban thong tai,Ban Thong Tai,02,,18.693889,98.808056 co,la carmelita,La Carmelita,38,,10.483333,-74.816667 mq,la bonnie,La Bonnie,00,,14.6333333,-60.9333333 id,sarinembah,Sarinembah,26,,3.1009,98.3196 mz,iuane,Iuane,03,,-22.5877778,34.3713889 se,sundet,Sundet,15,,59.916667,14.95 ao,elisa,Elisa,01,,-13,14.266667 ci,pehoin,Péhoin,88,,6.001302,-5.596787 fr,malay-le-grand,Malay-le-Grand,A1,,48.175886,3.341891 cn,jinxian nongchang,Jinxian Nongchang,19,,39.271693,121.762223 ir,kindar,Kindar,04,,26.35,60.716667 al,zall-xhuxhe,Zall-Xhuxhë,48,,41.9475,20.1636111 be,boxbergheide,Boxbergheide,05,,50.966667,5.45 cz,ctverin,Ctverin,83,,50.592814,15.100077 af,kohnehqal`eh,Kohnehqal`eh,14,,35.003409,69.379744 id,baja kuning,Baja Kuning,26,,3.934,98.4291 es,roblelacasa,Roblelacasa,54,,41.074136,-3.326384 sy,ed djini,Ed Djini,10,,35.1666667,37.45 lv,baltini,Baltini,24,,56.6333333,27.0166667 ru,tally buly,Tally Buly,73,,54.75,53.266667 cn,diananzhen,Diananzhen,04,,31.974722,120.601213 af,tarakhchi,Tarakhchi,07,,36.024722,64.758611 ph,matina,Matina,C3,,7.044722,125.568056 id,mburak,Mburak,18,,-8.591,119.8507 be,respelt,Respelt,06,,49.883333,5.466667 ph,segaboy,Segaboy,26,,6.654131,126.072682 ir,tavakkolabad,Tavakkolabad,42,,36.94508,58.412423 id,krambetan,Krambetan,07,,-7.522778,110.151944 us,batto,Batto,CA,,38.2836111,-122.4358333 br,sitio sao pedrinho,Sítio São Pedrinho,27,,-25.023132,-48.5625 gb,tre-newydd,Tre-Newydd,Y8,,52.516667,-3.3 fr,saint-martin-en-biere,Saint-Martin-en-Bière,A8,,48.436551,2.56679 ru,muzhigort-pugar,Muzhigort-Pugar,87,,65.45,65.183333 mz,porto velho,Porto Velho,06,,-16.7333333,39.25 ng,tswa,Tswa,26,,7.35,8.716667 mm,kyibin,Kyibin,03,,17.2166667,94.9666667 no,havoysund,Havøysund,05,1149,71.000556,24.696111 af,ispibedi-sufla,Ispibedi-Sufla,41,,34.316111,66.028333 my,rumah galod,Rumah Galod,11,,1.75,111.816667 fr,villentiere,Villentière,A3,,48.070399,1.481615 bg,popovtsi,Popovtsi,58,,42.5333333,23.7 zm,azere,Azere,06,,-14.1,31.8833333 no,egedal,Egedal,09,,68.112778,15.493333 ee,kokhatu,Kokhatu,01,,59.1605556,24.5338889 pl,sokolowo,Sokolowo,81,,54.112984,22.781122 do,la corsa,La Corsa,03,,18.1666667,-71.1166667 sv,san gregorio,San Gregorio,02,,13.9166667,-88.55 mk,podrzi konj,Podrzi Konj,52,,42.3072222,22.2633333 af,shebar,Shêbar,08,,33.293538,67.228679 ir,lekheyzer,Lekheyzer,15,,32.087,48.0968 lt,darguziai,Darguziai,57,,55.15,24.1833333 ao,muchapo,Muchapo,14,,-11.7,20.85 mm,kyatkon,Kyatkon,09,,17.2,96.2166667 ug,paloga,Paloga,84,,3.5833333,32.95 id,kalomba,Kalomba,22,,-5.0207,122.7857 af,duav,Duav,09,,34.574764,66.233643 id,badjulmati,Badjulmati,08,,-7.925,114.386389 id,kampoengdoea 1,Kampoengdoea 1,30,,-6.2461,106.9613 ir,dahu,Dahu,29,,30.773954,56.713969 ar,colonia velez,Colonia Velez,08,,-31.866667,-58.85 in,unhel,Unhel,35,15838,23.333333,75.566667 ru,krasnoye sushchevo,Krasnoye Sushchevo,83,,56.184466,40.403108 ru,agrafenovka,Agrafenovka,25,,54.211049,35.77111 ir,sar dasht-e kalus,Sar Dasht-e Kalus,05,,30.677061,51.470631 bd,south kanaipur,South Kanaipur,81,,23.1,90.25 pk,sawari,Sawari,05,,26.958576,68.610861 ng,fatuma,Fatuma,31,,9.666667,5.3 af,dewalak,Dewalak,07,,35.303905,65.240738 ye,shaikh othman,Shaikh Othman,02,,12.8755556,44.9972222 cn,nanchen,Nanchen,03,,29.05707,116.818056 us,east berlin,East Berlin,CT,,41.6183333,-72.7141667 hr,mandic dol,Mandic Dol,14,,44.5652778,15.93 co,tierra nueva,Tierra Nueva,38,,10.752769,-74.312975 ru,poteryayevka,Poteryayevka,08,,55.866667,58.616667 ng,bantu,Bantu,32,,7.605833,3.956389 in,paiguri,Paiguri,28,,26.516667,88.733333 kh,phumi sre-russei,Phumi Sre-Russei,17,,14.0333333,106.2833333 tr,guzyurdu,Güzyurdu,28,,40.610496,38.236545 ir,seyu khosavi hajj `ali,Seyu Khosavi Hajj `Ali,43,,38.150536,57.1471 fr,bussy-la-pesle,Bussy-la-Pesle,A1,,47.264882,3.474341 ph,villa marso,Villa Marso,31,,16.724,121.4672 id,gunungdangean,Gunungdangean,08,,-7.8167,111.5484 mz,chefe nhacodue,Chefe Nhacóduè,03,,-24.7083333,34.7988889 pe,uraypampa,Uraypampa,08,,-14.2652778,-71.2413889 lk,nahitiya,Nahitiya,33,,6.7,80.5333333 pk,jafarwala,Jafarwala,04,,29.642701,71.262738 th,ban bang kra son,Ban Bang Kra Son,36,,14.2,100.566667 mx,rancho el meco,Rancho El Meco,19,,25.616667,-98.983333 co,todosantos,Todosantos,29,,3.979378,-76.233763 at,hochrindl,Hochrindl,02,,46.860556,13.998333 cn,qujian,Qujian,30,,21.396093,110.53545 at,greisingberg,Greisingberg,04,,48.35,14.566667 id,dawungan,Dawungan,07,,-7.483056,110.961667 th,khun kadhing,Khun Kadhing,58,,10.466667,99.116667 ru,karsovo,Karsovo,77,,56.842624,34.627098 ru,kutsiy kordon,Kutsiy Kordon,04,,51.433333,79.95 pk,kumowala,Kumowala,04,,30.5125,71.029167 pg,sui,Sui,06,,-8.8166667,143.3833333 id,boang,Boang,41,,-2.6417,118.8385 gb,skipton,Skipton,J7,,53.966667,-2.016667 ir,goveh,Goveh,28,,32.963849,49.738808 ml,tenefina,Ténéfina,03,,12.9266667,-8.9661111 ir,`ali yebnel hosein,`Ali Yebnel Hosein,15,,32.313889,48.275 cd,disaya,Disaya,03,,-5.670833,22.741389 co,miraflores,Miraflores,35,,10.209992,-75.466519 ru,novoye volkovo,Novoye Volkovo,47,,55.76812,36.23312 id,le masin,Le Masin,01,,5.5174,95.8393 se,klippingsbo,Klippingsbo,09,,56.533333,15.683333 pl,slonowice,Slonowice,82,,54.389216,16.906003 vn,lang huu lan,Lang Huu Lan,11,,21.216667,106.083333 my,kampong gepu,Kampong Gepu,05,,2.9151,102.0791 bg,todurets,Todurets,46,,42.9,25.4833333 bi,ngara,Ngara,18,,-3.1230556,30.3233333 zr,bosandjo,Bosandjo,02,,1.9,21.2166667 ru,khnas,Khnas,49,,68.6,29.016667 sy,`amar saghir,`Amar Saghir,01,,36.8666667,41.1833333 cn,chingyang,Chingyang,26,,34.53,108.834167 es,ermita del castellar,Ermita del Castellar,52,,41.781745,-1.054957 bd,west laksmipur,West Laksmipur,80,,23.6166667,90.9166667 ee,naartse,Naartse,11,,58.6241667,24.2594444 id,bojonghaleuang dua,Bojonghaleuang Dua,30,,-6.863611,107.455278 cn,uljir,Uljir,20,,42.4,120.3 rw,butamwa,Butamwa,09,,-2.0266667,30.0258333 hu,katonatanya,Katonatanya,18,,47.883333,22.566667 in,nagla harchandi,Nagla Harchandi,36,,26.8524,79.2175 pg,kadowa,Kadowa,06,,-9.1333333,142.9333333 cn,dongshan,Dongshan,12,,29.935052,115.691089 kp,chomoktong,Chomoktong,07,,38.3275,125.8516667 td,birkeli,Birkéli,12,,11.3166667,22.5666667 cn,amacha,Amacha,06,,35.867319,102.590056 es,torralba de ribota,Torralba de Ribota,52,,41.41803,-1.684287 eg,fowa,Fowa,21,63310,31.2025,30.5472222 lk,tiyambara-ambe,Tiyambara-ambe,29,,7.1,80.5166667 bi,nyamazi,Nyamazi,05,,-3.2244444,29.6488889 cn,huojiawu,Huojiawu,30,,23.488354,115.306599 by,ostroshitskiy gorodok,Ostroshitskiy Gorodok,06,,54.0666667,27.7 by,zhukovy borek,Zhukovy Borek,06,,53.5333333,26.5833333 mw,fundi,Fundi,08,,-9.7333333,33.9166667 ir,seh konar,Seh Konar,22,,29.366667,51 ru,karasul,Karasul,78,,56.308313,68.932664 id,jereside,Jereside,18,,-8.8714,120.8834 za,dikgaleslokasie,Dikgaleslokasie,09,,-23.716667,29.783333 us,arcilla,Arcilla,CA,,33.7833333,-117.4786111 us,acworth,Acworth,GA,19852,34.0658333,-84.6769444 iq,sayyid mutlak,Sayyid Mutlak,14,,31.7666667,47.1 pk,bagluta,Bagluta,06,,33.995216,73.532073 ir,chaleqan,Chaleqan,29,,28.2343,56.918 lr,gbonyea,Gbonyea,05,,7.5061111,-9.5569444 in,gokarn,Gokarn,19,,14.55,74.316667 pk,basti tibba kamdar,Basti Tibba Kamdar,04,,28.281886,70.130075 id,pasaran,Pasaran,08,,-7.8995,113.8451 mx,carpintero,Carpintero,13,,20.6,-98.566667 pe,pullao,Pullao,12,,-11.0088889,-75.7363889 mz,toboa,Toboa,05,,-18.2780556,35.9127778 tg,mayondi,Mayondi,08,,6.8333333,0.55 us,rehoboth,Rehoboth,NC,,36.3433333,-77.3763889 vn,kouan tion,Kouan Tion,17,,22.716667,104.4 gb,ifield,Ifield,P6,,51.116667,-.2 ir,katuhing,Katuhing,11,,26.7112,57.8667 pk,zhuil,Zhuil,07,,36.830091,73.552392 ua,smely,Smely,16,,47.6,32.233333 kp,uamni,Uamni,07,,38.5258333,126.3908333 ro,bortos,Bortos,28,,46.6,26.033333 ve,el valle,El Valle,20,,7.7822222,-72.27 ng,iyedame,Iyedame,36,,5.387089,6.45108 ua,staraya guta,Staraya Guta,21,,52.307493,33.797828 cn,xipuzi,Xipuzi,19,,40.140352,122.569799 cn,dibei,Dibei,04,,32.07021,121.46471 us,cavour,Cavour,SD,,44.3700000,-98.0375000 jp,urasoe,Urasoe,47,110284,26.259023,127.730124 vn,kouei lac,Kouei Lac,02,,21.966667,105.783333 pl,hartigswalde,Hartigswalde,85,,53.535655,20.67755 ca,ravendale,Ravendale,11,,53.55,-103.416667 zm,mukubela,Mukubela,05,,-15.45,27.95 id,lebakkoneng,Lebakkoneng,33,,-6.9609,106.3646 nl,bingerden,Bingerden,03,,51.98986,6.104342 vn,phi to,Phi To,23,,11.766667,108.116667 kr,wonchon,Wonchon,17,,36.3444,126.9351 us,mallard cove,Mallard Cove,NH,,43.5619444,-71.4838889 af,nawure sam,Nawure Sam,08,,34.021648,67.526367 af,mulayanukala,Mulayanukala,36,,33.426514,68.873833 af,multan,Multan,23,,31.227778,67.448056 la,ban hatpe,Ban Hatpé,09,,15.716667,106.816667 et,bayloge,Bayloge,46,,12.683333,37.666667 th,ban huai rai,Ban Huai Rai,07,,17.866667,100.05 hr,grabar,Grabar,05,,45.7666667,15.5333333 id,rowobelang,Rowobelang,07,,-6.949569,109.736089 br,lajeado,Lajeado,15,,-19.166667,-48.7 ve,graterolacho,Graterolacho,05,,8.2844444,-69.1883333 cn,fujunmiao,Fujunmiao,28,,38.95,116.9 in,ramtek,Ramtek,37,,21.483333,83.116667 tr,kirca,Kirca,20,,37.478798,29.347179 mx,ejido los timones,Ejido Los Timones,28,,25.95,-97.666667 kp,kumsangol,Kumsangol,06,,38.1102778,126.1705556 cn,zhubgyai,Zhubgyai,14,,32.5,78.5 ru,petropavlovka pervaya,Petropavlovka Pervaya,39,,55.6799,95.7374 us,big ridge,Big Ridge,NC,,35.2063889,-83.0900000 cn,tianjingba,Tianjingba,32,,31.693479,105.407194 af,anjeh,Anjeh,09,,33.8155,64.586442 jp,juyonsen,Juyonsen,12,,45.033333,142.1 ye,qusaibah,Qusaibah,04,,15.7833333,48.4333333 cn,xianghuatai,Xianghuatai,11,,27.701667,111.853056 be,truielingen,Truielingen,04,,50.683333,5.133333 at,galmist,Galmist,08,,47.216667,9.583056 cn,dazi fang,Dazi Fang,19,,40.009738,122.528584 us,alkol,Alkol,WV,,38.1627778,-81.9250000 id,brodjan,Brodjan,07,,-7.301944,110.472222 et,assaente,Assaente,53,,14.351792,38.529651 cn,yanglou,Yanglou,25,,35.876667,116.288611 mx,santa cruz,Santa Cruz,10,,23.916667,-104.5 ir,firuzeh,Firuzeh,13,,34.579,46.5813 de,rehhorst,Rehhorst,10,,53.883333,10.466667 bg,etur,Etur,46,,42.8166667,25.35 us,holts corner,Holts Corner,TN,,35.6925000,-86.6933333 in,harjapur khurd,Harjapur Khurd,36,,27.1642,79.3492 et,amed guya,Amed Guya,46,,10.316667,39.55 rs,barjaktar mahala,Barjaktar Mahala,00,,42.361944,20.928611 br,sitio bernardino neneve,Sítio Bernardino Neneve,18,,-25.992231,-49.205912 af,bish kappah,Bish Kappah,24,,37.14564,68.828937 mx,isla de las palomas,Isla de las Palomas,25,,24.610833,-107.8825 ec,cabano,Cabano,22,,0.1291667,-77.4138889 us,christian hollow,Christian Hollow,NH,,43.0366667,-72.3900000 br,videu,Videu,06,,-4.7,-40.066667 rs,fehertelep,Fehértelep,00,,44.941111,21.125 ma,jadmiene,Jadmiene,54,,35.221101,-2.967548 de,koitzsch,Koitzsch,13,,51.266667,13.966667 mm,yebein,Yebein,07,,20.05,94.3166667 de,uchtenhagen,Uchtenhagen,14,,52.783333,11.85 id,alale,Alale,34,,.5312,123.1637 ru,bolshaya yukhta,Bolshaya Yukhta,63,,58.266667,125.433333 cd,kalole-mapepo,Kalole-Mapepo,12,,-3.683333,27.366667 tr,kadiliturk,Kadiliturk,19,,40.078063,34.521264 ir,paquk,Paquk,29,,30.386231,57.548333 sn,belel babo,Bélel Babo,10,,14.1333333,-14.7 id,labu sumbawa,Labu Sumbawa,17,,-8.483333,117.416667 cd,boyakoko,Boyakoko,00,,3.183333,20.533333 ir,emamzadeh darb ahani,Emamzadeh Darb Ahani,07,,30.116667,51.55 af,wurgash,Wurgash,05,,34.7175,67.843889 cn,houzuizi,Houzuizi,26,,36.987585,107.424362 cn,gongdian,Gongdian,09,,33.662548,113.435207 ro,valea lui antaloc,Valea lui Antaloc,20,,46.566667,25.983333 hr,ognilo,Ognilo,08,,44.5102778,15.1091667 ua,yasnaya gorka,Yasnaya Gorka,05,,48.774209,37.553979 id,lamin,Lamin,14,,1.016667,116.866667 us,doniphan,Doniphan,KS,,39.6416667,-95.0805556 th,ban hai,Ban Hai,06,,18.78,99.635 cn,huanglongpu,Huanglongpu,15,,34.35,101.016667 de,gross tarup,Groß Tarup,10,,54.783333,9.483333 de,morgenrothe,Morgenröthe,13,,50.45,12.516667 de,neufahrn in niederbayern,Neufahrn in Niederbayern,02,,48.733333,12.183333 ro,rasova,Rasova,19,,45.05,23.183333 tr,akbaslar,Akbaslar,55,,41.092404,36.390025 id,klapanoenggal,Klapanoenggal,33,,-6.3788,105.9703 ph,upper klinan,Upper Klinan,70,3768,6.227222,125.120833 cr,poas,Poás,08,,9.872189,-84.099557 id,panjarang,Panjarang,07,,-7.4362,108.8289 ir,daniyan,Daniyan,34,,33.659033,50.011964 it,vendoglio,Vendoglio,06,,46.178889,13.152778 cn,jinxianhu,Jinxianhu,11,,29.078122,109.391458 af,serija-i-bala,Serija-i-Bala,09,,34.361973,64.433266 ir,idahlu-ye kuchek,Idahlu-ye Kuchek,33,,37.1704,46.3358 na,emeritus,Emeritus,29,,-23.0,15.7166667 ru,barabasheva-levada,Barabasheva-Levada,59,,44.7585,131.4203 se,prestesam,Prestesäm,28,,58.716667,11.283333 id,poelogadoeng,Poelogadoeng,04,,-6.1827,106.906 af,navi-vasivusu,Navi-Vasivusu,27,,34.298639,67.674003 us,bloom junction,Bloom Junction,OH,,38.8058333,-82.6927778 tr,yukarikoy,Yukarikoy,57,,41.922585,34.571022 at,stiftungsberg,Stiftungsberg,04,,48.483333,14.6 br,sitio gauchos,Sítio Gaúchos,26,,-26.23199,-49.6882 es,la china,La China,57,,38.912982,-6.011314 ru,vasyushino,Vasyushino,77,,57.991854,36.952703 mm,sinhakaung,Sinhakaung,03,,17.2833333,95.2666667 ru,yenyki,Yenyki,33,,57.9975,47.5153 at,wiesberg,Wiesberg,04,,47.95,13.9 lt,patumsiai,Patumsiai,63,,55.8666667,22.6166667 cy,klavdhia,Klavdhia,03,,34.8916667,33.5125 ba,orceve vode,Orceve Vode,02,,43.7497222,18.5066667 sy,el aodje,El Aodjé,12,,35.6166667,37.0166667 br,marcolino moura,Marcolino Moura,05,,-13.583333,-41.716667 id,bulutigo,Bulutigo,08,,-7.0116,112.2704 sl,bonkomataka,Bonkomataka,02,,8.6333333,-12.0666667 ng,ososa,Ososa,16,,6.794565,3.855986 td,nangda,Nangda,14,,9.2,16.5166667 pk,satai,Satai,03,,34.886188,73.079514 ir,zavoleh-ye sofla,Zavoleh-ye Sofla,13,,34.5023,46.2819 us,green landing,Green Landing,MD,,38.8058333,-76.7088889 id,singasari,Singasari,07,,-7.392778,109.176111 gy,muriakundi,Muriakundi,11,,7.1666667,-60.1333333 us,tatesville,Tatesville,PA,,40.0597222,-78.3575000 cz,nova dlouha ves,Nova Dlouha Ves,87,,49.191817,13.501626 my,tai ton,Tai Ton,11,,1.4,110.133333 lv,skaistkalne,Skaistkalne,04,,56.3822222,24.6455556 id,gedari,Gedari,07,,-6.676,111.502 se,norra langstad,Norra Långstad,22,,59.483333,13.016667 ar,la quebrada,La Quebrada,22,,-26.245562,-64.117842 kr,ryobunri,Ryobunri,13,,37.99669,127.25995 ru,krasnoarmeyskoye,Krasnoarmeyskoye,CI,,43.130527,45.537908 th,ban tabaeng,Ban Tabaeng,27,,15.05,102.366667 id,kalembumete,Kalembumete,18,,-9.6484,119.0237 es,curiel de duero,Curiel de Duero,55,,41.643273,-4.101102 kr,tulmaul,Tulmaul,14,,35.645759,128.657568 fr,torville,Torville,A3,,48.207729,2.150918 fi,kockas,Kockas,15,,63.416667,22.35 ma,douar tekerat,Douar Tekerat,47,,31.703029,-9.233518 pl,oborniki,Oborniki,86,17915,52.647394,16.814061 id,lahglang,Lahglang,08,,-7.8956,112.6325 ru,maloye zagorye,Maloye Zagorye,77,,58.203653,35.485729 th,ban non pho,Ban Non Pho,76,,17.087945,102.604361 pk,basti sahibwali,Basti Sahibwali,04,,28.77224,70.805144 pe,azocaya,Azocaya,04,,-15.7994444,-73.9588889 rs,doberdupi,Dobërdupi,00,,42.641667,21.060833 de,klussendorf,Klüssendorf,12,,53.85,11.4 kr,seishinri,Seishinri,14,,36.183333,129.4 tw,tungpanchuang,Tungpanchuang,04,,23.7,120.3833333 ru,tempy,Tempy,38,,46.031944,40.108333 ir,boneh-ye dust mohammad,Boneh-ye Dust Mohammad,15,,32.9316,48.3467 af,qowl,Qowl,13,,34.488862,69.254224 gb,butterton,Butterton,N1,,53.1,-1.883333 mn,khotontuyn khure,Khotontuyn Khure,01,,47.3666667,102.4333333 pt,silvaescura,Silvaescura,02,,40.766667,-8.383333 sk,male kapusany,Male Kapusany,03,,48.55,22.0666667 id,seleseh,Seleseh,26,,3.6136,98.4145 ao,camisamba,Camisamba,14,,-12,19.333333 us,pondtown,Pondtown,MD,,39.2138889,-75.9133333 de,winkels,Winkels,05,,50.55,8.183333 us,worthington heights,Worthington Heights,MD,,39.5277778,-76.3227778 gn,keoulendougou,Kéoulendougou,24,,7.9094444,-8.6019444 bg,rawna,Rawna,61,,43.2166667,27.35 my,kampung tandoi,Kampung Tandoi,16,,5.4986,115.819 ve,playa grande,Playa Grande,15,,10.0338889,-66.0875 ge,zhamushi,Zhamushi,36,,43.0486111,42.8113889 hn,tisate,Tisate,15,,15.25,-85.85 so,mungheio,Mungheio,06,,2.4333333,41.4 za,elandsbaai,Elandsbaai,11,,-32.314015,18.34413 af,pusta-i-goli,Pusta-i-Goli,05,,34.523333,67.143889 ir,tang bala,Tang Bala,05,,31.359404,50.331513 mg,mevaloka,Mevaloka,03,,-15.9833333,48.4833333 ao,chirolo,Chirolo,01,,-12.733333,13.8 ao,chinjambata,Chinjambata,01,,-12.442707,14.736516 ro,povargina,Povargina,02,,45.883333,22.133333 ru,blinovo,Blinovo,45,,56.980223,47.848968 ie,savagetown cross roads,Savagetown Cross Roads,27,,52.1822222,-7.3008333 gh,klodosukorpe,Klodosukorpe,08,,6.05,0.35 ro,androchel,Androchel,33,,45.933333,24.466667 gb,burghfield,Burghfield,P4,,51.4,-1.033333 pk,lahuch thal,Lahuch Thal,04,,30.918988,71.133856 mm,kalagwe,Kalagwe,11,,22.5166667,96.5166667 cn,majiatai,Majiatai,26,,34.882685,107.02122 id,lonklieng,Lonklieng,01,,5.3837,95.5346 kr,nasanni,Nasanni,17,,36.15,126.933333 kr,hwasori,Hwasori,16,,34.734444,126.604167 md,retyany,Retyany,84,,47.811667,27.251667 sl,gabweba,Gabweba,03,,8.2166667,-11.55 ir,garakan,Garakan,34,,34.410473,49.524475 mg,beseva,Beseva,06,,-24.1166667,45.0166667 il,peduyyim,Peduyyim,01,,31.327141,34.611893 af,wulgay kalay,Wulgay Kalay,23,,32.370996,65.955819 co,los garabatos,Los Garabatos,17,,10.532301,-72.949387 ir,mayan-e pa'in,Mayan-e Pa'in,42,,36.2543,59.4054 ga,mfoume,Mfoumé,03,,-0.1833333,10.7166667 ir,bandbon,Bandbon,35,,36.494543,51.161733 bo,jujuni,Jujuni,05,,-18.7,-68.1166667 ru,shabalino,Shabalino,71,,57.786441,65.528196 de,rampertshof,Rampertshof,02,,49.6,11.35 us,cedar cove estates,Cedar Cove Estates,AL,,33.4408333,-86.3113889 us,cardell,Cardell,GA,,33.7863889,-84.5388889 ru,bor,Bor,25,,54.90387,36.98808 in,panuva,Panuva,24,,23.833333,73.4 us,bennett corners,Bennett Corners,NH,,43.8275000,-71.3283333 id,meteng laok,Meteng Laok,08,,-7.1449,113.3375 kh,phumi trapeang kouk,Phumi Trapeang Kouk,04,,11.1333333,104.6333333 mx,canuc,Canuc,05,,16.916667,-92.483333 ru,ivanov,Ivanov,51,,57.0987,44.0411 lt,neshakuchyay,Neshakuchyay,63,,55.95,22.0833333 my,kampung tembok baharu,Kampung Tembok Baharu,13,,5.1323,103.0839 au,lake boga,Lake Boga,07,,-35.46299,143.632584 id,balandongan kulon,Balandongan Kulon,30,,-6.825556,107.0575 mx,rancho genaro,Rancho Genaro,07,,27.666667,-102.6 hn,el llano del chapulin,El Llano del Chapulín,08,,13.6933333,-87.1897222 pl,miasteczko,Miasteczko,86,,53.098597,17.006444 cn,luojiazhuang,Luojiazhuang,25,,36.68,118.073889 ua,piznopaly,Piznopaly,02,,51.941433,30.909635 gh,nuwenu,Nuwenu,08,,6.3666667,0.8333333 nl,helden,Helden,05,19787,51.32322,6.002627 si,slaptinci,Slaptinci,09,,46.5672222,16.0483333 ru,kurnakovo-lipovka,Kurnakovo-Lipovka,61,,48.684879,40.643389 ru,laninka,Laninka,62,,54.092222,39.721667 cn,yuhetang,Yuhetang,11,,26.309444,111.684167 pk,goth haji nasari,Goth Haji Nasari,02,,28.615803,68.72005 my,kampong seri melenggang,Kampong Seri Melenggang,05,,2.5069,102.1218 mm,wan tasu,Wan Tasu,11,,22.05,99.1 ba,ograda,Ograda,02,,42.9322222,18.135 kr,wissambae,Wissambae,06,,37.5897,128.0197 eg,abbasa,Abbâsa,23,,25.9,32.7833333 us,lenox dale,Lenox Dale,MA,,42.3361111,-73.2458333 th,king amphoe suwannaphum,King Amphoe Suwannaphum,25,,15.60348,103.802067 fi,nummensyrja,Nummensyrjä,13,,60.4875,24.856389 nl,strijp,Strijp,06,,51.332101,5.542713 my,kampong suak plang,Kampong Suak Plang,07,,4.8688,101.0551 zr,futuyi,Futuyi,03,,-6.95,24.3666667 ph,dalagan,Dalagan,41,,12.946007,121.496916 pl,waltershoh,Waltershoh,85,,53.864525,22.572663 za,huntley,Huntley,03,,-29.195177,26.1771 id,arongan,Arongan,01,,4.0612,96.2644 cn,hongxing gongshe,Hongxing Gongshe,14,,29.203,91.703 id,randusan,Randusan,07,,-7.574444,110.861389 in,mandangarh,Mandangarh,16,,17.983333,73.25 ro,cariera carpitus ii,Cariera Carpitus II,15,,46.15,25.866667 id,gapurosukolilo,Gapurosukolilo,08,,-7.1612,112.6571 pl,przywozki,Przywozki,78,,52.382449,22.199693 cn,dunpenggai,Dunpenggai,14,,32.1,93.6 by,biala,Biala,03,,54.45,26.4833333 cn,huagong,Huagong,02,,30.103737,120.757186 cn,mochilong,Mochilong,12,,29.704384,114.967239 bd,purba chandpur,Purba Chandpur,83,,24.75,88.2833333 ro,bousoru,Bousoru,26,,44.6,23.65 lb,wadi al ammin,Wadi al Ammin,05,,33.9,35.8 vn,dong quan,Dong Quan,68,,21.846443,105.351677 cn,puwu,Puwu,15,,34.074353,103.627048 mm,chaungdwin,Chaungdwin,03,,16.3,95.6833333 kz,ak-chiy,Ak-Chiy,15,,48.333333,84.4 ua,borusuv,Borusuv,15,,49.52243,24.204439 fr,la papiniere,La Papinière,B5,,47.075827,-1.077979 ru,bochkarevo,Bochkarevo,05,,50.95,128.45 cn,jijiahe,Jijiahe,21,,35.701177,105.794197 sy,husayniyah,Husayniyah,01,,36.7725,41.3575 br,ribeirao chelter,Ribeirão Chelter,26,,-26.8577,-49.1814 ua,sokolki,Sokolki,18,,49.028531,34.143348 ru,hiirela,Hiirela,42,,60.289101,29.919033 bf,pwedgo,Pwédgo,32,,12.6166667,-1.55 cn,shangkao,Shangkao,03,,28.23896,114.920814 pg,vunaiting,Vunaiting,10,,-4.2833333,151.8333333 th,ban chong khae,Ban Chong Khae,16,,15.166667,100.333333 lt,azuolaiciai,Azuolaiciai,60,,55.3333333,23.8333333 mg,vohilava ii,Vohilava II,02,,-21.6333333,47.8 ma,talat ou arabe,Talat Ou Arabe,56,,32.376152,-5.474727 ke,shanzu,Shanzu,02,,-3.9666667,39.75 ir,aq cheshmeh,Aq Cheshmeh,07,,30.4309,53.2985 ua,antonowka,Antonówka,19,,50.8,26.5 ye,`usaylan,`Usaylan,14,,15.0333333,45.8333333 cn,minzhujie,Minzhujie,12,,31.017634,113.919601 gh,akromabila number 2,Akromabila Number 2,06,,10.15,0.2333333 ee,karpla,Kärpla,13,,58.8866667,24.8630556 ru,luchanovo,Luchanovo,75,,56.35,85.05 cm,santa,Santa,07,,5.8333333,10.15 sl,bafehun,Bafehun,01,,7.8833333,-10.9166667 ir,ziar jah,Ziar Jah,04,,26.4395,61.2721 pe,congota,Congota,03,,-14.0333333,-72.1 id,gunungwuluh,Gunungwuluh,07,,-7.242222,110.016111 eg,qaryat kafr dawud,Qaryat Kafr Dawud,03,,30.365,30.3641667 sd,al kiteyyab,Al Kiteyyab,53,,17.1822222,33.7225 pk,qadar bakhsh laghari,Qadar Bakhsh Laghari,05,,24.71705,68.131208 ne,guidan moullou,Guidan Moullou,04,,14.2666667,8.0833333 de,longuich,Longuich,08,,49.8,6.783333 ba,stipanjici,Stipanjici,01,,43.7097222,17.1638889 bo,pairumani,Pairumani,07,,-19.45,-65.5 ua,moshchne,Moshchne,02,,51.512236,31.83576 au,eccleston,Eccleston,02,,-32.25,151.5 bg,ocmanlar,Ocmanlar,43,,41.5833333,25.4666667 cn,zajitong,Zajitong,32,,30.876241,100.576819 ci,boungue,Boungué,81,,7.373321,-4.934719 ar,el pueblo viejo,El Pueblo Viejo,24,,-27.214473,-65.582887 cn,liuchiayuan,Liuchiayüan,04,,32.306389,121.108333 es,acebedo,Acebedo,58,,42.922415,-6.97923 ye,khulaqah,Khulaqah,14,,13.9333333,45.2333333 pk,ganwarewala,Ganwarewala,04,,30.917753,71.156294 ru,ylasommee,Yläsommee,42,,60.603558,28.825738 mx,sante fe,Sante Fe,07,,25.9,-103.316667 it,pieve vecchia,Pieve Vecchia,10,,43.833333,12.833333 pl,wierzbica panska,Wierzbica Panska,78,,52.621547,20.182871 id,randukuning dua,Randukuning Dua,10,,-7.976667,110.6275 us,loomis,Loomis,NE,,40.4783333,-99.5066667 lv,tseraukste,Tseraukste,04,,56.3602778,24.2894444 ru,gryaznukha,Gryaznukha,67,,52.270995,45.196664 cd,kiyumbu,Kiyumbu,05,,-8.133333,25.05 pe,mullo mullo,Mullo Mullo,05,,-15.1,-73.75 id,meunasahsimpang,Meunasahsimpang,01,,5.1578,96.4794 th,ban pang ngun,Ban Pang Ngun,06,,17.703611,99.3725 no,braden,Bråden,02,,58.486667,8.840556 ir,gar sont,Gar Sont,04,,25.24572,61.191021 cn,zhongxinchang,Zhongxinchang,18,,28.024722,107.605278 ir,ozgoleh,Ozgoleh,13,,34.8324,45.8433 de,hesweiler,Hesweiler,08,,50.05,7.283333 kp,sapoiltong,Sapoiltong,03,,39.8925,127.5419444 in,elattur,Elattur,13,,11.333333,75.733333 id,cipari girang,Cipari Girang,30,,-6.931944,107.347778 af,tor wurskay,Tor Wurskay,29,,32.788611,69.326667 ru,bolshiye kuzmenki,Bolshiye Kuzmenki,76,,54.097693,37.301801 gr,ayia agathi,Ayía Agáthi,23,,39.185,21.7663889 ir,qeshlaq-e hajji khanali,Qeshlaq-e Hajji Khanali,32,,39.4005,47.848 de,krampnitz,Krampnitz,11,,52.45,13.066667 id,loeboekramo,Loeboekramo,24,,-.75,101.566667 bd,murtazapur,Murtazapur,81,,24.9166667,88.6833333 af,pasinj,Pasinj,06,,32.862351,63.877683 es,benidorme,Benidorme,60,,38.539234,-.136386 mz,cabo anhane,Cabo Anhane,03,,-23.2569444,35.3872222 id,ngambak,Ngambak,07,,-7.0984,110.6636 mx,juaja,Juaja,10,,25.916667,-103.366667 mk,bitushe,Bitushe,88,,41.6591667,20.5911111 ua,borek,Borek,19,,51.166667,26.183333 co,castrellon,Castrellón,21,,8.410278,-73.064167 in,bhagwantapur,Bhagwantapur,36,,26.9741,79.6132 kz,baygabul,Baygabul,13,,50.114444,64.989167 mx,mireles,Mireles,24,,22.15,-100.666667 kp,tandong,Tandong,11,,39.6333333,124.65 no,nedfjell,Nedfjell,04,,59.716944,10.227778 id,watugong,Watugong,08,,-7.8468,112.4759 kp,songjungni,Songjungni,15,,38.7797222,125.2744444 af,uch drag,Uch Drag,01,,36.66625,71.698763 rs,leocina,Leocina,00,,42.774722,20.659722 ua,krasnoye ozero,Krasnoye Ozero,10,,48.116667,32.7 tw,punan,Punan,04,,23.6,120.1833333 cn,yahochiao,Yahochiao,04,,31.733333,119.883333 ir,barfiyan,Barfiyan,09,,34.424662,48.264337 sn,mbayene,Mbayène,09,,14.5833333,-15.7666667 es,miranda de abajo,Miranda de Abajo,53,,28.64886,-17.788426 au,turrawan,Turrawan,02,,-30.483333,149.933333 ua,grakowo,Grakowo,07,,49.718215,36.814823 se,vuojatnjarka,Vuojatnjarka,14,,66.683333,18.733333 bd,raghupur,Raghupur,85,,23.4333333,91.2166667 lt,viyeshvile,Viyeshvile,62,,55.0741667,22.3841667 ma,mtrhoulest,Mtrhoulest,55,,30.575778,-9.311529 cn,tapuho,Tapuho,10,,39.675833,119.287778 af,haydar bandeh,Haydar Bandeh,35,,34.500472,70.31096 ng,adamu kulu,Adamu Kulu,43,,8.7,11.216667 ne,dogo dogo,Dogo Dogo,07,,12.9,9.3333333 fr,saint-privat-la-montagne,Saint-Privat-la-Montagne,B2,,49.187892,6.038319 nz,mokoreta,Mokoreta,F8,,-46.433333,169.066667 eg,az zayyatin al qibliyah,Az Zayyatin al Qibliyah,21,,31.2838889,30.7272222 id,galah,Galah,07,,-7.614167,110.612222 ro,chegea,Chegea,05,,47.466667,22.683333 ir,ameriyeh,Ameriyeh,29,,28.7946,58.8626 md,okiul-alb,Okiul-Alb,71,,48.021944,27.671667 sy,abou khreiza,Abou Khreïza,04,,36.5,38.7833333 lv,aispuri,Aispuri,14,,55.9666667,27.1666667 ng,anuma,Anuma,26,,7.29,8.9241 cu,guardarraya,Guardarraya,12,,21.1041667,-76.3233333 sy,kharab rach,Kharab Rach,01,,37.0877778,41.7602778 bo,kaquesana,Kaquesana,04,,-17.2833333,-68.6833333 zm,serenji,Serenji,05,,-13.1666667,30.9166667 ua,tulitschew,Tulitschew,02,,51.770396,31.433444 mx,tecomate,Tecomate,13,,20.658333,-98.930556 ua,bespalovka,Bespalovka,07,,49.628819,36.230662 us,symerton,Symerton,IL,,41.3286111,-88.0525000 in,gadhgaon,Gadhgaon,39,,29.955278,78.674167 cg,dakar mousolo,Dakar Mousolo,11,,-3.6397222,14.5147222 tr,demirciler,Demirciler,87,,41.585533,32.33807 pe,calvario,Calvario,08,,-14.2672222,-71.3836111 al,selcka e madhe,Selcka e Madhe,45,,40.4713889,20.0213889 mm,hatka,Hatka,11,,22.9666667,97.7666667 pg,finschhafen,Finschhafen,14,1054,-6.6,147.85 sk,vysnia revuca,Vysnia Revuca,01,,48.9,19.1666667 pk,buripa,Buripa,07,,35.623044,75.314073 tr,khakyal,Khakyal,80,,37.428889,41.6075 lv,sveiciema muiza,Sveiciema Muiza,18,,57.7025,24.3733333 ng,ekongahaku,Ekongahaku,22,,5.0569,8.6442 ro,casciorele,Casciorele,21,,43.85,28.1 md,surkicheny,Surkicheny,67,,46.622778,29.053611 zr,saint camille,Saint Camille,00,,-2.8833333,19.6 zm,chilandu,Chilandu,06,,-14.0333333,31.2666667 cn,baitaishan,Baitaishan,07,,28.010235,118.585233 bd,chanda,Chanda,80,,21.9666667,92.1333333 fr,melsheim,Melsheim,C1,,48.756967,7.521158 id,wage,Wage,38,,-4.1602,120.02 co,hacienda corral nuevo,Hacienda Corral Nuevo,38,,9.849624,-74.40121 ph,parian este,Parian Este,36,,16.533333,120.333333 dk,forum,Forum,21,,55.554126,8.474355 cn,shenji,Shenji,04,,34.023329,119.102237 cz,vinarice,Vinarice,88,,49.892384,14.097256 mx,san jacinto,San Jacinto,02,,31.45,-116.216667 es,alguena,Algueña,60,,38.339051,-1.004326 az,shaplar,Shaplar,26,,40.098333,46.059722 kp,taebaengni,Taebaengni,09,,38.5747222,127.6727778 fr,saint-julien-de-rodelle,Saint-Julien-de-Rodelle,B3,,44.497728,2.66042 lt,leikiski,Leikiski,62,,55.2666667,22.1666667 id,cianyar girang,Cianyar Girang,33,,-6.6976,106.1117 fr,vincent,Vincent,A6,,46.784585,5.490668 cn,qianming xiang,Qianming Xiang,20,,40.545,109.973333 us,rivermead mobile home park,Rivermead Mobile Home Park,CT,,41.7344444,-72.6352778 ma,el akhalalta,El Akhalalta,47,,31.292979,-8.769853 af,khwajah-ye bagh,Khwajah-ye Bagh,01,,36.911704,70.484542 id,batulelleng,Batulelleng,38,,-2.9767,119.9062 gb,burlescombe,Burlescombe,D4,,50.95,-3.316667 tz,munguru,Munguru,08,,-1.5833333,33.7333333 mx,la purisima,La Purísima,24,,21.466667,-98.916667 id,bagansoengaiperoepoek,Bagansoengaiperoepoek,37,,-.2,102.8 ph,cabimgahan,Cabimgahan,H2,,13.4917,122.5668 ye,kudah,Kudah,00,,12.3833333,53.8 pl,makowiec,Makowiec,73,,52.903698,19.236346 mz,mambone,Mambone,10,,-20.9825,33.6588889 cn,lianxi,Lianxi,03,,28.555556,115.911667 gn,dantare,Dantaré,23,,10.4166667,-12.1666667 ie,edgar's cross roads,Edgar's Cross Roads,04,,52.0980556,-8.2019444 pe,la perla,La Perla,06,,-5.8755556,-78.7780556 il,kefar argentina,Kefar Argentina,02,,31.956944,34.862222 gr,kumbalista,Kumbalísta,05,,41.1833333,23.9333333 fr,blegny,Blegny,A1,,47.670862,3.4747 mz,inrule,Inrule,09,,-15.9630556,38.3747222 af,haji 'abdul ghani kor,Haji 'Abdul Ghani Kor,29,,32.068767,68.116909 pe,limon,Limón,22,,-6.7169444,-76.2802778 lk,teppanawe ihalagama,Teppanawe Ihalagama,33,,6.7666667,80.3333333 cn,haicang,Haicang,07,,24.441371,117.989446 cn,wenzhuangzhen,Wenzhuangzhen,01,,34.391667,116.583333 af,dzhemati,Dzhemati,27,,34.642313,68.041332 sy,al burak,Al Burak,06,,33.185,36.4797222 se,spangmyra,Spångmyra,03,,61.85,16.566667 ro,suharu,Suharu,26,,44.266667,23.383333 tw,laosheliao,Laosheliao,04,,24.7666667,121.1666667 in,singheswar,Singheswar,34,,25.983333,86.8 lk,pilapitiya,Pilapitiya,36,,6.95,79.9 af,ab-e tall,Ab-e Tall,30,,36.482691,67.22071 om,hailat,Hailat,00,,20.6166667,56.9333333 id,srenseng,Srenseng,30,,-6.170556,107.174722 af,ali ser kalay,Ali Ser Kalay,23,,31.565138,67.167898 mx,manlio favio altamirano,Manlio Favio Altamirano,30,,19.1,-96.333333 ba,glozik,Glozik,02,,44.9286111,18.3475 pk,chhant,Chhant,04,,32.497577,72.949121 id,pimpihanene,Pimpihanene,39,,-2.916667,132.35 ir,chubakh,Chubakh,38,,36.6452,49.1166 vn,bo gieng,Bô Giêng,32,,20.933333,104.766667 lt,norvayshyay,Norvayshyay,61,,56.0488889,23.7358333 al,letani,Letani,43,,41.1508333,20.0533333 id,grogol sebrang,Grogol Sebrang,30,,-6.382222,106.788056 ug,nyaburama,Nyaburama,52,,0.05,30.55 lr,pola,Pola,02,,6.0333333,-8.15 pk,inayatwala,Inayatwala,04,,30.362294,71.554381 mg,ankalirano ouest,Ankalirano Ouest,06,,-24.5333333,45.7333333 es,los mimbrales,Los Mimbrales,51,,37.102253,-6.51187 lt,borkloyne,Borkloyne,60,,55.5833333,24.3333333 br,chiqueirinho,Chiqueirinho,02,,-9.566667,-36.433333 af,malezay,Malezay,39,,32.565395,65.772222 ir,charat-e `olya,Charat-e `Olya,15,,31.0461,49.3825 ca,sainte-anne-du-lac,Sainte-Anne-du-Lac,10,,46.866667,-75.316667 mx,bella union,Bella Unión,08,,18.799444,-103.833333 az,ashagy-gendob,Ashagy-Gendob,17,,41.24106,48.842863 it,montepulciano,Montepulciano,16,14389,43.083333,11.783333 id,pokawangu,Pokawangu,18,,-9.661,119.212 ir,tooghan jadid,Tooghan Jadid,16,,35.2617,47.951 ru,makhchesk,Makhchesk,68,,42.963259,43.784443 gh,aklamador number 2,Aklamador Number 2,08,,6.05,0.4666667 us,covill,Covill,MN,,47.7952778,-90.1605556 id,buloh,Buloh,07,,-6.7176,110.866 fr,pindray,Pindray,B7,,46.492167,.811527 sd,umm dorota,Umm Dorota,33,,10.8333333,25.7833333 ee,magikula,Mägiküla,08,,59.3833333,25.9 ru,yarushkino,Yarushkino,16,,55.752971,46.79167 mw,kapangama,Kapangama,20,,-13.1666667,33.9166667 ir,tawakkalabad,Tawakkalabad,04,,28.9,61.416667 cu,quemados jobosi,Quemados Jobosí,14,,22.1166667,-79.2166667 pk,sehri,Sehri,03,,34.360085,71.737848 al,zall,Zall,48,,41.8388889,19.9197222 de,bothmer,Bothmer,06,,52.7,9.6 cn,xiaoxipu,Xiaoxipu,19,,41.988411,124.50565 ph,hacienda san jose,Hacienda San Jose,B1,,10.9061,123.2903 er,boscioca,Boscioca,00,,14.9494444,37.9122222 sl,kumende,Kumende,03,,7.2,-11.7 ng,dameya,Dameya,43,,7.333333,10.516667 pk,goth goghram khan,Goth Goghram Khan,05,,25.814297,68.978356 af,pirzadaha,Pirzadaha,08,,33.511944,68.437222 fr,petit fossard,Petit Fossard,A8,,48.360003,2.957353 ro,uileacu,Uileacu,05,,47.083333,22.216667 do,arroyo prieta,Arroyo Prieta,08,,19.6,-70.2166667 de,markt indersdorf,Markt Indersdorf,02,,48.366667,11.383333 tg,dyemenyi,Dyéményi,13,,6.9333333,1.25 ph,tumalo,Tumalo,14,,17.721105,121.812748 in,kallar,Kallar,24,,27.066667,72.25 cn,tingshang,Tingshang,11,,26.621111,113.083333 ru,staryy dor,Staryy Dor,85,,59.001332,40.348603 td,bodou sailay,Bodou Saïlay,07,,13.8833333,14.25 ao,prova,Prova,06,,-10.856573,14.959139 tw,meifengli,Meifengli,04,,23.2213889,120.1908333 zm,chibombe,Chibombe,01,,-12.2333333,25.6 gb,addington,Addington,G5,,51.283333,.4 gr,souvala,Souvála,33,,38.6333333,22.5333333 ir,boneh mir,Boneh Mir,28,,32.883696,50.439547 ir,gom eshaq,Gom Eshaq,43,,36.919627,57.278359 id,tutat,Tutat,37,,.2057,101.8049 pe,sachabamba,Sachabamba,05,,-13.4666667,-74.1 tr,asa,Asa,61,,40.721467,39.88368 kz,vtoroy buyergen,Vtoroy Buyergen,06,,46.616667,49.233333 id,kesemen lor,Kesemen Lor,07,,-6.9118,109.2963 sl,jawabundeima,Jawabundeima,03,,7.7136111,-11.4941667 gh,akokoaso,Akokoaso,09,,6.15,-1.05 pk,bun,Bun,03,,35.584722,72.905556 cd,mobimbi,Mobimbi,07,,-1.723889,29.0425 us,dutch mills,Dutch Mills,IL,,37.4152778,-89.2727778 ru,chidovo,Chidovo,42,,60.146754,35.007574 de,igleinsberg,Igleinsberg,02,,49.083333,12.816667 ir,chogha sera,Chogha Sera,09,,34.3152,48.0489 cn,shengbei,Shengbei,02,,30.249722,121.34 af,durjay,Durjay,41,,33.276024,65.539027 id,kedungnongko,Kedungnongko,08,,-7.2756,111.7703 kp,sinjuktong,Sinjuktong,01,,40.3666667,126.5166667 ar,crispi,Crispi,21,,-31.739815,-62.037663 sn,ngouye siouarh,Ngouye Siouarh,10,,14.0833333,-14.9 co,cestillal,Cestillal,02,,6.853103,-76.073677 cn,xiantang,Xiantang,30,,21.818147,110.974208 af,juleyn,Juleyn,14,,35.118011,69.672318 na,numkaup,Numkaup,34,,-18.6,19.6833333 id,tjiranggon,Tjiranggon,30,,-6.291111,107.366111 ng,ajogun,Ajogun,32,,7.766667,4.266667 pt,cardeal,Cardeal,11,,40.367146,-7.02873 ru,sergino,Sergino,53,,55.473236,77.498739 tr,kiranisik,Kiranisik,45,,38.8,28.35 ye,beni bada,Beni Bada,11,,14.9666667,44.6 tw,shoufeng,Shoufeng,04,,23.8666667,121.5 ru,goritten,Göritten,23,,54.592222,22.607778 ua,babyna dolyna,Babyna Dolyna,23,,48.909562,28.242893 us,bluejacket,Bluejacket,OK,,36.7997222,-95.0708333 pk,rauwala,Rauwala,04,,30.069028,70.632882 us,summit,Summit,KY,,37.5688889,-86.0811111 us,sycamore,Sycamore,GA,,31.6741667,-83.6375000 pg,misinki,Misinki,12,,-4.7,144.6666667 au,coombell,Coombell,02,,-29.016667,152.966667 us,bliss corners,Bliss Corners,RI,,41.6263889,-71.1452778 id,tegalkarang,Tegalkarang,30,,-6.686389,108.4275 id,fotjatobaroe,Fotjatobaroe,29,,.116667,127.883333 jp,ashitaka,Ashitaka,37,,35.116667,138.833333 mm,woretu,Woretu,04,,24.6833333,96.85 pk,marmanian,Marmanian,03,,34.248211,72.989707 cg,dzio-dzio,Dzio-Dzio,11,,-3.4925,15.3091667 cn,fengzao,Fengzao,03,,27.530687,117.064538 id,kampung baru dua,Kampung Baru Dua,26,,3.4896,98.5999 es,caserio riomalo de abajo,Caserío Ríomalo de Abajo,57,,40.404721,-6.085138 ar,mar chiquita,Mar Chiquita,05,,-30.8,-62.883333 th,ban ongkharak,Ban Ongkharak,43,,14.090167,100.981139 ru,sredniye pykhti,Sredniye Pykhti,80,,57.75,54.033333 mx,carrizillo media luna,Carrizillo Media Luna,22,,21.066667,-99.655556 de,stammersfelde,Stammersfelde,12,,53.816667,13.433333 ru,kondushi-kostiyeva,Kondushi-Kostiyeva,42,,60.833333,33.433333 cz,zbozicko,Zbozicko,88,,50.226448,14.939545 cn,shuangchiao,Shuangchiao,11,,26.711389,112.031944 gn,diariguila,Diariguila,19,,10.6,-9.9666667 cn,lungshou,Lungshou,26,,35.610833,109.305 af,khoshi,Khoshi,17,,33.998889,69.211944 ir,nasram deh,Nasram Deh,28,,33.2505,52.5766 ir,mivar,Mivar,32,,38.293889,47.693889 de,riekdahl,Riekdahl,12,,54.083333,12.183333 fr,gesponsart,Gesponsart,A4,,49.821715,4.828497 pl,kartuzy,Kartuzy,82,15002,54.333333,18.2 ru,salskiy,Salskiy,59,,45.966667,133.766667 se,hallen,Hallen,23,,63.666667,19.65 gn,dilafoundou,Dilafoundou,26,,11.9333333,-9.6166667 co,la hondura,La Hondura,16,,2.576473,-75.786158 ba,lokvice,Lokvice,02,,42.7733333,18.2144444 id,umbuljaya,Umbuljaya,33,,-6.2692,106.2653 id,lajulaju,Lajulaju,38,,-4.6737,120.2717 us,gill,Gill,NC,,36.2658333,-78.4083333 ru,bagryazh nikolskiy,Bagryazh Nikolskiy,73,,54.95647,51.601246 md,beliyesht',Beliyesht',89,,47.214167,28.664167 tr,basviran,Basviran,63,,37.408267,38.830905 kr,alto,Alto,14,,35.714116,128.296825 be,lippenhove,Lippenhove,08,,50.883333,3.8 th,ban samnak o,Ban Samnak O,68,,6.485917,100.779778 mx,comaltepec,Comaltepec,30,,18.083333,-94.883333 ir,nugar,Nugar,04,,26.052156,59.4386 al,rrashbulli arapaj,Rrashbulli Arapaj,42,,41.3227778,19.5102778 ir,kalateh-ye mohammad yazdi,Kalateh-ye Mohammad Yazdi,42,,37.45,59.133333 ru,shubertovskiy kombinat nomer pervyy,Shubertovskiy Kombinat Nomer Pervyy,92,,55.733333,161.833333 it,cacciano,Cacciano,04,,41.15,14.65 pl,kudde,Kudde,87,,53.73742,16.798544 fr,thors,Thors,A4,,48.304068,4.811336 ir,dari bar,Dari Bar,13,,35.111667,46.2825 al,sopik,Sopik,51,,39.7805556,20.1063889 iq,derajindi,Derajindi,08,,36.7527778,42.9205556 id,brangkal,Brangkal,07,,-6.7058,111.4431 sd,mortesoro,Mortesoro,27,,10.2,34.15 pk,bihar,Bihar,03,,35.054485,72.534125 lt,vensken,Vensken,58,,55.5166667,21.3166667 af,sarjangal,Sarjangal,27,,34.600556,67.5675 us,pooletown,Pooletown,NC,,35.5905556,-80.2430556 pk,khori,Khori,02,,27.688573,66.807476 ba,cekinovac,Cekinovac,02,,45.2141667,16.5577778 hn,el retiro,El Retiro,16,,14.9333333,-88.3666667 pt,fronhas,Fronhas,07,,40.25,-8.15 ba,bursici,Bursici,02,,43.7638889,19.14 gb,sandhurst,Sandhurst,F2,,51.333333,-.8 cn,gujing,Gujing,11,,27.076667,112.148333 la,ban kang ba,Ban Kang Ba,04,,17.266667,104.983333 de,frundsbergerhohe,Frundsbergerhöhe,02,,48.016667,11.516667 au,bower,Bower,05,,-34.133333,139.35 cn,chenshih,Chenshih,10,,38.051389,115.695278 us,meadow springs,Meadow Springs,MD,,39.5527778,-76.2758333 ru,rempler,Rempler,73,,55.869,48.9298 ne,chirfa driga,Chirfa Driga,01,,20.9533333,12.3405556 ir,par siah,Par Siah,15,,31.951567,49.625577 th,ban na khu tai,Ban Na Khu Tai,73,,16.970056,104.542556 sn,keur yakham ndiaye,Keur Yakham Ndiaye,07,,14.7830556,-17.1030556 bf,kpanpouna,Kpanpouna,67,,10.05,-3.1333333 id,kerep tiga,Kerep Tiga,07,,-7.686667,109.886111 ua,marinopol,Marinopol,06,,49.034702,24.853826 cn,longshi,Longshi,30,,24.283333,116.45 pk,waddianwala,Waddianwala,04,,32.41484,74.6509 gn,mama,Mama,13,,8.5544444,-10.41 cn,houjinshan,Houjinshan,02,,29.40967,120.807599 mz,panda,Panda,08,,-14.5566667,33.4816667 hr,zbjeg,Zbjeg,14,,44.5586111,15.9272222 zr,shayenga,Shayenga,03,,-4.75,20.95 ru,mashnur,Mashnur,45,,56.586667,49.059444 la,ban kaniak,Ban Kaniak,01,,15.133333,106.816667 ma,alouss,Alouss,57,,34.923349,-5.72428 tr,acarmantas,Acarmantas,81,,37.468856,35.8976 bg,praznoglavtsi,Praznoglavtsi,58,,42.5963889,22.7975 kr,taesil,Taesil,17,,36.4933,126.7668 ru,verkhniy khon,Verkhniy Khon,30,,52.983333,138.933333 tr,umranli,Umranli,58,,39.333333,37.816667 ru,ustye arbezh,Ustye Arbezh,85,,60.866667,45.483333 bi,rutamba,Rutamba,20,,-3.9747222,30.1058333 zr,mabidi,Mabidi,08,,-4.6166667,13.85 kr,wittaesil,Wittaesil,05,,37.0404,127.4998 fr,la bastide-d'aubrac,La Bastide-d'Aubrac,B3,,44.561375,2.814545 zr,gemena,Gemena,02,,3.25,19.7666667 ma,insgane,Insgane,55,,30.355352,-9.536393 kh,phumi siembok,Phumi Siembok,17,,13.2833333,105.9333333 zm,chenga,Chenga,07,,-9.3,31.5333333 de,spitalhof,Spitalhof,02,,48.733333,11.416667 br,santa cruz,Santa Cruz,28,,-10.25,-36.75 bf,tyou,Tyou,19,,12.6666667,-2.0333333 cn,kuanpao,Kuanpao,15,,35.113333,103.984722 id,klates,Klates,08,,-7.6728,111.9468 mm,kama-kalit,Kama-kalit,09,,17.7166667,96.8 td,ngilimi,Ngilimi,07,,13.7333333,14.1666667 pk,karitawala,Karitawala,04,,31.232309,71.65235 ro,deda bistra,Deda Bistra,06,,46.933333,24.9 de,neuenhaus,Neuenhaus,06,,52.5,6.966667 se,ostra hult,Östra Hult,09,,56.516667,15.666667 kp,sanyangchon,Sanyangchon,03,,40.5077778,128.8033333 lt,kroki,Kroki,60,,55.4,23.7333333 be,pont de bonne,Pont de Bonne,04,,50.45,5.283333 zw,chief simupas village,Chief Simupas Village,00,,-17.1833333,28.0666667 tz,tulia,Tulia,16,,-4.1166667,34.3333333 pg,tongoma,Tongoma,05,,-6.4,143.9 us,mineola,Mineola,AL,,31.2794444,-87.6338889 za,mosakong,Mosakong,10,,-27.086992,23.904502 mg,anjavimisakana,Anjavimisakana,01,,-13.2666667,49.65 hu,pinceshattanya,Pincésháttanya,10,,47.866667,21.116667 jp,higashi-niigata,Higashi-niigata,29,,37.916667,139.066667 ro,tatarani,Tatarani,30,,44.9,26.033333 mx,el naranjo,El Naranjo,12,,17.35,-99.183333 cn,anping,Anping,05,,42.713672,128.741556 tr,cukurkuyu,Çukurkuyu,73,,37.869259,34.336114 mm,kyaukswe,Kyaukswe,10,,23.95,94.6333333 mm,konhaung,Konhaung,01,,19.1333333,93.8 mx,lachivito,Lachivito,20,,16.35,-96.133333 id,pondokradjeg,Pondokradjeg,04,,-6.2125,106.725833 tz,makalonga,Makalonga,03,,-5.4833333,35.6333333 pa,oleo,Oleo,08,,8.7833333,-79.55 us,la prairie,La Prairie,MN,,47.2283333,-93.4888889 de,horleinsdorf,Hörleinsdorf,02,,49.383333,10.75 hu,tischlertanya,Tischlertanya,02,,45.933333,18.466667 pe,chirihuasi,Chirihuasi,03,,-14.0708333,-73.5036111 rw,colline bugu,Colline Bugu,05,,-1.6333333,29.3 cl,santa maria,Santa Maria,04,,-38.816667,-71.666667 pl,golz,Golz,87,,53.497768,15.743192 cn,tachiaoho,Tachiaoho,05,,43.728611,127.344722 nl,liessel,Liessel,06,,51.413731,5.821108 pk,chinjni,Chinjni,02,,29.1304,67.857 cu,venero feo,Venero Feo,03,,22.0666667,-80.6833333 by,michniewicze,Michniewicze,03,,54.4333333,26.5166667 rs,stublla e poshteme,Stublla e Poshtëme,00,,42.338056,21.4525 ie,ros muc,Ros Muc,10,,53.3502778,-9.6158333 af,hafeza,Hafeza,05,,34.229762,67.207911 ir,kupon-e sorna,Kupon-e Sorna,07,,30.340343,51.295472 af,musa kala,Musa Kala,10,,32.445653,64.744862 cm,mbomboo,Mbomboo,05,,4.3619444,9.7375 bd,baje amli,Baje Amli,81,,24.9,90.7 tr,yuva koyu,Yuva Köyü,58,,38.793951,37.416126 ve,la mucuy,La Mucuy,14,,8.6216667,-71.0647222 us,loyall,Loyall,KY,,36.8519444,-83.3541667 ve,gamboa,Gamboa,17,,11.0772222,-63.9177778 ma,douar jebarat,Douar Jebarat,51,,32.343897,-9.214921 cr,villa neily,Villa Neily,07,,8.64825,-82.940962 ng,ibignan,Ibignan,16,,7.25,2.783333 ir,ya`qub lengeh,Ya`qub Lengeh,35,,36.841547,53.349051 cn,lijiazhuang,Lijiazhuang,26,,34.033919,107.245121 af,qal`ah-ye haji `abd ul qadir,Qal`ah-ye Haji `Abd ul Qadir,13,,34.424689,69.11551 tz,kolokonda,Kolokonda,03,,-5.9666667,35.5 ir,gondehjin,Gondehjin,09,,34.906678,48.25671 at,gersthof,Gersthof,09,,48.233333,16.316667 th,ban to phrian,Ban To Phrian,69,,6.756639,101.551611 id,karangbolong,Karangbolong,10,,-7.693889,110.429722 kr,naesongni,Naesongni,20,,35.4425,129.019722 ao,mbingue a mbolo,Mbingue à Mbolo,12,,-8.720425,16.944011 us,monroe,Monroe,PA,,40.5727778,-75.1925000 mg,antsira,Antsira,03,,-14.8,48.0166667 tr,doluca,Doluca,02,,37.906617,38.591964 us,collyer,Collyer,KS,,39.0355556,-100.1175000 id,sanja,Sanja,41,,-3.4014,119.0999 us,birmingham,Birmingham,OH,,41.3300000,-82.3608333 au,warrangong,Warrangong,02,,-34.033333,148.466667 us,iuka,Iuka,KS,,37.7291667,-98.7347222 gw,sare gana,Sare Ganà,01,,12.2,-14.7666667 de,gfall,Gfäll,02,,47.883333,10.466667 tg,soklito,Soklito,10,,6.1758333,1.1872222 ir,sameleh-ye sofla,Sameleh-ye Sofla,13,,34.0206,47.3073 ve,el botalon,El Botalón,18,,8.9666667,-69.8333333 et,hentald,Hentald,53,,13.317132,39.458496 sy,sirmaniye,Sirmânîyé,02,,35.7166667,36.2666667 ru,zaakakurskoye,Zaakakurskoye,06,,65.722952,44.367506 ga,soubba,Soubba,02,,-1.5,14.0833333 pg,massau,Massau,10,,-6.0,151.0666667 ru,strobehnen,Strobehnen,23,,54.395759,20.57936 ua,zhovtnevo,Zhovtnevo,17,,45.63452,28.701505 sy,qazambouk,Qazamboûk,01,,37.0833333,40.8666667 fr,fons,Fons,B9,,44.582721,4.349826 mx,rancho dolores,Rancho Dolores,07,,28.3,-100.866667 cn,fanya,Fanya,31,,18.510556,109.6125 rs,loxhe,Loxhë,00,,42.629722,20.325 ng,wannasara,Wannasara,27,,10.847808,12.886276 ru,khersonskiy,Khersonskiy,17,,44.033333,46.45 es,san julian,San Julián,56,,42.433333,2.833333 cn,jianshanwan,Jianshanwan,32,,30.214304,105.317135 gt,las majadas,Las Majadas,22,,14.983333,-89.833333 ir,nosratabad-e sofla,Nosratabad-e Sofla,23,,33.9708,48.0164 ma,koubi,Koubî,58,,35.133807,-4.336662 mg,sarobakony,Sarobakony,03,,-16.3,44.4833333 bd,jamjami,Jamjami,82,,23.0833333,89.25 us,pardee,Pardee,WV,,37.8058333,-81.7016667 id,tandanggolo,Tandanggolo,17,,-8.5125,116.5462 us,westville,Westville,MI,,43.3577778,-85.0836111 cn,niche,Niche,09,,33.706791,113.541762 cn,jiexi,Jiexi,07,,27.389722,118.627222 cn,zhuanwa,Zhuanwa,02,,30.059729,121.02155 lr,kuzu,Kuzu,11,,6.1469444,-10.1402778 ve,aguerito,Agüerito,06,,7.5947222,-66.3813889 tz,misowe,Misowe,18,,-5.05,38.7666667 id,badri,Badri,08,,-7.516389,111.196944 ru,bolshaya kachka,Bolshaya Kachka,73,,55.819389,51.959931 vn,ngoc kinh dong,Ngoc Kinh Dong,29,,15.85,107.983333 cn,gaojiatao,Gaojiatao,12,,30.578674,111.891727 af,wec kalay,Wec Kalay,23,,31.29208,65.960643 ru,marksshtadt,Marksshtadt,67,,51.711111,46.748611 cd,bobadoro,Bobadoro,02,,3.166667,19.1 ru,kolonduy,Kolonduy,93,,51.016667,116.516667 za,silvertown,Silvertown,11,,-33.963653,18.530105 tw,chitzutoushe,Chitzutoushe,04,,24.4833333,121.7833333 id,sawiran kidul,Sawiran Kidul,08,,-7.867,112.7906 ye,dar mujahhar,Dar Mujahhar,06,,12.6833333,44.2833333 ro,bucesti,Bucesti,40,,45.65,27.516667 zr,banza-kamonio,Banza-Kamonio,02,,-5.4436111,18.955 ir,darbeygi,Darbeygi,23,,33.533333,48.283333 ir,garmi,Garmi,29,,30.4125,55.2236 be,heizyde,Heizyde,08,,51,4.15 zr,esanga,Esanga,02,,-0.4,21.8666667 kz,galkinskoye,Galkinskoye,11,,52.233333,78.333333 cn,kolamutun,Kolamutun,13,,44.983333,81.95 il,dardara,Dardara,03,,33.05,35.65 us,soldier creek,Soldier Creek,SD,,43.3236111,-100.8877778 id,arengareng,Arengareng,08,,-7.7029,112.8269 ir,kharab akh,Kharab Akh,36,,36.6364,48.5463 ua,bozgos kitay,Bozgos Kitay,11,,45.65,34 ru,charfo,Charfo,75,,57.459531,79.215969 mx,cienaga,Ciénaga,19,,25.366667,-100.233333 us,kill devil hills,Kill Devil Hills,NC,,36.0305556,-75.6763889 cn,longzhen,Longzhen,08,,48.683333,126.85 pk,kot bhabwala,Kot Bhabwala,04,,31.543307,72.843552 id,mandek,Mandek,30,,-6.069167,106.514722 gm,choyen,Choyen,05,,13.65,-15.4166667 ru,usalka,Usalka,78,,57.316667,66.966667 mm,pyathataik,Pyathataik,09,,16.65,95.9333333 ve,mesa bolivar,Mesa Bolívar,20,,7.7363889,-71.5438889 lk,angulugalla,Angulugalla,34,,6.3,80.1166667 in,khohir,Khohir,37,,23.716667,82.9 al,krutja e poshteme,Krutja e Poshtëme,44,,40.8719444,19.6808333 gb,kilmington,Kilmington,D4,,50.766667,-3.033333 cn,ma,Ma,14,,29.802,90.702 us,raspberry,Raspberry,AR,,35.6863889,-92.9347222 fr,vignoux-sur-barangeon,Vignoux-sur-Barangeon,A3,,47.200677,2.172578 es,fiestras,Fiestras,58,,42.683333,-8.266667 pl,wonneberg,Wonneberg,85,,53.954265,20.599983 de,wokrent,Wokrent,12,,53.966667,11.916667 gr,kalota,Kalotá,17,,39.7813889,20.8352778 ye,khalif al-huraimi,Khalif al-Huraimi,04,,15.3333333,47.2666667 vn,kouei kiet,Kouei Kiet,39,,22.216667,106.3 ng,betukwel,Betukwel,22,,6.6125,9.1177 ir,karpan,Karpan,11,,26.766667,57.083333 pe,catacunca,Catacunca,08,,-14.2358333,-71.1841667 id,ta'a,Ta'a,17,,-8.5184,118.8411 kr,myongju,Myongju,20,,35.106389,128.551389 cn,damiaohougou,Damiaohougou,05,,41.969305,126.025916 la,ban manek,Ban Manèk,10,,16.766667,106.416667 tr,berbas,Berbas,21,,38.489331,40.569987 kr,pugok,Pugok,17,,36.8949,126.6009 et,ich'ich'e,Ich'ich'e,51,,8.9,39.066667 ua,slabin,Slabin,02,,51.353657,31.12139 ir,maveh zaran,Maveh Zaran,13,,34.766667,46.233333 id,cilwek,Cilwek,07,,-7.323611,109.266111 tr,kolegikiskim,Kolegikiskim,08,,40.816667,41.6 ly,wanziraf,Wanziraf,62,,31.8605556,11.8697222 ph,kayapa proper,Kayapa Proper,48,,16.298,120.862 et,wedala,Wedala,51,,9.433333,37.15 ir,cham mahilan,Cham Mahilan,23,,33.4158,47.9489 cn,zhongxiniu,Zhongxiniu,11,,26.574722,109.773333 us,laurel,Laurel,OR,,45.4186111,-122.9905556 sn,keur maissa,Keur Maïssa,03,,14.6666667,-16.4666667 ru,shakhta,Shakhta,08,,54.15,54.683333 br,sitio gerson t. de melo,Sítio Gerson T. de Melo,18,,-25.965,-49.911675 ni,los lajos,Los Lajos,01,,12.4666667,-85.4333333 ua,novosibirsk,NovoSibirsk,08,,47.1,33.283333 bf,dar salam,Dar Salam,16,,12.3608333,-1.6444444 at,schmied,Schmied,05,,47.466667,13.366667 tr,kayacik,Kayacik,02,,37.719098,38.099616 fr,senargent,Senargent,A6,,47.56591,6.52673 tr,boyaci,Boyaci,48,,36.684395,28.069927 fr,marchiennes,Marchiennes,B4,,50.406917,3.281935 cn,hsilinkuochin,Hsilinkuochin,20,,43.966667,116.033333 hn,cabildo,Cabildo,02,,13.5166667,-86.8666667 sn,badoumba diae,Badoumba Diaé,11,,13.2,-15.7333333 af,qaf qol,Qaf Qol,05,,34.480833,67.215278 id,makun,Makun,18,,-9.235,124.773333 tr,mulayim,Mülayim,71,,38.012538,32.083161 ro,cimpu mare,Cimpu Mare,19,,45.033333,23.533333 de,blauberg,Blauberg,02,,49.233333,12.75 id,silempu,Silempu,21,,.5268,120.0628 my,kampung setia jaya,Kampung Setia Jaya,13,,5.520392,102.935645 ar,quilachanquil,Quilachanquil,15,,-39.090792,-70.881494 co,coruntal,Coruntal,28,,3.389167,-75.134444 ir,bizab,Bizab,07,,28.6427,54.4098 ir,aqbolagh-e taqamin,Aqbolagh-e Taqamin,16,,36.2893,47.5079 ke,kasidi,Kasidi,02,,-3.8833333,39.6 cn,ssuhu,Ssuhu,04,,34.616667,117.966667 us,grove,Grove,NY,,42.4363889,-77.8683333 sy,ad daw,Ad Daw,11,,34.5722222,38.0694444 iq,awmal,Awmal,13,,35.8594444,44.3469444 br,sitio antonio cidral,Sítio Antônio Cidral,18,,-25.8846,-49.1037 sl,tolobu,Tolobu,03,,7.6666667,-12.1333333 pl,monasterzysko male,Monasterzysko Male,82,,53.856893,19.356269 co,la guaca,La Guaca,16,,2.691303,-75.594021 de,affalterthal,Affalterthal,02,,49.7,11.283333 id,lepoleop,Lepoleop,22,,-4.0321,122.4971 pk,bhaikar akku,Bhaikar Akku,04,,33.690039,72.973281 om,ghayl ash shab,Ghayl ash Shab,04,,22.8391667,59.2480556 th,ban tiu,Ban Tiu,18,,17.479917,101.72875 ba,resnica,Resnica,01,,43.4152778,17.6511111 mx,carrillo,Carrillo,25,,25,-107.733333 ir,ashtijeh,Ashtijeh,40,,32.3829,53.548 ua,minovka,Minovka,18,,49.500546,34.71573 id,tumputeungku,Tumputeungku,01,,5.0871,97.2052 id,karangdesa,Karangdesa,07,,-7.696389,109.707778 kr,pakkanmal,Pakkanmal,06,,37.6811,127.6154 id,ciwadas,Ciwadas,33,,-6.1991,106.0997 ru,ivanovka-seleznevka,Ivanovka-Seleznëvka,76,,53.810505,38.808349 cd,ujuku,Ujuku,10,,-4.25,24.683333 ma,lkouzoudene,Lkouzoudene,47,,31.461833,-7.302463 pe,pascaymayo,Pascaymayo,18,,-16.0833333,-70.5333333 in,harsala,Harsala,24,,26.712222,73.709167 na,masari,Masari,34,,-17.9,20.1333333 ro,slivilesti,Slivilesti,26,3778,44.783333,23.133333 th,ban nong ta phaeng,Ban Nong Ta Phaeng,50,,13.966667,99.783333 kz,kizyl-jar,Kizyl-jar,01,,44.416667,78.166667 it,vetriola bagni,Vetriola Bagni,17,,46.033333,11.3 ng,kogiri,Kogiri,57,,12.043404,6.515957 id,lempe,Lempe,21,,-1.7155,120.2097 bg,torlaki,Torlaki,52,,43.6166667,26.25 cn,dengfang,Dengfang,07,,26.688475,117.618559 pe,machay,Machay,02,,-9.6833333,-77.2166667 cn,fengyicun,Fengyicun,09,,35.038056,112.998889 et,maganan,Maganan,46,,12.75,36.433333 ng,okporakikor,Okporakikor,37,,6.271712,5.409889 ir,qojur,Qojur,16,,35.7463,47.0293 pl,tyczek,Tyczek,78,,53.404669,21.504545 ru,lavrovskiye podvorki,Lavrovskiye Podvorki,72,,52.7837,40.3468 ma,amdros,Amdros,55,,30.863639,-8.85169 gr,lavanitsa,Lavanítsa,11,,40.1511111,22.0144444 al,muzake,Muzakë,40,,40.4088889,20.2555556 nl,heefveld,Heefveld,15,,52.66189,6.011539 af,rowdat,Rowdat,18,,34.257423,70.578697 id,rawagede 2,Rawagede 2,30,,-6.239444,107.323611 et,insarro,Insarro,46,,9.916667,38.916667 be,waterschap,Waterschap,01,,51.2,4.666667 bd,betagaon,Betagaon,80,,22.95,91.3833333 kr,hoyo,Hoyo,16,,34.716667,127.7 ba,kreca,Kreca,01,,43.6086111,18.7538889 id,djamburterlis,Djamburterlis,01,,4.0563,96.9392 my,mandahan,Mandahan,16,,5.583333,115.883333 eg,`izbat kafr al hamam,`Izbat Kafr al Hamam,09,,30.4372222,31.2425 cn,mengchiangmiao,Mengchiangmiao,23,,31.741667,121.3525 in,junagarh,Junagarh,09,,21.516667,70.466667 ro,stoenoaia,Stoenoaia,42,,44.583333,26.316667 co,canteras,Canteras,34,,4.674809,-74.029898 co,calicanto,Calicanto,28,,4.473333,-75.003056 no,sagen,Sagen,05,,69.95,23.416667 mu,engrais martial,Engrais Martial,17,,-20.3002778,57.5094444 bd,biramgram,Biramgram,83,,24.9833333,88.85 cn,antzuling,Antzuling,10,,40.333333,119.333333 mx,villamoros,Villamoros,25,,24.166667,-107.233333 pk,gul khan,Gul Khan,03,,32.88537,70.56596 cn,tungwei,Tungwei,04,,31.366667,119.516667 mx,cruz vidriada,Cruz Vidriada,15,,18.983333,-99.633333 cn,guantangping,Guantangping,30,,23.154982,112.105172 af,wrisem,Wrisem,39,,32.868748,65.545812 cn,xucuohou,Xucuohou,07,,24.641667,117.989444 fr,saint-viatre,Saint-Viâtre,A3,,47.524376,1.932762 lt,vig'yay,Vig'yay,60,,55.2333333,24.1833333 se,rossle,Rössle,09,,57.666667,16.483333 us,new virginia,New Virginia,IA,,41.1822222,-93.7286111 zr,kimpampa,Kimpampa,04,,-6.2333333,24.7 th,amphoe bang kadi,Amphoe Bang Kadi,39,,14.013461,100.530488 kp,masangni,Masangni,11,,40.0197222,125.8611111 mk,marvinci,Marvinci,66,,41.2833333,22.4980556 af,bazgir,Bazgir,10,,33.03316,64.978276 in,surpura kalan,Surpura Kalan,10,,28.6734,75.6238 br,sao jeronymo,São Jeronymo,23,,-29.966667,-51.716667 ph,anandayehan,Anandayehan,55,,11.275833,124.999444 mm,hwein,Hwein,10,,24.55,95.05 ph,colanocan,Colanocan,54,,12.5398,122.0101 tr,balcilar,Balcilar,48,,37.116667,27.75 ru,mshishchi,Mshishchi,76,,53.678442,37.982187 de,herper,Herper,02,,49.733333,10.416667 mx,san diego texmelucan,San Diego Texmelucan,21,,19.016667,-97.458333 pl,krzynia,Krzynia,82,,54.333333,17.2 jp,kawaguchi,Kawaguchi,16,,39.15,141.533333 id,pondok pasar 1,Pondok Pasar 1,26,,3.1198,99.1425 id,merombok,Merombok,18,,-8.5404,119.8968 us,beacon falls,Beacon Falls,CT,,41.4427778,-73.0630556 th,ban thi mu,Ban Thi Mu,08,,17.05975,98.60875 cn,hsukou,Hsukou,04,,31.230441,120.474139 br,lapao,Lapão,05,11253,-11.4,-41.833333 bd,polla,Polla,83,,24.9166667,89.1 ir,zir zendan,Zir Zendan,05,,30.9199,50.3311 cn,ganzhushan,Ganzhushan,02,,27.499406,119.037234 br,sitio cid alberti,Sítio Cid Alberti,18,,-25.856111,-49.648611 ba,gornje vukovije,Gornje Vukovije,01,,44.4780556,18.7725 ru,zarechye pervoye,Zarechye Pervoye,62,,54.2167,39.0518 us,jewell ridge,Jewell Ridge,VA,,37.1847222,-81.7886111 kz,novorossiyka,Novorossiyka,11,,53.381389,74.677222 cn,sandadui,Sandadui,04,,32.5525,120.942222 cn,hsiawenchuang,Hsiawenchuang,24,,39.441094,113.740446 pk,chak one feiz,Chak One Feiz,04,,30.020597,71.515079 cd,fumbwe,Fumbwe,00,,-7.216667,28.8 cn,jiuqu,Jiuqu,03,,24.739444,115.167222 us,foraker,Foraker,OK,,36.8722222,-96.5652778 my,kampung teluk buloh,Kampung Teluk Buloh,07,,3.812,100.9826 ua,nevochin,Nevochin,06,,48.869631,24.50404 it,cicognaia,Cicognaia,10,,43.8,12.216667 rs,kutine,Kutine,00,,43.091667,20.7975 id,kedai berek,Kedai Berek,26,,2.8937,98.2281 ru,svistovka,Svistovka,62,,53.4519,40.0042 ua,kremennoye,Kremennoye,23,,48.464471,27.598874 cn,yunding,Yunding,18,,26.791667,107.389722 ru,shalamy,Shalamy,71,,57.364145,63.669437 ng,oniduagbon,Oniduagbon,32,,8.033333,3.733333 ir,ishikchi,Ishikchi,36,,36.6762,48.2575 cn,gongchenqiao,Gongchenqiao,02,,30.317446,120.132429 id,sabahlioh,Sabahlioh,32,,-4.4,104.25 it,varoni,Varoni,07,,42.583333,13.233333 co,hacienda el burro,Hacienda El Burro,12,,8.898561,-75.947172 ru,pistsovo-novoye,Pistsovo-Novoye,21,,57.142636,42.335222 id,bojong,Bojong,04,,-6.163333,106.735 ca,capreol,Capreol,08,3666,46.7,-80.916667 pk,chak 48-5 l,Chak 48-5 L,04,,30.623056,73.300833 pl,kepa,Kepa,87,,53.239751,15.734527 kz,glubokoe,Glubokoe,15,11192,50.145556,82.311389 mg,sahantsaty,Sahantsaty,04,,-17.9166667,49.4 ge,chitakheviges,Chitakheviges,13,,41.7933333,43.2991667 id,buninggeulis,Buninggeulis,30,,-7.3744,108.1002 do,imbert,Imbert,18,,19.75,-70.8333333 cm,nsebito,Nsébito,14,,2.4333333,10.4666667 in,aish mugam,Aish Mugam,12,,33.866667,75.283333 bj,lantagon,Lantagon,18,,7.4833333,1.8333333 do,lemba,Lemba,03,,18.25,-71.3333333 es,royo,Royo,54,,38.973388,-1.374616 ir,shahrak-e asadi,Shahrak-e Asadi,35,,36.679041,52.524955 mg,ranandao,Ranandao,02,,-21.8333333,46.3666667 gr,dovrinovou,Dovrinóvou,17,,39.98,20.9125 cn,liuho,Liuho,09,,33.317031,112.800758 ua,bashmak,Bashmak,11,,45.3,33.583333 la,ban moun,Ban Moun,11,,18.416667,101.983333 ua,pochinovo,Pochinovo,07,,48.95,36.783333 iq,qadir-i zhala,Qadir-i Zhala,05,,35.3688889,45.7266667 pl,rogozany,Rogozany,79,,50.092486,17.907831 my,kampung dusun,Kampung Dusun,02,,5.381829,100.557742 jo,deir el kahf,Deir el Kahf,02,,32.277707,36.838551 ir,dap tulak,Dap Tulak,04,,26.355612,59.55178 et,at'ebela,At'ebela,51,,8.75,38.583333 hr,ruskovac,Ruskovac,01,,45.7222222,16.8927778 ir,khajali,Khajali,23,,33.15,48.866667 ru,kordon,Kordon,77,,56.745574,32.080386 kh,phumi tuol,Phumi Tuol,04,,11.5833333,104.5 bt,lhedang,Lhedang,05,,27.9166667,90.75 ro,closani,Closani,26,,45.066667,22.8 nz,mangamaunu,Mangamaunu,F1,,-42.3,173.75 ie,aghanure,Aghanure,01,,52.8752778,-6.9297222 ua,pechenki,Pechënki,19,,51.483333,26.083333 cn,xingwangpo,Xingwangpo,24,,39.5183,113.383032 ro,cotu-baei,Cotu-Baei,34,,47.416667,26.283333 ga,mabou,Mabou,05,,-3.0166667,11.5166667 in,pardha,Pardha,35,,24.533333,75.15 ng,iposanyi,Iposanyi,16,,6.745304,3.567399 by,gotowina,Gotowina,06,,54.0833333,27.45 de,bohlhof,Bohlhof,01,,48.366667,8.483333 ru,nizhneilimsk,Nizhneilimsk,20,,57.183333,103.266667 pl,wolka lesna,Wolka Lesna,78,,52.190905,22.429535 mg,morahilo,Morahilo,02,,-21.6666667,46.4333333 ru,akcheyevo,Akcheyevo,46,,54.636583,43.746816 ir,zoviyeh-ye bozorg,Zoviyeh-ye Bozorg,15,,31.361667,48.703611 sd,abu ghanim,Abu Ghanim,27,,14.7166667,32.3333333 pk,basti wasu khan utera,Basti Wasu Khan Utera,04,,29.363556,71.530606 id,gandari,Gandari,17,,-8.5925,116.2068 ro,prisaca dornei,Prisaca Dornei,34,,47.533333,25.65 ao,lucamba,Lucamba,06,,-11.383333,15.2 id,pucanggading,Pucanggading,10,,-7.858889,110.070833 jp,motododo-hokke,Motododo-Hokke,12,,41.808889,141.184444 ir,cheshmeh sarnajeh,Cheshmeh Sarnajeh,23,,33.4584,49.0668 tr,dere,Dere,08,,40.601667,41.394167 pa,rio cacique afuera,Río Cacique Afuera,08,,8.3,-78.9 us,greenwich,Greenwich,KS,,37.7827778,-97.2033333 ni,el fortin,El Fortín,03,,12.65,-87.2666667 cd,baisa,Baisa,02,,2.35,22.166667 ru,zadabrovye,Zadabrovye,69,,55.696658,31.352138 ir,bizak,Bizak,42,,35.21128,60.441659 ir,cheshmeshan,Cheshmeshan,33,,38.745,46.4138 fr,berneuse,Berneuse,A3,,48.425714,1.334716 ro,podgoria,Podgoria,42,,45.116667,26.316667 gt,el incienso,El Incienso,10,,14.75,-90.016667 ir,tigu gan,Tigu Gan,29,,26.928646,58.188606 bi,kabonde,Kabonde,16,,-2.5333333,30.0847222 az,pustaqasim,Pustaqasim,42,,41.267222,48.584167 tz,mpingo,Mpingo,07,,-9.6166667,39.5166667 ca,val-brillant,Val-Brillant,10,,48.533333,-67.566667 sl,pamuronko,Pamuronko,04,,8.4288889,-13.1530556 us,lake odessa,Lake Odessa,MI,,42.7847222,-85.1383333 co,san juan de tumuhuaco,San Juán de Tumuhuaco,35,,10.443611,-75.273056 id,tanjung gintung,Tanjung Gintung,15,,-5.429414,105.275335 in,sindhnur,Sindhnur,19,68799,15.783333,76.766667 th,ban tok tat,Ban Tok Tat,51,,14.95,99.55 tr,toyuk,Toyuk,57,,41.97095,35.091899 es,villar,Villar,55,,41.161484,-3.703373 sn,tiari mbaye,Tiari Mbaye,08,,15.3333333,-16.5333333 tz,kibanguni,Kibanguni,25,,-6.4333333,39.55 bo,estancia jankho huyo,Estancia Jankho Huyo,05,,-18.0833333,-68.7333333 es,orol,Orol,58,,43.564341,-7.639471 cd,ngoolo,Ngoolo,02,,.15,18.533333 fr,auberville,Auberville,A7,,49.533145,.599687 af,cambara,Cambara,08,,32.951894,67.506517 ru,sarvijarvi,Sarvijärvi,28,,62.016667,36.9 id,gondangmanggong,Gondangmanggong,07,,-7.2425,110.064722 ng,usaka-elegu,Usaka-Elegu,45,,5.31796,7.52609 pg,bangalum,Bangalum,14,,-7.0333333,146.6 ru,ilyushino,Ilyushino,77,,56.329722,33.005 fr,echevronne,Échevronne,A1,,47.104639,4.851265 kr,sangpyongni,Sangpyongni,06,,38.066667,128.584444 cz,branna,Branna,83,,50.608839,15.572092 lt,yakutishkyay,Yakutishkyay,60,,55.2333333,24.5833333 uz,yangiariq,Yangiariq,05,,41.3627778,60.6075 nl,sixbierum,Sixbierum,02,,53.218233,5.48402 ng,ungwan mairago,Ungwan Mairago,40,,12.410161,4.16932 ug,arivu,Arivu,77,,2.8988889,30.9883333 ge,at'nokhi,At'nokhi,19,,42.4563889,44.7066667 kp,kouptong,Kouptong,06,,38.1458333,126.3927778 td,chibina,Chibina,04,,12.2111111,15.6136111 us,akron,Akron,IL,,40.9038889,-89.6538889 ru,khotilovka,Khotilovka,83,,56.172752,42.221146 de,niederspay,Niederspay,08,,50.266667,7.65 cy,ayvasil,Ayvasil,04,,35.2291667,33.1833333 es,juan anton,Juan Antón,51,,37.655994,-6.449993 pe,palcapampa,Palcapampa,21,,-15.8,-70.1166667 br,itajobi,Itajobi,04,,-5.194444,-60.351389 pl,karczunek,Karczunek,75,,51.349197,23.304551 ua,negovtsy,Negovtsy,06,,49.131123,24.383818 de,wiehekrug,Wiehekrug,10,,54.7,9.25 cn,tongjiadian,Tongjiadian,04,,32.233333,121.2 kr,mangongni,Mangongni,16,,35.283333,126.466667 in,shipungrr,Shipungrr,20,,26.05,94.8 th,ban khuan min,Ban Khuan Min,68,,6.932667,100.681917 gw,canture,Canturè,10,,12.3166667,-14.4666667 ir,mohammadabad-e kuzeh gaz,Mohammadabad-e Kuzeh Gaz,28,,34.196129,55.173126 ir,kalamard,Kalamard,29,,28.5,56.533333 us,lakeside woods,Lakeside Woods,CT,,41.5658333,-73.4916667 de,klein gronland,Klein Grönland,10,,53.816667,9.583333 cn,dalankebu,Dalankebu,20,,41.965278,101.063889 zr,galu,Galu,05,,-11.3166667,26.65 mx,xcante,Xcanté,31,,21.333333,-88.633333 us,savah,Savah,IN,,38.0177778,-87.9786111 ve,paso acarigua,Paso Acarigua,11,,11.3333333,-69.45 pl,wegorza,Wegorza,87,,53.65834,14.976113 kz,babay,Babay,03,,51,72.166667 kr,kangguldong,Kangguldong,13,,37.9019,127.3078 id,moeris-besar,Moeris-besar,36,,-2.366667,140.15 td,tschimiang,Tschimiang,10,,9.1,14.7666667 ua,ssemenowka,Ssemenowka,02,,52.178273,32.581827 ir,gownjuk-e `olya,Gownjuk-e `Olya,42,,35.822159,59.242041 ir,dehnow,Dehnow,41,,32.6,59.4 rs,papratiste,Papratiste,00,,43.915278,20.106667 ru,smakhtino,Smakhtino,25,,54.850506,36.414913 ru,ratlub,Ratlub,12,,43.052938,46.355079 id,gumeng,Gumeng,08,,-7.013,112.5746 pk,ghazni colony,Ghazni Colony,04,,31.498,74.3847 ni,sih,Sih,17,,14.95,-83.5333333 br,ponte de pedra,Ponte de Pedra,14,,-13.583333,-57.35 mt,imkabba,Imkabba,00,,35.846111,14.467222 fr,la chalp-sainte-agathe,La Chalp-Sainte-Agathe,B8,,44.716667,6.85 ru,miyuki,Miyuki,64,,47.183333,142.75 pk,jakhpari,Jakhpari,05,,26.920486,67.746047 zr,yaolida,Yaolida,00,,4.6166667,26.05 cu,ingenito numero 1,Ingenito Número 1,13,,20.8833333,-77.3833333 mm,duba,Duba,09,,18.0833333,96.9666667 ru,nizhniye khalby,Nizhniye Khalby,30,,50.795844,137.925234 pl,kleinpuppen,Kleinpuppen,85,,53.699835,20.549946 cn,shilibu,Shilibu,22,,40.35,116.75 rs,kodradiq,Kodradiq,00,,42.561389,20.401389 af,chambaran mulla khel,Chambaran Mulla Khel,08,,33.100124,68.151123 cy,psevda,Psevda,03,,34.95,33.4625 ph,poao,Poao,06,,10.6721,121.991 de,rhenegge,Rhenegge,05,,51.35,8.766667 pk,banis,Banis,04,,33.221796,73.102953 cg,loandjili,Loandjili,04,26387,-4.7561111,11.8577778 ro,frasin,Frasin,28,,47.216667,25.733333 cn,dazetang,Dazêtang,14,,31.5,92.8 tm,imeni voroshilova,Imeni Voroshilova,02,,38.1666667,55.5166667 bd,jamirar char,Jamirar Char,81,,24.1166667,90.55 af,now dahanak,Now Dahanak,42,,35.623977,70.005106 gh,gilli,Gilli,11,,10.2,-2.6333333 id,kliyo satu,Kliyo Satu,07,,-7.278889,110.698056 kr,pulmori,Pulmori,16,,34.65,126.45 pl,ploska,Ploska,81,,53.1,23.283333 in,ongole,Ongole,02,172891,15.5,80.05 cn,shengfotou,Shengfotou,24,,35.163889,111.943056 dz,mers el kebir,Mers el Kebir,09,,35.7294444,-0.7063889 pl,czermno,Czermno,84,,51.10986,20.026878 id,perbubu 1,Perbubu 1,26,,1.9747,98.9234 cz,plachtin,Plachtin,87,,49.946172,13.164118 pk,haji ali muhammad,Haji Ali Muhammad,05,,26.263886,68.656675 af,baykh sang,Baykh Sang,09,,34.534538,66.150726 id,tjoeraharoem,Tjoeraharoem,08,,-8.2366,113.6046 pk,deh two hundred sixty-seven,Deh Two Hundred Sixty-seven,05,,25.120168,69.246852 mx,limonta,Limonta,30,,17.9,-94.616667 br,engenho de serra,Engenho de Serra,15,,-21.3,-45.15 fr,saint-clair-sur-l'elle,Saint-Clair-sur-l'Elle,99,,49.192386,-1.029288 md,lukachen',Lukachen',74,,47.457222,27.596389 vn,ap thanh my,Ap Thanh My,65,,9.605278,106.052778 de,neunaundorf,Neunaundorf,11,,51.7,13.266667 mg,mandiamavo,Mandiamavo,03,,-16.6833333,47.35 it,monteforte d'alpone,Monteforte d'Alpone,20,,45.416667,11.283333 pk,goth jani rind,Goth Jani Rind,05,,24.769576,68.276235 ro,tablaseni,Tablaseni,27,,46.516667,24.283333 us,roscoe,Roscoe,PA,,40.0794444,-79.8658333 fr,bourdons,Bourdons,A4,,48.166667,5.35 ru,okunkovo,Okunkovo,06,,64.5611,41.4676 lt,keturvalakyay,Keturvalakyay,59,,54.55,23.15 al,(( kalemaj )),(( Kalemaj )),45,,40.4666667,19.8666667 pk,goth gahi mahesar,Goth Gahi Mahesar,05,,27.184744,67.810405 iq,wardak,Wardak,15,,36.1811111,43.5347222 af,podinegak,Podinegak,32,,35.840888,67.638653 se,villstad,Villstad,08,,57.2,13.433333 cn,chengjiacha,Chengjiacha,15,,35.45097,105.995994 gh,debibi,Debibi,03,,7.9,-2.55 pg,dirikomana,Dirikomana,01,,-9.75,147.9333333 ir,sar koleh,Sar Koleh,10,,33.65,46.6 ph,azarga,Azarga,54,,12.278745,122.629111 cn,huamei,Huamei,30,,23.44,116.629444 tw,erhkangping,ErhKangping,04,,24.5666667,120.8333333 id,taluk,Taluk,24,,.1043,100.7086 no,asskard,Åsskard,08,,63.016667,8.5 ua,pristen,Pristen,07,,49.593611,37.64 cn,ta tsaidam,Ta Tsaidam,06,,37.833333,95.3 ba,husamovici,Husamovici,01,,44.6911111,18.3819444 mm,layang ga,Layang Ga,04,,26.3166667,98.05 id,simpang bah kota,Simpang Bah Kota,26,,2.911,98.9969 ru,dvoynoy,Dvoynoy,61,,46.326458,41.342356 id,cilolongokan,Cilolongokan,30,,-7.0378,107.9712 bg,sboriste,Sboriste,56,,42.6833333,25.9666667 mx,rancho la union,Rancho La Unión,07,,27.716667,-101.9 id,kapalara,Kapalara,18,,-9.677,119.0651 cn,wujiazao,Wujiazao,04,,32.747862,120.520095 vn,an binh,An Bình,10,,14.033333,108.716667 ru,arkadyevo,Arkadyevo,77,,57.7242,36.8126 tr,havutlu,Havutlu,81,,36.924845,35.356703 hr,gorice,Gorice,13,,43.8986111,15.8788889 bg,romanya,Romanya,43,,42.5,25.8666667 ro,benesti,Benesti,38,,46.366667,27.333333 af,konaqe `ulya,Konaqe `Ulya,08,,33.004559,67.419219 tn,al karm,Al Karm,36,,36.833333,10.316667 af,rastah ghan,Rastah Ghan,26,,36.482367,69.61198 cn,guojiagou,Guojiagou,19,,38.816111,121.335833 th,ban khao kling,Ban Khao Kling,52,,13.519278,99.418611 ph,bulasa,Bulasa,21,3419,9.932778,123.614722 ru,vasileva,Vasilëva,52,,57.208526,31.356719 id,embonggede,Embonggede,08,,-7.3357,112.1359 bd,sripukur,Sripukur,83,,24.9333333,88.8166667 us,cooley springs,Cooley Springs,MS,,31.7088889,-89.6686111 cd,nisowalo,Nisowalo,09,,1.833333,26.566667 ph,baquioen,Baquioen,51,,16.090615,120.101136 tr,100 yil sitesi,100 Yil Sitesi,68,,39.887403,32.799381 pl,kochany,Kochany,80,,50.658185,22.177517 fm,fra,Fra,04,,9.4841667,138.0758333 bg,kaleytsa,Kaleytsa,46,,42.9166667,24.6666667 mz,nampomo,Nampomo,07,,-13.4588889,36.5219444 pl,kaski,Kaski,78,,52.175486,20.41358 jm,castleton,Castleton,08,,18.1666667,-76.8166667 cn,zhanglukou,Zhanglukou,24,,35.354722,113.064722 in,mandar,Mandar,38,,23.466667,85.083333 fr,lechere,Léchère,A1,,47.971619,3.373682 us,spurgeon,Spurgeon,IN,,38.2522222,-87.2572222 th,amphoe tha ta kut,Amphoe Tha Ta Kut,46,,13.46804,101.095322 cu,guara,Guara,11,,22.81,-82.2030556 au,royal park,Royal Park,06,,-41.436111,147.129167 ru,volnya,Volnya,25,,54.287235,36.245125 af,khayruddin kalay,Khayruddin Kalay,28,,32.529232,66.72617 pt,saragocal,Saragoçal,09,,37.166026,-8.619919 tr,derdyuk,Derdyuk,72,,37.452222,40.757222 pa,dos hermanas,Dos Hermanas,04,,9.15,-80.1333333 ua,sharapovka,Sharapovka,04,,47.883333,34.15 cn,fengwei,Fengwei,31,,19.882318,110.779728 cn,jianning,Jianning,07,,26.837787,116.835919 ir,omashiveh koochak,Omashiveh Koochak,15,,31.0739,48.5647 no,akkarsjorda,Akkarsjorda,18,,69.916667,21.333333 ni,totumbla,Totumbla,12,,12.7,-86.15 mz,coalane,Coalane,09,,-17.795,36.9777778 pk,isa khan,Isa Khan,02,,28.379609,67.820024 ng,mannang,Mannang,35,,9.066667,11.683333 cn,zhangjiakouzi,Zhangjiakouzi,15,,36.927138,106.663106 af,madkulam,Madkulam,35,,34.809376,70.019905 id,gunung satu,Gunung Satu,07,,-7.421389,110.656667 nl,westerland,Westerland,07,,52.890548,4.921494 bd,mahishkundi,Mahishkundi,81,,24.05,88.7666667 ua,shevchenko,Shevchenko,04,,47.8,34.566667 ci,nasalilie,Nasalilié,88,,5.943659,-5.693969 ar,ramada paso,Ramada Paso,06,,-27.373401,-58.311224 lr,gropake,Gropake,13,,4.8205556,-7.8577778 us,isle of normandy,Isle of Normandy,FL,,25.8525000,-80.1352778 th,ban run,Ban Run,28,,15.066667,103.2 cu,residencial santa fe,Residencial Santa Fe,04,,21.7166667,-82.7833333 tr,gunluce,Günlüce,60,,40.601083,36.789664 af,jarti sharqi,Jarti Sharqi,09,,33.610238,63.797175 rs,cickovo,Cickovo,00,,43.674167,19.939722 si,bizovik,Bizovik,04,,46.0383333,14.5725 ir,silarestan,Silarestan,05,,30.937461,50.718363 ir,rofu chah,Rofu Chah,08,,37.351015,49.751008 cn,quantou,Quantou,24,,39.706549,113.541161 sn,bouzenas,Bouzenas,07,,14.65,-16.7833333 sv,flor amarilla abajo,Flor Amarilla Abajo,11,,13.9316667,-89.5672222 tr,guzderesi,Güzderesi,21,,38.08616,41.134633 gb,hawkshead,Hawkshead,C9,,54.366667,-3 cn,shibishang,Shibishang,07,,27.561695,117.426494 tr,caykenari,Caykenari,48,,36.483333,29.333333 id,ngledok,Ngledok,08,,-7.1923,111.6879 cl,juntas,Juntas,05,,-28.183333,-69.866667 ru,cherepanovshchina,Cherepanovshchina,33,,58.716667,49.2 mm,indaw,Indaw,12,,11.9666667,99.05 ru,shinsha,Shinsha,45,,56.423889,49.366111 in,godan,Godan,12,,32.991667,74.75 mm,teigwabyin,Teigwabyin,01,,20.7666667,93.0666667 ru,belushye,Belushye,06,,71.539238,52.332117 gb,mansfield woodhouse,Mansfield Woodhouse,J9,,53.166667,-1.2 ru,oktyabr,Oktyabr,16,,55.493523,47.959652 kz,ishan-bazar,Ishan-Bazar,10,,41.35,68.933333 ph,balite,Balite,41,2502,12.931008,121.470616 cd,wolter,Wolter,08,,-4.822222,15.180556 cn,shuiziao,Shuiziao,30,,23.724159,113.85027 kp,heiri,Heiri,09,,38.8377778,127.1838889 so,mogaambo,Mogaambo,09,,0.1608333,42.7244444 hu,mamapuszta,Mámapuszta,23,,47.047537,18.06838 sl,ma-gbafti,Ma-gbafti,04,,8.3152778,-13.0041667 cn,tunghonan,Tunghonan,24,,39.381944,114.044167 pk,lota,Lota,04,,32.921106,73.681576 za,isinuka,Isinuka,05,,-31.601647,29.486833 cn,zhenfang,Zhenfang,03,,28.340756,115.765882 ve,puerto san isidro,Puerto San Isidro,06,,7.53,-65.2183333 kh,phumi kampong trabek,Phumi Kampong Trabek,14,,11.15,105.4666667 id,wailajap,Wailajap,15,,-5.404542,105.059761 sn,ndoye peul,Ndoye Peul,04,,15.865,-16.4516667 id,karin,Karin,07,,-7.607222,110.663611 ao,tchicupo,Tchicupo,01,,-12.224416,14.519371 mx,el salitrillo,El Salitrillo,32,,24.533333,-101.116667 in,nareddiguda,Nareddiguda,02,,17.142222,78.149444 mx,san roman,San Román,06,,28.35,-106.533333 ng,kafin bako,Kafin Bako,39,,12.05,9.716472 mw,mbayo,Mbayo,20,,-13.5166667,33.6 bd,baikhar,Baikhar,81,,23.5333333,90.5333333 sn,dialambere,Dialambéré,11,,12.8166667,-14.2333333 bg,saitschino oresche,Saitschino Oresche,61,,43.3166667,27.2666667 ro,mirauteni,Mirauteni,28,,46.75,26.55 id,cimayang hilir,Cimayang Hilir,33,,-6.6113,106.1665 ru,ivanikovo,Ivanikovo,76,,54.743378,37.941607 be,hareng,Hareng,04,,50.683333,5.583333 iq,gaznah,Gaznah,11,,36.2805556,43.9361111 sb,mbola,Mbola,08,,-9.1333333,160.2333333 fj,laveine,Laveine,03,,-16.8666667,-179.8666667 de,jamitzow,Jamitzow,12,,53.916667,13.866667 id,balanuaudam,Balanuaudam,01,,1.2895,98.8452 cd,kabimba,Kabimba,12,,-3.478889,29.138889 md,miklaushany,Miklaushany,89,,47.122778,28.308056 cn,xipo,Xipo,31,,18.669467,109.717756 id,sinarbaru satu,Sinarbaru Satu,33,,-6.278,105.9845 cn,tapingshan,Tapingshan,02,,27.629722,120.611944 ir,chah mazangan,Chah Mazangan,29,,28.8341,57.5997 id,tanon lor,Tanon Lor,07,,-7.528056,110.769167 us,sandestin,Sandestin,FL,,30.3797222,-86.3302778 cn,xiaonigou,Xiaonigou,32,,27.616281,101.995954 be,liefferinge,Liefferinge,08,,50.8,4.05 my,kampung apin apin,Kampung Apin Apin,16,,5.471536,116.266539 bg,elekioy,Elekioy,61,,43.3833333,27.3333333 sy,abu sabah mas`inah,Abu Sabah Mas`inah,04,,35.6833333,38.75 co,la casita,La Casita,33,,4.771258,-73.886496 al,rrembulli,Rrembulli,41,,41.6777778,20.0341667 us,lac la belle,Lac La Belle,WI,,43.1441667,-88.5305556 ua,rymachi,Rymachi,24,,51.19173,23.90887 kr,jungchugok,Jungchugok,06,,38.024444,127.881667 ug,kamala,Kamala,70,,0.8744444,32.4691667 id,parungseta,Parungseta,30,,-6.370833,107.207222 tr,midus,Midüs,74,,38.099476,41.949672 ru,kavokuchi-undinskiy,Kavökuchi-Undinskiy,93,,51.4372,117.7041 cn,wangshechuang,Wangshechuang,02,,28.971389,121.438889 bd,chhaydharia,Chhaydharia,81,,23.9333333,90.6666667 kp,kangpungni,Kangpungni,11,,39.9222222,125.4947222 se,dikanas kapell,Dikanäs Kapell,23,,65.233333,16 cn,xinhu,Xinhu,07,,24.996389,118.088611 cd,mandanda,Mandanda,00,,-8.033333,17.733333 mx,la ventura,La Ventura,24,,23.233333,-101.383333 cn,rasog,Rasog,14,,29.003,89.403 br,loreto,Loreto,22,,-6.783333,-37.116667 th,ban nam mi noi,Ban Nam Mi Noi,10,,17.553722,100.450056 id,radaloko,Radaloko,18,,-9.4504,119.385 pl,wildwinkel,Wildwinkel,85,,54.315141,22.629398 nl,lutterveld,Lutterveld,03,,51.898381,5.366562 pl,molestowice,Molestowice,79,,50.682333,17.575838 pe,hacienda pulcay,Hacienda Pulcay,03,,-13.3144444,-73.7975 pt,azevedo meiral,Azevedo Meiral,17,,41.15,-8.566667 bd,tushbhandar,Tushbhandar,83,,25.9666667,89.2 cn,tuchenwan,Tuchenwan,12,,30.432222,111.083056 pe,vicentelo,Vicentelo,15,,-12.05,-77.0 id,tebonan,Tebonan,10,,-7.653056,110.409167 gw,garsene,Garsene,04,,11.8666667,-15.1833333 id,panggangsari,Panggangsari,07,,-7.544167,109.073611 hu,almasytanya,Almásytanya,04,,47.8,20.816667 so,yos,Yos,16,,10.7666667,45.6666667 ru,lesnoye,Lesnoye,22,,43.783333,43.880278 cz,mahrisch-budwitz,Mahrisch-Budwitz,80,,49.052105,15.810128 pt,sao lourenco do bairro,São Lourenço do Bairro,02,,40.437739,-8.497976 cn,shanshi,Shanshi,02,,28.507768,121.291127 pk,chhapianwali,Chhapianwali,04,,30.960455,72.658992 de,giehle,Giehle,06,,53.366667,8.933333 cn,sungho,Sungho,12,,31.19647,113.283732 pk,basti thaliwala,Basti Thaliwala,04,,29.48103,71.650641 mx,san guillermo,San Guillermo,07,,27.083333,-101.483333 pe,picapiedra,Picapiedra,15,,-12.1833333,-76.8666667 vn,trac nhat,Trac Nhat,34,,20.116667,105.7 mx,san lucas evangelista,San Lucas Evangelista,14,,20.416667,-103.366667 cg,maipili,Maïpili,11,,-3.7283333,15.9916667 af,ghuran,Ghuran,11,,34.218332,62.127039 zw,hlananisas,Hlananisas,06,,-19.8333333,27.4 eg,mi`awwad,Mi`awwad,01,,30.8325,31.3458333 ar,el cano,El Cano,05,,-32.627478,-64.64176 ph,patique,Patique,H3,,10.237,122.8993 ru,zapryagayevo,Zapryagayevo,69,,55.166667,35.283333 kh,compong bai,Compong Baï,06,,10.6166667,104.1833333 fr,le chayla,Le Chayla,A9,,44.816667,3.55 cd,osongi i,Osongi I,09,,-1.133333,24.383333 cn,nanyi,Nanyi,26,,34.883106,108.793914 pk,shahr rai sadullah,Shahr Rai Sadullah,04,,33.486111,72.589937 ir,khersanak-e vasat,Khersanak-e Vasat,28,,32.576913,50.374097 mz,giro,Giro,08,,-17.4722222,35.2552778 mz,liju,Liju,07,,-12.4936111,35.0266667 ao,gema,Gema,17,,-8.110014,21.403166 fr,mouzens,Mouzens,97,,44.845494,1.01288 lv,(( stale )),(( Stale )),26,,57.0833333,24.3833333 af,qandi rizqa,Qandi Rizqa,09,,34.078262,63.536076 kp,yusori,Yusori,12,,38.95,125.7333333 id,surodadi,Surodadi,07,,-6.5889,110.6969 ir,qal`eh shaikh,Qal`eh Shaikh,09,,34.543264,48.38464 bd,darshanpara,Darshanpara,81,,24.4833333,88.5333333 bg,krivnya,Krivnya,61,,43.2,27.3833333 be,lyree,Lyrée,03,,50.3,4.266667 id,sabian,Sabian,08,,-7.0325,113.1448 tr,koklen,Köklen,57,,41.342756,35.189007 bi,buhana,Buhana,10,,-3.7855556,29.6558333 de,vegesack,Vegesack,03,,53.166667,8.616667 sl,yarakonko,Yarakonko,02,,8.9666667,-10.7333333 ar,rucanelo,Rucanelo,11,,-36.042644,-64.83471 au,underwood,Underwood,06,,-41.3,147.2 cn,sanhsing,Sanhsing,08,,46.316667,129.566667 af,sanjari,Sanjari,11,,34.913874,62.236408 ee,surpe,Surpe,01,,59.6230556,25.6930556 af,bar-kotkay,Bar-Kotkay,36,,33.923883,69.702526 ar,maizales,Maizales,21,,-33.317315,-60.963322 mx,los guajes,Los Guajes,01,,21.95,-102.683333 pl,drawski mlyn,Drawski Mlyn,86,,52.860311,16.085505 id,tambiski,Tambiski,26,,2.2815,98.1537 ru,novosaranskiy,Novosaranskiy,55,,51.4818,57.901 cu,barlovento,Barlovento,02,,23.0913889,-82.4872222 mz,chivabalane machote,Chivabalane Machote,02,,-24.6697222,34.2888889 dk,sunde,Sunde,18,,56.204169,9.012656 ng,maluanti,Maluanti,26,,7.416667,10.016667 jp,irugi,Irugi,20,,33.416667,134.216667 tr,balaban,Balaban,39,,41.835556,27.676111 tz,kisomo,Kisomo,10,,-7.0833333,37.5833333 am,gumri,Gumri,07,,40.7894444,43.8475 my,kampong bukit nibong,Kampong Bukit Nibong,04,,2.196,102.3604 mm,man hkunhawng,Man Hkunhawng,11,,24.0333333,98.0333333 sl,gohun,Gohun,01,,7.9419444,-10.6655556 lv,valenburgasmeza muiza,Valenburgasmeza Muiza,01,,56.4333333,25.0666667 ir,kuchendar,Kuchendar,29,,27.577778,57.330278 tn,toudjane,Toudjane,29,,33.465179,10.133748 gr,vouzion,Voúzion,35,,38.4833333,24.1166667 tr,saidiye,Saidiye,17,,39.57625,26.389031 ua,novyye karagachi,Novyye Karagachi,17,,45.806606,29.773812 us,culpeper,Culpeper,AL,,31.8869444,-87.5775000 cn,liudaoweizi,Liudaoweizi,05,,43.513376,130.725476 pt,vale do zebro,Vale do Zebro,16,,38.984713,-8.104025 th,thoem taung,Thoem Taung,04,,18.8,100.7 sd,umm deimein,Umm Deimein,34,,14.4166667,31.1333333 cn,shanghezhuang,Shanghezhuang,15,,33.472215,105.747449 me,kaplanovici,Kaplanovici,00,,42.006944,19.182778 al,goljimbas,Goljimbas,51,,40.3977778,19.7375 br,conceicao de monte alegre,Conceição de Monte Alegre,27,,-22.466667,-50.633333 us,illiana,Illiana,IL,,40.1963889,-87.5319444 tz,msambe,Msambe,20,,-5.3666667,39.6833333 co,tuputs,Tuputs,17,,12.3,-71.35 us,dudleys,Dudleys,AL,,32.3013889,-85.1980556 fr,virignin,Virignin,B9,,45.71665,5.712045 sb,uradau'e,Uradau'e,00,,-8.4666667,160.85 ir,seyban,Seyban,01,,37.0499,45.0972 tr,demirdoven,Demirdöven,08,,40.920556,41.35 ru,bolshoye kobyakovo,Bolshoye Kobyakovo,77,,56.180663,35.151314 hu,csatlostanya,Csatlóstanya,24,,46.766667,16.616667 mx,los canelos,Los Canelos,19,,25.433333,-100.1 cn,han sum,Han Sum,20,,44.5,119.966667 ir,madeh kariz,Madeh Kariz,04,,31.148053,60.389495 id,samirejo,Samirejo,07,,-7.520278,110.183333 by,pieszkowce,Pieszkowce,07,,55.0,26.3833333 id,bangunmulyo,Bangunmulyo,22,,-3.8854,122.2284 mm,zeganbyin,Zeganbyin,01,,20.8833333,92.4 cn,baojiawan,Baojiawan,04,,30.994269,120.52924 no,langlo,Langlo,16,,63.366667,10.133333 gl,qaanaaq,Qaanaaq,01,616,77.4894444,-69.3322222 sn,touba mouride,Touba Mouride,09,,13.8,-16.3333333 us,danielsville,Danielsville,PA,,40.7944444,-75.5275000 tr,soma,Soma,45,65967,39.185535,27.609449 de,heusenstamm,Heusenstamm,05,19257,50.066667,8.8 kg,kodul'-su,Kodul'-Su,03,,41.8244444,72.98 cn,lutijian,Lutijian,24,,39.185375,113.143119 cy,kanli,Kanli,04,,35.2208333,33.2583333 ne,gadanbou,Gadanbou,04,,13.5333333,7.4 br,belisario,Belisário,23,,-28.466667,-53.433333 co,canarias,Canarias,02,,7.40671,-75.305725 cn,xiangqiao,Xiangqiao,26,,34.615141,109.36617 mx,san joaquin del monte,San Joaquín del Monte,15,,19.414722,-99.905556 az,qaraxancalli,Qaraxancalli,26,,39.976553,46.217398 zm,lumbuka,Lumbuka,07,,-11.1333333,31.9166667 co,loma larga,Loma Larga,28,,3.890278,-75.478889 pk,jarman,Jarman,03,,33.527168,71.460032 co,vigia del fuerte,Vigía del Fuerte,02,4638,6.578911,-76.886278 sv,minitas,Minitas,09,,13.7333333,-88.3833333 kp,soksancham,Soksancham,01,,40.0961111,126.2091667 id,blang mirou tunong,Blang Mirou Tunong,01,,5.1587,96.3045 lr,kokoma,Kokoma,01,,6.7,-9.6833333 zr,semendua,Semendua,01,,-3.1833333,18.0833333 zr,lubango,Lubango,11,,0.0666667,29.7 cn,shaixiqiao,Shaixiqiao,07,,27.298849,117.562774 mx,estacadero,Estacadero,11,,21.166667,-100.716667 de,waizenried,Waizenried,02,,47.816667,10.4 la,ban namke,Ban Namke,14,,19.371667,103.243056 us,unionville heights,Unionville Heights,MD,,38.0625000,-75.5966667 us,bowersville,Bowersville,OH,,39.5805556,-83.7250000 us,winfield,Winfield,TN,,36.5558333,-84.4516667 ir,sharafdar kola,Sharafdar Kola,35,,36.541026,52.99553 pl,wielki klincz,Wielki Klincz,82,,54.098096,18.061337 mx,rio florido,Rio Florido,05,,14.85,-92.316667 bg,kaspican,Kaspican,54,3211,43.3,27.1833333 sn,kertiedossira,Kertiédossira,08,,15.3166667,-15.8166667 sd,lu,Lu,28,,3.9775,30.5455556 cn,tinglu,Tinglu,11,,25.276667,111.510833 ba,bjelnica,Bjelnica,02,,43.5188889,18.7375 kr,sinsultong,Sinsultong,06,,38.163611,127.411111 pa,garnaderita,Garnaderita,10,,8.05,-80.95 ir,tajkuh,Tajkuh,41,,33.195592,58.805823 fr,jandun,Jandun,A4,,49.662874,4.557432 mm,mindaw,Mindaw,10,,21.95,95.0666667 kr,samhanni,Samhanni,19,,36.283333,127.3 ve,el nievero,El Nievero,05,,8.2302778,-67.9325 sd,kiteng,Kiteng,28,,3.9333333,32.6166667 ma,beni kleleften,Beni Kleleften,58,,33.876796,-3.207253 cn,shanxi,Shanxi,11,,26.295833,109.803889 ua,kochulova,Kochulova,17,,47.33727,30.022241 fr,jambville,Jambville,B6,,49.045687,1.852786 pl,mlodzieszynek,Mlodzieszynek,78,,52.344029,20.203877 ir,bekesh do dangeh-ye pa'in,Bekesh Do Dangeh-ye Pa'in,07,,30.166667,51.55 cn,yalinqiao,Yalinqiao,11,,29.353889,111.468333 ru,sakhtysh,Sakhtysh,21,,56.794835,40.419234 mw,chiwala,Chiwala,18,,-12.55,34.1666667 pk,mianwala khu,Mianwala Khu,04,,29.555002,71.119998 zr,bwendi,Bwendi,09,,4.4,28.9666667 gt,central,Central,12,,16.4525,-89.080833 cd,bubwala,Bubwala,02,,4.666667,19.133333 cz,verice,Verice,88,,49.785465,14.769977 tr,geliguzan,Geligüzan,21,,38.596817,41.254455 fr,auchy,Auchy,B6,,49.483153,1.77902 et,adama,Adama,51,,8.55,39.266667 ru,pochinok,Pochinok,52,,57.825108,32.34068 cn,jiujianlou,Jiujianlou,13,,44.543889,84.843056 kp,obonggol,Obonggol,12,,38.8061111,126.1866667 bg,caracoci,Caracoci,52,,43.8,27.0666667 tg,djena,Djena,03,,7.85,1.5333333 ru,yurty bergamak,Yurty Bergamak,54,,56.414055,75.055048 us,lake havasu city,Lake Havasu City,AZ,54752,34.4838889,-114.3216667 pl,lugnian,Lugnian,79,,50.786099,18.001428 ir,sayenri,Sayenri,10,,33.9152,46.0602 ec,hacienda victoria,Hacienda Victoria,18,,-0.1166667,-78.5 it,petraio,Petráio,16,,43.383333,11.166667 cz,nemile,Nemile,84,,49.874886,16.846193 ph,santo cristo sur,Santo Cristo Sur,J2,,15.2567,120.952 cm,sondo,Sondo,05,,3.8333333,10.4166667 af,balasad,Balasad,03,,35.990385,69.621559 td,ndiali ouni,Ndiali Ouni,07,,13.75,15.4333333 cn,neixiao,Neixiao,07,,24.365,117.435278 ro,barbuletu,Barbuletu,16,6777,45.133333,25.3 us,shiloh,Shiloh,VA,,38.2213889,-77.1113889 pl,godlewo backi,Godlewo Backi,81,,52.789045,22.418527 mk,kumanicevo,Kumanicevo,49,,41.2836111,21.9947222 ao,duarte,Duarte,08,,-11.966667,15.883333 gh,dwaben,Dwaben,02,,6.8166667,-1.4333333 fr,ecuras,Écuras,B7,,45.683702,.56783 sr,bitagron,Bitagron,18,,5.1666667,-56.1 id,kangkuro,Kangkuro,21,,-1.3815,120.0977 cu,miranda,Miranda,13,,21.15,-76.85 de,wendelstorf,Wendelstorf,12,,53.733333,11.266667 hr,hosti,Hosti,12,,45.3616667,14.3944444 mx,santa barbara,Santa Bárbara,22,,20.75,-99.816667 my,kampung jelawat,Kampung Jelawat,06,,3.0003,102.659 de,oberdill,Oberdill,02,,47.616667,10.633333 ir,dehgaran,Dehgaran,29,,28.6711,57.8061 co,cartagena,Cartagena,20,,1.216667,-77.983333 pt,sequeiros de baixo,Sequeiros de Baixo,17,,41.103093,-8.040091 cn,tianyangnei,Tianyangnei,07,,24.396111,118.025833 ru,krasnoplotava,Krasnoplotava,09,,51.072056,37.400721 id,buntulgajo,Buntulgajo,01,,4.3488,97.7644 de,godas,Godas,02,,49.883333,11.95 kp,ilgok,Ilgok,14,,38.8666667,125.3833333 zm,chimba,Chimba,07,,-9.9,31.4666667 id,tengklik,Tengklik,08,,-7.5187,111.6627 lk,udawela,Udawela,35,,6.9166667,81.3 br,passa tempo,Passa Tempo,15,,-20.666667,-44.5 mg,belavenona,Belavenona,04,,-18.55,48.05 th,ban doi champi,Ban Doi Champi,03,,20.284528,100.024722 la,dan-hao,Dan-Hao,03,,20.533333,104.416667 pk,chak six-eight ar,Chak Six-Eight AR,04,,30.426882,72.231481 ru,safronova,Safronova,77,,57.333333,37.2 pk,basti nuran shah,Basti Nuran Shah,04,,30.157442,70.680666 br,alexandria,Alexandria,30,,-8.183333,-39.7 pk,shaik abbas,Shaik Abbas,03,,32.882982,71.134291 sk,turna nad bodvou,Turna nad Bodvou,03,,48.6,20.8833333 vn,lang bua,Làng Bua,16,,20.866667,105.1 rs,znamenj,Znamenj,00,,44.469167,21.499167 sy,bir nouh,Bîr Noûh,01,,36.8,40.1333333 sy,dilli,Dilli,06,,32.9,36.15 fr,les hauberts,Les Hauberts,A1,,48.147497,3.399212 af,pilali-mirka,Pilali-Mirka,27,,34.502067,68.054467 id,horna,Horna,39,,-1.616667,133.733333 id,tjiwangun,Tjiwangun,30,,-6.866667,107.766667 af,barema,Barema,27,,34.359167,68.621667 id,siparendean,Siparendean,26,,2.1217,99.0988 sy,`usmud,`Usmud,11,,34.9166667,37.3 ir,shahabad-e `arab,Shahabad-e `Arab,42,,36.094726,58.887164 es,quintela de pando,Quintela de Pando,58,,42.189874,-7.129146 ph,aguino,Aguino,42,,8.6115,123.6938 id,pareanglio,Pareanglio,30,,-6.8275,107.331111 ee,kivi,Kivi,20,,58.2333333,25.55 es,olvena,Olvena,52,,40.1,.266667 pk,aspila lam,Aspila Lam,02,,31.342062,69.897039 cn,yinzhuang,Yinzhuang,10,,40.121111,118.501389 vn,b'phi mour,B'Phi Mour,07,,11.916667,107.8 fr,les moutiers,Les Moutiers,B7,,46.695361,-.618095 vn,mai luong,Mai Luong,26,,19.2,105.716667 se,halsjo,Hålsjö,03,,61.833333,16.75 vn,xom giua,Xóm Giua,38,,21.2,105.216667 id,gandaria,Gandaria,33,,-6.1112,105.978 cd,miti-miti,Miti-Miti,02,,-5.633333,19.55 ro,fizesu gherlii,Fizesu Gherlii,13,2614,47.016667,23.983333 by,paluzh pervyy,Paluzh Pervyy,04,,53.3333333,31.55 in,kunjalri dhani,Kunjalri Dhani,24,,27.05547,71.183329 mn,hatofyru,Hatofyru,13,,50.4519444,100.1669444 nz,stillwater,Stillwater,E7,,-42.433333,171.35 cn,taibai zhen,Taibai Zhen,01,,31.496221,118.481224 af,tagab-i-isma`il,Tagab-i-Isma`il,02,,34.96366,63.100015 th,ban san pau thong,Ban San Pau Thong,02,,19.94375,99.272695 ge,ghvada,Ghvada,02,,42.9011111,41.4297222 tr,tel'cheme,Tel'cheme,63,,36.914444,39.125556 bf,nyamouyoro,Nyamouyoro,32,,12.85,-1.4 cn,futian,Futian,30,,23.216075,113.964248 th,ban bakong,Ban Bakong,31,,6.328611,101.505528 by,pshyshykhvosty,Pshyshykhvosty,01,,52.2,24.8166667 tr,boyallar,Boyallar,37,,41.460496,33.440636 kp,wahangdong,Wahangdong,17,,40.7991667,129.4663889 fi,puho,Puho,15,,60.666667,22.65 in,katiyarpurwa,Katiyarpurwa,35,,24.8314,79.2856 ga,moukangi,Moukangi,05,,-2.8833333,10.4833333 gr,nea kerasous,Néa Kerasoús,19,,39.1555556,20.8583333 th,ban san luang,Ban San Luang,03,,19.515611,99.810222 np,manma,Manma,00,,29.15,81.6166667 hn,las lagunetas,Las Lagunetas,07,,13.5833333,-87.1 cn,tungmaochen,Tungmaochen,10,,40.836111,116.266667 ch,leutmerken,Leutmerken,19,,47.565432,9.034712 id,tanasoempoe,Tanasoempoe,21,,-2.05,120.916667 pl,zawodna,Zawodna,75,,50.681667,23.258576 sy,metene abou raiya,Météne abou Raïya,14,,35.0333333,35.9333333 ao,massano d'amorim,Massano d'Amorim,08,,-12.353622,15.102221 ru,malyye beresnyata,Malyye Beresnyata,33,,58.778166,48.423811 mm,pangthum,Pangthum,11,,22.7333333,97.6 gr,dhoriai,Dhoriaí,46,,35.2833333,25.6666667 cz,stare mesto,Stare Mesto,88,,50.084163,14.424971 ml,sagafi,Sagafi,03,,14.1166667,-9.5333333 al,ribanj,Ribanj,44,,40.6533333,19.7805556 at,obergrunau,Obergrunau,07,,47.266667,10.416667 ru,demenino,Demenino,41,,52.0272,34.6754 tr,cokrec,Çökreç,57,,41.5,34.683333 zm,mengo,Mengo,03,,-15.45,22.5 gr,plakovitsa,Plakovítsa,20,,39.1808333,21.1902778 pk,mandakuli,Mandakuli,06,,34.284705,73.924629 af,seyid-ibrakhim-kalay,Seyid-Ibrakhim-Kalay,08,,32.772007,67.782608 pt,covao da mula,Covão da Mula,23,,36.983333,-25.083333 ir,chah khuzi,Chah Khuzi,41,,32.832043,59.808568 ng,ekemakiri,Ekemakiri,52,,4.433004,6.318402 tr,tozlu,Tozlu,81,,38.315331,36.126546 ua,voronoye,Voronoye,01,,49.141627,30.211279 id,jejalen,Jejalen,30,,-6.218056,107.066944 id,likubala,Likubala,28,,-3.155672,126.466302 do,los cabuyas,Los Cabuyas,30,,19.2166667,-70.4166667 ng,shateri,Shateri,39,,11.87608,9.69435 ru,tyushchevskoye,Tyushchevskoye,90,,58.785833,59.061944 kp,songsan,Songsan,11,,39.8,124.6 cd,dipe,Dipe,11,,-1.633333,27.966667 cn,laojuntun,Laojuntun,19,,40.061491,119.875777 gm,mbange ndarra,Mbange Ndarra,02,,13.5833333,-15.55 af,namdarkala,Namdarkala,17,,34.139131,69.71902 us,new baltimore,New Baltimore,MI,11453,42.6811111,-82.7369444 ru,verkhnyaya gutara,Verkhnyaya Gutara,20,,54.220833,96.969444 br,caridade,Caridade,06,,-4.216667,-39.2 ru,archo,Archo,17,,42.598165,46.300103 th,ban ya plong,Ban Ya Plong,60,,8.883333,98.583333 id,ciliwung,Ciliwung,30,,-6.275556,106.404444 ma,douar seffah,Douar Seffah,58,,34.457672,-5.301721 cn,huangniyan,Huangniyan,30,,23.394167,115.634167 fr,giroussens,Giroussens,B3,,43.761989,1.776078 pg,konga,Konga,07,,-6.65,155.4666667 fr,beauvallon,Beauvallon,B8,,43.297466,6.6 bg,lesovo,Lesovo,39,,41.9833333,26.5666667 pl,adamow,Adamow,75,,50.594597,23.147935 cn,cuizhuang,Cuizhuang,04,,32.934145,120.674362 ru,aleksina gora,Aleksina Gora,77,,57.643863,34.515787 gb,kinoulton,Kinoulton,J9,,52.85,-.983333 kr,ungol,Ungol,13,,37.093889,126.836944 lv,luzinieki,Luzinieki,19,,56.8333333,27.7833333 de,siebigerode,Siebigerode,14,,51.566667,11.433333 id,pendoso,Pendoso,08,,-7.7581,113.0031 ci,gamina,Gamina,80,,6.967721,-6.654946 pk,chak fifty-seven five l,Chak Fifty-seven Five L,04,,30.686389,73.2675 id,bojongcanar,Bojongcanar,33,,-6.3937,105.8905 ru,gavryusi,Gavryusi,69,,55.344114,31.563347 jp,nozawa,Nozawa,26,,36.216667,138.466667 sn,kahal,Kahal,11,,12.65,-15.25 sn,cabros,Cabros,12,,12.3666667,-16.7333333 hu,bulgartanya,Bulgártanya,18,,47.916667,22.516667 ee,rokhyukyula,Rokhyukyula,07,,58.9077778,23.4361111 pl,karolina,Karolina,75,,51.6,22.45 ua,roguzno,Roguzno,15,,49.364137,24.201563 pk,katpar,Katpar,02,,29.060337,68.195433 ro,vanatorii-neamt,Vanatorii-Neamt,28,,47.2,26.316667 id,kampungstasiun,Kampungstasiun,30,,-6.824722,107.345556 al,qerreti i vjeter,Qerreti i Vjetër,44,,40.8933333,19.7338889 ma,ait hamdou mouh,Aït Hamdou Mouh,54,,34.902851,-3.373372 ru,novaya yablonovka,Novaya Yablonovka,53,,54.880239,77.309555 kr,songhyolli,Songhyolli,20,,35.240556,128.769444 us,port nickel,Port Nickel,LA,,29.8575000,-89.9625000 id,tjailat,Tjailat,30,,-6.103611,106.303056 ru,tereshkino,Terëshkino,63,,59.566667,111 ru,knyazhenskiy vtoroy,Knyazhenskiy Vtoroy,84,,49.9626,42.9384 kp,okchondong,Okchondong,15,,39.2561111,125.885 cn,duijiang,Duijiang,03,,26.375665,115.321928 mr,bougoudre,Bougoudré,02,,15.4333333,-10.05 de,unteraschau,Unteraschau,02,,47.916667,12.7 gw,cumano,Cumano,11,,12.0033333,-15.6655556 kh,phumi takrak,Phumi Takrak,06,,10.6166667,104.2 lv,kalnciems muiza,Kalnciems Muiza,29,,56.8416667,23.5875 pl,atkamp,Atkamp,85,,54.07381,21.123643 cn,kuanyinssu,Kuanyinssu,26,,33.366667,106.454764 at,sankt peter ob judenburg,Sankt Peter ob Judenburg,06,,47.184167,14.586389 gn,kenienanba,Kéniénanba,26,,12.1,-9.1333333 ve,la saralosa,La Saralosa,05,,8.1166667,-70.4333333 cn,daijiachong,Daijiachong,12,,30.796712,111.638259 ph,agbobolo,Agbobolo,30,,11.1867,122.9801 za,njiveni,Njiveni,05,,-31.844759,29.133779 cn,liuzikou,Liuzikou,01,,32.45,116.466667 th,ban sieo,Ban Sieo,73,,17.553793,104.070066 ir,haft cheshmeh-ye `olya,Haft Cheshmeh-ye `Olya,05,,30.411,50.5547 cn,ili,Ili,13,,43.956944,80.850278 pk,vakil ganga ram,Vakil Ganga Ram,04,,31.654167,73.747222 bj,dougoussi,Dougoussi,01,,10.6,0.9333333 cn,panshizhen,Panshizhen,33,,30.9,108.7 mg,ankito,Ankito,01,,-13.4333333,49.2666667 ru,yekimovo,Yekimovo,40,,55.993611,65.683333 co,el puerton,El Puertón,27,,9.616805,-75.52175 se,mattjal,Mattjäl,24,,63.233333,18.95 cn,tanghungchieh,Tanghungchieh,16,,23.666667,108.616667 in,bhikhi,Bhikhi,23,15960,30.066667,75.533333 ga,oualla,Oualla,02,,-2.0666667,13.7333333 ir,heydar kanlu-ye `olya,Heydar Kanlu-ye `Olya,33,,39.082,46.8789 ru,ragozino,Ragozino,52,,58.46331,34.58511 cn,cainaiji,Cainaiji,32,,28.602515,103.09722 us,north scituate,North Scituate,MA,,42.2188889,-70.7861111 hr,cuntic hrvatski see hrvatski cuntic,Cuntic Hrvatski see Hrvatski Cuntic,14,,45.3666667,16.2833333 cn,tayingpan,Tayingpan,13,,44.983333,81.95 lb,ba`labak,Ba`labak,01,,34.0,36.2 vn,ap binh qui,Ap Binh Qui,03,,10.166667,106.483333 zr,aziba,Aziba,00,,2.1333333,27.6833333 mx,vigueta,Vigueta,30,,20.35,-96.866667 ng,maruba,Maruba,31,,10.431618,6.030205 tz,mwibalie,Mwibalie,19,,-2.2,31.05 mx,chiltepin,Chiltepin,26,,27.916667,-110.6 gh,woti,Woti,02,,6.6166667,-1.6 ma,douar akhatar,Douar Akhatar,47,,31.51,-7.88 jo,tall al khalifah,Tall al Khalifah,21,,29.557158,35.001838 cn,fenghuangchen,Fenghuangchen,23,,31.388333,121.683333 tg,nagble kope,Nagblé Kopé,18,,6.55,0.9666667 my,kampung sungai merbau,Kampung Sungai Merbau,12,,3.6689,101.5261 mq,quartier la sucrerie,Quartier la Sucrerie,00,,14.5666667,-60.9 af,qal`ah-ye koh-e gul bagh,Qal`ah-ye Koh-e Gul Bagh,13,,34.426989,69.093911 cn,gongshencun,Gongshencun,26,,34.400833,108.4825 us,chattahoochee place,Chattahoochee Place,GA,,34.3619444,-83.8652778 pg,wamsak number 2,Wamsak Number 2,11,,-3.5333333,142.9166667 pk,mahram khan,Mahram Khan,05,,27.1125,68.608333 ru,kommunar,Kommunar,78,,56.5655,65.5357 de,grosse dunge,Große Dunge,03,,53.15,8.683333 pf,otutara,Otutara,00,,-17.7666667,-149.4166667 pl,rogozna,Rogozna,78,,52.781521,21.358304 mx,otate,Otate,20,,17.766667,-95.2 id,bara'ala,Bara'ala,08,,-7.1363,113.1961 de,bad teinach-zavelstein,Bad Teinach-Zavelstein,01,,48.7,8.683333 us,friendship estates,Friendship Estates,MD,,38.6394444,-77.0169444 af,ganatey,Ganatêy,28,,31.539747,67.459141 cm,nkolnda,Nkolnda,11,,3.75,11.5333333 fr,chatelus-le-marcheix,Châtelus-le-Marcheix,B1,,46,1.6 fr,rebeuville,Rebeuville,B2,,48.334235,5.704151 id,bahsampuran 2,Bahsampuran 2,26,,2.8781,99.0103 ph,culano,Culano,47,,15.6328,120.9483 kh,phumi pou moreah,Phumi Pou Moreah,03,,12.4666667,104.4666667 lv,mazkusini,Mazkusini,07,,56.0333333,26.8666667 pa,madronal,Madroñal,05,,8.3372222,-78.1313889 al,kaziaj,Kaziaj,43,,41.0813889,19.7525 cn,dacuoshiwan,Dacuoshiwan,12,,30.554634,115.270369 ir,sagmas abad,Sagmas Abad,38,,35.6742,49.4274 bj,zougou,Zougou,03,,10.7352778,2.9711111 co,la pradera,La Pradera,08,,1.228909,-75.661052 mg,anosiary,Anosiary,06,,-23.4333333,43.85 us,odessa heights,Odessa Heights,DE,,39.4522222,-75.6625000 th,ban don bom,Ban Don Bom,22,,16.366667,102.85 sl,kuranko,Kuranko,01,,8.0,-11.3166667 gr,lagkada,Lagkáda,31,,39.0625,21.1427778 ma,lhndek,Lhndek,55,,30.00401,-9.523384 id,tjimaung,Tjimaung,30,,-7.089167,107.5625 mz,bazar,Bazar,04,,-26.5077778,32.6875 vn,lam thon,Lâm Thôn,19,,21.7,104.966667 cn,pingshanxia,Pingshanxia,12,,29.26449,114.190487 ru,nabokino,Nabokino,88,,57.3,40.35 id,lagoga,Lagoga,38,,-4.1391,120.2772 mx,la estancia,La Estancia,14,,19.833333,-103.416667 zm,nachisulu,Nachisulu,05,,-12.85,30.6666667 es,ramacastanas,Ramacastañas,55,,40.186017,-5.046775 cn,huantuo,Huantuo,28,,39.2225,117.313611 cz,krhov,Krhov,78,,49.46167,16.5825 bd,char tabgi,Char Tabgi,80,,22.7166667,90.7166667 cd,moku,Moku,00,,2.516667,25.966667 co,cabeceras,Cabeceras,10,,9.116667,-73.7 ir,bagh-e shah,Bagh-e Shah,42,,36.083333,59.066667 ru,pankovo,Pankovo,33,,60.1544,46.7076 cn,tongchangkou,Tongchangkou,15,,41.533333,96.966667 kr,songsilli,Songsilli,13,,37.16728,127.67646 br,palmeirais,Palmeirais,20,4262,-5.966667,-43.066667 hn,zopilote,Zopilote,02,,13.55,-86.9 af,alagori,Alagori,09,,33.874971,64.521908 ao,molungo,Molungo,19,,-8.513391,14.950245 ru,plotinskoye,Plotinskoye,51,,56.017917,45.208327 tr,yalandiz yaylasi,Yalandiz Yaylasi,32,,36.35,33.766667 pk,jhangi pheru,Jhangi Pheru,04,,33.187667,73.066869 ru,baysa,Baysa,33,,57.2012,49.5337 ge,vesiolovka,Vesiolovka,02,,43.1261111,40.8208333 id,maddumpa,Maddumpa,38,,-4.2251,119.89 pk,goth nabi lash kani,Goth Nabi Lash Kani,05,,25.900522,68.915817 lv,novinje,Novinje,19,,56.25,28.0666667 af,sulaimanabad,Sulaimanabad,41,,33.237213,65.594771 id,balangbutung,Balangbutung,38,,-5.9578,120.5233 cn,xiaoxu,Xiaoxu,01,,31.417069,118.19619 ar,c. salas,C. Salas,01,,-35.393032,-61.997482 ru,pokhvalnoye,Pokhvalnoye,56,,52.491944,36.429444 md,ciorata,Ciorâta,64,,45.966389,28.303056 ro,voloscani mari,Voloscani Mari,38,,45.916667,26.916667 cu,castro,Castro,09,,20.05,-77.5 cn,shizita,Shizita,11,,29.629508,110.07497 be,les haies de frasnes,Les Haies de Frasnes,07,,50.066667,4.45 cn,shangjian,Shangjian,08,,43.640092,130.850386 us,moosehead,Moosehead,ME,,45.5833333,-69.7141667 ru,orlovka,Orlovka,69,,54.273261,33.615434 cg,mba,Mba,08,,-1.2780556,15.5822222 br,santo onofre,Santo Onofre,14,,-7.583333,-57.9 it,casal sottano,Casal Sottano,04,,40.216667,15.033333 bo,mazo cruz,Mazo Cruz,01,,-18.8166667,-65.2166667 mm,hlawga-in,Hlawga-in,09,,18.9333333,96.5666667 tr,tortum,Tortum,31,,36.431667,36.192222 sy,achrafiye,Achrafîyé,02,,35.3,35.9333333 az,arakyul',Arakyul',65,,39.43953,46.995976 cf,bangala boupane,Bangala Boupane,17,,4.9666667,16.8166667 kp,pugoktong,Pugoktong,12,,39.1222222,125.7441667 mx,rincon de zapateros,Rincón de Zapateros,30,,18.372222,-95.355556 af,kebay,Kebay,28,,32.621632,66.653007 cu,finca cabrera,Finca Cabrera,11,,22.9166667,-82.4166667 tw,hsilinli,Hsilinli,04,,22.7666667,120.2833333 at,grosshoflein,Grosshoflein,01,,47.833333,16.483333 ru,bobyrshchino,Bobyrshchino,37,,57.628574,41.438253 lv,tilkas,Tilkas,27,,56.55,22.1666667 gb,timsbury,Timsbury,F2,,51.016667,-1.5 id,rongu,Rongu,18,,-9.9474,120.1789 tr,tirseham,Tirseham,21,,37.803611,40.937222 id,ciwalungan,Ciwalungan,33,,-6.3366,105.8994 kr,hakpongni,Hakpongni,17,,36.3614,127.2511 ru,sungurovo,Sungurovo,40,,55.634722,66.649722 au,kadungle,Kadungle,02,,-32.766667,147.633333 bo,kitapatakara,Kitapatakara,05,,-17.8833333,-68.7333333 ir,seyyedan,Seyyedan,28,,32.5185,52.2635 ru,lyanov,Lyanov,68,,42.960833,44.648889 id,menjangankuning,Menjangankuning,08,,-7.4658,112.2824 in,kheria,Kheria,34,,25.433333,87.25 cn,gaoxiegang,Gaoxiegang,07,,24.691664,116.911732 ng,abule-nla,Abule-Nla,05,,6.483056,3.374167 pk,kaliyanar,Kaliyanar,04,,32.091667,73.033333 ru,udarnyy,Udarnyy,27,1142,44.349167,42.505278 kp,solgogae,Solgogae,06,,38.3488889,125.655 sn,modi koko,Modi Koko,08,,15.0,-15.8333333 ir,faran,Faran,28,,32.9904,52.6252 tn,douar el djenane,Douar el Djenane,18,,37.08492,9.66472 tr,sinekli,Sinekli,63,,37.283333,38.366667 ir,mal-e gol,Mal-e Gol,22,,28.5709,51.3848 id,tiroau,Tiroau,22,,-5.7768,123.9528 ru,chistopolye,Chistopolye,39,,57.4827,93.5547 bd,manua,Manua,80,,23.2666667,91.0333333 pk,banwala,Banwala,04,,29.19358,71.005231 am,yaghdan,Yaghdan,06,,41.0091667,44.5083333 ph,barobo,Barobo,23,,11.359722,125.490556 tr,celtikci,Çeltikçi,16,,40.060917,28.230286 ng,kemburawa,Kemburawa,57,,12.398922,6.621147 uz,alamli,Alamli,15,,39.7666667,67.5333333 iq,mulla aumar,Mulla Aumar,05,,35.0952778,45.0975 rs,kisinske trle,Kisinske Trle,00,,42.340278,21.680833 td,geri gaybang,Géri Gaybang,12,,14.1333333,20.35 ee,surekerve,Surekerve,01,,59.5305556,25.6533333 id,kintelan kidul,Kintelan Kidul,07,,-7.305833,110.467222 ir,khatunabad,Khatunabad,26,,35.499,51.66 ni,santo tomas del norte,Santo Tomás del Norte,03,,13.1833333,-86.9333333 id,temboekoe,Temboekoe,02,,-8.4521,115.3846 pe,capto,Capto,15,,-12.4166667,-76.5666667 cg,kimboubou,Kimboubou,11,,-4.085,14.9722222 ro,salceni,Salceni,37,,45.266667,28.75 id,pantenusu,Pantenusu,31,,1.4045,125.2032 gr,platanokhorion,Platanokhórion,13,,40.55,23.4166667 cn,xiyuan,Xiyuan,01,,29.6875,117.866667 hu,kistanya,Kistanya,18,,47.766667,21.9 sd,achod,Achod,32,,7.1041667,29.3941667 bd,choolna,Choolna,81,,23.3833333,89.6833333 ir,`ali rezaabad-e qadim,`Ali Rezaabad-e Qadim,32,,39.648056,47.858333 tr,halpuz,Halpuz,44,,38.8,38.283333 af,bazar-e yakavlang,Bazar-e Yakavlang,05,,34.735252,66.973785 za,edenvale,Edenvale,02,,-30.379027,28.923484 ee,konguta,Konguta,18,,58.2252778,26.2936111 ve,los cedros,Los Cedros,23,,10.4611111,-71.3669444 cn,wangkochuang,Wangkochuang,25,,36.267222,120.641667 il,`en hod,`En Hod,04,,32.7,34.983333 se,vrena,Vrena,18,,58.866667,16.683333 ng,ikot esiet,Ikot Esiet,21,,5.209386,7.865777 cf,sakany,Sakany,09,,5.3333333,14.9 my,kampong jerai,Kampong Jerai,02,,5.598391,100.846915 ir,sar zard,Sar Zard,03,,31.725092,50.56903 ye,siddah,Siddah,04,,15.3166667,47.75 th,king amphoe bhonngam,King Amphoe Bhonngam,75,,14.756389,105.411472 se,gagersrum,Gagersrum,09,,57.816667,16.5 ru,kakvinskiye ugolnyye pechi,Kakvinskiye Ugolnyye Pechi,71,,59.71714,59.61245 ru,polyanka,Polyanka,52,,57.787217,30.774626 cn,gulou,Gulou,32,,31.144615,105.965411 be,langes,Langes,04,,50.616667,6.066667 cn,yanzhuang,Yanzhuang,04,,32.1875,118.65 cn,zhangjing,Zhangjing,01,,32.25,115.933333 cn,pachiafenfang,Pachiafenfang,08,,46.390278,126.436389 cu,calabaza numero 7,Calabaza Número 7,12,,20.7666667,-75.85 cy,pendelya,Pendelya,06,,34.8583333,32.6166667 cn,xu,Xu,14,,28.902,93.302 lr,dulee,Dulee,09,,7.4825,-8.4436111 in,amboli,Amboli,16,,17.716667,73.55 af,sayb joy,Sayb Joy,05,,34.25044,67.006418 us,hartsville,Hartsville,IN,,39.2675000,-85.6980556 ba,marini,Marini,02,,44.8941667,16.4872222 cd,ngoi,Ngoi,07,,-1.505278,28.595833 ve,guayabito,Guayabito,15,,10.4444444,-66.75 ro,teiu din vale,Teiu din Vale,42,,44.65,25.133333 td,dondounga,Dondounga,08,,8.45,15.5 ru,minovka,Minovka,41,,52.0477,35.9367 pk,thul duriani surja,Thul Duriani Surja,04,,28.925,69.9625 us,palito blanco,Palito Blanco,TX,,27.5913889,-98.1888889 ru,rossoshanskiy,Rossoshanskiy,84,,48.0927,42.1292 gb,blagdon,Blagdon,J4,,51.328056,-2.718056 ve,capacho,Capacho,02,,9.7027778,-63.9552778 id,kasih,Kasih,07,,-7.312222,109.430556 id,sumberejo 3,Sumberejo 3,26,,3.55107,98.92039 ba,ledenice,Ledenice,01,,43.4908333,17.8530556 ng,tyohambe,Tyohambe,26,,7.879,8.6572 ph,lumbac,Lumbac,35,2448,7.724513,124.250832 pl,gozdziowka,Gozdziowka,78,,52.272349,21.483333 si,spodnje jelenje,Spodnje Jelenje,04,,46.05,15.0 ru,shumikha,Shumikha,20,,51.8004,104.4717 zr,bradja,Bradja,11,,-1.6333333,27.0666667 af,qal`ah-ye hajiha,Qal`ah-ye Hajiha,13,,34.395832,69.139578 vn,ganh thieng,Ganh Thieng,28,,12.291667,109.241667 la,ban taophagna,Ban Taophagna,18,,22.256111,102.110556 pg,abikal,Abikal,12,,-5.8666667,145.7166667 tn,franceville,Franceville,36,,36.816111,10.166111 mt,kacca,Kacca,00,,36.05,14.264444 de,stockerpoint,Stockerpoint,02,,48.716667,12.533333 ge,lemshveniera,Lemshveniera,08,,41.4411111,45.1441667 ao,quima,Quima,12,,-9.4,16.266667 ru,khutor pervaya maya,Khutor Pervaya Maya,37,,57.638716,40.76584 mn,burgastoyn khamtrol,Burgastöyn Khamtrol,17,,47.0833333,112.0833333 at,vorderwinkl,Vorderwinkl,02,,46.7375,13.892778 us,western landing,Western Landing,ME,,43.7138889,-70.1200000 se,kalkstad,Kalkstad,09,,56.616667,16.516667 ph,agtinga,Agtinga,54,,12.2676,122.0416 al,lugjaj,Lugjaj,41,,41.7952778,20.3477778 us,cutting,Cutting,GA,,31.0144444,-82.8036111 ba,glamoc,Glamoc,01,4015,44.0458333,16.8486111 kr,wondangkol,Wondangkol,14,,35.866667,129 pk,kamar kili,Kamar Kili,03,,33.038708,70.979493 ro,icafalau,Icafalau,15,,46,26.016667 mm,chaungbya,Chaungbya,01,,19.0833333,93.8 kp,hwangmandong,Hwangmandong,06,,38.1086111,125.5208333 hu,nagydunapart,Nagydunapart,16,,47.683333,19.116667 ir,shahrak-e damdaran,Shahrak-e Damdaran,01,,36.5081,46.2367 ph,balili,Balili,44,,17.0474,120.9268 cn,chenjiafen,Chenjiafen,22,,39.855,115.878889 ua,zakharovka,Zakharovka,17,,47.33232,29.759027 ru,dolginkiy,Dolginkiy,84,,50.633333,44.8 ru,bolshaya pukhova,Bolshaya Pukhova,52,,57.547306,30.849837 bo,postre valle,Postre Valle,08,,-18.4833333,-63.85 al,prat,Prat,41,,41.6116667,20.3202778 lk,vannanmarutankulam,Vannanmarutankulam,31,,9.1,80.55 cn,gongtangting,Gongtangting,30,,24.392187,115.856185 ua,bolshaya volnyanka,Bolshaya Volnyanka,13,,49.450588,30.428639 fr,les bruyeres,Les Bruyères,A3,,46.614383,2.530192 ua,bogdanovskiy,Bogdanovskiy,16,,47.566667,31.533333 ru,vtoroye ukolovo,Vtoroye Ukolovo,41,,51.983333,36.45 dk,daugstrup,Daugstrup,21,,55.491825,10.405641 th,ban tha sawan,Ban Tha Sawan,22,,16.233333,102.666667 by,szydlowicze,Szydlowicze,03,,53.0166667,25.3833333 tt,plaisance,Plaisance,03,,10.2833333,-61.0 us,porterwood,Porterwood,WV,,39.0697222,-79.6983333 us,laurel mills,Laurel Mills,VA,,38.6480556,-78.0894444 id,boweja,Boweja,18,,-8.8054,120.9671 be,crevecoeur,Crèvecoeur,03,,50.55,3.433333 by,staromyadzel,StaroMyadzel,06,,54.8833333,26.9333333 ru,khokhly,Khokhly,56,,53.097211,37.07091 rs,zednik,Zednik,00,,45.940833,19.670833 cn,xujia,Xujia,03,,25.386076,115.717418 lt,pokane,Pokane,60,,55.6333333,24.9 ru,ulusy gigetuyskiye,Ulusy Gigetuyskiye,11,,50.733333,105.283333 so,herinta,Herinta,16,,9.55,43.7333333 id,kebutuhduwur,Kebutuhduwur,07,,-7.471111,109.686667 se,mariedamm,Mariedamm,15,,58.85,15.15 th,ban thon nuea,Ban Thon Nuea,17,,17.747323,102.641313 cn,wangchiang,Wangchiang,10,,40.414722,118.720833 cn,xianiaozhubu,Xianiaozhubu,02,,29.542294,119.390836 ru,kashintsevo,Kashintsevo,77,,56.973001,35.548065 ph,cabungahan,Cabungahan,39,,12.4534,123.765 se,hallaryd,Hallaryd,12,,56.483333,13.866667 kp,chungmari,Chungmari,14,,38.8175,125.4638889 pk,habibullal,Habibullal,03,,32.935597,70.577756 af,rasul khel kelay,Rasul Khel Kelay,28,,31.737837,67.262903 mx,rancho la esealera,Rancho La Esealera,19,,27.2,-99.833333 cn,tuoshi zhen,Tuoshi Zhen,12,,30.727875,112.826967 fr,hiesville,Hiesville,99,,49.370149,-1.264258 ph,gapipian,Gapipian,67,,12.266667,124.65 us,satsuma,Satsuma,FL,,29.5547222,-81.6561111 iq,fawar,Fawar,04,,32.1,45.1166667 tr,pelitli,Pelitli,13,,38.192269,42.384446 ir,garab,Garab,42,,36.33281,58.752012 jp,kawaze,Kawaze,29,,37.733333,139.2 ph,bau,Bau,57,,7.405278,124.649722 ir,jah jah halaliyan,Jah Jah Halaliyan,15,,31.798857,49.737428 th,ban bang kahai,Ban Bang Kahai,44,,13.666667,101.016667 ir,narges marzeh,Narges Marzeh,35,,36.533897,52.501321 cn,zhuangmuzhen,Zhuangmuzhen,01,,32.352778,117.116667 lt,gatauciai,Gatauciai,60,,56.0588889,24.7722222 ua,karchago,Karchago,11,,45.641437,33.26227 cz,littitz,Littitz,87,,49.697349,13.351733 bg,paradzhik,Paradzhik,61,,43.8333333,27.7333333 cf,boubou,Boubou,11,,5.6666667,20.7 gn,ikirote,Ikirote,18,,12.4666667,-13.0333333 pk,allahyar bhutto,Allahyar Bhutto,05,,28.086705,69.663332 sn,alo,Alo,04,,16.6,-14.4666667 ir,posteh,Posteh,23,,33.448,48.3518 nl,egelshoek,Egelshoek,07,,52.1816,5.144785 bj,attogon,Attogon,02,,6.7166667,2.15 cn,qipan,Qipan,07,,24.128611,117.208056 sd,at tulayh,At Tulayh,27,,14.45,33.2833333 bd,mahishgudi,Mahishgudi,81,,22.9333333,90.4 cn,daan,Daan,09,,34.315278,112.556667 ru,zhabino,Zhabino,69,,54.0108,32.7492 lk,kadurumuna,Kadurumuna,30,,7.8833333,80.5 de,lotzemer,Lotzemer,07,,51.216667,6.25 kr,wonumgol,Wonumgol,14,,36.720556,128.920833 ru,kolbinskoye,Kolbinskoye,75,,57.514167,83.426667 ru,grinevka,Grinëvka,56,,52.399111,36.430352 pt,borralheira,Borralheira,06,,40.283333,-7.5 cn,guanmoyan,Guanmoyan,32,,31.868079,105.641298 pe,chacapalca,Chacapalca,04,,-15.345,-71.4894444 ly,qaryat al ja`afirah,Qaryat al Ja`afirah,58,,32.3833333,15.15 id,laledon,Laledon,30,,-6.6125,106.697222 ec,san ricardo,San Ricardo,10,,-1.7833333,-79.9166667 ir,murtazaviyeh,Murtazaviyeh,41,,32.549941,59.12323 ru,sukkozero,Sukkozero,28,,63.170182,32.344357 no,skogvik,Skogvik,07,,60.448333,5.226667 mx,cavazos,Cavazos,28,,26.15,-98.35 id,hitoemesing,Hitoemesing,28,,-3.58261,128.179632 ru,anishino pervoye,Anishino Pervoye,77,,56.75,31.166667 ng,suberu oje,Suberu Oje,05,,6.666667,3.266667 id,pintoe,Pintoe,30,,-6.165278,107.037222 nl,hoevelaken,Hoevelaken,03,,52.170963,5.464927 la,ban nabouay,Ban Nabouay,04,,18.216667,104.233333 pl,bohatyry lesne,Bohatyry Lesne,81,,53.796574,23.533832 by,studenki,Studenki,04,,53.5847222,30.0330556 cz,pelc tyrolka,Pelc Tyrolka,88,,50.1,14.433333 ye,al jidfirah,Al Jidfirah,04,,15.4275,48.0575 cu,puerto escondido,Puerto Escondido,11,,23.1391667,-81.7241667 zr,ngagi,Ngagi,00,,-12.2666667,29.55 pk,patheri syedan,Patheri Syedan,03,,34.223969,73.16127 ru,zengali,Zengali,CI,,42.836111,45.272778 no,arhejm,Århejm,15,,61.883333,6.716667 sd,qurdud,Qurdud,33,,11.8166667,25.7666667 bg,georgi dimitrov,Georgi Dimitrov,46,,43.5,24.55 pl,bieliny kapitulne,Bieliny Kapitulne,84,,50.849048,20.923044 tr,alay,Alay,65,,38.673919,43.238967 es,villagonzalo de tormes,Villagonzalo de Tormes,55,,40.892211,-5.496637 in,katra ruppur,Katra Ruppur,36,,26.7797,79.5295 ph,silmod,Silmod,16,,13.716667,123.35 pk,basti mehran,Basti Mehran,04,,29.13082,71.130495 pk,duzab,Duzab,02,,27.7625,63.136944 cn,changtai,Changtai,19,,41.555913,121.994037 ru,rudnev,Rudnëv,56,,53.015527,35.859548 za,morgansbaai,Morgansbaai,05,,-32.704603,28.341119 za,schoemanskloof,Schoemanskloof,07,,-25.45,30.416667 gb,saint marys clist,Saint Marys Clist,D4,,50.716667,-3.45 ir,sheykh sorkh od din-e `olya,Sheykh Sorkh od Din-e `Olya,13,,34.1663,45.8754 zm,nsonga,Nsonga,07,,-10.1333333,33.0833333 cf,ouetele,Ouetélé,13,,7.15,15.9 hu,dotk,Dötk,24,,46.95,17.016667 tg,kasse,Kassé,14,,9.6666667,1.2833333 na,epashna,Epashna,33,,-17.4666667,16.6166667 de,niedermunzig,Niedermunzig,13,,51.1,13.416667 sv,los dos cerros,Los Dos Cerros,05,,14.0166667,-89.2833333 ru,bryukhanovo,Bryukhanovo,47,,55.937866,35.546328 kp,yondang,Yondang,06,,38.1166667,125.5666667 ru,chentsy,Chentsy,37,,57.548235,40.901096 ru,panyukovo,Panyukovo,47,,55.78493,35.398955 af,shadgani,Shadgani,29,,32.919285,69.443726 cn,guijiaheba,Guijiaheba,26,,33.315065,107.873653 lv,surikova,Surikova,03,,56.9333333,27.6 ru,imeni ordzhonikidze,Imeni Ordzhonikidze,51,,54.8305,43.781604 de,klausen,Klausen,08,,49.9,6.883333 fr,landser,Landser,C1,,47.683874,7.394004 ir,yafdam,Yafdam,04,,26.81,60.0875 ro,temeskalacsa,Temeskalacsa,36,,45.949167,21.143611 ua,borisoglebovka,Borisoglebovka,02,,51.586713,30.834292 ec,hacienda ingenio,Hacienda Ingenio,18,,-0.1666667,-78.3833333 kz,tasay,Tasay,10,,42.366667,69.716667 gr,males,Máles,45,,35.0833333,25.5833333 kr,sangjwadong,Sangjwadong,14,,36.55,128.5 cl,pocuro,Pocuro,01,,-32.883333,-70.633333 kr,keunmasil,Keunmasil,17,,37.050556,126.520556 kz,imeni stalina,Imeni Stalina,14,,44.95,65.716667 cn,songgui zhen,Songgui Zhen,30,,22.901121,111.768581 tw,pengpeng,Pengpeng,04,,23.8166667,121.0166667 us,coesfield,Coesfield,TX,,33.8183333,-97.0316667 ua,sernky seredni,Sernky Seredni,06,,49.291203,24.733518 es,vilarrobau,Vilarrobau,56,,42.163312,3.007958 vn,ap go cao,Ap Go Cao,24,,10.883333,106.416667 zr,kabamba,Kabamba,05,,-11.55,26.1 pk,bharjali,Bharjali,04,,30.608803,70.389785 af,khele bala,Khele Bala,09,,33.516014,64.387664 pk,doda banda,Doda Banda,03,,35.232294,72.93411 mz,catechano,Catechano,03,,-21.1408333,34.5330556 et,agac,Agac,49,,7.616667,33.85 us,east irondale,East Irondale,AL,,33.5305556,-86.6888889 ru,kamentsa,Kamentsa,77,,56.271881,33.42829 mx,campo ciento siete,Campo Ciento Siete,06,,28.833333,-107.05 cd,kaseya,Kaseya,05,,-5.55,26.8 kr,wonbongam,Wonbongam,03,,35.844703,127.337617 ir,mojeybel,Mojeybel,15,,31.374,49.2197 de,bonnland,Bonnland,02,,50.05,9.866667 vu,taal netan,Taal Nétan,11,,-16.5,168.2 th,ban na sinuan,Ban Na Sinuan,76,,17.422667,102.461972 al,(( shengjergj )),(( Shëngjergj )),44,,40.8833333,19.5833333 zr,gobolole,Gobolole,00,,-9.4333333,27.3833333 fr,la haye-le-comte,La Haye-le-Comte,A7,,49.2,1.15 it,sulzano,Sulzano,09,,45.683333,10.083333 ba,vukovic,Vukovic,01,,43.7569444,18.0508333 in,pathariyajagan,Pathariyajagan,35,,24.1621,78.3634 in,saunsari,Saunsari,36,,26.9896,79.7485 cn,dashansi,Dashansi,32,,28.694656,103.807972 pe,piyai,Piyai,03,,-14.2166667,-72.6833333 cn,tongxingjie,Tongxingjie,04,,34.416667,119.4 ph,kabacnang,Kabacnang,H6,,17.9124,121.1613 ph,gaongan,Gaongan,16,,13.7571,122.9647 de,rorichum,Rorichum,06,,53.316667,7.35 ua,vylayaruzki,VylaYaruzki,23,,48.444992,28.037624 cn,shangguan zhen,Shangguan Zhen,18,,25.828056,105.615 jo,umm el quttein,Umm el Quttein,02,,32.315628,36.629441 zr,yobo,Yobo,02,,-5.0666667,20.0333333 us,seaton spring,Seaton Spring,TN,,35.8113889,-83.4958333 ma,bouigra,Bouigra,47,,31.210529,-8.843809 ph,caniogan dacquel,Caniogan Dacquel,29,,17.5,120.433333 cn,bajiaomiao,Bajiaomiao,01,,31.467557,118.171612 tw,lahaoshe,Lahaoshe,04,,24.8,121.35 ru,almenevo,Almenevo,53,,56.457209,76.234474 af,konakbande,Konakbande,34,,35.343589,71.512061 us,ferguson spring,Ferguson Spring,KY,,36.8511111,-88.0391667 ru,ushiro,Ushiro,64,,48.85,141.933333 ma,taourirt,Taourirt,58,,33.833531,-4.00553 ao,quiquiumba,Quiquiumba,15,,-7.185586,16.211861 pk,chak munshi,Chak Munshi,04,,31.885561,72.357007 zr,kangala,Kangala,00,,-3.9833333,23.6333333 us,valle vista,Valle Vista,CA,,37.8227778,-122.1377778 hu,berekret,Berekrét,02,,46.166667,18.416667 ir,jahad nab,Jahad Nab,23,,33.250282,48.206611 ve,el diamante,El Diamante,23,,10.4261111,-71.3630556 sr,wasjabo,Wasjabo,18,,5.2166667,-57.1833333 gw,poncon,Poncon,05,,11.5833333,-15.4333333 pt,corte de sao tome,Corte de São Tomé,09,,37.375309,-7.543679 gf,village creole,Village Créole,00,,3.2166667,-53.7166667 si,prelesje,Prelesje,04,,46.0666667,14.2 jo,samad,Samad,02,,32.459868,35.832213 cn,waiqiaowu,Waiqiaowu,02,,29.911777,120.663878 gm,banenko simaila,Banenko Simaila,04,,13.2833333,-14.1333333 ne,batata,Batata,04,,13.5166667,7.3666667 id,tegalena,Tegalena,30,,-7.1468,108.566 us,eagle center,Eagle Center,IA,,42.3408333,-92.3572222 gn,kobeleya,Kobèlèya,16,,10.4833333,-12.7 az,yeni sarif,Yeni Sarif,10,,41.725831,46.243595 sv,quitasol,Quitasol,03,,14.0666667,-89.15 ru,kopeyki,Kopeyki,77,,56.032635,32.828261 jp,yorojima,Yorojima,18,,28.05,129.166667 us,claytonville,Claytonville,TX,,32.6150000,-100.5255556 ba,orahovica gornja,Orahovica Gornja,01,,44.4836111,18.3975 se,aspas,Äspås,08,,57.45,13.566667 ve,los chorritos,Los Chorritos,07,,10.1,-68.2666667 cn,maopingshan,Maopingshan,32,,31.417555,107.60698 ye,`aqabat nu`man,`Aqabat Nu`man,14,,14.6333333,45.5833333 kr,chiildong,Chiildong,14,,35.9925,128.797778 sd,el megeifa,El Megeifa,27,,13.8833333,32.2333333 hu,kontra sor,Kontra Sor,03,,46.816667,20.85 kh,peam sres,Peam Sres,01,,13.55,103.1333333 tz,ikungu,Ikungu,16,,-4.2,34.65 cn,nangan,Nangan,09,,32.158889,114.404444 mg,ambodivoananto,Ambodivoananto,04,,-19.2,48.9 gn,seymana,Seymana,26,,11.2833333,-9.2333333 zm,kayama,Kayama,04,,-17.85,25.5333333 ir,shatman,Shatman,01,,36.284,45.4616 ng,chukum,Chukum,26,,7.416667,8.566667 la,ban pakko,Ban Pakko,07,,20.871389,102.141389 us,waimea,Waimea,HI,,21.9583333,-159.6708333 br,umbu,Umbu,26,,-27.5,-51.466667 th,ban rai pru,Ban Rai Pru,11,,16.666667,99.683333 ng,etiti-ulo,Etiti-Ulo,45,,5.534206,7.645293 tr,hacisuleyman,Hacisuleyman,93,,40.796274,31.25311 bg,zar-kalojan,Zar-Kalojan,51,,42.0166667,24.7 in,latifgarh,Latifgarh,36,,29.5725,77.417222 ao,guanza saca,Guanza Saca,06,,-10.679511,14.502713 id,linu,Linu,07,,-6.6736,110.6841 br,nevez,Nevez,15,,-19.783333,-44.1 cf,laodeka,Laodeka,02,,4.7166667,21.0166667 eg,heracleopolis magna,Heracleopolis Magna,18,,29.0891667,30.9411111 bo,estancia cala carita grande,Estancia Cala Carita Grande,05,,-17.85,-66.7333333 pl,linowo,Linowo,85,,53.647289,20.962016 pt,capeludos de aguiar,Capeludos de Aguiar,21,,41.624742,-7.631096 us,matthews,Matthews,AL,,32.2652778,-86.0038889 cn,lugou,Lugou,01,,33.016667,116.575 id,loji,Loji,07,,-6.7272,110.8698 co,san clemente,San Clemente,20,,1.611927,-77.193785 mx,san jose de la era,San José de la Era,32,,22.85,-102.933333 pl,lubieszow,Lubieszow,76,,51.539114,15.151035 cy,mazotos,Mazotos,03,,34.8083333,33.4875 pl,dziecioly dalsze,Dziecioly Dalsze,78,,52.596142,22.293248 at,waisach,Waisach,02,,46.737778,13.230556 hr,valle san pietro,Valle San Pietro,12,,44.7975,14.7247222 es,vallcebre,Vallcebre,56,,42.20347,1.818155 ro,botesti,Botesti,40,,45.533333,27.4 ge,kisoret'i,Kisoret'i,55,,42.4258333,42.8736111 ir,`aladar-e bala,`Aladar-e Bala,41,,32.815552,59.252983 it,villa littorio,Villa Littorio,04,,40.366667,15.333333 cn,hujindian,Hujindian,12,,31.072224,113.658121 af,taraka-i-`abdullah khan,Taraka-i-`Abdullah Khan,11,,34.305981,61.841812 kp,paktaekol,Paktaekol,06,,38.1122222,126.0225 mm,yawngraik,Yawngraik,11,,23.0333333,99.15 bg,golemin,Golemin,43,,41.6,25.2333333 mx,el zapote,El Zapote,04,,18.223611,-91.783333 mm,thabyuzeik,Thabyuzeik,03,,17.75,95.3 by,bobynichi,Bobynichi,07,,55.2833333,28.4166667 pk,basti tarkhana,Basti Tarkhana,04,,28.949623,70.901175 br,sitio granada,Sítio Granada,18,,-23.088869,-52.082728 us,gary,Gary,GA,,32.5575000,-82.3186111 af,paytaw,Paytaw,09,,34.832691,65.305183 mx,taciroc,Taciroc,14,,21.083333,-102.316667 pl,kolonia jaski,Kolonia Jaski,74,,51.279266,18.292139 vn,van phuoc hung,Van Phuoc Hung,27,,14.933333,108.833333 ie,baile an chinneidigh,Baile an Chinnéidigh,31,,53.0897222,-6.1119444 ch,jeuss,Jeuss,06,,46.904053,7.162724 mm,chaungthongwa,Chaungthongwa,09,,17.3666667,95.7166667 fr,arbis,Arbis,97,,44.678684,-.245509 pg,waigani,Waigani,03,,-10.3166667,150.25 us,carolina mountains,Carolina Mountains,NC,,35.4494444,-82.1722222 ru,zaozernaya,Zaozernaya,64,,48.366667,142.666667 pk,bhakari,Bhakari,04,,32.960695,72.876147 de,schweinheim,Schweinheim,07,,50.616667,6.866667 se,eke,Eke,26,,59.816667,18.783333 so,samaysa dheer,Samaysa Dheer,03,,9.8666667,49.1 me,rzani do,Rzani Do,00,,42.513611,18.838611 id,kepunduhan,Kepunduhan,07,,-6.8977,109.2099 de,wendeburg,Wendeburg,06,,52.333333,10.4 gb,llandulas,Llandulas,Y8,,52.05,-3.633333 ru,lesouchastok vtoroy,Lesouchastok Vtoroy,39,,56.0172,94.0493 de,langelage,Langelage,06,,52.366667,8.25 ug,kayanja,Kayanja,74,,-0.1,31.05 na,haisisera,Haisisera,34,,-17.8333333,19.0833333 ru,serkina,Serkina,63,,59.383333,112.516667 gb,peasenhall,Peasenhall,N5,,52.266667,1.45 ph,tugot,Tugot,30,,10.9813,122.587 ru,khyr-kasy,Khyr-Kasy,16,,55.865834,47.297626 fr,lansac,Lansac,97,,45.061758,-.542524 tn,al `ayayishah,Al `Ayayishah,30,,34.317482,9.265349 in,surul,Surul,16,,17.95,73.983333 cd,okoka niumbi,Okoka Niumbi,00,,-3.933333,23.366667 sy,qusaybiyah,Qusaybiyah,14,,35.0833333,36.0 kh,phumi chumreah pen,Phumi Chumreah Pen,19,,11.1666667,104.7833333 ly,es-slahat,Es-Slahát,57,,32.1272222,13.1 ir,sattani,Sattani,04,,25.780374,61.115087 me,trmanje,Trmanje,00,,42.6475,19.344722 pk,bet utera,Bet Utera,04,,30.404393,70.797501 in,dikrum,Dikrum,03,,26.166667,93.566667 tw,hsiaputing,Hsiaputing,04,,25.0166667,121.0333333 ng,dembori,Dembori,46,,10.278515,10.313802 cn,lizigu,Lizigu,28,,39.5,117.333333 ru,yandi,Yandi,20,,54.6,103.266667 rs,mala lomnica,Mala Lomnica,00,,43.006944,22.145278 ir,qisbeh,Qisbeh,15,,30.496111,48.286389 es,villamarzo,Villamarzo,34,,43.227625,-6.914401 ir,dowhondeh,Dowhondeh,08,,37.3481,49.2944 pe,antacancha,Antacancha,09,,-12.9905556,-75.5213889 ma,ich afoudane,Ich Afoudane,55,,29.652191,-9.957474 de,rosensdorf,Rosensdorf,12,,53.066667,11.35 kr,unmahyon,Unmahyon,06,,38.239722,127.624167 ec,guapara,Guapara,10,,-1.9666667,-79.7333333 kr,mulchon,Mulchon,14,,35.869722,129.283056 mg,mafaitaka,Mafaitaka,02,,-23.8166667,47.5833333 pk,nihalwala,Nihalwala,04,,29.364212,70.824016 ml,zon,Zon,04,,13.85,-3.1166667 pt,vale madeiros,Vale Madeiros,19,,37.966243,-8.537321 gy,melville,Melville,14,,6.9666667,-58.4666667 ru,geyne lakhta,Geyne Lakhta,42,,60.65,28.366667 us,cliff mills,Cliff Mills,VA,,38.7208333,-77.9086111 af,pakpulagh,Pakpulagh,27,,33.998192,68.25679 nz,conical hill,Conical Hill,F2,,-46.066667,169.233333 sn,koubalar,Koubalar,12,,12.8872222,-16.2122222 af,tarakeh-ye `abdollah khan,Tarakeh-ye `Abdollah Khan,11,,34.305981,61.841812 zr,kibiasu,Kibiasu,08,,-5.0166667,16.0333333 us,hemlock,Hemlock,VA,,37.0691667,-80.2158333 al,burrani,Burrani,42,,41.4547222,19.8258333 tr,kuyumcutekke,Kuyumcutekke,68,,40.196192,31.964055 ru,kochanovka,Kochanovka,41,,51.6131,35.1825 de,doingen,Döingen,07,,50.933333,7.816667 ru,kotrokhovo,Kotrokhovo,21,,56.641431,42.449267 ci,kiramesse,Kiramesse,92,,8.418058,-3.750332 pl,strupin maly,Strupin Maly,75,,51.105621,23.516667 es,valle del alamo,Valle del Álamo,51,,37.283333,-7.183333 br,acarai,Acaraí,06,,-3.016667,-39.633333 us,bellevue manor trailer park,Bellevue Manor Trailer Park,MT,,48.4075000,-115.5930556 ro,cernatul-de-sus,Cernatul-de-Sus,15,,45.966667,26.016667 tr,vengah,Vengâh,24,,39.323198,38.475892 bg,razvalini kara agach,Razvalini Kara Agach,43,,42.1,25.5833333 ru,shirokovtsy,Shirokovtsy,33,,58.332674,50.468269 cn,shiyangshao,Shiyangshao,11,,27.906944,109.654444 mx,tlaquetzala,Tlaquetzala,12,,17.716667,-98.533333 tr,kamiscik,Kamiscik,46,,38.113964,36.87312 de,taxberg,Taxberg,02,,48.516667,11.15 us,cameron villa farms,Cameron Villa Farms,VA,,38.7802778,-77.1377778 id,patulana ujung,Patulana Ujung,41,,-2.0428,119.2126 jp,hiyagon,Hiyagon,47,,26.308889,127.816944 tw,kungpeitsun,Kungpeitsun,04,,23.5666667,119.6 id,djalambar,Djalambar,04,,-6.1604,106.7847 bg,krepca,Krepca,52,,43.4666667,26.1333333 us,carpenter,Carpenter,CA,,37.6133333,-122.0433333 in,chorten,Chorten,12,,34.6375,76.416667 in,palaiyamkottai,Palaiyamkottai,25,,8.716667,77.733333 br,buritizal,Buritizal,14,,-15.733333,-54.45 mx,el cacao,El Cacao,12,,17.333333,-100.3 iq,abd al husayn,Abd al Husayn,10,,33.6977778,45.0255556 iq,sumaqah,Sumaqah,05,,34.8747222,45.0925 hu,mariatelep,Máriatelep,21,,46.683333,18.816667 br,lagoa dos currais,Lagoa dos Currais,22,,-5.883333,-35.516667 lv,medzulas muiza,Medzulas Muiza,20,,57.0166667,25.95 by,yasevichi,Yasevichi,07,,55.0833333,27.8666667 ru,vozheil,Vozheil,80,,57.169574,53.067666 id,bungi,Bungi,22,,-4.8588,122.665 cn,tangqiaopo,Tangqiaopo,30,,21.735593,110.809934 cn,yunhwo,Yünhwo,02,,28.110833,119.563889 id,coppawengang,Coppawengang,38,,-4.1236,120.0341 ru,sliznevo,Sliznëvo,33,,58.116667,50.583333 kr,pophwandong,Pophwandong,01,,33.238889,126.512778 ru,maloye kiselevo,Maloye Kiselëvo,21,,57.289205,42.730212 ng,oriyanrin,Oriyanrin,48,,6.642435,4.450532 ir,hudar,Hudar,23,,33.7816,47.6707 la,muong moune,Muong Moune,16,,21.3,101.1 lt,pagrinai,Pagrinai,58,,55.3194444,21.4822222 pl,domacyno,Domacyno,87,,53.972101,15.754069 ma,ait dahmah,Aït Dahmah,55,,30.545688,-8.580562 ir,bagh behzad,Bagh Behzad,03,,31.450756,51.170722 pe,pampa de yajasi,Pampa de Yajasi,11,,-14.1333333,-75.7 sd,el feid,El Feid,34,,11.5166667,31.1333333 ir,samabad,Samabad,39,,34.7057,51.0957 at,sankt stefan,Sankt Stefan,02,,46.566667,13.866667 cn,beijie,Beijie,04,,33.749479,119.167957 td,guim,Guim,06,,14.0413889,14.3805556 lt,kupsciai,Kupsciai,60,,55.2994444,23.6877778 si,nadbisec,Nadbisec,09,,46.55,15.85 id,seloe,Seloe,30,,-6.886111,107.808889 th,ban khao phanom baek,Ban Khao Phanom Baek,60,,9.45,99.133333 us,bee rock,Bee Rock,CA,,35.7872222,-120.9380556 id,wadungan,Wadungan,07,,-7.646389,109.000556 tr,buyukbaskoy,Buyukbaskoy,12,,39.113828,40.447374 th,ban na pu ta,Ban Na Pu Ta,73,,16.937076,104.393946 cn,paifengling,Paifengling,02,,27.202142,120.414119 pe,gasacpata,Gasacpata,15,,-10.5563889,-76.7461111 cd,makomu,Makomu,02,,2.2,21.166667 sy,kansafrah,Kansafrah,12,,35.65,36.4666667 id,ketanggung kidul,Ketanggung Kidul,08,,-8.2712,112.4622 ru,savokhnovo,Savokhnovo,60,,57.8274,28.4283 id,pasirkananga,Pasirkananga,30,,-7.1655,106.8805 gh,asaman krofuso,Asaman Krofuso,02,,6.7333333,-1.5 mz,mafunga,Mafunga,08,,-16.9280556,34.825 af,junubi garay,Junubi Garay,28,,32.60515,67.577487 tr,lalusagi,Lalusagi,62,,38.916667,38.883333 ru,katino,Katino,29,,54.066667,86.083333 mg,ambodimangasoa,Ambodimangasoa,01,,-13.8833333,48.1333333 za,saint augustine's,Saint Augustine's,02,,-28.288721,30.578194 iq,bouzan,Bouzan,05,,35.5666667,45.9666667 ma,id laarf,Id Lâarf,55,,29.484349,-9.345821 cl,talca,Talca,07,,-30,-71.016667 cn,huabi,Huabi,11,,26.421111,109.799167 ro,pojorita,Pojorita,38,,46.383333,27.333333 co,charco grande,Charco Grande,04,,10.913091,-75.024567 my,kampong paya kepong,Kampong Paya Kepong,01,,2.2177,102.4993 tr,sarayyeri,Sarayyeri,93,,40.863188,31.135375 id,temanting,Temanting,13,,.75,114.116667 id,tiangka,Tiangka,38,,-3.091,119.9242 eg,nazlet el huseishi,Nazlet el Huseishi,04,,29.3333333,30.7833333 cg,lekety,Lekety,08,,-1.5933333,14.9555556 pk,chah lilanwala,Chah Lilanwala,04,,30.796062,72.030278 gw,siacha asse,Siachã Assê,04,,12.5333333,-14.7333333 iq,nasir al husayn,Nasir al Husayn,10,,33.55,44.8 ir,omm ol khesey-ye sofla,Omm ol Khesey-ye Sofla,15,,30.7514,49.4584 rs,tamnavska mala,Tamnavska Mala,00,,44.5025,19.869167 cd,bangbagatome,Bangbagatome,09,,2.5,24.85 cn,shijiapu,Shijiapu,11,,29.769871,111.448581 th,ban nong nam sai,Ban Nong Nam Sai,80,,13.85,102.383333 tw,masuchiangkou,Masuchiangkou,04,,25.18,121.6897222 it,fittasi sottano,Fittasi Sottano,15,,37.9,12.65 cn,dashuidonggou,Dashuidonggou,19,,41.088436,124.030813 fr,autreche,Autrèche,A3,,47.525399,.995455 ir,shahidan,Shahidan,04,,27.065491,61.202016 ml,dialakoro djitoumou,Dialakoro Djitoumou,07,,12.0552778,-7.8233333 ph,binimbingan,Binimbingan,22,,6.439041,121.958893 pl,nowe brusno,Nowe Brusno,80,,50.245516,23.310579 ve,la hoya,La Hoya,22,,10.5188889,-68.4133333 cn,longting,Longting,32,,30.2647,106.3873 bg,kara-musal,Kara-Musal,51,,42.2833333,24.1333333 ec,espinel,Espinel,19,,-1.1833333,-78.5166667 de,haag,Haag,08,,49.816667,7.033333 vn,huong tinh,Huong Tinh,65,,9.576667,106.047222 de,poseritz,Poseritz,12,,54.3,13.283333 fi,fredrikshamn,Fredrikshamn,13,,60.566667,27.2 bg,vidrare,Vidrare,58,,42.9833333,24.0166667 ir,omm ol tarfeh,Omm ol Tarfeh,15,,31.202672,48.816644 be,schopen,Schopen,04,,50.75,5.783333 de,bergen,Bergen,14,,52.1,11.366667 ru,manadyshi vtoryye,Manadyshi Vtoryye,46,,54.77119,45.988724 tr,kinyanis,Kinyanis,70,,37.258058,43.903922 cm,abek,Abek,14,,2.4333333,12.2833333 pl,pasztowa wola,Pasztowa Wola,78,,51.15753,21.3421 pe,san miguel hacienda,San Miguel Hacienda,21,,-15.9333333,-70.0833333 gm,momodu kunda,Momodu Kunda,04,,13.3333333,-14.2666667 ru,uzhovo,Uzhovo,62,,54.1235,42.1075 bg,zimovina,Zimovina,43,,41.7,25.6666667 ye,al qurun,Al Qurun,10,,15.4622222,43.5047222 cn,xucheng,Xucheng,25,,35.916667,116.4 hr,becic,Becic,02,,45.1919444,17.7075 cn,caimatou,Caimatou,04,,33.707788,119.496739 bd,munshi mathabhanga,Munshi Mathabhanga,80,,23.6333333,90.7666667 ua,dubrovka,Dubrovka,18,,50.037557,33.515422 my,kampong kepong,Kampong Kepong,12,,3.216667,101.633333 cn,chiuhsunho,Chiuhsünho,08,,49.35,128.083333 us,stockport,Stockport,IA,,40.8575000,-91.8350000 cn,xishanping,Xishanping,02,,29.388674,121.006833 cn,yazhou,Yazhou,18,,25.8675,107.126944 cn,chongyi,Chongyi,10,,36.702222,114.131667 cd,kamulete,Kamulete,00,,1.55,28.333333 jp,kaba,Kaba,24,,38.423246,141.119288 us,canyon run,Canyon Run,AZ,,33.3327778,-111.8816667 de,kolonie tieckow,Kolonie Tieckow,11,,52.466667,12.45 iq,tall al bahri,Tall al Bahri,15,,36.5561111,42.1713889 bo,salla carmen,Salla Carmen,06,,-10.2333333,-65.7333333 id,potu,Potu,18,,-8.6643,121.7186 id,lemahluhur,Lemahluhur,30,,-6.995556,107.583611 ir,zarami,Zarami,08,,37.9791,48.8584 zm,sankumbwa,Sankumbwa,03,,-16.1,24.1 fr,la roque d'esclapon,La Roque d'Esclapon,B8,,43.72283,6.628003 pt,senhora das febres,Senhora das Febres,07,,40.401979,-8.632021 mx,rancho las milpas,Rancho Las Milpas,26,,28.366667,-109.966667 co,alto la belleza,Alto La Belleza,26,,5.935278,-73.866389 af,skhawr-i-bala,Skhawr-i-Bala,01,,36.744472,71.952613 br,sitio bernardo,Sítio Bernardo,18,,-25.8911,-49.028 br,moenda,Moenda,05,,-13.4,-39.4 ru,vtoraya novoselovka,Vtoraya Novosëlovka,08,,55.383333,56.9 th,ban hua lieo,Ban Hua Lieo,68,,7.244306,100.531361 fr,liffol-le-petit,Liffol-le-Petit,A4,,48.297566,5.5261 by,nowa wies,Nowa Wies,03,,54.7166667,26.0166667 ir,samsalu,Samsalu,01,,37.6319,45.0915 cz,jihlava,Jihlava,80,50818,49.4,15.583333 tr,sogutlu,Sogutlu,65,,39.239876,43.292778 us,charlotte center,Charlotte Center,NY,,42.3044444,-79.2380556 cm,adjap,Adjap,14,,2.1833333,11.1333333 cd,olemanu,Olemanu,00,,-2.583333,24.233333 lb,bragta,Bragta,05,,34.0666667,35.8 cn,xindong,Xindong,02,,30.306457,120.172722 ie,belmuliet,Belmuliet,20,,54.225,-9.9908333 us,happy corner,Happy Corner,NH,,45.0863889,-71.3133333 mm,tawgyi,Tawgyi,07,,20.5666667,94.7833333 iq,tall umm kufayshah,Tall Umm Kufayshah,06,,33.2172222,44.0841667 kh,mohar,Môhâr,05,,12.8333333,104.9833333 ua,lubin,Lubin,18,,50.016254,32.996938 cy,yenikoy,Yeniköy,06,,35.0252778,32.3647222 az,lev,Lev,26,,40.260857,46.100095 kz,imeni tret'yey pyatiletki,Imeni Tret'yey Pyatiletki,01,,43.6,79.35 ru,staroye chetovo,Staroye Chëtovo,46,,54.177556,43.133009 id,tadugilimara,Tadugilimara,18,,-9.9114,120.0414 tr,sabirli,Sabirli,85,,41.152129,31.373328 ua,krichanovka,Krichanovka,23,,48.589697,27.857998 bd,bhatpara,Bhatpara,86,,25.05,92.0166667 vu,elia,Elia,13,,-15.2666667,166.6666667 et,embabo,Embabo,51,,9.733333,37.566667 ph,simpa,Simpa,31,,17.016667,121.9 ua,skomoroshni,Skomoroshni,23,,49.329147,29.44015 lk,kuda siyambalagashena,Kuda Siyambalagashena,32,,7.8833333,79.9333333 cn,langping,Langping,26,,34.892481,107.134307 lb,el matmoura,El Matmoûra,06,,33.11,35.2152778 eg,fuwah,Fuwah,21,,31.2025,30.5472222 cn,langang,Langang,30,,22.301151,112.26899 ir,dashtgu,Dashtgu,25,,36.028524,53.825101 pk,kot jiwan shah,Kot Jiwan Shah,04,,30.85,73.251111 cn,qingtianping,Qingtianping,11,,29.032778,110.223611 ao,xa-cabolo,Xá-Cabolo,17,,-10.316667,18.566667 ir,qaturlar,Qaturlar,33,,39.1882,47.1992 ua,doroshuv velikiy,Doroshuv Velikiy,15,,49.950733,24.056758 cn,taili,Taili,24,,36.6,112.716667 us,westcliffe,Westcliffe,SC,,34.8652778,-82.4686111 cn,baian,Baian,04,,31.55857,121.234693 lk,medakanda,Medakanda,32,,7.4666667,80.4833333 tr,kilincli koy,Kilincli Koy,44,,38.791773,38.643529 jp,kannombayashi,Kannombayashi,16,,40.321389,141.376111 ma,tazakhat,Tazakhat,58,,35.01111,-4.46698 hu,kisapatihegy,Kisapátihegy,23,,46.85,17.466667 zr,ngero mondjoi,Ngero Mondjoi,02,,-0.65,17.9166667 ru,vyatka,Vyatka,77,,57.4,33.016667 iq,`abd al kassarah,`Abd al Kassarah,10,,33.9833333,44.6833333 us,danceys corner,Danceys Corner,NJ,,39.7013889,-75.4391667 lr,matumekole,Matumekole,05,,7.2194444,-10.2677778 ph,kansamada,Kansamada,37,,11.061667,124.935278 pe,huancayani,Huancayani,04,,-15.58,-71.6441667 be,sauheid,Sauheid,04,,50.6,5.6 rs,karamanica,Karamanica,00,,42.3525,22.321667 fr,la villette,La Villette,A3,,46.745812,1.922768 tn,ksar djedid,Ksar Djedid,34,,32.683333,10.9 cn,shijia,Shijia,32,,29.64136,104.998917 tr,kizilsivat,Kizilsivat,26,,39.683333,31.116667 mg,soarana,Soarana,06,,-20.6,44.4 sn,ribo kodiole,Ribo Kodiolé,10,,14.4166667,-14.75 hu,cseberer,Cseberér,20,,47.083333,20.333333 pl,jodeliszki,Jodeliszki,81,,54.18924,23.366124 cn,xinluokeng,Xinluokeng,03,,27.929554,114.953234 af,qarah chah,Qarah Chah,03,,36.336307,69.118215 sa,muhaylah,Muhaylah,11,,18.546389,42.048889 in,alur,Alur,02,,15.383333,77.233333 cn,tazigou,Tazigou,19,,40.296821,119.831649 cn,daliaogou,Daliaogou,24,,38.705444,112.078072 af,sehbangi,Sehbangi,13,,34.509799,69.077111 cu,villa blanca,Villa Blanca,09,,20.3166667,-77.1333333 me,zabove,Zabove,00,,42.294444,19.075833 ph,lauang bato,Lauang Bato,L2,,14.7321,120.9909 co,san bernardo,San Bernardo,28,,3.922781,-74.740903 ir,bakhshabad,Bakhshabad,42,,34.034723,59.285622 th,ban huai ruam,Ban Huai Ruam,46,,12.937861,100.945778 th,ban rai kon,Ban Rai Kon,56,,13.1,99.85 cn,dalinhe,Dalinhe,24,,39.555556,113.361111 af,joye amrud,Joye Amrud,41,,33.683903,65.800472 at,sankt jakob bei winkling,Sankt Jakob bei Winkling,02,,46.733333,14.816667 co,barrancas,Barrancas,29,,3.543889,-76.236667 pg,vunadidir,Vunadidir,10,,-4.3666667,152.15 mn,godli balgasuyn khid,Godli balgasuyn khid,14,,43.3333333,104.7333333 de,wimpasing,Wimpasing,02,,47.85,12.633333 re,savannah usine,Savannah Usine,00,,-20.9666667,55.3166667 ru,bishtinovo,Bishtinovo,08,,55.377755,56.194105 af,kudul-e shadroz,Kudul-e Shadroz,08,,33.495076,67.986087 vn,Ðong nhut,Ðông Nhút,20,,10.865556,106.687778 cn,zhuangqiao,Zhuangqiao,04,,33.841667,118.075 ph,luuk,Luuk,G7,,6.6,122.733333 id,krebet-wetan,Krebet-wetan,08,,-8.1,112.633333 ye,bitah,Bitah,12,,16.0333333,42.9833333 gr,xiraiika,Xiraíika,31,,38.4,21.5333333 vn,vu duong,Vu Duong,11,,21.116667,106.166667 ng,itama,Itama,41,,7.5701,7.3328 cn,qiaozhi fenchang qidui,Qiaozhi Fenchang Qidui,31,,19.528115,109.499229 ir,deh mianeh,Deh Mianeh,09,,34.173,49.0494 ru,lipovets,Lipovets,57,,52.516667,45.966667 zm,nkula,Nkula,07,,-10.6333333,31.9333333 id,sapatan,Sapatan,07,,-7.781944,111.164167 do,la lomota,La Lomota,25,,19.6333333,-70.8666667 tr,sarincak,Sarincak,21,,38.116667,39.616667 in,hardeoganj,Hardeoganj,36,,27.0996,79.8903 lt,gudakiemis,Gudakiemis,56,,54.2,24.2333333 af,musa khel,Musa Khel,35,,34.67918,70.173767 lk,okewelagoda,Okewelagoda,34,,6.1,80.7166667 ye,al ghajjar,Al Ghajjar,15,,16.9166667,43.35 bd,sarsa,Sarsa,82,,22.8166667,89.15 mm,tharapon,Tharapon,12,,12.1666667,98.8666667 et,funyan bira,Funyan Bira,51,,9.4025,42.3175 af,zhir kariz,Zhir Kariz,28,,31.92235,67.53989 id,budalang,Budalang,08,,-7.073,111.9482 ir,khairabad,Khairabad,29,,29.4312,55.2999 pk,akbar khelanwala,Akbar Khelanwala,04,,32.5819,71.745019 ee,mekhikorm,Mekhikorm,18,,58.2327778,27.4725 us,fontana,Fontana,WI,,42.5513889,-88.5750000 fr,riol,Riol,98,,45.393662,3.4634 mm,mayanchaung,Mayanchaung,12,,12.0,98.8333333 bg,gusanci,Gusanci,33,,43.2961111,23.2425 bd,dingamanik,Dingamanik,84,,22.7166667,90.45 ua,akkodzha,AkKodzha,11,,45.508094,33.084021 cn,houzhuang,Houzhuang,01,,31.65,118.058333 fr,forges-les-eaux,Forges-les-Eaux,A7,,49.613911,1.544488 mz,chicopa,Chicopa,03,,-23.2294444,35.1319444 ng,bosheri,Bosheri,27,,11.502162,14.085815 et,k'ilenti,K'ilenti,46,,11.733333,39.85 pl,lipnica,Lipnica,74,,51.91953,18.843998 br,bairro do feixe,Bairro do Feixe,18,,-24.677873,-48.591815 ve,los pocitos,Los Pocitos,15,,10.3833333,-67.08 ng,itobalogo iju,Itobalogo Iju,32,,7.65,3.333333 id,cikancra,Cikancra,33,,-6.6626,106.3703 kr,talbakkol,Talbakkol,17,,36.1249,127.37 af,za`farani,Za`farani,10,,32.064406,64.828303 se,lindo,Lindö,28,,58.8,11.15 id,telokbore,Telokbore,17,,-8.3272,116.2042 ru,modut,Modut,63,,59.333333,126.866667 th,ban mae sai na lao,Ban Mae Sai Na Lao,02,,19.134139,99.212528 kr,chilseonggol,Chilseonggol,13,,37.443056,127.596389 hu,ujfalu,Újfalu,21,,46.733333,18.966667 zr,malembe,Malembe,01,,-4.2833333,20.25 ir,moghan,Moghan,42,,36.795835,59.035437 eg,nazlet qulusna,Nazlet Qulûsna,10,,28.3638889,30.7583333 ru,baklanovo,Baklanovo,37,,58.5036,42.2518 id,tjikantjah-koelon,Tjikantjah-koelon,30,,-7.2917,108.4604 bd,gabar boali,Gabar Boali,81,,24.6833333,90.5666667 cu,san miguel,San Miguel,12,,21.05,-76.0833333 af,divalqowl,Divalqowl,27,,34.402222,67.884444 be,preshoek,Preshoek,09,,50.783333,3.2 ma,talahast,Talahast,47,,31.596269,-7.462822 ru,demkino,Demkino,21,,57.183333,42.75 jm,beecher town,Beecher Town,09,,18.3666667,-77.1166667 pk,zakaria,Zakaria,02,,30.930569,67.454984 cu,las menendez,Las Menendez,03,,23.0719444,-80.8033333 gb,south hanningfield,South Hanningfield,E4,,51.633333,.516667 ao,caundi,Caundi,08,,-12.033333,15.883333 cn,changtanchieh,Changtanchieh,16,,24.583333,110.716667 sk,cabaj-capor,Cabaj-Capor,04,,48.25,18.0333333 ma,ait moussi,Aït Moussi,47,,30.81,-9.08 id,pataonan tengah,Pataonan Tengah,08,,-7.0707,112.6905 fr,serreslous-et-arribans,Serreslous-et-Arribans,97,,43.66417,-.645479 my,kampong tembangbang,Kampong Tembangbang,11,,1.35,110.3 by,matrenki,Matrënki,02,,51.9833333,29.2333333 id,umbulantepo,Umbulantepo,15,,-5.0551,104.9114 kr,kumamidong,Kumamidong,03,,35.840927,127.141864 mm,kywegan,Kywegan,07,,19.95,95.4833333 at,lackendorf,Lackendorf,01,,47.583333,16.5 ve,el milagro,El Milagro,14,,9.1055556,-70.9536111 id,indra kasih,Indra Kasih,26,,3.6241,98.7016 sn,keur birame baye,Keur Birame Baye,04,,15.9,-16.2333333 fr,commequiers,Commequiers,B5,,46.760487,-1.839008 pk,dheri langhal,Dheri Langhal,04,,33.70181,72.329668 cn,gaoshipo,Gaoshipo,12,,31.815981,112.505075 iq,zabtiya,Zabtiya,10,,33.7361111,44.5461111 af,chahardehi,Chahardehi,27,,33.890278,68.630278 ng,tabakaina,Tabakaina,40,,12.816667,4.5 de,koppel,Koppel,07,,52.316667,8.983333 ru,semigorskiy,Semigorskiy,38,,44.895526,37.608333 us,hillman,Hillman,MN,,46.0041667,-93.8936111 tw,haifengliao,Haifengliao,04,,22.5166667,120.6 cd,zambasende,Zambasende,00,,3.7,25.766667 ru,dolgoprodnyy,Dolgoprodnyy,47,,55.904114,37.560643 ir,`aleman,`Aleman,08,,37.315692,49.586227 ro,julves,Julves,36,,45.548889,20.984444 mx,ciudad de leon,Ciudad de León,11,,21.116667,-101.666667 es,aldaca,Aldaca,59,,43.266667,-2.6 kz,tere-akkanskiy,Tere-Akkanskiy,03,,50.833333,67.733333 vn,buon ma nhang,Buon Ma Nhang,07,,12.75,108.716667 rs,kovacevci,Kovacevci,00,,42.363056,22.075833 sv,plan del hoyo,Plan del Hoyo,11,,14.2833333,-89.3833333 id,lupoyo 2,Lupoyo 2,34,,.5928,123.0154 at,rohrbach am rosenberg,Rohrbach am Rosenberg,06,,46.783333,15.7 lt,vimbory,Vimbory,57,,55.1166667,23.8833333 cn,shigai,Shigai,02,,30.035393,120.189562 tz,dodoma,Dodoma,14,,-10.6333333,35.8166667 id,maneikun,Maneikun,18,,-9.077222,125.026111 pl,krusza duchowna,Krusza Duchowna,73,,52.732762,18.238663 do,batey pepillo,Batey Pepillo,24,,18.5666667,-69.1833333 gb,asheldham,Asheldham,E4,,51.666667,.85 om,khawr hulw,Khawr Hulw,02,,24.3063889,56.7902778 kp,somanmal,Somanmal,15,,39.4666667,126.6333333 ph,pinelands,Pinelands,47,,15.6266,121.0621 jp,mitake-cho,Mitake-cho,09,,35.416667,137.133333 id,cidadap 1,Cidadap 1,30,,-6.489444,107.7575 tr,keferhuvar,Keferhuvar,72,,37.417014,41.293008 fr,lavaudieu,Lavaudieu,98,,45.262365,3.454627 cd,yaota,Yaota,09,,1.316667,23.733333 fr,orincles,Orincles,B3,,43.128288,.039007 by,bolshiye suravni,Bolshiye Suravni,07,,55.5333333,29.5833333 mx,tlamamala,Tlamamala,13,,20.966667,-98.533333 hr,draga val santamarina,Draga Val Santamarina,12,,45.2377778,14.2522222 za,yuleton,Yuleton,03,,-29.448124,26.739911 rs,dramlici,Dramlici,00,,43.755833,20.228056 lv,myza ledurga,Myza Ledurga,18,,57.32,24.7391667 ir,tudeh zan,Tudeh Zan,23,,33.9625,48.5963 pl,stawiszyn,Stawiszyn,78,,51.600744,20.923994 fr,boinville,Boinville,B2,,49.185149,5.671871 mm,kawparan,Kawparan,13,,16.2180556,97.6744444 ua,kalinine,Kalinine,11,,45.595213,34.220302 no,bjerkreim,Bjerkreim,14,,58.6,6.116667 cn,daheizhuangke,Daheizhuangke,19,,40.450683,120.445793 lt,petrasiunai,Petrasiunai,60,,55.2,24.3 ph,danauan,Danauan,06,,10.4834,121.9764 ru,krasnyy nelkhay,Krasnyy Nelkhay,20,,53.3586,103.1275 ru,petrukhino,Petrukhino,47,,54.991453,37.56453 ht,nan digo,Nan Digo,03,,19.8666667,-73.2666667 ua,velikaya olshanitsa,Velikaya Olshanitsa,15,,49.806878,24.658947 cn,tungtapu,Tungtapu,24,,37.207222,112.121389 ru,pokrovkso,Pokrovkso,85,,59.616811,41.152647 cu,san antonio rio blanco,San Antonio Río Blanco,11,,23.0766667,-81.9619444 bj,tannou,Tannou,12,,7.0333333,1.7166667 ph,mapagon,Mapagon,33,,14.216667,121.133333 mz,nhamassongue,Nhamassongue,10,,-16.7822222,33.5544444 us,henderson,Henderson,MT,,47.3583333,-115.3088889 vn,na kouan,Na Kouan,02,,22.383333,105.916667 us,kerby hill,Kerby Hill,MD,,38.7802778,-77.0025000 gr,vlakhiotika,Vlakhiótika,42,,36.8666667,22.7 gr,charakas,Chárakas,45,,35.0166667,25.1166667 tr,gullu,Güllü,64,,38.269722,29.108056 de,oedt,Oedt,07,,51.316667,6.366667 om,jibal,Jibal,05,,22.0833333,56.0 fr,grand aslon,Grand Aslon,A3,,46.756344,1.120763 us,little falls,Little Falls,MN,,45.9763889,-94.3622222 pk,haji mewo jamali,Haji Mewo Jamali,05,,24.808333,69.058333 na,ombora,Ombora,39,,-19.6,18.75 gr,metokhion,Metókhion,38,,38.1333333,21.4 ma,douar oulad el mesria,Douar Oulad el Mesria,47,,31.553309,-9.40982 cn,liuxiang,Liuxiang,30,,22.306256,113.277535 us,mill road park,Mill Road Park,VA,,37.3038889,-80.0302778 be,vremde,Vremde,01,,51.183333,4.516667 af,ebrahimkheyl-e `olya,Ebrahimkheyl-e `Olya,28,,32.45864,67.526024 kp,kochan,Kochan,17,,41.0927778,129.3838889 cn,shangzheyuan,Shangzheyuan,11,,26.006667,111.394167 ru,zverevo,Zverevo,88,,57.7257,38.6648 ao,satchicumbo,Satchicumbo,18,,-9.489604,20.523908 cn,tunglao,Tunglao,16,,23.767778,107.420278 pl,swelice,Swelice,78,,52.797631,21.033185 pk,korite,Korite,07,,35.552198,75.55642 ru,ravno,Ravno,52,,58.788611,33.555 mz,chitima,Chitima,01,,-12.9225,39.1886111 cn,zhangling,Zhangling,07,,27.075724,119.039941 cz,konopiste,Konopiste,88,,49.766667,14.666667 id,djamburkeutapan,Djamburkeutapan,01,,4.2882,96.5691 ma,taguengout,Taguengout,55,,30.671508,-7.069901 za,mentzburg,Mentzburg,03,,-29.95,26.766667 ru,pashozero,Pashozero,42,,60.03177,34.616987 id,lemahneundeut,Lemahneundeut,30,,-6.826944,106.826389 rs,hanfhausen,Hanfhausen,00,,45.506667,19.261111 fr,crosciano,Crosciano,A5,,42.814931,9.467945 pk,isro,Isro,04,,31.133333,72.9 gr,liangaiika,Liangaíika,31,,38.6666667,21.4333333 id,tjikandang,Tjikandang,30,,-6.366389,106.602778 ci,bahe,Bahé,84,,6.670734,-7.342647 cm,nkolasok,Nkolasok,14,,3.1333333,11.7333333 ba,bukvik gornji,Bukvik Gornji,BD,,44.8191667,18.6513889 af,oruzgan,Oruzgan,39,,32.927751,66.632534 do,los pinalitos,Los Pinalitos,23,,19.0333333,-71.3 us,linkhorn,Linkhorn,VA,,36.8613889,-76.0238889 no,trovag,Trovåg,15,,61,4.716667 mm,kayinmasan,Kayinmasan,07,,19.45,95.7 nl,rotterdam alexanderpolder,Rotterdam Alexanderpolder,11,,51.916667,4.483333 kp,sangdong,Sangdong,11,,39.6438889,125.1625 ru,ust-kachka,Ust-Kachka,90,3991,58.005979,55.672474 cn,gaolin,Gaolin,16,,22.201667,109.319722 do,el botado,El Botado,02,,18.5666667,-71.4166667 mx,penas prietas,Peñas Prietas,06,,26.833333,-106.3 gn,kossoko koungone,Kossoko Koungoné,26,,11.0166667,-9.7 ru,nukhu-nur,Nukhu-Nur,20,,53.153056,105.336667 ru,maslenki,Maslënki,33,,58.502234,47.493808 zr,kidiomfa,Kidiomfa,02,,-5.35,19.1166667 de,willmanns,Willmanns,15,,50.783333,10.066667 bg,sredna makhala,Sredna Makhala,39,,42.85,27.3166667 ir,mobarak hoseyn,Mobarak Hoseyn,11,,28.7005,55.8858 se,norrhult,Norrhult,09,,57.533333,15.866667 gr,vourlokhorion,Vourlokhórion,22,,39.8358333,21.6091667 mx,el consuelo,El Consuelo,10,,25.716667,-103.466667 vn,plei gong prompt,Plei Gong Prompt,10,,13.7,107.783333 md,nicolaevca,Nicolaevca,79,,46.390556,28.254444 nl,nagele,Nagele,16,,52.645669,5.725666 bt,namtir,Namtir,21,,27.3333333,90.4 kr,anhwaekkol,Anhwaekkol,14,,36.8278,129.0239 us,virginia,Virginia,ID,,42.4941667,-112.1647222 id,cipateungteung dua,Cipateungteung Dua,30,,-6.983333,107.175 in,vanivilasa mohalla,Vanivilasa Mohalla,19,,12.316667,76.633333 id,simpurtegal,Simpurtegal,30,,-6.36,107.095556 ye,ad dirah,Ad Dirah,04,,16.0813889,49.1222222 pl,jozwin,Jozwin,86,,52.338473,18.226195 us,montgomery hills,Montgomery Hills,MD,,39.0105556,-77.0480556 zm,siabuleni,Siabuleni,04,,-17.1,27.5 mx,san jeronimo tecuanipen,San Jeronimo Tecuanipen,21,,19.016667,-98.4 hu,olchvarytag,Olchvárytag,18,,47.783333,21.616667 tj,farkingy,Farkingy,01,,38.6936111,70.7283333 mx,san roque,San Roque,05,,14.9,-92.316667 id,karre,Karre,38,,-2.579,120.3487 ng,igboefon,Igboefon,05,,6.433333,3.5 gt,santo domingo,Santo Domingo,10,,14.6,-89.883333 cd,tala-ejiba,Tala-Ejiba,04,,-6.4,24.583333 ua,"dem""yaniv","Dem""yaniv",06,,49.240177,24.630841 bd,hesamaddipur,Hesamaddipur,84,,22.65,90.2666667 pt,montes da formoselha,Montes da Formoselha,07,,40.180527,-8.615523 kp,songwangni,Songwangni,12,,39.1819444,125.9408333 cn,kuankoutsun,Kuankoutsun,24,,36.45,111.766667 vn,bai khe,Bãi Khê,86,,21.425186,105.274086 ru,bolshoy bereznik,Bolshoy Bereznik,90,,56.492769,56.045085 mu,cazela,Cazela,12,,-20.2947222,57.3947222 mg,amparihibe,Amparihibe,05,,-18.1,45.9833333 us,wilmot,Wilmot,OH,,40.6558333,-81.6322222 py,colonia bella vista,Colonia Bella Vista,11,,-27.05,-55.55 tw,sungpu,Sungpu,04,,22.6666667,120.3666667 cn,huachuan,Huachuan,02,,28.915183,119.957022 kp,chukpori,Chukpori,01,,40.8533333,126.4252778 fo,ejde,Ejde,00,,62.3,-7.0833333 br,sitio terezinha da s. pinto,Sítio Terezinha da S. Pinto,18,,-25.7452,-49.8661 id,ciwedus,Ciwedus,33,,-6.0354,106.0408 ir,ja`farabad,Ja`farabad,01,,37.0484,46.1064 ng,ikot esenam,Ikot Esenam,21,,4.682425,7.630911 cn,nanshancheng,Nanshancheng,19,,42.108611,125.271389 gn,kendemele,Kendémélé,09,,9.1166667,-10.5833333 tz,nambunga,Nambunga,11,,-10.8666667,39.2666667 af,laskarikel,Laskarikel,17,,34.1575,69.088889 cn,lungchingkuan,Lungchingkuan,01,,30.9,116.65 tr,yaylakent,Yaylakent,60,,40.128524,36.067869 ye,al huwaymi,Al Huwaymi,06,,13.3769444,44.4783333 tr,esenler,Esenler,14,,40.675973,31.459128 hu,keszthelyi,Keszthelyi,24,,46.768121,17.24317 ao,carila,Carila,12,,-9.171627,17.286963 ar,ucacha,Ucacha,05,,-33.032034,-63.506658 cn,gongyichang,Gongyichang,32,,30.233692,103.602284 my,kisap,Kisap,02,,6.366498,99.866629 id,elosan,Elosan,08,,-8.0698,113.3079 fi,kallio,Kallio,08,,64.016667,25.233333 in,hirangaon,Hirangaon,35,,22.75,76.966667 au,tunstall,Tunstall,07,,-37.816667,145.183333 ir,hasanabad,Hasanabad,23,,33.3728,48.5995 ph,cawayan bugtong,Cawayan Bugtong,47,3605,15.6348,120.7944 rs,dobanovcze,Dobanovcze,00,,44.826944,20.225556 cn,anfeng xiang,Anfeng Xiang,11,,29.417733,112.066529 sn,keur samba amar,Keur Samba Amar,10,,13.75,-16.1333333 fr,jou,Jou,98,,44.937999,2.665244 kr,mosanni,Mosanni,16,,34.636667,126.935556 my,kampong bukit tok ak,Kampong Bukit Tok Ak,13,,5.466667,102.85 sa,rawdat ar rubay`i,Rawdat ar Rubay`i,08,,26.376426,44.236355 lr,bawoima,Bawoima,12,,6.9308333,-11.3008333 ve,san timoteo,San Timoteo,23,,9.7833333,-71.0666667 ua,zubhov,Zubhov,15,,50.395938,24.395437 ar,ingeniero maschwitz,Ingeniero Maschwitz,01,,-34.388388,-58.737615 de,grosssedlitz,Großsedlitz,13,,50.966667,13.883333 sv,callejon,Callejon,10,,13.75,-89.1833333 my,kampung parit sungai haji mohamad,Kampung Parit Sungai Haji Mohamad,07,,3.8913,100.7734 cn,xidongbu,Xidongbu,15,,38.869167,100.180556 zm,kavinga,Kavinga,07,,-11.1833333,30.7833333 cm,gelao,Gelao,12,,12.3,14.6 ro,izvoru muntelui,Izvoru Muntelui,28,,46.933333,26.083333 cn,xuantianguan,Xuantianguan,32,,31.275079,107.572267 kr,puksong,Puksong,14,,36.2046,128.2123 de,winterberg,Winterberg,07,14603,51.2,8.533333 tr,kocapinar,Kocapinar,73,,38.021848,35.087518 ir,berkeh-ye soflin,Berkeh-ye Soflin,11,,26.7589,55.2173 zr,ligasa-mangala,Ligasa-Mangala,09,,0.9166667,23.8833333 af,kar'yayi-zafdzhoy,Kar'yayi-Zafdzhoy,39,,32.866754,66.976755 de,waldkonigen,Waldkönigen,08,,50.233333,6.8 cn,shangtungtsun,Shangtungtsun,24,,35.866667,111.819722 lt,kovarsko,Kovarsko,60,,55.4333333,24.9166667 us,lakeline,Lakeline,OH,,41.6594444,-81.4544444 et,lay amba,Lay Amba,46,,12.05,39.2 vn,xom phu xuan,Xóm Phu Xuan,20,,10.705833,106.726111 cn,xiawangjiagou,Xiawangjiagou,32,,31.3866,107.138191 mm,yankok,Yankok,05,,16.6,98.2333333 be,morcelle,Morcelle,03,,50.7,3.683333 my,kampong parit ten,Kampong Parit Ten,12,,3.7342,101.035 sb,koseranga,Koseranga,08,,-9.6333333,159.65 hu,komloska,Komlóska,04,,48.333333,21.466667 pk,bindi taj muhammad,Bindi Taj Muhammad,05,,27.821184,68.941537 mx,tlalaje,Tlalaje,20,,16.166667,-95.65 pe,tunaspampa,Tunaspampa,06,,-6.5311111,-79.0905556 ph,santa isabel,Santa Isabel,F7,,14.0888,121.3517 za,sehlakwane,Sehlakwane,07,,-25.145118,29.763652 lk,tunguchenai,Tunguchenai,32,,7.9166667,79.8 cn,datangan,Datangan,07,,27.407778,118.611111 ci,adikokoi,Adikokoi,74,,6.633312,-3.711935 cn,chidiao,Chidiao,26,,34.239836,109.429315 ir,kalateh-ye uruj,Kalateh-ye Uruj,42,,36.0118,59.1935 in,pallappatti,Pallappatti,25,,10.7,77.883333 ir,delamarz,Delamarz,16,,35.117,46.4839 zr,tshemanfuna,Tshemanfuna,06,,-3.2333333,16.35 nl,faan,Faan,04,,53.232098,6.372015 ne,gaguere,Gaguéré,03,,11.8833333,3.6 ir,kharestan,Kharestan,05,,31.022285,50.015134 hu,nemestordemic,Nemestördemic,23,,46.810685,17.474272 tg,djoundou yondo,Djoundou Yondo,02,,6.2833333,1.6833333 sd,kab al mara,Kab al Mara,30,,18.55,33.6833333 af,uzda psa,Uzda Psa,36,,33.375401,69.301338 kz,zhaskayrat,Zhaskayrat,06,,47.766667,47.710278 mx,la majada,La Majada,14,,20.416667,-104.683333 cn,donglian,Donglian,32,,29.526615,104.842335 vn,lang phong,Lãng Phong,14,,20.316667,105.75 ru,martyshenskiy,Martyshenskiy,65,,53.597212,50.580688 cn,yeyang,Yeyang,07,,26.079167,119.010556 cn,yuhugoumen,Yuhugoumen,26,,34.103953,107.295823 cn,zhaigongpingjiao,Zhaigongpingjiao,11,,25.306389,111.974167 pg,wayamke,Wayamke,06,,-8.5166667,141.1 cn,shuangluo,Shuangluo,30,,23.428056,115.042222 ir,kalat-e `ali,Kalat-e `Ali,41,,32.7437,60.2552 id,padasbolong,Padasbolong,08,,-7.5606,111.4039 at,stribach,Stribach,07,,46.833333,12.816667 th,ban nong mek,Ban Nong Mek,79,,16.966667,102.65 gt,valle de jesus,Valle de Jesús,04,,14.583333,-89.2 us,thompson place,Thompson Place,NM,,34.9438889,-106.1361111 de,obersaida,Obersaida,13,,50.766667,13.333333 ci,youdo,Youdo,79,,6.491507,-5.551854 cr,lucha,Lucha,08,,9.737841,-84.003694 cd,bungange,Bungange,00,,-3.033333,19.983333 id,datarsari,Datarsari,30,,-7.0585,107.176 sd,al faei,Al Faei,33,,11.0333333,26.4333333 th,ban na tai,Ban Na Tai,60,,8.883333,99.283333 pg,iamara,Iamara,06,,-8.4333333,142.8833333 la,ban kanot,Ban Kanot,01,,15.188889,107.058889 id,ngaglik enam,Ngaglik Enam,07,,-7.408056,110.476111 cn,xiaoguanzhen,Xiaoguanzhen,09,,34.702222,113.153333 by,amkhinichi,Amkhinichi,04,,53.8588889,30.6666667 gb,west ferring,West Ferring,P6,,50.8,-.45 tr,harbaomer,Harbaömer,72,,37.194167,41.092778 fr,rabat-les-trois-seigneurs,Rabat-les-Trois-Seigneurs,B3,,42.855574,1.551973 co,san pedro,San Pedro,15,,2.609444,-68.109722 us,midland,Midland,GA,,32.5747222,-84.8272222 kr,saamjon,Saamjon,06,,38.219722,128.369167 dk,terslev,Terslev,20,,55.37543,11.971359 ir,navashar,Navashar,08,,37.3039,48.9405 id,bayan,Bayan,01,,4.5902,97.9087 ng,babalwada,Babalwada,27,,10.620237,12.500993 es,valbonilla,Valbonilla,55,,42.198377,-4.18679 th,ban phai dam phatthana,Ban Phai Dam Phatthana,35,,14.532722,100.388444 id,batang kuis,Batang Kuis,26,,3.61299,98.80129 ir,qal`eh-ye rudkhan,Qal`eh-ye Rudkhan,08,,37.094167,49.245833 iq,horen,Horen,10,,34.94,45.7105556 dk,bjergby,Bjergby,18,,56.521481,10.009875 th,ban na lai,Ban Na Lai,20,,17.102445,104.260139 cn,yanhua,Yanhua,02,,29.289527,119.872082 pl,laszczowka,Laszczowka,75,,50.433807,23.447975 zm,kalimba,Kalimba,01,,-11.85,27.1166667 pa,abajo bonito,Abajo Bonito,07,,7.5,-80.5666667 de,bartlinge,Bartlinge,07,,52.366667,8.866667 id,perumahan balai inseminasi buatan,Perumahan Balai Inseminasi Buatan,08,,-7.84,112.6476 ir,qareh cheh,Qareh Cheh,42,,37.357577,58.326883 ua,tsegelnoye,Tsegelnoye,16,,47.633333,32.416667 za,salisbury island,Salisbury Island,02,,-29.883518,31.035754 nu,fatiau,Fatiau,00,,-19.1166667,-169.9 cn,wangkuohsiang,Wangkuohsiang,08,,48.017778,126.3775 us,new birmingham manor,New Birmingham Manor,MD,,39.1058333,-76.9150000 il,sedeh boker,Sedeh Boker,01,,30.874167,34.796389 pk,ghumanwan,Ghumanwan,03,,33.901854,73.067842 ir,andarud `olya,Andarud `Olya,33,,37.2794,48.1601 mx,rancho san jose,Rancho San José,06,,26.833333,-105.15 de,panholling,Panholling,02,,48.85,13.15 cn,ronghuali,Ronghuali,03,,27.844844,115.773078 de,bei der kirche,Bei der Kirche,01,,48.266667,8.033333 zr,liambi,Liambi,00,,2.7666667,23.55 ir,kurid,Kurid,41,,32.540003,59.620868 ph,damaloguen,Damaloguen,51,,16.00292,120.211536 ru,krasno-zolotukhinskoye,Krasno-Zolotukhinskoye,04,,50.808056,81.529167 ph,camalingao,Camaliñgao,64,,15.15,120.05 de,raimundsreut,Raimundsreut,02,,48.866667,13.55 us,cook landing,Cook Landing,SC,,32.1950000,-81.0005556 us,royal meadows,Royal Meadows,UT,,40.6538889,-111.9508333 ee,kausi,Kausi,13,,58.7316667,24.255 eg,aulad salim bahari,Aulad Salim Bahari,24,,26.2333333,32.0333333 gn,iritingo,Iritingo,07,,11.7333333,-10.6333333 ma,el abid,El Abid,57,,35.010939,-5.98301 af,khaneh-ye seyyed sarvar,Khaneh-ye Seyyed Sarvar,08,,33.12566,67.540558 us,jonesville,Jonesville,SC,,34.8358333,-81.6811111 kr,yucholli,Yucholli,20,,35.504151,128.360161 ru,osechnya,Osechnya,25,,54.06087,35.448123 pk,chin,Chin,02,,30.925505,67.985079 cn,kaoyuanhsien,Kaoyüanhsien,25,,37.083333,117.916667 mx,el bedal,El Bedal,25,,24.816667,-107.816667 ir,taka band,Taka Band,42,,33.664019,58.974641 mx,la encantada,La Encantada,30,,17.683333,-94.816667 us,valley station,Valley Station,KY,22756,38.1111111,-85.8702778 pk,goth ahmad baghio,Goth Ahmad Baghio,05,,25.965864,68.616925 bd,south hydarnagar,South Hydarnagar,80,,23.75,90.8333333 id,kolami,Kolami,21,,-.2826,122.2277 la,ban sopphak,Ban Sôpphak,15,,18.128056,104.9325 cn,erduan wuzu,Erduan Wuzu,04,,34.559423,119.17359 at,reintal,Reintal,02,,46.864722,12.880278 nl,amerongen,Amerongen,09,,52.00284,5.467186 hu,ilkamajor,Ilkamajor,16,,47.548192,19.375243 ee,neeme,Neeme,01,,59.5230556,25.1505556 mn,bayan bulagoin khural,Bayan Bulagöin Khural,14,,44.25,106.8 dz,boka'et ech chorfa,Boka'et ech Chorfa,41,,36.1333333,1.3 cn,miaokangchi,Miaokangchi,01,,31.866667,117.166667 ma,tanefezat,Tanefezat,55,,29.928887,-8.553795 cn,yangjiadi,Yangjiadi,12,,30.369242,111.505947 ru,pyataya versta,Pyataya Versta,38,,44.462778,39.686667 cn,jinshanchang,Jinshanchang,32,,31.394578,107.413764 ir,hajiabad,Hajiabad,44,,35.8398,50.9825 sb,tawaihuro,Tawaihuro,08,,-9.3,161.0833333 pk,mad yusufwala,Mad Yusufwala,04,,29.191667,70.288889 ru,konevets,Konevets,42,,60.85,30.583333 hr,anita,Anita,04,,45.1438889,13.5966667 mx,el millon,El Millón,06,,31.45,-106.183333 ir,hasanabad-e kesht mahaki,Hasanabad-e Kesht Mahaki,07,,30.716667,52.85 ru,pereyezd,Pereyezd,52,,57.499874,30.726958 hr,monostor,Monostor,18,,45.3325,18.8413889 cn,nixizhen,Nixizhen,32,,29.022765,104.239376 id,sibuntuon,Sibuntuon,26,,2.138,99.0478 cn,hsiaohonan,Hsiaohonan,10,,40.466111,117.567778 se,skulestad,Skulestad,28,,58.6,11.55 iq,bazzunah,Bazzunah,15,,36.07,43.1555556 sb,supusapuai,Supusapuai,00,,-7.0833333,155.8666667 id,rantjagede 2,Rantjagede 2,30,,-6.278889,106.459722 cn,huangchengkuan,Huangchengkuan,32,,32.861665,103.553265 id,klabeungan,Klabeungan,08,,-7.8964,114.0076 cd,mabilindai,Mabilindai,09,,1.95,30.05 ng,jada,Jada,43,,7.083333,10.8 ru,yurty nerokhi,Yurty Nerokhi,32,,62.348333,61.323056 mx,rio de severo,Río de Severo,18,,21.083333,-105.166667 pl,podlosie,Podlosie,83,,50.35,19.175994 cn,liangchiapao,Liangchiapao,24,,37.225833,112.0775 ir,dil'man,Dil'man,08,,36.888865,49.905685 cn,qiaomuwan,Qiaomuwan,01,,30.703674,118.077255 fr,cherence-le-roussel,Chérencé-le-Roussel,99,,48.708649,-1.017688 ru,shpichkivka,Shpichkivka,38,,45.688333,38.231667 af,qal`a kalan,Qal`a Kalan,13,,34.760543,69.878567 us,prilliman,Prilliman,VA,,36.8738889,-80.0077778 cz,vrtezir,Vrtezir,80,,49.501472,16.30957 cn,xiaosuangou,Xiaosuangou,21,,36.422664,106.230561 mg,belo sur tsiribihina,Belo sur Tsiribihina,06,,-19.7,44.55 kz,jaksy jartasskiy,Jaksy Jartasskiy,15,,47.266667,80.55 hu,lakatos f.-tanya,Lakatos F.-tanya,10,,47.2,21.75 tr,kodishara,Kodishara,86,,41.086667,42.579444 jm,park head,Park Head,11,,18.2,-77.65 es,eire,Eiré,58,,42.515301,-7.649134 fr,somme-vesle,Somme-Vesle,A4,,48.984851,4.591672 ru,kommunist,Kommunist,54,,54.366667,74.616667 zr,katutwa,Katutwa,05,,-12.4166667,29.3 mx,chahuites las conchas,Chahuités Las Conchas,20,,16.291667,-94.501944 id,liwutung 1,Liwutung 1,31,,1.0188,124.7463 fr,vernou-sur-seine,Vernou-sur-Seine,A8,,48.388906,2.846294 ru,zarechnoye,Zarechnoye,20,,53.1657,102.6377 pl,debina,Debina,86,,52.135242,18.752481 bg,kulino voda,Kulino Voda,46,,43.5833333,25.0333333 cn,shijiachang,Shijiachang,04,,31.427884,120.652381 us,traunik,Traunik,MI,,46.2608333,-86.9694444 cn,gaoshuiqiao,Gaoshuiqiao,11,,26.513333,113.803333 mz,tilimune,Tilimune,03,,-24.3705556,34.7977778 cn,heyanzhang,Heyanzhang,01,,32.7,117.533333 ph,jiyaan,Jiyaan,55,,11.754167,124.933333 cn,huaimen,Huaimen,07,,26.555833,118.7025 bo,el churo,El Churo,08,,-18.8333333,-64.0 pk,garba,Garba,03,,33.97631,73.161023 pk,jhok kanjuwali,Jhok Kanjuwali,04,,30.732373,70.627507 bd,north nadona,North Nadona,80,,23.1666667,90.7833333 pk,sarok jioke,Sarok Jioke,04,,31.141562,72.59555 pe,sucanaya,Sucanaya,18,,-16.25,-70.6333333 ne,garin achawal,Garin Achawal,04,,13.9833333,6.6166667 it,buonalbergo,Buonalbergo,04,,41.216667,14.983333 mx,chiconcuac,Chiconcuac,15,19047,19.55,-98.9 ru,gorbanev,Gorbanëv,07,,48.537464,45.834796 tr,havuclu mahallesi,Havuçlu Mahallesi,03,,38.283333,30.283333 ru,shaloty,Shaloty,11,,51.7,110.3 dz,mechtat el douaidia,Mechtat el Douaïdia,51,,35.9986111,0.8083333 ir,ban-e khvod,Ban-e Khvod,13,,34.4615,46.3732 al,cernaleve,Cërnalevë,47,,42.0266667,20.5494444 ro,negomiru,Negomiru,26,3810,44.833333,23.166667 pk,amandarra,Amandarra,01,,33.752226,71.036756 ua,priazovskoye,Priazovskoye,26,,46.734258,35.642511 zr,ohombi,Ohombi,09,,-0.9166667,23.75 ng,ikot etim,Ikot Etim,21,,5.211747,7.928345 se,hemmingsmala,Hemmingsmåla,09,,56.55,15.2 af,kalavuna,Kalavuna,34,,34.666205,71.004388 ye,nabat al `ubaydah,Nabat al `Ubaydah,02,,12.9833333,44.9191667 de,ottenhain,Ottenhain,13,,51.066667,14.7 cn,huozhuangzi,Huozhuangzi,28,,39.288056,117.3125 id,golat tonggoh,Golat Tonggoh,30,,-7.1453,108.2211 kp,soksari,Soksari,01,,40.6666667,127.2833333 zr,bafwamogo,Bafwamogo,09,,0.8666667,26.4333333 pk,nabi bakhsh solangi,Nabi Bakhsh Solangi,05,,25.895187,68.595102 hn,chocolate,Chocolate,02,,13.5777778,-87.3922222 in,pechdal,Pechdal,09,,24.366667,72.05 ru,krasnyy mayak,Krasnyy Mayak,55,,51.3514,55.1447 af,khan qul kala,Khan Qul Kala,37,,33.279072,69.859974 id,montongre,Montongre,17,,-8.6484,116.406 cn,lehua,Lehua,03,,28.821053,115.864888 vu,lamboulpatouey,Lamboulpatouey,10,,-16.35,167.7333333 gm,tuman tenda,Tuman Tenda,05,,13.2166667,-16.4747222 ye,mahall al wali,Mahall al Wali,11,,14.5838889,44.0377778 tn,douar belrhout,Douar Belrhout,18,,36.974167,9.833056 be,schoonhees,Schoonhees,05,,51.05,5.1 br,sitio quinta santiago,Sítio Quinta Santiago,18,,-25.5276,-48.7533 tr,emerek,Emerek,66,,39.785689,35.695073 lk,tanakolawatta,Tanakolawatta,33,,7.0,80.3333333 ro,gornacel,Gornacel,19,,45.15,23.35 be,florenville,Florenville,06,5464,49.7,5.3 ir,hoseynabad ladi,Hoseynabad Ladi,04,,27.526379,59.428969 ph,tabuc,Tabuc,18,5275,11.4694,122.775 th,ban muang,Ban Muang,24,,15.933333,103.2 gh,tumfukro,Tumfukro,04,,5.45,-1.25 ru,tsapko,Tsapko,64,,48.1,142.516667 ge,zemo-boli,Zemo-Boli,05,,42.1272222,44.4713889 au,sebastopol,Sebastopol,07,,-37.6,143.85 ir,qal`eh-i-banaven,Qal`eh-i-Banaven,07,,29.2626,53.9235 ir,ayr,Ayr,34,,34.703205,49.741707 cn,tashan,Tashan,15,,35.955556,107.816667 us,webster hill estates,Webster Hill Estates,IL,,38.3250000,-88.9277778 la,ban koksomhong,Ban Kôksômhông,10,,17,106.016667 us,south freeport,South Freeport,IL,,42.2408333,-89.5725000 la,ban sopchiang,Ban Sôpchiang,03,,20.059444,104.186667 bd,ichhali,Ichhali,81,,23.95,90.45 ee,tapurle,Tapurle,01,,59.6038889,25.5711111 ru,yemsha,Yemsha,77,,57.133333,33.116667 zm,botunga,Botunga,04,,-15.7666667,26.1333333 br,embu-mirim,Embu-Mirim,27,,-22.533333,-45.083333 bg,kukuryak,Kukuryak,43,,41.3333333,25.4666667 ru,khokhary,Khokhary,51,,56.717108,43.027103 ph,likbah,Likbah,60,,5.955784,121.219107 ru,uord-ropruchey,Uord-Ropruchey,28,,61.3,35.516667 tr,koskoru koyu,Koskoru Koyu,77,,40.316667,39.983333 ru,yeremino,Yeremino,41,,51.631102,36.514154 cn,nanmengtang,Nanmengtang,30,,21.549016,109.812182 ro,tepes voda,Tepes Voda,08,,45.166667,27.616667 kz,budennovka,Budennovka,15,,48.778056,84.200833 it,konkonelj,Konkonelj,06,,45.666667,13.8 af,sange sanda,Sange Sanda,41,,33.688157,65.810202 ph,san miguel,San Miguel,I7,2875,7.485,125.676389 gr,kotseika,Kotséïka,31,,38.35,21.65 ir,sukhgakun,Sukhgakun,34,,33.720316,49.658379 hr,crno,Crno,20,,44.1141667,15.2911111 es,murugarren,Murugarren,32,,42.702597,-2.009159 gt,tojquian grande,Tojquián Grande,17,,15.033333,-92.05 gh,kpikpaligu,Kpikpaligu,06,,9.1833333,0.3166667 cu,fundamento,Fundamento,11,,23.0183333,-82.1455556 pl,gorale,Gorale,74,,51.160681,19.808833 fr,vezins,Vezins,B5,,47.120149,-.709707 tj,bishkala,Bishkala,02,,37.4636111,68.1630556 hu,szenttamaspuszta,Szenttamáspuszta,24,,46.811708,16.930615 cy,mersiniki,Mersiniki,01,,35.3416667,33.725 ir,chah khashdu,Chah Khashdu,07,,28.9638,55.1645 af,tahkham,Tahkham,09,,34.554344,65.816734 ir,gazestan,Gazestan,03,,32.111944,50.116667 us,prattsville,Prattsville,OH,,39.2386111,-82.3913889 cn,gaoming zhen,Gaoming Zhen,04,,32.255556,120.377778 ve,entradita,Entradita,23,,10.6083333,-71.6533333 pt,cordeiros de messines,Cordeiros de Messines,09,,37.252257,-8.249578 jp,taira,Taira,08,,37.05,140.916667 jp,shinkura,Shinkura,46,,35.6,139.05 th,ban nikhom phraeng khayang,Ban Nikhom Phraeng Khayang,48,,12.778278,102.00225 us,westmoreland,Westmoreland,WV,,38.4005556,-82.5122222 us,eagle rock,Eagle Rock,VA,,37.6405556,-79.8013889 ru,rassokhiny,Rassokhiny,33,,58.7605,49.3248 cn,ganlucun,Ganlucun,07,,24.502778,117.602222 pk,chak seventy-seven-eight al,Chak Seventy-seven-Eight AL,04,,30.059722,72.311111 ph,agnianic,Agnianic,54,,12.116659,122.006111 tr,yukari kiratli,Yukari Kiratli,35,,39.201076,26.86504 sy,nabouaa,Nâboûaâ,01,,36.9366667,41.6025 se,hullingarod,Hullingaröd,27,,56.266667,14.133333 th,ban lum bon,Ban Lum Bon,68,,6.756111,100.864722 bd,binodpur bara khanda,Binodpur Bara Khanda,81,,23.8333333,90.1333333 vn,kim Ðe,Kim Ðê,86,,21.199445,105.470534 iq,kharman,Kharman,11,,36.3130556,44.1925 kp,hwangchudong,Hwangchudong,01,,40.9333333,126.3 ye,safijaah,Safijaah,13,,13.85,43.9666667 ng,zava,Zava,43,,8.9,11.283333 bo,estancia layuni,Estancia Layuni,04,,-17.6166667,-68.0166667 ru,bolshoye podsonye,Bolshoye Podsonye,52,,58.390134,31.015977 ba,vrenjak,Vrenjak,01,,43.8836111,18.0147222 tr,dagsuyu,Dagsuyu,21,,37.738442,39.955227 tr,hasanduzu,Hasandüzü,31,,36.216667,35.95 pl,mursy,Mursy,78,,52.567911,22.252882 id,kalikatir kidul,Kalikatir Kidul,07,,-7.772222,110.888333 us,cornwall-on-hudson,Cornwall-on-Hudson,NY,,41.4447222,-74.0161111 de,hedendorf,Hedendorf,06,,53.483333,9.616667 ar,la pastoril,La Pastoril,11,,-36.373119,-66.227712 ua,pisarevka,Pisarevka,21,,51.073985,34.799988 ph,carinan,Carinan,16,,13.5167,123.0156 gb,forton,Forton,H2,,53.95,-2.783333 pl,rutkowo,Rutkowo,85,,53.739494,21.23428 cn,naya gongshe,Naya Gongshe,14,,29.701,89.201 cn,luchi,Luchi,03,,27.7,117.083333 cn,xiangdong,Xiangdong,30,,24.679167,111.983333 eg,al kafr al jadid,Al Kafr al Jadid,01,,31.1666667,31.8333333 cn,jingtiankeng,Jingtiankeng,30,,22.679303,114.75438 by,poselok imeni stalina,Posëlok Imeni Stalina,06,,53.8166667,27.25 id,muarasoma,Muarasoma,26,,.7,99.35 id,imimeremoe,Imimeremoe,36,,-4.533333,136.75 za,maitland,Maitland,11,,-33.921734,18.490299 zm,mumba,Mumba,02,,-13.2166667,28.5666667 th,changwat phra nakhon,Changwat Phra Nakhon,40,,13.753979,100.501444 bj,guiri,Guiri,03,,10.1833333,3.2833333 de,walksfelde,Walksfelde,10,,53.633333,10.583333 tr,cukur,Çukur,32,,36.483333,33.933333 ir,maghrurabad,Maghrurabad,44,,35.9646,50.5811 gh,ayanfuri,Ayanfuri,04,,5.4666667,-0.8666667 ru,nizhniy zhurim,Nizhniy Zhurim,11,,51.426643,107.193662 ru,stanishche,Stanishche,69,,55.0275,33.898056 dk,sonder hostrup,Sønder Hostrup,21,,54.988721,9.451791 ir,simaj,Simaj,04,,25.317881,61.183852 mm,nawngping,Nawngping,11,,21.8833333,97.9666667 ge,kubasanti,Kubasanti,02,,42.9316667,41.2794444 vn,lang mo,Làng Mo,19,,21.266667,104.75 ru,charozero,Charozero,85,,60.459363,38.655415 cn,yinjiachong,Yinjiachong,11,,29.713322,111.464427 tr,sakolor,Sakolor,58,,39.40655,37.47448 id,sawicibitung,Sawicibitung,30,,-6.693056,107.436389 cg,ossaga,Ossaga,03,,-0.8136111,15.2252778 ba,konatari,Konatari,02,,44.7069444,17.0375 ca,burnt creek,Burnt Creek,10,,54.816667,-66.883333 pk,mala dheri,Mala Dheri,03,,34.335556,72.158889 pe,maisuncho,Maisuncho,09,,-13.1333333,-74.5166667 br,tres pocos,Três Poços,18,,-25.981086,-50.225105 cn,hantaokou,Hantaokou,09,,34.264722,116.371667 us,wilson,Wilson,MI,,45.7052778,-87.4380556 ve,el rincon,El Rincón,04,,10.2822222,-67.2966667 pt,quinta da melhorada,Quinta da Melhorada,18,,39.352133,-8.563919 ng,tungayama,Tungayama,51,,13.452252,5.51189 mm,mawchi,Mawchi,06,,18.8166667,97.15 us,marty,Marty,SD,,42.9925000,-98.4247222 cl,molineros,Molineros,08,,-34.516667,-71.6 ru,staropreobrazhenka,Staropreobrazhenka,53,,55.50207,77.050484 ng,takunpara,Takunpara,31,,9.266667,6.583333 ru,pomorskoye,Pomorskoye,06,,73.283333,54 tr,milyanis,Milyanis,74,,37.726111,42.231389 gm,numyell,Numyell,04,,13.2833333,-14.3 mx,rancho el ebanal,Rancho El Ebanal,19,,26.014167,-99.718611 us,egg harbor city,Egg Harbor City,NJ,,39.5286111,-74.6483333 cn,kuangshantun,Kuangshantun,08,,45.871838,127.824533 ru,semenovskoye,Semënovskoye,56,,52.65,36.583333 it,valle di camin,Valle di Camin,20,,45.4,11.95 in,bharmasagara,Bharmasagara,19,,14.366667,76.183333 gn,yalea,Yaléa,07,,11.9666667,-11.0 cn,sangyuanzhen,Sangyuanzhen,26,,33.045769,107.626482 us,horseshoe mobile home park,Horseshoe Mobile Home Park,AZ,,33.4133333,-111.9027778 pl,krzyzatka,Krzyzatka,72,,50.795493,15.833476 cy,dhrymou,Dhrymou,06,,34.925,32.5166667 us,lemonweir,Lemonweir,WI,,43.7844444,-90.0169444 fr,breuil-magne,Breuil-Magné,B7,,45.984778,-.960001 cn,zhangshe,Zhangshe,25,,36.874444,119.719167 hr,prkos,Prkos,20,,44.0805556,15.4277778 de,kamenz,Kamenz,13,18122,51.266667,14.1 us,salduro,Salduro,UT,,40.7350000,-113.8555556 by,buyki,Buyki,03,,54.9333333,26.0833333 ca,bear river,Bear River,07,,44.566667,-65.633333 cn,longmu,Longmu,03,,26.176111,114.554167 us,deer creek park,Deer Creek Park,CA,,39.2583333,-120.9461111 gr,kaminakion,Kaminákion,46,,35.15,25.4666667 zr,mubanda,Mubanda,00,,-10.3,22.25 hr,uble,Uble,03,,42.7397222,16.83 ro,ion bratianu,Ion Bratianu,12,,45.516667,22.433333 ma,slahma,Slahma,51,,32.487787,-9.162563 cn,huangzhuang,Huangzhuang,12,,31.201779,112.573626 id,saketipasar,Saketipasar,33,,-6.4014,105.9943 pk,dagai,Dagai,03,,33.991733,71.824486 tw,tukangpu,Tukangpu,04,,23.1666667,121.2333333 cn,puchienhsu,Puchienhsu,30,,23.566667,114.6 cd,gudiaganga,Gudiaganga,00,,-6.516667,19.183333 br,campo faxinal,Campo Faxinal,26,,-26.383333,-53.05 ru,plotitsyno pervoye,Plotitsyno Pervoye,76,,53.3,36.85 th,ban phon phaeng,Ban Phon Phaeng,20,,16.954722,104.031695 us,slabtown,Slabtown,ID,,46.8727778,-116.3927778 cn,miaoxia,Miaoxia,01,,30.329167,118.004167 ua,tsapovka,Tsapovka,23,,48.537681,28.72332 cn,machiangcheng,Machiangcheng,18,,26.5,107.583333 ua,kuryazhanka,Kuryazhanka,07,,50.01218,36.07328 id,tlemang,Tlemang,08,,-7.2573,112.1896 ci,yapo,Yapo,82,,5.25439,-3.805403 ir,sultaq,Sultaq,09,,34.576466,48.277547 af,samozi,Samozi,23,,30.094329,65.991531 ie,cannonswood cross roads,Cannonswood Cross Roads,15,,52.8408333,-7.4969444 mz,ciquisse,Ciquisse,03,,-22.2305556,34.2383333 th,wapi,Wapi,24,,15.845229,103.376785 mx,jaboncillos,Jaboncillos,19,,25.55,-99.283333 fr,dondas,Dondas,97,,44.253302,.839739 gt,jucup,Jucup,08,,15.75,-91.583333 lr,blazenke,Blazenke,10,,5.075,-8.7813889 ph,becerril,Becerril,21,2416,9.6531,123.4344 us,shelbyville,Shelbyville,IL,,39.4063889,-88.7900000 ir,raykan-e `olya,Raykan-e `Olya,09,,35.0747,48.6486 dk,honnerup,Hønnerup,21,,55.420699,9.977615 cn,baigecun,Baigecun,29,,24.157503,102.663816 mx,tanque al reves,Tanque al Revés,07,,27.933333,-102.216667 id,bantajan,Bantajan,01,,4.9405,97.7478 id,panombeanpassur,Panombeanpassur,26,,2.897,99.2104 id,dolokmarih,Dolokmarih,26,,3.0942,98.723 ma,ouled jagoub,Ouled Jâgoub,51,,32.624924,-8.783672 az,baladzha bozayran,Baladzha Bozayran,15,,39.328649,48.325241 tr,komuskan,Komuskan,44,,38.513517,38.188187 my,panitian,Panitian,16,,5.4162,115.8395 pk,sahsi ji veri,Sahsi ji Veri,05,,24.7594,70.724 us,lorewood grove,Lorewood Grove,DE,,39.5402778,-75.6875000 by,svedskoye,Svedskoye,02,,52.5455556,30.0194444 je,saint peter's church,Saint Peter's Church,00,,49.212222,-2.183611 us,stacy,Stacy,MN,,45.3980556,-92.9872222 pl,tyniec legnicki,Tyniec Legnicki,72,,51.15809,16.385807 af,qaryah-ye siah baghal,Qaryah-ye Siah Baghal,39,,33.230278,66.908889 hn,montecillos,Montecillos,08,,14.6833333,-87.1833333 bg,bjelica,Bjelica,46,,42.85,25.5833333 za,ann shaw,Ann Shaw,05,,-32.826757,26.991089 pe,urban,Urban,20,,-4.35,-80.9 by,ostrov,Ostrov,04,,53.6075,32.0952778 in,tindivanam,Tindivanam,25,69845,12.25,79.65 id,cilamajang,Cilamajang,30,,-7.3283,108.159 pk,goth haji karfal musat,Goth Haji Karfal Musat,05,,24.568056,67.577778 cl,lo de lobo,Lo de Lobo,08,,-34.383333,-70.816667 bo,torohuayco,Torohuayco,07,,-21.9666667,-65.5 de,lowick,Lowick,07,,51.833333,6.583333 id,pekkabaru,Pekkabaru,38,,-4.7462,119.5458 cd,kasongo,Kasongo,09,,.883333,28.866667 ht,platon gine paille,Platon Gine Paille,06,,19.25,-72.45 tr,ekincek,Ekincek,04,,39.622519,42.818409 ci,gohua,Gohua,79,,6.073393,-5.84425 ir,kala kabud-e pa'in,Kala Kabud-e Pa'in,13,,34.5497,46.8622 kp,togumdong,Togumdong,08,,38.1416667,126.7533333 cn,zhangjialing,Zhangjialing,19,,40.356612,123.323742 gn,soumdou,Soumdou,13,,8.865,-10.2019444 tr,tutlu,Tutlu,26,,39.39225,31.712608 us,royal pines,Royal Pines,LA,,32.5147222,-92.2138889 mx,la estanzuela,La Estanzuela,32,,21.15,-103.466667 fr,champigny,Champigny,A8,,48.81642,2.493656 us,yost,Yost,OH,,39.9086111,-82.3327778 cn,shantouying,Shantouying,01,,30.860313,118.611867 ir,meymun baz,Meymun Baz,13,,34.5011,46.8513 pk,goth miroi,Goth Miroi,02,,29.15,68.183333 fr,castelnau-magnoac,Castelnau-Magnoac,B3,,43.294066,.506107 la,mok kong,Mok Kong,07,,20.753611,102.311111 kz,shiylitogay,Shiylitogay,04,,49.366667,56.033333 vn,nha hue,Nha Huê,36,,11.616667,108.75 sy,quzjali as saghir,Quzjali as Saghir,09,,36.4666667,37.7666667 th,tha lat,Tha Lat,75,,14.9,105.066667 af,babur,Babur,40,,34.991667,68.606944 ir,tegergi,Tegergi,09,,34.287206,48.467939 us,onoto,Onoto,WV,,38.2711111,-80.1069444 vn,anh do,Anh Do,28,,13.383333,109.25 cn,wulansohai,Wulansohai,20,,40.716667,107.6 my,kadangan,Kadangan,16,,5.516667,115.866667 tr,playa,Playa,34,,41.029311,28.549785 mw,chimpambana,Chimpambana,05,,-16.4666667,34.9 jp,kagami,Kagami,33,,33.423333,130.0075 pe,queulacocha,Queulacocha,10,,-10.0991667,-76.4272222 ng,nyibango keremi,Nyibango Keremi,35,,8.533333,12.133333 hu,heki puszta,Héki Puszta,20,,47,20.4 af,dehe buci,Dehe Buci,23,,31.79838,65.801254 cn,baoshi,Baoshi,03,,27.164804,116.298438 se,spannsjon,Spannsjön,24,,63.133333,17.333333 ir,molk sar,Molk Sar,08,,37.3883,49.1746 sy,jnoudiye,Jnoudîye,12,,35.8833333,36.2833333 ml,youre,Youré,04,,14.3666667,-4.0833333 cn,kaoan,Kaoan,03,,28.416667,115.366667 ci,tiare,Tiaré,92,,9.55,-3.366667 by,petukhovshchyzna,Petukhovshchyzna,06,,53.3166667,26.6666667 us,mariendal,Mariendal,VI,,18.3297222,-64.8819444 zm,kanjenje,Kanjenje,01,,-13.6666667,23.1 af,shinghazay,Shinghazay,06,,32.107784,62.930097 cn,shunihsien,Shunihsien,22,,40.125,116.645278 us,paradise park,Paradise Park,OR,,45.3161111,-122.3836111 pk,basti bhundani,Basti Bhundani,04,,29.138282,70.632472 ve,viudita,Viudita,01,,2.4333333,-66.4166667 ir,daghi,Daghi,33,,37.283333,46.833333 gr,agios nikolaos,Ágios Nikólaos,46,,35.1913889,25.7133333 ph,lacadon,Lacadon,30,,10.85,122.533333 pk,sahotha,Sahotha,05,,31.854421,73.713027 bf,tanloule,Tanloulé,52,,11.15,-3.15 be,l'abbaye,L'Abbaye,04,,50.466667,5.466667 cn,liushafeng,Liushafeng,12,,30.181942,114.654116 cn,shunpo,Shünpo,30,,22.597996,111.618854 tr,zerink,Zerink,49,,39.094226,41.501803 jo,barza,Barza,09,,31.524606,35.746308 id,watucepang,Watucepang,18,,-8.4662,120.5967 gh,panfokrom,Panfokrom,09,,5.45,-0.6166667 gb,higher wambrook,Higher Wambrook,M3,,50.883333,-3 cn,xiadong,Xiadong,30,,23.672222,117.025 ba,han bare,Han Bare,02,,43.9558333,18.6027778 pk,goth mazar khan,Goth Mazar Khan,02,,28.860923,68.148271 ua,staroye pokrovskoye,Staroye Pokrovskoye,16,,47.366667,31.533333 do,guayajayuco,Guayajayuco,11,,19.2166667,-71.6166667 kp,chajangdo,Chajangdo,17,,41.7716667,129.6413889 ua,novoselki novocheshskiye,Novoselki Novocheshskiye,24,,50.473344,25.008031 at,lamm,Lamm,02,,46.766667,14.766667 sk,veternik,Veterník,01,,48.7,18.9166667 af,bari,Bari,18,,34.035244,70.629364 cn,hongnizhang,Hongnizhang,15,,36.706126,106.891762 ba,korca,Korca,01,,43.7458333,18.0786111 us,herbert,Herbert,ID,,43.7063889,-111.6591667 sn,aynoumal,Aynoumal,08,,15.85,-16.0 cd,tshumbu,Tshumbu,09,,1.683333,30.433333 cn,shuitianzhai,Shuitianzhai,32,,27.770595,106.037677 pk,wekhborai,Wekhborai,03,,34.651338,72.924615 id,bekangan,Bekangan,07,,-7.477222,110.782778 ru,blomki,Blomki,21,,57.3,40.766667 kr,sangchon,Sangchon,13,,37.081389,127.486389 ee,bartholomai,Bartholomäi,05,,58.685,26.5788889 ua,podcherevitse stare,Podcherevitse Stare,24,,51.333333,25.8 lt,polontina,Polontina,63,,55.6333333,22.4333333 gt,san nicolas,San Nicolás,07,,14.5,-90.5 th,ban na kai,Ban Na Kai,17,,17.852389,102.734222 no,nes,Nes,16,,63.366667,9.033333 tr,uzunpinar koyu,Uzunpinar Koyu,63,,37.666667,39.333333 pk,somian jodh singh,Somian Jodh Singh,04,,30.549614,73.900196 ch,muri,Muri,01,6307,47.270428,8.3382 ne,kountietari zibo,Kountiétari Zibo,03,,13.15,3.4833333 md,valya-luy-vlad,Valya-luy-Vlad,85,,47.482778,28.130833 tz,mtibangi,Mtibangi,00,,-9.9333333,37.55 it,carmignano,Carmignano,20,13366,45.15,11.65 se,kallbacken,Källbacken,03,,60.7,17.15 ng,barakin columbai,Barakin Columbai,49,,9.683333,8.866667 mk,dusegubica,Dusegubica,30,,41.5,20.8166667 vn,yen Ðien,Yên Ðiên,35,,20.5,106.2 gh,ave afiadenyigba,Ave Afiadenyigba,08,,6.3166667,0.8666667 cd,musengia mobanga,Musengia Mobanga,10,,-4.583333,26.75 fr,pisseleu,Pisseleu,B6,,49.539923,2.059957 cn,shinancun,Shinancun,30,,23.128304,112.961905 id,losari,Losari,38,,-4.0054,119.6219 ne,sakala gonga keyna,Sakala Gonga Keyna,03,,12.6,2.8 br,vargem do santana,Vargem do Santana,15,,-20.383333,-44.083333 cn,daquezhuangzi,Daquezhuangzi,19,,40.301182,120.377256 lu,greisch,Greisch,03,210,49.7097222,5.9883333 cn,xiyan,Xiyan,11,,26.616389,110.473611 id,pondokgabe,Pondokgabe,26,,2.3256,99.2421 cn,aimen,Aimen,07,,26.213286,116.400593 ua,novogeorgiyevskiy,NovoGeorgiyevskiy,07,,49.566667,36.533333 pl,zarka,Zarka,72,,51.209468,15.018326 fr,les loges,Les Loges,A7,,49.698597,.284035 hu,diosdulo,Diosdulo,15,,46.116667,18.283333 cn,lingkoushih,Lingkoushih,31,,19.343972,110.303924 sd,kanyuro,Kanyuro,34,,11.1,30.65 ng,soro,Soro,32,,8.983333,3.95 ru,lupachevo,Lupachëvo,88,,58.014232,40.398487 ph,calicanto,Calicanto,09,,13.830278,121.401389 mx,noh-suytun,Noh-Suytún,23,,20.425,-88.108333 in,simaldahi,Simaldahi,03,,26.405388,89.913811 bf,bihoun,Bihoun,74,,11.7,-3.5833333 pl,kopahn,Kopahn,87,,54.459785,16.434398 ye,husn ba qirdan,Husn Ba Qirdan,04,,14.4166667,48.4666667 it,coman,Coman,17,,46.033333,10.883333 fr,luche-pringe,Luché-Pringé,B5,,47.703884,.076564 kz,kayrat,Kayrat,01,,43.545278,77.588056 cz,netolice,Netolice,79,2606,49.050948,14.198223 pl,lukaszew,Lukaszew,86,,51.958721,17.273714 pl,przyslop,Przyslop,77,,49.466667,20.5 pk,lal bakhsh bhatti,Lal Bakhsh Bhatti,05,,27.451389,68.427778 al,zuvljani,Zuvljani,45,,39.9972222,20.1977778 bd,char chandiprasad,Char Chandiprasad,81,,23.95,89.7666667 sy,bhamrah,Bhamrah,02,,35.45,36.0166667 pk,shahr mehrwal,Shahr Mehrwal,02,,27.696466,66.788609 de,rosefeld,Rosefeld,14,,51.783333,12.083333 id,salamsari,Salamsari,07,,-7.287222,110.151667 cn,youjiangdong,Youjiangdong,11,,25.302778,112.136389 us,chauvin estates,Chauvin Estates,LA,,32.5588889,-92.0936111 hr,obedisce,Obedisce,20,,45.6330556,16.5552778 la,ban khokphou,Ban Khokphou,07,,20.074167,102.081389 pk,mastal,Mastal,04,,33.666037,73.031175 sy,judaydat al khas,Judaydat al Khas,08,,33.4,36.55 cu,marga larga,Marga Larga,07,,21.95,-78.3 vn,dien pha phuong,Dien Pha Phuong,04,,16.366667,107.566667 bf,sirakorosso,Sirakorosso,24,,12.15,-3.1166667 ir,zafarabad,Zafarabad,23,,33.9354,47.7431 id,tonanggan,Tonanggan,07,,-7.615556,110.700833 gr,strouza,Stroúza,32,,38.4833333,22.1666667 co,espejuelo,Espejuelo,21,,7.666667,-72.683333 ve,mocochope,Mocochope,14,,8.4136111,-71.5111111 es,sant roma de abella,Sant Romá de Abella,56,,42.141429,1.040284 cn,houcailiyingzi,Houcailiyingzi,19,,41.799562,121.580351 us,maidens forest,Maidens Forest,VA,,37.7130556,-77.8602778 cn,paimukou,Paimukou,24,,36.35,112.35 lk,velikamam,Velikamam,31,,8.9166667,79.95 cn,hsingkota,Hsingkota,24,,36.816667,111.433333 mp,bois sec,Bois Sec,20,,-20.4413889,57.5102778 pe,vacahuasi,Vacahuasi,05,,-14.3333333,-74.6833333 ae,'odaid,'Odaid,01,,24.616667,51.4 th,ban hua khua nuea,Ban Hua Khua Nuea,73,,17.072056,104.705834 mm,letpandaga,Letpandaga,07,,19.7833333,94.5833333 cd,makoka,Makoka,10,,-2.566667,25.483333 sn,kalap,Kalap,12,,12.7786111,-16.2980556 us,bier,Bier,MD,,39.5419444,-78.8761111 dz,foggaret ez zoua,Foggaret ez Zoua,00,,27.3666667,2.8333333 hr,bistra gornja,Bistra Gornja,07,,45.9166667,15.9 cn,tsangchai,Tsangchai,24,,39.629532,113.113674 tr,cicekveren,Çiçekveren,49,,39.439501,42.331815 lr,polar town,Polar Town,02,,6.2613889,-8.0363889 gh,suprudu,Suprudu,04,,5.2166667,-1.0 br,lagoa branca,Lagoa Branca,27,,-21.9,-47.033333 ro,remetea,Remetea,02,,46.15,22.9 ru,studenets,Studenets,34,,62.165271,50.504925 lk,diyabibile,Diyabibile,33,,6.7166667,80.5333333 cn,shenze,Shenze,02,,29.004021,120.413768 jp,shibasaki,Shibasaki,04,,35.166667,139.816667 kr,modan,Modan,15,,35.663231,128.469664 cn,baihe,Baihe,09,,33.631667,111.943889 pe,pacharres,Pacharres,14,,-6.7769444,-79.5263889 it,caira,Cáira,07,,41.533333,13.816667 pe,anta huaico,Anta Huaico,05,,-14.9666667,-73.6666667 af,faizabad,Faizabad,11,,34.907281,62.090466 cn,xingou,Xingou,11,,29.471944,112.534444 br,vila santa luzia,Vila Santa Luzia,21,,-22.917741,-43.620969 do,el hospital,El Hospital,19,,19.3166667,-70.4333333 lt,kurshi,Kurshi,61,,55.6166667,23.2 at,ettenberg,Ettenberg,04,,48.283333,14.933333 eg,bani hilal,Bani Hilal,17,,27.4666667,30.75 pk,wali dadwala,Wali Dadwala,04,,30.939176,71.509996 ne,gaigouirou,Gaïgouirou,09,,14.5833333,1.1166667 bf,kounia,Kounia,40,,14.5,-1.7833333 fi,vuottolahti,Vuottolahti,08,,64.116667,27.283333 id,tebinggerinting,Tebinggerinting,32,,-3.283333,104.7 pl,kozinki,Kozinki,78,,51.447707,21.053284 ml,fakoni,Fakoni,06,,12.4166667,-4.9833333 ci,half ivory,Half Ivory,82,,5.211318,-4.32612 sy,jisr esh shaur,Jisr esh Shaur,12,,35.8155556,36.3175 ua,oleksiniec,Oleksiniec,22,,49.840927,25.557164 ye,firi`,Firi`,06,,13.5833333,44.7333333 fr,givrycourt,Givrycourt,B2,,48.922334,6.917151 tw,yingpeili,Yingpeili,04,,23.9416667,120.6802778 cn,changyaohsien,Changyaohsien,26,,36.969516,107.588673 ph,bontongan,Bontongan,12,,8.271389,124.933333 cn,hsichi,Hsichi,25,,34.95,117.416667 mg,betsinefo,Betsinefo,06,,-20.25,44.5 ru,amosovo,Amosovo,62,,54.683333,40.583333 do,el guayabo,El Guayabo,24,,18.4833333,-69.15 pk,goth jangi,Goth Jangi,05,,24.613056,67.778056 ru,khamaky,Khamaky,63,,60.116667,111.6 gw,cacha fulbe,Cacha Fulbè,04,,12.4166667,-14.5166667 af,kalasafed,Kalasafed,14,,35.037156,69.340049 tr,cifitburgaz,Cifitburgaz,34,,41.034531,28.858283 id,solokanhaur,Solokanhaur,30,,-7.4262,107.0969 mw,mariku,Mariku,04,,-9.5333333,33.2833333 sy,hatlu,Hatlu,01,,36.9,40.8 pk,arazi chhur mall,Arazi Chhur Mall,04,,33.378352,73.378329 tr,yama,Yama,57,,41.904183,34.986173 cn,jianshan yangjia,Jianshan Yangjia,03,,29.694763,116.437469 az,haciselli,Haciselli,68,,40.717841,47.12096 af,miraman kheyl,Miraman Kheyl,34,,35.157871,71.489978 in,meshiani,Meshiani,12,,32.95,74.7625 id,onepute,Onepute,21,,-2.0582,121.3006 mx,rosario,Rosario,02,,32.333333,-117.033333 eg,`izbat ahmad `ali ad din,`Izbat Ahmad `Ali ad Din,20,,31.2166667,31.6736111 ao,sipundo,Sipundo,12,,-10.844122,17.796673 al,kucake,Kucakë,46,,40.7047222,20.485 cn,niutousi,Niutousi,12,,30.043344,111.992086 cz,kreuz-aujestetz,Kreuz-Aujestetz,88,,49.930979,14.585539 ph,malita,Malita,01,,17.5336,120.6313 es,cortijada el jau,Cortijada El Jau,51,,37.196048,-3.740524 tr,adros,Adros,32,,36.563985,33.217205 bo,comunidad vichi,Comunidad Vichi,04,,-16.0833333,-68.8666667 fr,sainte-radegonde-de-touraine,Sainte-Radegonde-de-Touraine,A3,,47.40687,.704709 ir,rizehvand-e buli,Rizehvand-e Buli,10,,33.7796,46.0279 cn,caolicun,Caolicun,04,,31.051689,120.812415 tw,yuanputsun,Yüanputsun,04,,23.8783333,120.4788889 mx,manzanilla,Manzanilla,15,,19.95,-99.516667 pl,wolka szelezna,Wolka Szelezna,78,,51.323244,21.610861 zr,neru,Neru,00,,3.05,27.1666667 gr,frengena,Fréngena,36,,37.6166667,22.6 fr,montagnieu,Montagnieu,B9,,45.524377,5.453166 cn,miaodong,Miaodong,19,,39.595943,122.479401 id,membura,Membura,38,,-3.5596,119.7434 ru,nibeginskiy,Nibeginskiy,75,,58.281389,84.869722 ve,la india,La India,16,,9.75,-63.5333333 cn,anqiu,Anqiu,32,,30.842217,100.044848 hn,la pita,La Pita,18,,14.9833333,-87.4666667 kh,p'um satrav,P'um Satrav,12,,12.65,103.95 ht,duvaranne,Duvaranne,08,,18.55,-74.3666667 af,dakhani-kokh,Dakhani-Kokh,13,,34.632033,69.572673 af,nowe rah,Nowe Rah,41,,34.248773,66.433954 mm,man sawngmawng,Man Sawngmawng,11,,23.1166667,98.1333333 fi,ostronsaari,Ostronsaari,14,,62.5,31.15 lr,jenje,Jenje,12,,7.3222222,-11.1319444 ph,sili,Sili,51,,15.9236,120.4737 in,naya bazar,Naya Bazar,28,1035,27.133333,88.266667 us,desha,Desha,AR,,35.7361111,-91.6797222 zr,kiramo,Kiramo,11,,-1.195,29.5644444 cz,trzek,Trzek,87,,49.309112,13.352822 lk,talkuduwa,Talkuduwa,32,,7.5833333,80.0833333 cn,baiyangzui,Baiyangzui,32,,29.118927,104.741856 zr,pusu,Pusu,10,,-3.65,24.9166667 al,kolonija,Kolonija,46,,40.3377778,20.6788889 bd,araisprasad,Araisprasad,81,,24.05,90.4 us,garson,Garson,AR,,35.9738889,-90.2275000 id,tarogong kolot,Tarogong Kolot,30,,-7.1931,107.8888 mx,naranjitos,Naranjitos,06,,27.5,-108.4 fr,sembadel,Sembadel,98,,45.274943,3.686871 mx,aticpac,Aticpac,15,,19.85,-98.733333 cn,yaojian,Yaojian,03,,28.47208,115.158785 us,valley overlook,Valley Overlook,MD,,39.4205556,-77.5808333 kr,sinlyeong,Sinlyeong,14,,36.043056,128.783333 ua,malaya andronovka,Malaya Andronovka,08,,46.262295,32.830215 br,marcos rocha,Marcos Rocha,15,,-15.033333,-46.8 us,pitts,Pitts,AR,,35.6744444,-91.0313889 us,hancock,Hancock,AR,,35.8013889,-90.2961111 cn,banfu,Banfu,30,,22.416844,113.315808 id,rantepuang,Rantepuang,41,,-3.0209,119.3707 gr,vayenition,Vayenítion,17,,39.6452778,20.7127778 ru,bereg taskino,Bereg Taskino,39,,56.794722,93.521667 us,graham,Graham,IN,,38.7216667,-87.1963889 fr,anguerny,Anguerny,99,,49.266618,-.401427 la,ban houaynokkeng,Ban Houaynôkkèng,22,,20.325,100.418889 ru,polovinchataya,Polovinchataya,39,,53.516667,93.2 id,timba lauk,Timba Lauk,17,,-8.621,116.4446 sn,sare mali,Saré Mali,11,,13.1166667,-14.0833333 ru,zheleznodorozhnyy,Zheleznodorozhnyy,86,,51.1273,40.0493 ru,malyy berdyaush,Malyy Berdyaush,13,,55.0984,59.1787 ru,zherebyatnikovo,Zherebyatnikovo,52,,58.563056,33.720556 tj,tuda-chinar,Tuda-Chinar,03,,38.5666667,68.05 cn,hengcheng,Hengcheng,21,,38.433333,106.433333 es,las suertes,Las Suertes,31,,37.710138,-1.202637 si,sveti florijan,Sveti Florijan,09,,46.4,15.0 ru,puzyrevka,Puzyrëvka,29,,56.4,87.933333 iq,al bu hubail,Al Bu Hubail,14,,31.6666667,47.0333333 us,twin brook,Twin Brook,ME,,45.0255556,-69.1061111 cn,kankanba,Kankanba,15,,33.50168,104.519844 ro,satul nou,Satul Nou,30,,45.066667,26.033333 ru,kalinovka,Kalinovka,40,,54.6,64.35 es,bustantegua,Bustantegua,39,,43.214751,-3.756447 id,dominanga dusun 1,Dominanga Dusun 1,31,,.3418,123.8174 us,lawrenceville,Lawrenceville,VA,,36.7575000,-77.8472222 pk,kilagai,Kilagai,01,,34.250796,71.481291 af,puste tangi,Puste Tangi,09,,33.69726,64.929417 de,oberkasbach,Oberkäsbach,07,,51.016667,7.166667 ru,nizhneshilovka,Nizhneshilovka,38,5090,43.47362,40.000101 de,dielmissen,Dielmissen,06,,51.966667,9.616667 ru,torpova,Torpova,77,,56.096251,32.956004 lt,kedaynyai,Kedaynyai,60,,55.2883333,23.9747222 kr,kotong,Kotong,14,,36.112599,129.165553 cn,liuhsuchi,Liuhsüchi,01,,33.65,118.066667 be,bontestraat,Bontestraat,02,,50.75,4.05 cn,suxiang dadui,Suxiang Dadui,04,,31.621111,121.059167 ua,gradye,Gradye,24,,51.174834,25.564782 bd,uttar chandkhana,Uttar Chandkhana,83,,25.85,89.0333333 la,ban laoxang,Ban Laoxang,14,,19.2,103.616667 sv,colonia morataya,Colonia Morataya,09,,13.4841667,-88.1663889 ua,ostoya,Ostoya,09,,48.843983,26.936847 bd,sagarpur,Sagarpur,83,,25.0,88.9666667 es,ilche,Ilche,52,,41.957023,.05728 tw,sanchun,Sanchün,04,,23.8333333,120.4833333 nl,ruisende gat,Ruisende Gat,10,,51.329888,3.970239 ng,imeabiam,Imeabiam,28,,5.313539,7.01475 ge,ch'azhashi,Ch'azhashi,36,,42.9075,43.0108333 ba,kosanovici,Kosanovici,01,,44.5125,18.7722222 gt,encarnacion,Encarnación,10,,14.683333,-89.666667 pk,kuz karingal,Kuz Karingal,03,,34.967816,72.569997 ir,bala beyglu,Bala Beyglu,33,,39.1576,47.2327 co,hacienda guadalupe,Hacienda Guadalupe,12,,9.088022,-75.282502 de,liebesdorf,Liebesdorf,01,,49.233333,9.9 hn,san jose olosingo,San José Olosingo,13,,14.2,-88.9166667 kh,phumi panhong,Phumi Panhong,18,,11.0333333,105.85 mx,ixpuchapan,Ixpuchapan,30,,17.75,-94.733333 gt,palestina,Palestina,13,,14.933333,-91.7 ne,loudou sabon guida,Loudou Sabon Guida,06,,14.95,5.9 ir,gol gol,Gol Gol,09,,34.243,49.1034 se,hevosaara,Hevosaara,14,,66.866667,23.566667 de,lelbach,Lelbach,05,,51.283333,8.833333 be,leuze,Leuze,03,,50.6,3.6 pe,casa concha hacienda,Casa Concha Hacienda,11,,-13.7166667,-76.0 cf,zouniaka,Zouniaka,11,,5.4,20.0833333 td,tchoue barde,Tchoué Bardé,05,,12.45,19.5 cn,tanwan,Tanwan,12,,31.381468,112.540307 ro,horezu poenari,Horezu Poenari,26,,43.966667,23.866667 ir,heraj,Heraj,07,,27.72,52.6822 ir,malsafar-e sharqi,Malsafar-e Sharqi,15,,32.166667,48.716667 mx,zidejhe,Zidejhé,13,,20.583333,-99.516667 ua,moiseyevka,Moiseyevka,26,,46.984398,34.682581 pl,rzasnik majdan,Rzasnik Majdan,78,,52.829019,21.694573 gl,quinissut,Quínissut,01,,77.5325,-67.7672222 id,bloro,Bloro,07,,-7.611389,111.0675 sd,djedid,Djedid,33,,13.9166667,22.6666667 tz,kichoni,Kichoni,20,,-5.1833333,39.8 mm,si-saw,Si-saw,11,,21.2833333,97.9833333 ma,dar hamerich,Dar Hamerich,50,,32.813601,-7.641553 cn,zhujiazui,Zhujiazui,32,,29.39345,103.955175 it,vitereta,Vitereta,16,,43.516667,11.683333 ru,mordovskoye baymakovo,Mordovskoye Baymakovo,46,,54.030078,44.735855 bo,conquista,Conquista,04,,-15.4666667,-68.9666667 ro,curtea,Curtea,39,,44.966667,24.15 zw,impampas,Impampas,00,,-17.6166667,27.7166667 ht,lavaud,Lavaud,08,,18.5,-73.8 kr,hagacheon,Hagacheon,13,,37.035278,127.125556 hr,gornja susnjara,Gornja Susnjara,01,,45.7666667,16.75 af,akhingaran,Akhingaran,13,,34.361528,69.201966 sn,kotiari naoude,Kotiari Naoudé,05,,13.9,-13.45 cn,baoshang,Baoshang,16,,25.988056,110.025833 az,safibayli,Safibayli,21,,40.478831,46.711266 ma,ait amar,Aït Amar,48,,32.211136,-4.376003 id,tape,Tape,21,,.1172,120.1163 my,kampung ru tapai,Kampung Ru Tapai,13,,5.515204,102.981095 hu,berekfurdotelep,Berekfurdotelep,20,,47.383333,20.85 id,jebengan kidul,Jebengan Kidul,07,,-7.539444,109.810833 mm,man nawngpot,Man Nawngpot,11,,21.3166667,98.1833333 us,shorts corner,Shorts Corner,DE,,39.2063889,-75.6727778 do,chalona,Chalona,23,,18.7833333,-71.25 us,read,Read,WV,,38.9530556,-79.8430556 fr,inaumont,Inaumont,A4,,49.557539,4.313809 br,cafundo,Cafundó,17,,-7.383333,-37.7 af,jangalak,Jangalak,09,,34.133415,64.01317 kr,puam,Puam,03,,35.795934,127.309469 tr,dirim,Dirim,72,,37.206389,41.142222 kr,tagum,Tagum,16,,35.016667,127.133333 us,westover,Westover,TX,,33.4972222,-99.0175000 id,winducina,Winducina,30,,-7.103333,107.444722 pk,rindra muhammad bakhsh,Rindra Muhammad Bakhsh,02,,29.203813,67.764507 ru,oktyabrevka,Oktyabrevka,67,,52.0521,44.188594 ru,ozernaya,Ozërnaya,93,,52.8141,117.5695 ve,santa cecilia,Santa Cecilia,07,,10.1955556,-68.0194444 us,belle ayr,Belle Ayr,NY,,42.0719444,-74.6097222 sn,tienegou,Tiènegou,03,,14.7666667,-15.8166667 cn,gaoqiangcun,Gaoqiangcun,26,,34.426944,108.367222 be,hautem-saint-lievin,Hautem-Saint-Liévin,08,,50.916667,3.85 mx,barranca del roble,Barranca del Roble,01,,21.768056,-102.747222 ru,vyazemka,Vyazëmka,29,,55.866667,87.016667 de,wremerbuttel,Wremerbüttel,06,,53.65,8.516667 zr,aba,Aba,09,,3.8666667,30.2333333 cm,anloua,Anloua,10,,7.4166667,13.4333333 ru,sodomovy,Sodomovy,33,,59.1347,47.9326 fi,armila,Armila,13,,61.033333,28.2 br,mirindiba,Mirindiba,20,,-6.533333,-42.083333 de,valluhn,Valluhn,12,,53.533333,10.85 lb,wadi ad dayr,Wadi ad Dayr,05,,33.6833333,35.5166667 gr,katavasis,Katávasis,50,,38.4625,25.9702778 cn,mingyun,Mingyun,11,,29.5525,110.648333 us,fort washington,Fort Washington,MD,24124,38.7072222,-77.0233333 id,dungklepu wetan,Dungklepu Wetan,07,,-8.071667,110.879444 ve,la yuagara,La Yuagara,15,,10.5994444,-66.3016667 us,hazelwood,Hazelwood,PA,,40.4133333,-79.9394444 cn,taoyuan,Taoyuan,29,,24.306186,102.49944 tn,zarzuna,Zarzuna,18,,37.264237,9.876696 cd,bilali-pene-lombe,Bilali-Pene-Lombe,10,,-4.316667,26.133333 hu,kalmandyszollo,Kalmandyszollo,18,,47.983333,22.2 ba,gornji drinici,Gornji Drinici,02,,44.6761111,16.9119444 tr,demiroluk,Demiroluk,58,,39.577567,36.451962 us,dennet,Dennet,FL,,30.5361111,-83.6113889 id,long isoen,Long Isoen,14,,.9,114.583333 ma,iknane,Iknane,58,,33.921594,-4.346002 pl,debowko stare,Debowko Stare,86,,53.12218,17.165249 mx,el durasnillo,El Durasnillo,11,,21.542222,-100.120833 jm,guanaboa,Guanaboa,10,,18.0333333,-77.0666667 af,dowlanah,Dowlanah,28,,32.2941,66.454001 id,ciparay satu,Ciparay Satu,30,,-6.961111,107.590833 sa,ash sha`ra',Ash Sha`ra',10,,24.265542,44.184485 lt,piktsyuny,Piktsyuny,61,,55.4333333,23.35 th,ban huai duan,Ban Huai Duan,53,,13.886969,100.100429 af,min'yak,Min'yak,09,,33.532801,64.163493 ir,seh chah,Seh Chah,22,,28.9063,51.1572 sk,batahaza,Bataháza,01,,48.2,19.95 sy,deir es salt,Deïr es Salt,06,,32.7533333,36.2836111 ci,niamasso,Niamasso,77,,9.326568,-6.977522 my,kampung guar syed alwi,Kampung Guar Syed Alwi,08,,6.419788,100.199844 ru,loban,Loban,51,,54.880861,44.810676 id,bubulakdesa,Bubulakdesa,30,,-6.123333,106.626944 az,cuvas,Cuvas,08,,38.592201,48.750134 cn,huangyenhsien,Huangyenhsien,02,,28.647778,121.259444 gh,huni valley,Huni Valley,09,,5.4666667,-1.9166667 ph,canipa-an,Canipa-an,55,,11.8822,124.4523 kp,sapodong,Sapodong,17,,40.8044444,129.5136111 us,norvell,Norvell,AR,,35.2794444,-90.4775000 ug,misinga,Misinga,52,,0.1333333,30.8333333 gb,alderley,Alderley,Z7,,53.283333,-2.233333 af,kokur mango,Kokur Mango,35,,34.861359,70.36113 my,kampung semerbok,Kampung Semerbok,05,,2.4896,102.1199 no,mafjordhamn,Mafjordhamn,05,,71.066667,24 pl,debowiec maly,Debowiec Maly,85,,53.5,20.683333 cn,shangluqu,Shangluqu,26,,34.86731,109.907106 us,mongaup valley,Mongaup Valley,NY,,41.6686111,-74.7850000 tr,kumru,Kumru,83,,36.79411,37.370475 ec,nulti,Nulti,02,,-2.9166667,-78.85 ye,al huraydah,Al Huraydah,04,,15.5986111,48.1827778 pg,tongwinjamb,Tongwinjamb,11,,-4.1166667,142.7166667 ru,rechka,Rechka,61,,49.188981,41.065815 cn,xiabanqiao,Xiabanqiao,30,,24.086944,115.308333 mx,coquillo,Coquillo,15,,18.695833,-99.966667 cn,shuangtang,Shuangtang,03,,27.327183,115.384908 mx,volantin,Volantín,30,,21.483333,-98.483333 zr,kisola,Kisola,00,,-7.9833333,28.5666667 cn,baishuyan,Baishuyan,32,,30.46014,104.212777 cn,dalianhua,Dalianhua,24,,39.129453,112.612423 de,siedlung leinetal,Siedlung Leinetal,06,,51.9,9.933333 ir,zeynal,Zeynal,36,,35.7945,48.0354 pe,huachag,Huachag,04,,-15.5266667,-73.1888889 by,bojarska,Bojarska,06,,54.2333333,26.3333333 ml,karagouan,Karagouan,06,,10.4166667,-5.8666667 zr,ngleza,Ngleza,09,,1.8333333,29.85 kh,phumi trapeang rou,Phumi Trapeang Rou,16,,13.5333333,104.35 cn,xianrenshi,Xianrenshi,03,,28.274147,114.25928 ao,quitumba quiangonga,Quitumba Quiangonga,17,,-9.656284,17.497876 se,sodra lundby,Södra Lundby,28,,58.183333,13.033333 kp,wonunni,Wonunni,07,,38.4038889,126.0866667 pt,catarinoes,Catarinões,07,,40.366066,-8.72339 us,bingham,Bingham,CA,,33.8461111,-118.0583333 kr,twissom,Twissom,03,,36.0314,127.6443 tz,kivumba,Kivumba,05,,-4.6,30.6666667 de,eschbach,Eschbach,01,,47.633333,8.183333 bd,munsi narayanpur,Munsi Narayanpur,81,,23.3333333,89.9166667 ru,podberezy,Podberëzy,33,,58.645169,49.790707 id,menggawa,Menggawa,31,,3.4421,125.5196 ru,vyunskiy,Vyunskiy,72,,53.26657,41.830539 tr,baliksu,Baliksu,04,,39.684789,43.302391 tr,bahcedere,Bahçedere,14,,40.793019,32.318796 id,bantarkawung,Bantarkawung,07,,-7.213056,108.917222 th,ban khok chula,Ban Khok Chula,36,,14.266667,100.4 ir,gunbad-i-jang,Gunbad-i-Jang,41,,33.033333,58.266667 zr,tolo,Tolo,03,,-6.5666667,22.6333333 tr,kilris,Kilris,65,,38.106197,42.712243 ru,stoyanovskiy,Stoyanovskiy,61,,47.239722,42.378611 ro,ardud,Ardud,32,6357,47.633333,22.883333 ca,northgate,Northgate,11,,49,-102.266667 et,rike,Rike,46,,10.766667,39.833333 bd,hasan ghanipur,Hasan Ghanipur,80,,22.9666667,91.3166667 cu,las novillas,Las Novillas,09,,20.3333333,-77.0666667 pk,bala khan,Bala Khan,02,,29.45,65.966667 us,bacons,Bacons,DE,,38.5083333,-75.5700000 ua,babka,Babka,19,,51.387371,25.883172 mg,manalasala,Manalasala,03,,-17.1166667,47.5333333 my,kampong pulau sa,Kampong Pulau Sa,03,,5.833333,102.433333 gn,kakessa,Kakessa,22,,12.0833333,-12.5166667 tr,cavuscayi koy,Cavuscayi Koy,19,,41.166667,34.35 mx,cruz de quiote,Cruz de Quiote,24,,21.833333,-100.7 us,shank town,Shank Town,WV,,40.2763889,-80.6111111 ec,garbanzal,Garbanzal,05,,0.45,-77.95 tr,huni,Huni,02,,37.883333,38.866667 id,pasirlinggaindah,Pasirlinggaindah,30,,-7.1764,107.8925 tr,kaledibi,Kaledibi,25,,40.318567,41.530636 me,viluse,Viluse,00,,42.7275,18.595278 in,jamikunta,Jamikunta,02,,18.283333,79.45 au,djuan,Djuan,04,,-27.116667,151.983333 mx,maguiras,Magüiras,28,,24.483333,-99.066667 lv,nurmuiza,Nurmuiza,28,,57.2333333,22.7666667 us,dublin,Dublin,FL,,28.7891667,-81.6269444 ru,krivtsova,Krivtsova,60,,56.133333,30.933333 de,georgenstadt,Georgenstadt,01,,49.033333,10.2 fr,villefagnan,Villefagnan,B7,,46.011404,.07936 af,chahar shanghow,Chahar Shanghow,07,,36.458249,64.892114 et,avu-bere,Avu-Bere,52,,9.443056,43.293611 nc,coinde,Coindé,00,,-21.6166667,165.95 cn,danian,Danian,24,,35.878223,111.613002 ng,ayantola,Ayantola,32,,7.311667,3.803056 ne,guidan zigao farga,Guidan Zigao Farga,04,,13.2666667,7.5666667 br,poranga,Poranga,08,,-18.6,-40.883333 kz,koszhaltyr,Koszhaltyr,13,,52.015278,63.166944 cr,animas,Animas,08,,9.952835,-84.110788 pk,buk,Buk,07,,36.678905,74.017636 mm,pakang,Pakang,11,,22.25,97.2333333 ao,ambulge,Ambulge,19,,-8.683747,14.76528 dk,store dame,Store Dame,20,,54.915095,12.163095 pl,szablak,Szablak,81,,53.239349,21.944652 ir,takyeh,Takyeh,44,,35.979,50.8537 id,sekarpuro,Sekarpuro,08,,-7.970278,112.676667 no,solesnes i hardanger,Solesnes i Hardanger,07,,60.3,6.283333 cn,choyu,Choyü,14,,29.103,91.203 br,tibaia,Tibaia,14,,-16.416667,-55.966667 tz,lugari,Lugari,14,,-10.8666667,34.8666667 pl,kurianka,Kurianka,81,,53.748073,23.46474 ir,shirin ab,Shirin Ab,13,,34.478767,45.760323 my,rumah giri,Rumah Giri,11,,1.65,111.416667 jp,onoya,Onoya,30,,33.183333,131.45 rs,sljivovica,Sljivovica,00,,42.89,20.993889 gn,kassaniya,Kassaniya,08,,9.6941667,-13.4763889 ir,bonehsar,Bonehsar,09,,34.2375,48.433229 ru,staryye madiki,Staryye Madiki,16,,55.84255,46.720239 sl,masekere,Masekere,02,,8.9833333,-11.85 tj,kok-tepe,Kok-Tepe,03,,39.05,68.9 zr,kishenge,Kishenge,07,,-2.7616667,28.6594444 de,dollen,Döllen,11,,52.983333,12.183333 cn,nanchangcheng,Nanchangcheng,10,,37.91,114.073333 bo,torrepampa,Torrepampa,04,,-16.8833333,-67.6 ua,praskoveyevka,Praskoveyevka,05,,48.66695,38.003903 af,qarya-i-saleh,Qarya-i-Saleh,09,,33.270385,64.558834 pl,kowalik,Kowalik,85,,53.49506,21.461866 uz,chukurkul',Chukurkul',02,,39.65,64.4666667 us,wyckoff,Wyckoff,NY,,42.8419444,-76.5277778 ro,huta,Huta,06,,47.266667,24.05 ni,luciana,Luciana,17,,14.3833333,-83.8833333 cn,gantangbei,Gantangbei,30,,21.866955,110.266367 hr,sveti martino,Sveti Martino,04,,45.1275,14.0511111 ro,chiojdul,Chiojdul,42,,45.35,26.2 ee,alliklepa,Alliklepa,01,,59.2783333,23.7911111 ng,gbungy,Gbungy,26,,7.166667,8.933333 fr,anchaud,Anchaud,B1,,46.137462,2.390214 ru,krutoyarskiy,Krutoyarskiy,62,,54.9071,41.2716 ke,tokitok,Tokitok,08,,-0.55,35.7166667 tr,yesilyazi,Yesilyazi,31,,36.082939,36.052809 bg,zlokuchen,Zlokuchen,61,,43.1333333,27.0333333 ir,tappeh ishi bala,Tappeh Ishi Bala,33,,39.033333,47.183333 ru,ishdavletovo,Ishdavletovo,08,,53.0764,57.4204 kr,songhwangdangmal,Songhwangdangmal,06,,37.3626,128.4308 ml,tiendougou,Tiendougou,04,,13.2333333,-3.5833333 sn,kounias,Kounias,10,,14.0833333,-15.85 af,lewan,Lewan,27,,34.461667,68.839167 es,las paletas,Las Paletas,51,,37.266667,-2.266667 by,puszczenki,Puszczenki,06,,54.45,27.6833333 ru,troitskoye,Troitskoye,65,,52.8647,49.7377 cn,liya,Liya,11,,28.786111,109.286667 ru,voskhod,Voskhod,67,,51.4917,43.4917 af,karez-e sayyidha,Karez-e Sayyidha,39,,32.66314,65.88613 lt,sauletekai,Sauletekai,57,,55.0666667,23.55 ve,majaguito,Majaguito,07,,9.8944444,-67.925 ro,dumbravita,Dumbravita,09,4435,45.766667,25.433333 mk,beloviste,Beloviste,27,,41.7755556,20.9355556 fr,beaufresne,Beaufresne,A7,,49.7175,1.678931 ma,tamasraout,Tamasraout,55,,31.115508,-6.353708 cn,shizigoukou,Shizigoukou,26,,33.694167,109.417778 pk,mirpur sakro,Mirpur Sakro,05,8371,24.547425,67.627713 ir,akil khvajeh,Akil Khvajeh,25,,37.14839,55.991332 pk,lilian na mohra,Lilian na Mohra,06,,32.986298,74.007917 so,heer bucool,Heer Bucool,08,,0.7686111,42.9572222 mn,torog,Torog,10,,45.7666667,94.9333333 cd,kakwembe-kwembe,Kakwembe-Kwembe,05,,-9.583333,24.1 ma,bou maadene,Bou Maadene,58,,34.912617,-4.023081 mz,regulo inguana,Régulo Inguana,03,,-23.4488889,35.2825 fr,plaisians,Plaisians,B9,,44.229556,5.315906 ba,muslimanske zivinice,Muslimanske Zivinice,01,,44.4286111,18.6169444 af,mohammad ayyub meravbashi,Mohammad Ayyub Meravbashi,19,,31.099029,61.901688 cn,fuxing linchang,Fuxing Linchang,01,,32.583333,118.402778 mx,tegorahui,Tegorahui,06,,27.1,-108.583333 ru,mishukovo,Mishukovo,16,,55.036011,46.150807 af,hamzah kheyl,Hamzah Kheyl,08,,33.12088,68.06395 ru,lipchinskoye,Lipchinskoye,71,,57.3856,64.744854 id,pandan buluh,Pandan Buluh,26,,2.7804,98.2463 do,colonia mixta de duverge,Colonia Mixta de Duvergé,09,,18.3666667,-71.45 id,cikadondong,Cikadondong,07,,-7.2462,108.699 vn,xom dinh,Xóm Dinh,86,,21.278038,105.081182 ir,shiramin,Shiramin,33,,37.6404,45.8686 cn,changlu,Changlü,02,,29.861111,120.076944 vn,ap ca hang,Ap Ca Hang,03,,10.15,106.233333 af,gharmeh tappeh,Gharmeh Tappeh,24,,36.692047,68.827053 vn,tourane,Tourane,78,,16.067778,108.220833 ir,tazarch,Tazarch,29,,29.2274,56.1117 mz,chiria,Chíria,08,,-15.0786111,33.5458333 ma,taourat el moratine,Taourat el Moratine,57,,35.174883,-4.869422 nc,meare,Méaré,00,,-21.7333333,165.8333333 sb,paiatori,Paiatori,08,,-9.3166667,161.1 br,barra,Barra,17,,-6.766667,-34.916667 do,los flacos,Los Flacos,32,,18.8833333,-69.5833333 tr,mikri,Mikri,72,,37.333242,41.225272 ir,keykaleh,Keykaleh,09,,34.114965,48.939254 ru,samoshkino,Samoshkino,47,,55.89012,36.217505 ru,chepurleyka,Chepurleyka,57,,53.589981,46.401015 id,kaliori dua,Kaliori Dua,07,,-7.642222,109.444167 id,labaka,Labaka,38,,-4.6083,120.0421 vn,ba nhi,Ba Nhi,67,,9.651667,106.376667 ru,izvestkovyy,Izvestkovyy,64,,46.883459,142.934465 pk,gambo,Gambo,04,,29.755741,71.765901 br,sozinho,Sòzinho,14,,-17.25,-54.65 cn,dongwangji,Dongwangji,09,,32.659167,113.158056 hr,donja velika,Donja Velika,20,,45.9833333,16.4166667 bj,nafarou,Nafarou,03,,11.2,2.4166667 us,carretas crossing,Carretas Crossing,TX,,26.0194444,-97.2916667 id,balekersukamaju,Balekersukamaju,33,,-6.3825,105.8361 br,sidrolandia,Sidrolândia,11,16878,-20.916667,-54.966667 cn,wangji,Wangji,10,,37.966667,116.433333 ph,salisi,Salisi,51,,16.033333,120.366667 hn,jesus de otoro,Jesús de Otoro,10,6988,14.4833333,-87.9833333 ph,labon,Labon,01,,17.5457,120.718 tr,gumusgun,Gumusgun,38,,38.709749,36.436202 rs,kulpin,Kulpin,00,,45.400833,19.586944 pe,huancano,Huancano,11,,-13.6,-75.6166667 us,hepburn,Hepburn,IN,,38.0702778,-87.8011111 cu,la estrella,La Estrella,13,,20.8166667,-77.0333333 cd,nzenga,Nzenga,11,,.35,29.716667 ru,sovkhoznyy,Sovkhoznyy,71,3546,56.5599,61.426 af,godali sarcasma,Godali Sarcasma,08,,33.552612,67.977925 tr,semsettin,Semsettin,63,,36.766667,39.151111 pk,makhiaran,Makhiaran,06,,34.258975,73.868669 ru,baydushi,Baydushi,16,,55.919384,47.319282 tw,hsiatayu,Hsiatayu,03,,25.0833333,121.55 za,bellville,Bellville,11,,-33.900219,18.628468 vn,ban ba phom,Ban Ba Phom,22,,21.283333,103.25 ru,bolshoy bredikhin,Bolshoy Bredikhin,17,,43.896153,46.853221 cd,boi lukenie,Boi Lukenie,00,,-3.366667,22.516667 lv,trenchi,Trenchi,25,,56.9013889,23.7366667 ml,guiniguela,Guiniguéla,07,,12.9416667,-8.1269444 id,kasar,Kasar,31,,1.3966,125.0178 ne,kofo,Kofo,03,,12.4333333,3.15 mx,la ermita,La Ermita,19,,25.566667,-99.333333 be,tuimelaarehoek,Tuimelaarehoek,09,,50.883333,3.1 be,hoeveveld,Hoeveveld,01,,51.083333,4.983333 ir,ibrahimsami,Ibrahimsami,33,,38.9558,46.6683 fr,les monts,Les Monts,A3,,47.004473,1.990101 bg,rizovska makhala,Rizovska Makhala,58,,42.3025,22.4938889 se,alstad,Alstad,27,,55.45,13.216667 pk,bunga,Bunga,04,,29.483333,71.983333 gt,rosario,Rosario,11,,14.269444,-89.665 cn,tuotianba,Tuotianba,32,,28.786276,104.149622 ec,napo,Napo,23,,-0.9833333,-77.8166667 cn,pojiaao,Pojiaao,24,,35.963333,112.021111 co,hacienda chicoral,Hacienda Chicoral,38,,10.228585,-74.03757 in,devipura,Devipura,36,,29.522778,77.383056 ir,tarom sara,Tarom Sara,08,,37.5301,49.1502 se,aggosundet,Aggösundet,24,,63.3,19.083333 pl,czarnocin,Czarnocin,74,,51.581277,19.682675 pk,jhaiar,Jhaiar,04,,31.826378,73.307005 nl,tervinselen,Tervinselen,05,,50.86417,6.03147 kr,haepyong,Haepyong,16,,35.166667,127.55 eg,nazlat al `ada'imah,Nazlat al `Ada'imah,17,,26.9,31.3166667 in,jawala mukhi,Jawala Mukhi,11,5281,31.883333,76.316667 bi,musaga,Musaga,02,,-3.4158333,29.375 cn,huohung,Huohung,18,,25.633333,106.05 ao,dele,Dele,06,,-11.159558,14.239162 nl,oude meer,Oude Meer,07,,52.284312,4.767617 th,ban khuan khi raet,Ban Khuan Khi Raet,66,,7.483333,99.983333 kz,anikinskiy,Anikinskiy,11,,52.666667,78.25 mz,nangade,Nangade,01,,-11.0772222,39.6744444 tn,rhoumerassen,Rhoumerassen,34,,33.059362,10.337122 cn,xiaomailong,Xiaomailong,11,,29.013114,109.384235 cd,ntondo,Ntondo,07,,-2.766667,28.6 br,lages,Lages,22,,-5.698889,-36.245278 cn,dingyun,Dingyun,31,,19.577372,110.574192 ru,vorontsovo-aleksandrovskoye,Vorontsovo-Aleksandrovskoye,70,,44.406944,43.880556 us,sallys fancy,Sallys Fancy,VI,,17.7377778,-64.6672222 us,hyndman,Hyndman,PA,,39.8230556,-78.7183333 tr,sakiznene,Sakiznene,81,,37.410162,35.595713 ng,rafin kubu,Rafin Kubu,51,,13.515356,4.651312 id,garutan,Garutan,30,,-7.3912,111.4945 ru,topolki,Topolki,54,,54.3954,73.9194 us,fairmount north,Fairmount North,MD,,39.6419444,-76.8347222 ru,ust-bay,Ust-Bay,05,,53.8,130.483333 za,lower culunca,Lower Culunca,05,,-31.144209,28.728686 pe,esquives,Esquives,14,,-6.0252778,-79.5277778 us,blue jay 6,Blue Jay 6,WV,,37.6827778,-81.1136111 ec,lasjosefinas,LasJosefinas,10,,-2.2611111,-79.8638889 ru,velsy,Velsy,42,,59.83456,32.361805 mg,ambonimena,Ambonimena,03,,-15.3166667,48.9833333 in,dhasania,Dhasania,24,,26.583333,72.116667 id,pollawareng,Pollawareng,38,,-4.3033,120.1674 ru,bikbayevo,Bikbayevo,08,,52.207907,52.207907 se,karestad,Kårestad,27,,55.916667,13.883333 es,caserio los lopez,Caserío Los López,60,,38.13502,-1.01467 cn,dongling,Dongling,10,,40.172222,117.620278 cn,jiangyoupu,Jiangyoupu,12,,30.310295,115.328288 pe,vilavilane,Vilavilane,23,,-17.8497222,-69.9041667 es,navaconcejo,Navaconcejo,57,,40.177117,-5.831082 hu,porboly,Pörböly,21,,46.205619,18.812373 cn,pinghe,Pinghe,07,,24.352493,117.290708 ru,beloshkino,Beloshkino,77,,56.688909,33.149954 kr,myongsanggol,Myongsanggol,14,,36.6007,129.0083 pl,zabki,Zabki,74,,51.92654,19.8017 br,ilha sao vicente,Ilha São Vicente,31,,-5.616667,-48.133333 ru,shuymar-zarechnaya,Shuymar-Zarechnaya,33,,57.1021,47.9173 hr,rudani,Rudani,04,,45.1166667,13.9772222 ba,brezicani,Brezicani,01,,44.1333333,17.4552778 pk,bharat,Bharat,03,,32.890141,70.636946 af,vismillakalay,Vismillakalay,29,,32.210706,68.546794 th,amphu chai badal,Amphu Chai Badal,34,,15.206139,101.136834 pl,kolonia majdan krasieninski,Kolonia Majdan Krasieninski,75,,51.35,22.45 cn,lotopotzu,Lotopotzu,20,,47.183333,122.166667 lk,ihala koswadiya,Ihala Koswadiya,32,,7.4333333,79.8333333 mz,chilengue,Chilengue,02,,-24.3530556,32.8383333 sd,yari,Yari,28,,3.8466667,30.7677778 ru,staryy nabil,Staryy Nabil,64,,51.516667,143.4 iq,ghilabat,Ghilabat,10,,34.5833333,44.8666667 cl,nogales,Nogales,01,,-32.716667,-71.233333 af,dahane saqawa,Dahane Saqawa,09,,34.498889,66.278066 rs,suhogerile,Suhogërilë,00,,42.816944,20.658333 bd,hemjara,Hemjara,80,,23.35,91.2166667 ee,rahumae asundus,Rahumäe Asundus,12,,58.0686111,27.4172222 cn,zhugongzui,Zhugongzui,12,,30.358083,114.61997 dz,guemoune,Guemoune,18,,36.4666667,4.75 jp,nakajo,Nakajo,26,,36.6,138.033333 kr,wikkamusil,Wikkamusil,14,,35.954722,128.529722 ru,klyunino,Klyunino,85,,59.976283,46.050147 ua,moldova,Moldova,17,,46.214698,29.652006 mw,ngowo,Ngowo,25,,-15.7666667,34.4166667 kr,puhungdong,Puhungdong,17,,36.8,126.483333 ru,druzhba,Druzhba,30,,48.381389,135.32 rs,vitasi,Vitasi,00,,43.83,19.556389 af,nawrake bala,Nawrake Bala,41,,33.887778,66.787778 be,herinnes,Hérinnes,02,,50.716667,4.033333 vn,xuan canh,Xuan Canh,27,,14.2,109.183333 kz,buma,Buma,07,,51.445278,52.819722 ao,chimboa da hanha,Chimboa da Hanha,01,,-13.2,14.333333 fr,chauvency-le-chateau,Chauvency-le-Château,B2,,49.519759,5.307355 gr,kato soudena,Káto Soudená,38,,37.9833333,22.1333333 tr,arutin,Arutin,76,,38.407686,41.491917 af,aq qol,Aq Qol,03,,36.368942,68.828552 mx,rancho la gerarda,Rancho La Gerarda,26,,31.241667,-112.073333 do,campina,Campiña,32,,18.9,-69.6833333 vn,bau don,Bau Don,33,,11.166667,106.316667 bf,tibila,Tibila,78,,13.1,-2.7 ir,tucherdi,Tucherdi,07,,29.9258,53.9714 ru,chukherikhyur,Chukherikhyur,17,,41.649906,48.016638 cf,ouantou,Ouantou,13,,6.3166667,16.85 ru,turmak,Turmak,67,,50.9599,48.7963 ge,yenikov,Yenikov,07,,41.5847222,43.0777778 rs,redevic mahala,Redevic Mahala,00,,42.408611,20.748333 ng,bogu,Bogu,11,,8.64,7.399167 cn,pochinglan,Pochinglan,04,,32.219444,120.613333 za,villiers,Villiers,03,11240,-27.030256,28.600612 ru,malynino,Malynino,25,,54.237401,35.508731 cn,liujia zaofang,Liujia Zaofang,01,,30.98569,119.509028 ir,meqi talu,Meqi Talu,01,,38.038,45.1469 cn,zhaojia,Zhaojia,32,,29.903636,104.104744 so,bulac,Bulac,05,,5.3333333,46.4833333 ir,beyt-e sheykh gha'eb,Beyt-e Sheykh Gha'eb,15,,31.784,48.6409 ir,nakatu,Nakatu,36,,36.2404,48.2022 hr,Ðulovac,Ðulovac,01,,45.6661111,17.4333333 ma,el arba de taourirt,El Arba de Taourirt,58,,34.92654,-3.832042 kz,zelenaya roshcha,Zelënaya Roshcha,11,,52.2,75.083333 id,habeeyaman,Habeeyaman,36,,-7.583333,139.116667 in,nagri,Nagri,36,,26.2066,79.4494 us,southern aire,Southern Aire,TN,,35.8252778,-86.4750000 tr,nadir,Nadir,46,,38.155409,36.952542 ru,suchki,Suchki,76,,53.515556,36.521389 bd,gosaipuskarini,Gosaipuskarini,80,,23.3,91.2 ma,zaoia el feggous,Zaoïa el feggous,55,,30.474878,-6.067495 tr,kavakli,Kavakli,20,,38.133333,29.566667 pk,janda,Janda,04,,31.6139,74.3897 fr,englesqueville,Englesqueville,A7,,49.875535,.888224 py,estancia agatape,Estancia Agatapé,13,,-26.116667,-58.05 cz,pisecna,Pisecna,86,,50.050289,16.438009 ir,gari ab bad,Gari Ab Bad,11,,27.056221,54.769987 sa,al `uqaylat,Al `Uqaylat,13,,26.716667,41.716667 ua,shishkino,Shishkino,11,,45.311946,33.205658 id,bagikcendol,Bagikcendol,17,,-8.8923,116.4609 br,itibira,Itibira,15,,-19.45,-45.133333 mg,kotolay,Kotolay,05,,-18.8666667,46.75 vn,bich thi,Bich Thi,26,,18.666667,105.416667 cz,stachov,Stachov,88,,50.218579,13.492265 id,cisarua girang,Cisarua Girang,30,,-6.8375,107.101111 us,pinhook,Pinhook,TN,,35.1105556,-85.7402778 mm,man na-hpu,Man Na-hpu,11,,22.0666667,98.6333333 pl,gluszyna,Gluszyna,79,,51.152617,17.814644 fr,ancienville,Ancienville,B6,,49.217936,3.21451 id,wagirjengkol,Wagirjengkol,30,,-6.201389,107.405278 sd,khashm al qirbah,Khashm al Qirbah,31,,14.9666667,35.9166667 ki,antai,Antai,00,,2.0333333,173.2833333 hu,kotaji szollok,Kotaji Szollok,18,,48.05,21.716667 ro,bogatu-romin,Bogatu-Romin,33,,45.983333,23.933333 az,muradalili,Muradalili,24,,39.825928,48.105866 kr,oeam,Oeam,13,,37.095,127.145556 sv,los acosta,Los Acosta,05,,13.8727778,-89.4408333 pk,shaikhwala,Shaikhwala,04,,29.09372,70.423106 ir,alah molk,Alah Molk,11,,26.933333,55.783333 rw,nyondo,Nyondo,05,,-1.7166667,29.3166667 tr,soganli,Soganli,38,,38.333333,35 us,raybon,Raybon,GA,,31.2627778,-81.9722222 cn,bulin,Bulin,04,,31.959349,121.592352 cn,mashawan,Mashawan,32,,27.583787,102.059785 ru,durnopi,Durnopi,80,,58.266667,52.95 ec,ventanas,Ventanas,07,,-0.9833333,-78.6666667 ru,dolmatovo,Dolmatovo,77,,56.925402,35.91568 kp,sapyongchon,Sapyongchon,03,,39.6436111,127.2986111 fr,migne,Migné,A3,,46.716667,1.31747 vn,ap dinh,Ap Dinh,26,,19.233333,105.4 pk,pakka makhdum,Pakka Makhdum,04,,30.185768,71.286602 jp,takatsuka,Takatsuka,01,,34.666667,137.4 de,freihols,Freihöls,02,,49.35,12.166667 id,kloncing,Kloncing,08,,-8.1848,113.727 cf,dodowa,Dodowa,13,,7.2666667,16.6666667 id,kambing,Kambing,08,,-7.389722,112.521111 ml,yemougou,Yémougou,07,,14.0666667,-6.8166667 gt,tecpam,Tecpam,03,,14.766944,-90.994167 us,maywood,Maywood,NJ,9460,40.9025000,-74.0622222 us,windsor,Windsor,NJ,,40.2422222,-74.5816667 ge,k'vebi,K'vebi,27,,41.9666667,43.3333333 ru,lesopitomnik,Lesopitomnik,56,,52.8685,36.7429 es,la tala,La Tala,55,,40.589439,-5.537195 pk,goth magan,Goth Magan,05,,25.734997,69.084549 fr,bettaincourt,Bettaincourt,A4,,48.305214,5.253218 af,mohd ayubkhan,Mohd Ayubkhan,19,,30.926111,61.850556 tw,kaoshanchiao,Kaoshanchiao,04,,24.95,121.1833333 pe,collca hacienda,Collca Hacienda,08,,-14.4,-72.1 es,urunuela,Uruñuela,27,,42.443102,-2.707485 bo,la tranca,La Tranca,07,,-19.3833333,-65.2333333 eg,`izbat quda`ah,`Izbat Quda`ah,21,,31.5125,30.8083333 ru,staroye abashevo,Staroye Abashëvo,29,,53.8183,87.4732 ir,amiran-e `olya,Amiran-e `Olya,03,,31.33116,51.233678 bi,nyawaga,Nyawaga,20,,-3.9247222,30.0233333 ru,kokuy,Kokuy,51,,57.6304,46.0285 gr,vrisis,Vrísis,34,,38.55,24.05 it,lonate pozzolo,Lonate Pozzolo,09,12316,45.6,8.75 th,yang yong,Yang Yong,56,,12.983333,99.883333 bf,didir,Didir,24,,12.5666667,-2.6166667 gn,yenguissa,Yenguissa,02,,10.5166667,-13.7666667 fr,calignac,Calignac,97,,44.13351,.41513 id,pajadjaloh,Pajadjaloh,01,,5.1439,97.4428 fr,ruille,Ruillé,B5,,47.750749,.620579 mm,hlungmang,Hlungmang,02,,22.1833333,93.0833333 bd,kharikhola,Kharikhola,83,,24.6333333,88.4666667 zr,lubungi,Lubungi,11,,-1.7166667,27.1333333 ru,generalshino,Generalshino,41,,52.0744,35.2891 gh,hiakose,Hiakose,02,,6.5333333,-1.8333333 id,locondong kidul,Locondong Kidul,07,,-7.573889,109.156667 ng,ilara-ile,Ilara-Ile,16,,6.703611,3.485278 ma,ksar agoudim,Ksar Agoudim,48,,32.130402,-4.871293 cn,chouchi,Chouchi,04,,32.830833,118.306111 ph,tagum,Tagum,11,2559,10.06536,124.383022 pt,bizalhaes,Bizalhães,21,,41.287484,-7.78784 mx,san pedro camara,San Pedro Cámara,31,,21.625,-89.220833 ru,lermontovo,Lermontovo,57,,52.99277,43.661412 ro,asuajul-de-jos,Asuajul-de-Jos,25,,47.533333,23.233333 mg,matsitso,Matsitso,03,,-15.9833333,47.2166667 sn,ngol,Ngol,08,,15.3,-16.0666667 cm,njuki,Njuki,05,,4.1458333,9.6216667 mz,conjerenje,Conjerenje,07,,-14.2075,35.9177778 cd,luituila,Luituila,03,,-5.883333,22.233333 ir,lama-ye sofla,Lama-ye Sofla,05,,31.048525,51.211025 fr,kervenny,Kervenny,A2,,48.622663,-4.56192 tg,koubongou,Koubongou,05,,9.7166667,0.45 sv,labranza,Labranza,08,,13.7166667,-88.0 af,shin'ya,Shin'ya,41,,34.052538,65.653699 ru,pozdeyevo,Pozdeyevo,51,,57.029461,46.497605 es,banares,Bañares,27,,42.46838,-2.910102 sy,nazariyah,Nazariyah,11,,34.4416667,36.5333333 cu,almagro,Almagro,03,,22.7916667,-81.2113889 id,marasi,Marasi,38,,-3.63,119.855556 cn,dajuan,Dajuan,04,,34.145833,119.354167 ir,sarni,Sarni,11,,27.0647,57.3374 lk,meegollewa,Meegollewa,30,,8.0666667,80.4333333 be,wijnhuize,Wijnhuize,08,,50.85,3.85 th,ban nong thale,Ban Nong Thale,74,,14.100556,101.797222 ru,tomunaikeshisawakisen,Tomunaikeshisawakisen,64,,47.171667,142.184167 us,orson,Orson,PA,,41.8136111,-75.4483333 mm,tagwa,Tagwa,03,,17.65,95.4 gh,buabakrom,Buabakrom,09,,4.95,-1.7333333 pk,goth punnu hingora,Goth Punnu Hingora,05,,27.26094,68.54297 be,quevy-le-petit,Quévy-le-Petit,03,,50.366667,3.933333 id,rindiwai,Rindiwai,18,,-9.950281,120.663455 pg,singokai,Singokai,14,,-5.8666667,146.9166667 id,tjipangebak,Tjipangebak,30,,-7.4121,108.2728 mz,chapandira,Chapandira,10,,-19.0258333,33.8911111 id,nosutan,Nosutan,07,,-7.760833,110.697222 gr,moskhionas,Moskhiónas,49,,37.75,24.95 hr,virje,Virje,06,,46.0672222,16.99 fr,brassempouy,Brassempouy,97,,43.632974,-.694527 ir,surban,Surban,01,,37.6364,44.6806 de,lehnensruhe,Lehnensruhe,12,,53.883333,11.483333 pt,janardo,Janardo,13,,39.785175,-8.775715 cg,lebangui,Lebangui,08,,-1.3283333,15.8238889 mx,la tinaja del coyote,La Tinaja del Coyote,11,,20.118889,-101.038611 us,belknap crossing,Belknap Crossing,NY,,42.8641667,-78.1627778 cn,hujia shuyuan,Hujia Shuyuan,04,,32.406567,121.140119 by,stayki,Stayki,01,,52.7,25.3 ru,kamshchilovo,Kamshchilovo,83,,55.45,41.933333 ma,dar jenane bou aka,Dar Jenane Bou Aka,48,,33.879177,-5.078417 ir,esma'ili-ye `olya,Esma'ili-ye `Olya,10,,33.8577,46.2741 pg,pulboa tua,Pulboa Tua,18,,-3.3166667,141.0166667 sd,bakhit,Bakhit,28,,4.5166667,30.0666667 mz,uiruani,Uiruani,01,,-13.8025,38.7847222 so,gaaguura,Gaaguura,08,,1.8677778,42.2927778 cn,houtan,Houtan,23,,31.182778,121.474167 ir,bashu,Bashu,04,,25.65,61.133333 de,brodersdorf,Brodersdorf,10,,54.383333,10.25 id,bilodanda,Bilodanda,17,,-8.3751,116.1805 pe,estancia jancosaca,Estancia Jancosaca,18,,-16.35,-70.35 pe,chorobal hacienda,Chorobal Hacienda,13,,-8.4333333,-78.4833333 sn,batan gnima,Batan Gnima,11,,12.7066667,-15.8477778 ir,aqjeh qal`eh,Aqjeh Qal`eh,36,,37.1129,48.1836 bf,gbeindi,Gbéindi,55,,10.3,-4.1166667 th,ban yang nom,Ban Yang Nom,37,,14.566667,100.75 pl,polichno,Polichno,84,,50.440039,20.404121 ru,meshcherskoye,Meshcherskoye,51,,55.5386,42.446 ru,yeniseyskoye,Yeniseyskoye,04,,52.58,85.520556 pt,vasconcelos,Vasconcelos,04,,41.624475,-8.351409 kz,mekan,Mekan,17,,42.933333,74.65 de,noppenberg,Noppenberg,07,,50.866667,6.116667 ir,sorkheh kav,Sorkheh Kav,33,,38.3669,46.6703 ru,salamatovka,Salamatovka,56,,52.449167,37.012778 fr,grentheville,Grentheville,99,,49.148032,-.287204 mx,chablekal,Chablekal,31,,21.1,-89.583333 ru,karpushkinskiy,Karpushkinskiy,84,,50.6152,42.5375 ao,massanco,Massanco,12,,-8.035773,16.343232 mx,taman,Tamán,24,,21.216667,-98.883333 mx,ticuman,Ticumán,17,,18.75,-99.116667 il,irgun hahoresh,Irgun Hahoresh,03,,32.733889,35.188611 ro,ciacova,Ciacova,36,7205,45.508056,21.128611 us,gallatin,Gallatin,PA,,40.1975000,-79.8891667 fr,colombier,Colombier,A6,,47.439622,6.632431 ma,tizra tomrart,Tizra Tomrart,54,,34.89437,-3.661043 gr,ayia marina,Ayía Marína,51,,39.0666667,26.5833333 ru,dubrovo,Dubrovo,56,,53.115499,35.474567 cm,djenga,Djenga,13,,9.5666667,13.8 pk,jiwanewali,Jiwanewali,04,,32.355726,74.001664 af,qurugh,Qurugh,07,,35.943073,65.527443 ru,uritskoye,Uritskoye,08,,53.533333,54.6 ua,konstantinovka,Konstantinovka,02,,51.959788,32.244907 lk,brynthuraichenai,Brynthuraichenai,31,,7.9166667,81.5333333 it,olia speciosa,Olìa Speciosa,14,,39.278056,9.525 us,hanover,Hanover,MD,,39.1927778,-76.7244444 de,leistrup,Leistrup,07,,51.933333,8.95 mx,el cerrote,El Cerrote,13,,20.665278,-99.286111 ci,kodioussou,Kodioussou,82,,5.771158,-3.755946 tr,khemkyan,Khemkyan,80,,37.469644,43.24717 ru,borisoglebskoye,Borisoglebskoye,69,,55.749022,34.477292 eg,`izbat al mikassar,`Izbat al Mikassar,21,,31.3702778,30.5255556 in,nagthan,Nagthan,19,,16.933333,75.866667 mx,baizas,Baizas,06,,28.316667,-105.433333 in,bir bhadson,Bir Bhadson,10,,29.906944,76.971667 cn,dahewan,Dahewan,11,,29.218508,110.918716 tr,toybelen,Toybelen,24,,39.25326,38.53946 ro,martinestii,Martinestii,38,,46.733333,27.933333 cd,bomele,Bomele,02,,2.816667,19 ci,kwakou,Kwakou,91,,8.053584,-5.65768 pe,pallasca,Pallasca,11,,-13.7166667,-75.85 ly,nufilia,Nufilia,19,,30.7833333,17.8333333 ng,agalaga,Agalaga,53,,6.358059,8.059333 ph,san francisco,San Francisco,06,2901,11.319613,122.050507 id,kangkoeng,Kangkoeng,10,,-7.833333,110.666667 cn,banshanyuan,Banshanyuan,02,,27.704167,119.246111 us,arlington,Arlington,AL,,32.0569444,-87.5886111 bg,raevtsu,Raevtsu,46,,42.9333333,25.75 id,gedopan dua,Gedopan Dua,07,,-7.342778,110.309167 eg,kafr damru wa shubra nabat,Kafr Damru wa Shubra Nabat,05,,31.0833333,31.15 gn,furboya bafe,Furboya Bafe,09,,9.2833333,-10.6 pk,tarangai,Tarangai,01,,33.710278,70.928611 mx,la chacona,La Chacona,06,,16.783333,-93.166667 gb,bockleton,Bockleton,Q4,,52.25,-2.6 id,kampek,Kampek,07,,-6.656,110.7905 id,ajunganmangli,Ajunganmangli,08,,-8.1017,113.8788 pl,braszewice,Braszewice,74,,51.498847,18.448847 mm,manna,Manna,10,,24.4833333,95.5166667 cn,hingkwo,Hingkwo,03,,26.33,115.3475 si,gornje kamnice,Gornje Kamnice,04,,45.8333333,15.15 af,kanay,Kanay,37,,33.393611,69.697222 af,ikhtiarkheyl',Ikhtiarkheyl',08,,32.30039,67.982044 cn,xinli erzu,Xinli Erzu,04,,32.04991,120.370949 tr,eskiyapar,Eskiyapar,19,,40.157637,34.773125 ir,qal`eh-ye mohammad,Qal`eh-ye Mohammad,43,,37.472846,57.966033 kp,madangri,Madangri,11,,39.9969444,125.8888889 id,poeepe,Poeepe,36,,-7.633333,139.65 bd,piddapara,Piddapara,81,,24.6,88.85 la,ban nakoang,Ban Nakoang,14,,19.283333,103.083333 in,bomaram,Bomaram,02,,17.891111,78.457778 al,slym,Slym,49,,42.07,19.7827778 ye,bani rawi`,Bani Rawi`,14,,15.6166667,44.9958333 tr,sarazkom,Sarazkom,86,,41.162676,42.558438 za,noll,Noll,11,,-33.770534,22.887305 cd,kalengula,Kalengula,05,,-7.816667,26.366667 cn,shapoyukou,Shapoyukou,10,,40.276389,117.876667 lt,chel'kyay,Chel'kyay,61,,55.8333333,23.9333333 pk,goth qaim khan jaskani,Goth Qaim Khan Jaskani,05,,25.046068,69.00264 pl,polaszki,Polaszki,82,,53.857265,19.066194 gh,nyani number 2,Nyani Number 2,02,,6.35,-1.7166667 ph,villa silverio,Villa Silverio,68,,16.6222,121.4378 ro,macicasul,Macicasul,13,,46.9,23.566667 ne,alambare ouro alifone,Alambaré Ouro Alifoné,05,,12.6833333,2.2666667 ml,bia,Bia,02,,16.85,-0.3 az,zargarly,Zargarly,63,,40.947612,49.151885 us,harleysville,Harleysville,PA,,40.2794444,-75.3875000 pk,khuwar,Khuwar,03,,31.757497,70.603395 se,rudsjo,Rudsjö,07,,63.85,16.083333 bg,stara rjeka,Stara Rjeka,39,,42.8833333,26.1833333 th,ban wat,Ban Wat,02,,19.396556,99.161084 mn,dzuun hurie,Dzüün hürie,18,,48.0,108.5 za,bikani,Bikani,05,,-32.183333,28.65 us,glen lily,Glen Lily,KY,,37.3077778,-85.7944444 ba,rorovina,Rorovina,02,,43.1208333,18.0866667 ir,deh `askar,Deh `Askar,34,,33.815,49.1563 ru,bolshoye kapustno,Bolshoye Kapustno,52,,58.733333,30.8 rs,donja dobrinja,Donja Dobrinja,00,,43.920556,20.056111 pe,chahuarane,Chahuarane,08,,-15.0733333,-71.5875 lt,medeykyay,Medeykyay,60,,56.2736111,24.8230556 ru,kugul,Kugul,08,,54.8,55.05 pk,ariana,Ariana,03,,35.128004,72.520583 zm,mukachi,Mukachi,03,,-15.8,22.9 la,ban pat soum,Ban Pat Soum,14,,15.466667,105.883333 af,tirgaran,Tirgaran,03,,35.598233,69.443321 tm,kurort molla-kara,Kurort Molla-Kara,02,,39.6275,54.1797222 by,kholoblin,Kholoblin,04,,53.6725,31.5261111 pe,la oya,La Oya,15,,-10.5,-77.7666667 lt,strunojcie,Strunojcie,60,,55.0833333,26.15 pk,aulianwala khu,Aulianwala Khu,04,,31.712177,72.00964 pe,nari,Nari,13,,-7.85,-78.8 ru,gnusikha,Gnusikha,21,,57.09899,42.974279 ua,nova kakhovka,Nova Kakhovka,08,50672,46.75451,33.348636 la,ban houay sanoune,Ban Houay Sanoune,17,,20.3175,102.6275 ne,birgi mari,Birgi Mari,07,,14.9,8.7833333 eg,mit gharitah,Mit Gharitah,01,,30.9316667,31.4766667 id,nglanggeng,Nglanggeng,07,,-7.392222,110.187222 kz,nezhinskoye,Nezhinskoye,16,,53.061389,66.741944 ci,diamai rike,Diamai Riké,74,,5.841764,-4.346884 cn,yutoutang,Yutoutang,02,,28.877147,118.818486 id,teturen,Teturen,07,,-7.702778,110.313611 tr,porsuk,Porsuk,55,,41.128953,36.666885 kz,krasnyy,Krasnyy,16,,54.881389,70.928056 mz,oissa,Oíssa,04,,-25.15,32.1166667 hn,izcanal,Izcanal,10,,13.8166667,-88.3666667 jo,rihab,Rihab,02,,32.324003,36.091434 fr,sentaraille,Sentaraille,B3,,43.027765,1.105853 cr,pocora este,Pocora Este,06,,10.15,-83.583333 id,tebaban barat,Tebaban Barat,17,,-8.6214,116.5218 af,syahgerd,Syahgerd,30,,36.923555,67.080462 zr,ubuse,Ubuse,09,,-0.0666667,27.05 bf,bonohoun,Bonohoun,74,,11.4833333,-3.7666667 hu,kutagasdulo,Kutagasdulo,01,,46.583333,19.433333 id,nangah kalis,Nangah Kalis,11,,.683333,112.883333 hn,balsamo,Balsamo,06,,15.3833333,-88.0 pk,tilpatra,Tilpatra,06,,34.099896,73.779164 ro,rebrisoara,Rebrisoara,06,4638,47.283333,24.45 ru,polyana,Polyana,84,,51.1672,42.0187 tg,sagnakope,Sagnakopé,25,,7.3666667,1.1833333 us,grand lake,Grand Lake,LA,,30.0305556,-93.2719444 cn,hsiachiang,Hsiachiang,04,,31.896667,120.21 ru,pasoysvara,Pasoysvara,28,,62.2,32.55 lk,ketandola,Ketandola,34,,6.0666667,80.3166667 af,bala zar,Bala Zar,23,,31.333106,66.581283 fi,heinamaki,Heinämäki,13,,60.388889,24.9575 hu,nyarosalja,Nyárosalja,17,,46.316667,17.9 ru,khutor nizhniy,Khutor Nizhniy,84,,49.816667,45.3 de,gutzberg,Gutzberg,02,,49.4,10.966667 cn,xiaokuiyong,Xiaokuiyong,32,,30.579139,101.747877 ir,geluchar,Geluchar,29,,29.294351,57.112894 es,la rabia,La Rabia,39,,43.37877,-4.291458 lk,tenna,Tenna,33,,6.7,80.75 us,westville,Westville,IN,,41.5413889,-86.9005556 cn,lianqiao,Lianqiao,02,,29.190494,120.585081 ao,capoxa,Capoxa,17,,-7.408172,20.84063 my,kampong bikan,Kampong Bikan,02,,5.486148,100.69058 id,soekarame,Soekarame,15,,-5.134973,103.919586 mm,suphka,Suphka,04,,26.05,97.5333333 fr,fleurines,Fleurines,B6,,49.26318,2.584052 ru,staroye prudishche,Staroye Prudishche,69,,55.009752,33.75355 in,mercara,Mercara,19,,12.416667,75.733333 us,tylersville,Tylersville,NY,,43.9008333,-75.7997222 cd,kisumba,Kisumba,09,,-.816667,26.666667 us,wells corners,Wells Corners,IL,,42.3094444,-87.8925000 ps,`asira esh shamaliya,`Asira esh Shamaliya,00,,32.25,35.266667 cn,dengjiaao,Dengjiaao,32,,29.425894,104.381629 sl,tulurma,Tulurma,01,,7.8166667,-11.1833333 cg,ilounga,Ilounga,07,,-2.7722222,11.6019444 ru,novosvetka,Novosvetka,88,,58.610199,38.95684 fr,toupray,Toupray,A7,,49.68952,1.582143 id,paisulunu,Paisulunu,21,,-1.4375,123.272222 ve,mesa de poleo,Mesa de Poleo,14,,8.2738889,-71.6144444 cd,burundan,Burundan,00,,4.166667,21.916667 ie,new two pot house,New Two pot House,04,,52.1833333,-8.6833333 de,barsselermoor,Barßelermoor,06,,53.166667,7.716667 id,sukoharjo 2,Sukoharjo 2,15,,-5.314661,104.989592 br,nova vida,Nova Vida,27,,-21.133333,-51.216667 mx,maracubiche,Maracubiche,26,,29.2,-109.783333 de,siehdichum,Siehdichum,12,,53.483333,13.133333 gh,sabronum,Sabronum,02,,7.0833333,-1.8833333 us,long lake,Long Lake,WA,,47.8361111,-117.8477778 id,taruttu,Taruttu,38,,-5.0054,120.1797 cn,changgangbu,Changgangbu,03,,27.922745,116.619655 fr,bignay,Bignay,B7,,45.91689,-.601722 in,kodanad,Kodanad,25,,11.516667,76.916667 pk,amil banda,Amil Banda,03,,32.883333,71.033333 pt,esteiro,Esteiro,02,,40.756671,-8.660893 af,dani-kul',Dani-Kul',05,,34.143611,66.841111 vn,lan tan,Lan Tan,05,,22.766667,105.95 eg,nazlat al `asakir,Nazlat al `Asakir,10,,28.05,30.8333333 tz,mchangani,Mchangani,18,,-5.2833333,39.05 es,baga,Bagá,56,,42.252975,1.862205 sd,mayda,Mayda,34,,11.5583333,29.6166667 af,dahane kec,Dahane Kec,05,,34.595656,66.872348 am,haghardzin,Haghardzin,09,,40.7780556,44.9625 mm,ywathitkiy,Ywathitkiy,09,,18.5833333,95.5166667 me,vranj,Vranj,00,,42.325833,19.297778 ru,augspils,Augspils,60,,57.036747,28.008895 ma,haidour,Haidour,57,,34.954496,-5.376775 ir,vahn,Vahn,22,,27.4341,52.7797 es,el saugo,El Saúgo,55,,40.415058,-6.541789 id,boua,Boua,18,,-8.8095,120.9884 my,pus,Pus,16,,5.5,115.9 jm,iver cottage,Iver Cottage,11,,17.9666667,-77.7166667 ru,duroi,Duroi,93,,50.0101,118.9327 de,oberjettingen,Oberjettingen,01,,48.583333,8.783333 ro,bodesti precista,Bodesti Precista,28,,47.033333,26.416667 mm,inbauk,Inbauk,07,,19.3,95.2166667 cl,la esperanza,La Esperanza,08,,-34.316667,-71.55 ru,galanisino,Galanisino,05,,52.433333,127.616667 ph,san martin,San Martin,68,,16.39,121.7899 fr,champgeneteux,Champgenéteux,B5,,48.291241,-.362559 de,geretsham,Geretsham,02,,48.366667,12.983333 us,poke run,Poke Run,PA,,40.4902778,-79.5969444 id,lagoga,Lagoga,22,,-4.775,121.5741 hn,el horno,El Horno,08,,13.8288889,-87.0436111 br,cotias,Cotias,13,,-3.166667,-45.166667 pk,kalo wal,Kalo Wal,02,,25.47285,63.068517 fr,uzay-le-venon,Uzay-le-Venon,A3,,46.811956,2.46117 tr,kukurt,Kükürt,32,,36.831316,33.206417 vn,ap srok rang,Ap Srok Rang,31,,11.6,106.616667 jo,suleikhat,Suleikhat,02,,32.32851,35.602286 be,sleidinge,Sleidinge,08,,51.133333,3.683333 pk,bhukike,Bhukike,04,,31.115004,72.59364 ru,mylnikova,Mylnikova,90,,58.0304,57.6555 th,ban suk san,Ban Suk San,30,,14.594084,104.488084 ar,paternal,Paternal,07,,-34.599952,-58.462494 kr,pongmakkol,Pongmakkol,06,,37.6623,128.2309 ug,ntoroko,Ntoroko,28,,1.0411111,30.4811111 td,kiriamarimou,Kiriamarimou,06,,13.45,16.3833333 ke,gitero,Gitero,01,,-0.45,36.9333333 af,soraw,Soraw,39,,33.094114,66.448506 et,kemba,Kemba,54,,6.066667,37.166667 de,besslinghook,Beßlinghook,07,,52.133333,6.883333 cz,grabstejn,Grabstejn,83,,50.849361,14.877725 gr,kalomodia,Kalomódia,20,,39.0977778,20.9805556 sb,ngautu,Ngautu,08,,-9.2666667,159.6333333 ph,catipohan,Catipohan,11,,9.842,123.8697 kp,changhyondong,Changhyondong,01,,41.0522222,126.2127778 ba,vodenica,Vodenica,01,,44.6352778,16.2722222 ua,podluzhnyy,Podluzhnyy,07,,49.216667,37.326111 ru,rybalka pervaya,Rybalka Pervaya,30,,53.883333,132.983333 ir,`aliabad-e enqelab,`Aliabad-e Enqelab,39,,34.810043,50.471327 er,af abed,Af Abed,00,,16.1833333,38.6833333 hu,mezokovesd,Mezokovesd,04,17701,47.816667,20.583333 mm,zedigon,Zedigon,11,,20.7,96.6 th,ban ko khang,Ban Ko Khang,68,,6.586722,100.461694 ma,el mraouna,El Mraouna,57,,35.045824,-6.071928 ua,barbashtadt,Barbashtadt,26,,47.431933,35.528956 cn,zhanglixiang,Zhanglixiang,26,,34.39606,109.529828 af,kulolah pushtah,Kulolah Pushtah,33,,35.878865,66.342049 sy,hajji `ali,Hajji `Ali,09,,36.2833333,38.2166667 ru,trekhbaltayevo,Trëkhbaltayevo,16,,54.92691,47.674474 id,talun tonga tonga,Talun Tonga Tonga,26,,2.7666,99.268 mr,moulessimou,Moulessimou,10,,14.8333333,-12.3333333 id,perigi-kulon satu,Perigi-kulon Satu,30,,-6.281389,106.681667 kz,mukur,Mukur,16,,53.291389,67.068611 dz,suk aras,Suk Aras,37,,36.2863889,7.9511111 ru,peshkovo,Peshkovo,61,3596,47.018667,39.388446 dk,oster aaby,Öster Aaby,21,,55.097288,10.701269 es,los villanuevas,Los Villanuevas,52,,40.133333,-.65 af,choqur darreh,Choqur Darreh,26,,36.983059,69.740082 pt,joao serra,João Serra,03,,37.677283,-7.837003 mm,taukkyandaw,Taukkyandaw,10,,23.85,95.75 tn,el houach zarzouna,El Houach Zarzouna,18,,37.264237,9.876696 lk,nahinigammana,Nahinigammana,36,,7.2833333,80.05 vn,nhu son,Nhu Son,29,,15.616667,108.016667 kr,kwangodong,Kwangodong,13,,37.283611,127.432778 za,ga-phahla,Ga-Phahla,09,,-24.700294,29.737588 pk,barezai chingai,Barezai Chingai,02,,30.493376,67.391066 se,halsang,Hålsång,24,,62.833333,18.183333 kp,posandong,Posandong,11,,39.6097222,125.1758333 pl,jawczyce,Jawczyce,77,,49.946172,20.182298 rs,sadikaj,Sadikaj,00,,42.453056,20.865556 mm,man sannampung,Man Sannampung,11,,22.4,98.5 zm,likungumbenje,Likungumbenje,03,,-14.8333333,24.8 us,purcell,Purcell,IN,,38.5955556,-87.5191667 ru,osinovitsa,Osinovitsa,69,,55.441041,31.299489 pl,kolonia janowice,Kolonia Janowice,75,,51.266667,22.733333 us,ballingers mill,Ballingers Mill,NJ,,39.5763889,-75.2694444 ps,khirbat mustafa abu jabir,Khirbat Mustafa Abu Jabir,00,,32.145278,35.001667 ir,baqerabad meyanrud,Baqerabad Meyanrud,13,,34.7,47.116667 fr,schwenheim,Schwenheim,C1,,48.713044,7.412231 cz,ojes,Ojes,89,,50.5,13.483333 nl,snepseind,Snepseind,06,,51.516667,5.333333 in,thoise,Thoise,12,,34.65,77.35 th,ban mae chiao,Ban Mae Chiao,02,,19.083806,98.764195 ba,bludna ravan,Bludna Ravan,02,,43.9311111,18.5344444 cn,jincheng,Jincheng,04,,31.749492,119.605709 be,schakkerbroek,Schakkerbroek,05,,50.916667,5.216667 ru,under-gube,Under-Gube,11,,52.333333,100 sr,abanna kondre,Abanna Kondre,10,,5.1333333,-54.9833333 mz,induna mapanule,Induna Mapanule,03,,-21.5852778,35.2133333 sl,kuelo,Kuelo,01,,8.8166667,-11.05 id,juray,Juray,30,,-7.3444,108.2805 ir,`isa khandaq,`Isa Khandaq,35,,36.572862,52.985796 cn,sanping,Sanping,09,,33.699811,112.21453 sv,playitas,Playitas,14,,13.4833333,-88.4833333 pk,utagando,Utagando,03,,34.847749,72.12773 cn,ka¿utubi,K¿utubi,13,,44.116667,86.95 fr,bouboulie,Bouboulie,98,,45.366667,2.566667 mz,aldeia cateme,Aldeia Cateme,08,,-16.0691667,33.9797222 dz,mechtat aine zenaga,Mechtat Aïne Zenaga,04,,36.1,7.1833333 cn,lungtoushan,Lungtoushan,29,,27.118333,103.39 gt,flores peten,Flores Petén,12,,16.933333,-89.883333 ge,bagmarani,Bagmarani,02,,43.0258333,41.1527778 ci,babli yaya,Babli Yaya,84,,6.612344,-8.152743 in,matigara,Matigara,28,,26.716667,88.383333 rs,drumine,Drumine,00,,44.561944,20.595278 ye,al hayb,Al Hayb,06,,13.7333333,44.65 by,lobovo,Lobovo,07,,55.8666667,28.9833333 cn,nanfeng,Nanfeng,04,,31.883008,120.662998 ru,imeni v.m. molotova,Imeni V.M. Molotova,51,,56.28423,44.189964 ir,gerdakaneh-ye sofla,Gerdakaneh-ye Sofla,13,,35.0126,47.5832 us,goram,Goram,PA,,39.8738889,-76.4080556 td,dondjegere,Dondjegéré,08,,8.8,15.65 ua,zhovtneve,Zhovtneve,24,4652,50.663646,24.249178 jp,kutami,Kutami,21,,32.983333,130.733333 id,lingka-barat,Lingka-barat,01,,5.1566,97.4266 cu,poblado san pedro de maniabon,Poblado San Pedro de Maniabon,13,,21.0733333,-76.5269444 kp,sangsosiktong,Sangsosiktong,17,,41.215,129.2463889 fr,guingamp,Guingamp,A2,,48.56066,-3.148519 ci,benie kouassi,Benie Kouassi,74,,5.777721,-3.923513 gh,atasumanso,Atasumanso,02,,6.6333333,-1.6333333 ro,cserbia,Cserbia,21,,46.033333,22.45 ru,konyshevo,Konyshevo,37,,58.493,42.9694 ir,qal`eh-ye kordha,Qal`eh-ye Kordha,34,,34.884208,50.396269 jp,tsukigata,Tsukigata,12,,43.335278,141.669444 pa,agua buena,Agua Buena,07,1069,7.5333333,-80.1833333 kp,achimni,Achimni,09,,38.38,127.5233333 ro,balesti-catun,Balesti-Catun,01,,46.366667,23.1 cn,chengtanjiang,Chengtanjiang,11,,27.983333,113.783333 tr,havacenuz,Havacenuz,37,,41.959329,33.554044 cn,xinwushilong,Xinwushilong,12,,29.593119,114.351321 ch,buren,Buren,02,,47.464748,9.20468 de,eck,Eck,02,,47.65,12.15 td,bekon,Bekon,09,,8.7333333,16.85 jp,nanakuba,Nanakuba,18,,31.633333,130.55 de,bruninghausen,Brüninghausen,07,,51.216667,7.683333 ir,pir kalacha,Pir Kalacha,08,,37.245484,49.623622 id,pokasudawa,Pokasudawa,18,,-9.6468,119.1553 ru,ostashovo,Ostashovo,47,,55.858959,35.869479 jp,tondenshigai,Tondenshigai,12,,44.135556,143.567222 cn,yutangchen,Yutangchen,07,,27.713056,118.786667 ie,drumbeg,Drumbeg,06,,54.8827778,-7.5502778 af,rorung,Rorung,01,,36.96409,73.068408 id,dusun tiga dodap,Dusun Tiga Dodap,31,,.7108,124.5906 gq,ngona,Ngona,06,,1.7166667,10.7 bf,deregboue,Déregboué,51,,10.75,-4.0833333 id,katirompo,Katirompo,07,,-6.910688,109.63301 si,mali koren,Mali Koren,09,,45.9,15.3833333 cn,jiudian,Jiudian,15,,34.700575,104.153027 iq,marj ad dibaj,Marj ad Dibaj,15,,36.0933333,42.9927778 us,franklin furnace,Franklin Furnace,OH,,38.6450000,-82.8488889 br,lagoa da velha,Lagoa da Velha,05,,-12.916667,-39.533333 ru,poselok lindozero,Posëlok Lindozero,28,,63.733333,34.25 ir,ahmad hosey,Ahmad Hosey,22,,29.8007,50.4415 bg,krasimir,Krasimir,61,,43.0333333,27.3 gg,les gigands,Les Gigands,00,,49.4825,-2.540833 cn,qiaobian,Qiaobian,03,,27.599883,114.658624 tr,purcukviran,Pürçükviran,89,,41.13187,32.921093 in,matauli,Matauli,35,,24.6967,78.9233 br,taquapiri,Taquapiri,11,,-23.216667,-55.416667 sn,keur albe,Keur Albé,10,,13.9166667,-14.85 cn,huangzhuchong,Huangzhuchong,30,,24.972222,112.253611 ng,ruggar jatau,Ruggar Jatau,51,,12.961854,5.128883 in,kangpokpi,Kangpokpi,17,,25.133333,93.966667 in,milkipur,Milkipur,36,,26.6,81.916667 bo,monte verde,Monte Verde,06,,-11.9833333,-68.1 np,dumja,Dumja,00,,27.4333333,85.8166667 cn,xiaoqing,Xiaoqing,18,,26.933333,106.516667 af,ishtragh,Ishtragh,01,,36.673818,71.731282 ir,kheyrabad,Kheyrabad,09,,34.4652,48.5658 us,north almond,North Almond,NY,,42.3905556,-77.7700000 la,ban sokvang,Ban Sokvang,10,,16.533333,104.95 ph,bagonbong,Bagonbong,16,,13.5362,123.1941 fr,saint-puy,Saint-Puy,B3,,43.87691,.463541 ir,kureh gaz,Kureh Gaz,28,,34.183333,55.116667 pg,iuwane,Iuwane,09,,-6.9166667,145.65 in,byculla,Byculla,16,,18.966667,72.833333 jp,shimminato,Shimminato,45,,34.183333,132.233333 br,getulina,Getulina,27,,-21.75,-49.916667 lk,hangunnawa,Hangunnawa,35,,6.95,80.8833333 th,kha nong phra tai,Kha Nong Phra Tai,27,,14.616667,101.45 pk,kuhan binal,Kuhan Binal,03,,35.646218,72.175296 gt,chocantel,Chocantel,13,,14.816667,-91.483333 in,arwal,Arwal,34,,25.25,84.683333 kz,imeni abaya,Imeni Abaya,04,,50.774722,61.796944 me,skorafci,Skorafci,00,,42.354722,19.399444 cn,zhangjiaxiang,Zhangjiaxiang,32,,30.780439,104.087942 zm,mao,Mao,03,,-14.35,22.1166667 kr,suani,Suani,17,,36.8314,127.0081 cm,haita,Haïta,13,,8.2333333,14.95 cn,jiangkou zhen,Jiangkou Zhen,30,,23.736944,113.221111 pl,traupel,Traupel,85,,53.569544,19.353426 vn,cay mang trai,Cay Mang Trai,04,,17.833333,106.333333 de,unterthalhofen,Unterthalhofen,02,,47.466667,10.283333 ir,teykeh,Teykeh,05,,30.455308,51.168506 hr,donja lucelnica,Donja Lucelnica,14,,45.5833333,15.9333333 ec,cartagena,Cartagena,02,,-3.4,-79.2 sd,buhayr,Buhayr,34,,13.4833333,30.1666667 fr,lambel-camors,Lambel-Camors,A2,,47.836962,-3.029417 cz,lisek,Lisek,88,,49.740907,14.781127 tm,romazak,Romazak,04,,38.9333333,64.15 ru,manni,Manni,63,,73.133333,125.983333 ir,damzabad,Damzabad,26,,35.2539,51.6249 cn,peitsaichiao,Peitsaichiao,04,,33.966667,119.983333 pk,goth allahdino,Goth Allahdino,05,,25.169436,67.594403 co,los guayabones,Los Guayabones,21,,9.1,-72.8 br,jussari,Jussari,05,,-15.2,-39.533333 mx,rancho el palomo,Rancho El Palomo,06,,27.633333,-106.05 id,cabean lor,Cabean Lor,07,,-7.0359,110.5907 ba,kremenusa,Kremenusa,02,,44.8736111,16.4852778 pk,sohbewala,Sohbewala,04,,30.927527,71.89513 gb,cranborne,Cranborne,D6,,50.9,-1.916667 pe,pararani,Pararani,03,,-14.1666667,-72.3333333 cn,guling,Guling,15,,34.344404,104.562451 za,ndulini,Ndulini,05,,-30.526277,28.708242 pk,phadiala,Phadiala,04,,32.741098,73.530592 it,villa canale,Villa Canale,11,,41.8,14.416667 id,longsegar,Longsegar,14,,.866667,116.833333 fr,vaudelnay,Vaudelnay,B5,,47.138125,-.206774 pk,goth hayat sehto,Goth Hayat Sehto,05,,27.167357,68.353856 eg,tall rak,Tall Rak,14,,30.8972222,31.7252778 my,kampung carak paya dalam,Kampung Carak Paya Dalam,06,,3.4593,102.4 se,aspsveden,Aspsveden,07,,62.066667,14.95 bf,nebouli,Nébouli,37,,13.3333333,-0.8833333 lt,stenioniai,Stenioniai,60,,55.25,23.4333333 th,wanghwai,Wanghwai,09,,16.983333,99.833333 in,ashalin,Ashalin,30,,28.6,95.55 gr,krionerion,Krionérion,34,,38.9333333,23.2833333 by,bushmin,Bushmin,07,,54.5,29.7833333 pl,juchnowiec koscielny,Juchnowiec Koscielny,81,,53.019581,23.140856 pe,cruz verde,Cruz Verde,14,,-6.0833333,-79.5333333 es,munebrega,Munébrega,52,,41.252034,-1.705568 bg,gorna bela retschka,Gorna Bela Retschka,33,,43.1791667,23.3561111 ua,olshanik,Olshanik,15,,49.446567,23.233676 cz,cista voda,Cista Voda,82,,50.689077,15.573304 bs,camperdown,Camperdown,23,,25.05,-77.2666667 vn,dong trieng,Dong Trieng,16,,20.583333,105.233333 cn,kumei,Kumei,14,,28.9,88.3 fr,saint-pardoux-la-riviere,Saint-Pardoux-la-Rivière,97,,45.493878,.74651 id,jangong,Jangong,01,,4.3765,96.7939 id,balaisabut,Balaisabut,11,,.466667,110.833333 no,gasbol,Gåsbøl,09,,68.8,15.333333 ug,kadami,Kadami,60,,1.3383333,33.795 af,khwajah-chisht,Khwajah-Chisht,13,,34.646148,69.239441 cn,jingzhu yaozuxiang,Jingzhu Yaozuxiang,11,,25.121944,111.981944 mk,glog,Glog,A5,,42.0902778,21.0638889 pk,saleh faqir,Saleh Faqir,05,,25.415535,68.87846 cn,mufu,Mufu,32,,27.611296,103.207035 ru,isoyevo,Isoyevo,88,,57.678587,39.42838 bj,sousougon,Sousougon,18,,7.4,1.9 mx,salamanca,Salamanca,28,,23.466667,-99.3 ge,kerana,Kerana,19,,42.1061111,44.69 vn,tien nong,Tiên Nông,26,,18.966667,105.3 id,rogakapa,Rogakapa,18,,-8.6365,121.1128 ru,gornoye,Gornoye,85,,59.1653,39.2045 rs,ozorci,Ozorci,00,,44.158056,19.502222 ro,itcanii-noui,Itcanii-Noui,34,,47.683333,26.25 tr,canpasa,Canpasa,66,,39.988437,34.774519 ci,gouessesso,Gouessesso,78,,7.761147,-7.652709 de,kraheck,Kraheck,07,,50.733333,7.416667 gn,kohempa,Kohempa,29,,7.3175,-8.9711111 ni,matazano,Matazano,12,,12.8,-85.9166667 cn,xuejiazhai,Xuejiazhai,26,,34.347329,108.948567 ph,san rogue,San Rogue,11,,10.091903,124.322621 in,dhaloth,Dhaloth,11,,31.218333,77.005278 id,ndjong,Ndjong,01,,5.2782,96.0564 my,kampung simpang sanglang,Kampung Simpang Sanglang,08,,6.278712,100.198943 af,shor ab,Shor Ab,28,,32.068414,66.920647 al,sofratike,Sofratikë,45,,39.9922222,20.2133333 ru,sovkhoz barvikha,Sovkhoz Barvikha,47,,55.718838,37.277734 ru,tuoyulakh,Tuoyulakh,63,,62.9,127.033333 cn,changguzhai,Changguzhai,07,,25.036944,118.490278 ru,tarbinskaya,Tarbinskaya,20,,55.8101,97.0127 ru,munzhgyan,Munzhgyan,CI,,42.933333,45.116667 tr,ovacik,Ovacik,04,,39.198665,42.786287 ro,carpitus,Carpitus,15,,46.15,25.866667 pk,gargat,Gargat,02,,28.522346,66.306807 kr,chungsil,Chungsil,17,,36.6596,126.7852 se,flakatrask,Flakaträsk,23,,64.25,18.516667 ru,zabegayevka,Zabegayevka,69,,54.095,32.544167 tg,agbouto kope,Agbouto Kopé,18,,6.6833333,1.25 cn,yakoushang,Yakoushang,26,,33.127785,106.373293 ve,roncador,Roncador,02,,8.2,-65.3333333 gb,skegness,Skegness,H7,17072,53.133333,.35 sk,nagy-dioszeg,Nagy-Diószeg,07,,48.2,17.65 cn,yuntangcun,Yuntangcun,03,,28.661211,115.781046 ir,kangar chal,Kangar Chal,35,,36.272981,52.201193 us,portersville,Portersville,IN,,38.4994444,-86.9783333 af,pishi,Pishi,09,,35.191654,64.881683 cn,wushan,Wushan,16,,22.971389,107.307778 bd,chhota mulna,Chhota Mulna,81,,23.3,90.3166667 id,woloae,Woloae,18,,-8.8325,121.1703 de,pursruck,Pursruck,02,,49.483333,11.95 kr,chirang,Chirang,21,,35.491944,129.121111 ph,dilad,Dilad,10,,16.475556,120.630833 af,mani,Mani,41,,33.401293,65.518405 lk,niwatuwa,Niwatuwa,33,,7.1833333,80.2 me,sige,Sige,00,,42.556944,19.1525 dk,skram,Skram,19,,57.597916,10.281669 ru,malaya kiselenka,Malaya Kiselënka,77,,57.172732,34.954728 ru,nikolskoye pervoye,Nikolskoye Pervoye,43,,52.242,40.2726 ye,sa`ah,Sa`ah,11,,14.7597222,44.0472222 zr,inganda,Inganda,02,,-0.0333333,18.2 bg,beli osim,Beli Osim,46,,42.85,24.6166667 ru,mukhino,Mukhino,53,,54.524078,76.084581 mm,wailam nawkun,Wailam Nawkun,10,,26.25,95.15 cz,sychotin,Sychotin,78,,49.504908,16.496877 ao,semunguva,Semunguva,08,,-12.054203,15.209178 mm,goppe bazar,Goppe Bazar,01,,21.0833333,92.45 no,kjerstad,Kjerstad,09,,68.45,16.133333 us,patterson,Patterson,IL,,39.4805556,-90.4827778 de,entweg,Entweg,02,,48.7,13.166667 ro,ainad,Ainad,20,,46.483333,25.833333 ir,kabirabad,Kabirabad,33,,38.95,47.083333 rs,huruglice,Huruglicë,00,,42.738056,21.761111 mx,laguna grande,Laguna Grande,14,,21.866667,-103.566667 fi,kurmanpokh'ya,Kurmanpokh'ya,13,,61.066667,28.75 cn,houbin,Houbin,07,,24.648099,118.244187 jp,uragami,Uragami,43,,33.566667,135.9 th,ban nong kok,Ban Nong Kok,74,,13.866667,101.533333 cn,kweilin,Kweilin,16,,25.281944,110.286389 ir,yangjeh,Yangjeh,09,,35.1832,49.2182 ma,ahl hammou ou ali,Ahl Hammou Ou Ali,55,,29.121382,-10.147055 lk,wekada,Wekada,35,,6.6833333,81.0333333 gb,felmingham,Felmingham,I9,,52.8,1.333333 id,soroako,Soroako,38,,-2.5213,121.357 id,lawehijo,Lawehijo,01,,3.4512,97.8597 eg,`ezbet el ibrahimiya,`Ezbet el Ibrâhimiya,16,,24.5166667,32.95 ne,hondey,Hondey,05,,13.6666667,1.7666667 ua,antonowce,Antonowce,22,,50.211119,25.930478 ma,beni aoun,Beni Aoun,46,,34.303738,-5.121311 it,praduro e sasso,Praduro e Sasso,05,,44.4,11.25 id,papawu,Papawu,22,,-4.3248,122.1994 us,port blakely,Port Blakely,WA,,47.5975000,-122.5088889 fi,luopajarvi,Luopajärvi,15,,62.583333,22.75 mx,san roman,San Roman,23,,18.766667,-88.55 cd,shingangombe,Shingangombe,00,,-7.966667,22.466667 cn,kuantanchi,Kuantanchi,04,,33.1,118.55 pg,konakane,Konakane,08,,-6.2833333,145.05 ro,tebea,Tebea,02,,46.15,22.733333 kh,phumi kampov,Phumi Kampov,01,,13.0333333,103.1166667 sn,daga sangaye,Daga Sangaye,10,,14.05,-16.1666667 bd,tihati,Tihati,81,,23.0,90.0 kz,qarghaly,Qarghaly,13,,49.353889,63.082222 za,glencoe,Glencoe,02,13547,-28.178269,30.147024 us,baird,Baird,MS,,33.4250000,-90.5833333 af,ris daraz,Ris Daraz,01,,36.847429,70.412281 ve,el agua de coco,El Agua de Coco,23,,10.8,-71.5333333 lk,galborella,Galborella,36,,6.95,79.9 ir,kharengan,Kharengan,40,,31.765284,55.798523 ru,pityuli,Pityuli,60,,56.0697,28.7072 tr,tarakci,Tarakci,14,,40.784237,31.789259 pk,biharipur,Biharipur,04,,30.922222,74.041667 id,lumbubaka,Lumbubaka,21,,-.6524,119.8591 mm,myintha,Myintha,10,,21.85,95.6666667 tr,kurti,Kurti,21,,38.1325,40.885833 se,liared,Liared,28,,57.833333,13.65 af,dani-sili,Dani-Sili,03,,35.748829,68.806168 ru,russkoye mamatkozino,Russkoye Mamatkozino,73,,55.561241,48.789672 th,ban pak bueng san,Ban Pak Bueng San,43,,14.045195,100.956695 id,tunggorono 17,Tunggorono 17,26,,3.6018,98.5385 vn,xom muong dac,Xom Muong Dac,21,,9.6,104.883333 ru,repyevka,Repyevka,72,,52.466667,40.55 gh,nashegu,Nashegu,06,,9.6166667,0.0 sk,borowe wielkie,Borowe Wielkie,08,,49.2,19.5333333 id,gibug,Gibug,30,,-6.985833,108.458333 gh,nyamijawga,Nyamijawga,06,,10.3,0.25 cn,wangjiadangcun,Wangjiadangcun,26,,34.884863,109.882546 al,bershini,Bershini,41,,41.5388889,20.0858333 cn,niudongzi,Niudongzi,19,,40.556323,119.259025 id,nibung 2,Nibung 2,30,,-6.103056,106.411667 th,ban na khe,Ban Na Khe,73,,17.899192,104.251735 it,scandriglia,Scandriglia,07,,42.166667,12.833333 vn,xuan thoi thuong,Xuan Thoi Thuong,20,,10.866667,106.566667 id,cibangban,Cibangban,30,,-6.839722,106.891389 kr,pyonggoktong,Pyonggoktong,14,,36.6019,129.4111 us,lees,Lees,TX,,32.0761111,-101.4863889 af,vechl'gadkhula,Vechl'gadkhula,18,,34.224823,69.942612 nl,republiek,Republiek,00,,12.15,-68.25 bd,kahetgaon,Kahetgaon,81,,24.6333333,90.6666667 gh,amasaman,Amasaman,08,,5.7,-0.3 mx,san francisco de ocotan,San Francisco de Ocotán,10,,22.933333,-104.7 ru,shakhta ugolnaya belkovskaya,Shakhta Ugolnaya Belkovskaya,76,,54.1766,38.0217 pl,szeligi-lesnica,Szeligi-Lesnica,81,,53.048622,22.28374 cd,yanga-yanga,Yanga-Yanga,10,,-3.966667,26.616667 es,puente de los fierros,Puente de los Fierros,34,,43.070116,-5.768611 cn,koujia,Koujia,30,,24.386623,116.230292 at,fellnerhauser,Fellnerhauser,04,,48.439444,14.0975 ru,novonikolskoye,Novonikolskoye,47,,55.455556,36.3125 sy,tell baarour,Tell Baaroûr,01,,36.9072222,41.4183333 th,ban khlong khamao,Ban Khlong Khamao,63,,7.95,98.9 sd,wad murdi,Wad Murdi,34,,12.9833333,28.1 id,mentengan,Mentengan,07,,-7.443611,110.076944 lk,pahala ambatale,Pahala Ambatale,30,,8.15,80.6 ma,majoura,Majoura,57,,34.790166,-5.422845 mm,la-tai,La-tai,04,,26.0,98.1833333 bj,dalrakparou-satieukeu,Dalrakparou-Satieukeu,01,,9.95,1.7333333 mx,guadalupita del monte,Guadalupita del Monte,11,,20.503889,-101.398333 cn,xiangbichang,Xiangbichang,32,,28.860699,104.671606 in,bheriya,Bheriya,24,,26.9506,75.7209 lr,klaesu,Klaesu,13,,4.7666667,-7.75 my,kuala klawang,Kuala Klawang,05,,2.9395,102.0704 ma,bou zdoud,Bou Zdoud,47,,30.893631,-9.562905 cn,kenghsi,Kenghsi,03,,27.833333,114 tr,kirkilca,Kirkilca,68,,40.279153,32.405799 fi,bjornvik,Björnvik,15,,63.816667,22.8 za,fairfield mill,Fairfield Mill,02,,-29.183333,30.6 jp,furutoi,Furutoi,12,,43.925,144.454167 co,vanegas,Vanegas,26,,7.350278,-73.299167 do,la soledad,La Soledad,21,,19.1166667,-70.1166667 bd,dashmatra,Dashmatra,81,,23.1166667,90.3666667 ru,belousovka,Belousovka,55,,52.161111,54.848611 ro,valea petrisului,Valea Petrisului,06,,46.933333,24.8 it,macchiareddu,Macchiareddu,14,,39.224444,9.0225 br,guanabara,Guanabara,06,,-4.866667,-38.4 il,beit alfa,Beit Alfa,03,,32.516667,35.425 gt,lo de rodriguez,Lo de Rodríguez,07,,14.666667,-90.416667 iq,qandalah,Qandalah,15,,36.62,43.3433333 gt,muyurco,Muyurcó,04,,14.816667,-89.283333 id,kompleks perwira angkatan darat sriwijaya,Kompleks Perwira Angkatan Darat Sriwijaya,30,,-6.881111,107.535278 cn,uqon huizu xiang,Üqon Huizu Xiang,13,,43.874444,81.620556 in,verinag,Verinag,12,,33.55,75.25 sl,disa,Disa,01,,8.0666667,-11.1166667 mx,el ojacenal,El Ojacenal,32,,24.15,-103.35 gw,cachamba balanta,Cachamba Balanta,07,,11.2166667,-15.0833333 lt,ushushchis,Ushushchis,62,,55.3641667,21.6766667 hu,karolymajor,Károlymajor,03,,46.416667,20.966667 th,ban duea tai,Ban Duea Tai,17,,17.995167,102.935306 cn,luojiashan,Luojiashan,12,,29.748482,114.821227 bo,consotancia,Consotancia,04,,-15.4166667,-67.7333333 fr,davaye,Davayé,A1,,46.303604,4.743311 mz,m. mabongo,M. Mabongo,03,,-24.4413889,34.5636111 th,ban nong nok iang,Ban Nong Nok Iang,49,,12.283444,102.55825 pk,chahar,Chahar,04,,32.233333,75.266667 tz,nyehi,Nyehi,07,,-10.0166667,39.7666667 cn,xincun,Xincun,04,,31.951734,118.936853 ru,bychki,Bychki,69,,55.431944,33.388056 mz,guereguenhe,Guereguenhe,09,,-16.9283333,36.7777778 ca,louiseville,Louiseville,10,5819,46.25,-72.933333 ua,novyy troitskiy,Novyy Troitskiy,26,,47.366667,34.7 in,banstoli,Banstoli,39,,29.813333,78.514722 cn,lungmenli,Lungmenli,24,,38.954167,113.0725 sd,ludwara,Ludwara,28,,4.1883333,33.215 tr,bulke,Bülke,31,,36.866667,36.333333 cn,huailinchen,Huailinchen,01,,31.431667,117.605 us,outlook,Outlook,MT,,48.8875000,-104.7772222 ao,sandando,Sandando,14,,-11.65,20.45 vn,buon enao,Buôn Enao,07,,12.7,108.083333 th,ban tha kwai,Ban Tha Kwai,64,,8.95,99.866667 al,mesopotam,Mesopotam,51,,39.9102778,20.0922222 om,al mulayyanah,Al Mulayyanah,06,,23.43,58.1311111 pk,majhiani,Majhiani,03,,34.3151,72.91217 rs,gryka e eperme,Gryka e Epërme,00,,42.276111,21.165556 td,madebo,Madebo,04,,11.2833333,15.3833333 ie,ballynacarriga,Ballynacarriga,04,,51.7119444,-9.0405556 np,bhikna thori,Bhikna Thori,00,,27.35,84.6166667 ru,bolshaya lozovka,Bolshaya Lozovka,72,,52.112731,41.333923 ru,pokacheva,Pokachëva,32,,62.766667,72.666667 lc,balca,Balca,07,,13.7666667,-61.0166667 us,hill crest,Hill Crest,VA,,39.1900000,-78.2191667 eg,mi`eifin,Mi`eifin,24,,26.6166667,31.6833333 zm,chimasa kanyanda,Chimasa Kanyanda,05,,-12.9333333,30.75 ma,al hlalma,Al Hlalma,56,,32.382989,-6.554305 bg,dubrava,Dubrava,58,,42.05,23.1166667 hr,golubinjak,Golubinjak,01,,45.5630556,17.1527778 so,washiir,Washiir,10,,6.2,48.5333333 cn,zhuzhi,Zhuzhi,32,,33.311286,103.837343 co,el maizal,El Maizal,28,,4.033333,-75.586389 pk,basti yaru,Basti Yaru,04,,28.626235,70.377155 cn,nangangwa,Nangangwa,22,,39.786667,116.179444 ph,binagbag,Binagbag,H2,,13.8663,121.9365 md,berezlozhi,Berezlozhi,82,,47.436389,28.933889 se,bokestorp,Bökestorp,27,,55.816667,14.033333 za,palmgrove,Palmgrove,09,,-22.333333,30.2 ee,leiman,Leiman,21,,57.6308333,27.3258333 lb,beit lif,Beït Lîf,02,,33.1338889,35.3316667 nl,het wild,Het Wild,06,,51.764574,5.368045 pe,lluchubamba,Lluchubamba,06,,-7.5216667,-77.9708333 az,chelaberti,Chelaberti,21,,40.58281,46.725278 pk,g-ten,G-Ten,04,,33.6797,73.0167 ug,nanjwenge,Nanjwenge,70,,1.45,32.2333333 cn,chuchiatsui,Chuchiatsui,12,,31.717275,112.12429 sy,sawh abu fayyad,Sawh Abu Fayyad,04,,35.3333333,38.15 pl,strzemieszne,Strzemieszne,78,,52.997793,21.404131 zm,likanyika,Likanyika,01,,-13.7833333,23.0166667 ru,bolshaya veshchanka,Bolshaya Veshchanka,52,,57.4428,31.1344 ng,ididigba,Ididigba,37,,6.703044,6.237638 ru,zakarasenye,Zakarasenye,52,,58.641377,34.604146 cn,xuetangxia,Xuetangxia,30,,24.598036,115.858566 it,pescara,Pescara,01,118136,42.466667,14.216667 cn,xiliu,Xiliu,11,,26.344167,109.692222 pk,bamb,Bamb,04,,29.635183,71.358164 ir,cheshmeh nesa`i,Cheshmeh Nesa`i,05,,31.063156,51.24466 rs,kojusa,Kojusa,00,,42.227222,20.610556 id,balai sepoewah,Balai Sepoewah,11,,.45,111.216667 zm,kawanje,Kawanje,06,,-14.15,31.8333333 fr,orist,Orist,97,,43.641221,-1.176042 my,kelampu ili,Kelampu Ili,11,,1.116667,111.7 ru,olkhovka,Olkhovka,33,,59.163677,47.610258 tr,yenikonak,Yenikonak,57,,41.866667,34.616667 ir,hoseynabad-e `alizadeh,Hoseynabad-e `Alizadeh,26,,35.5776,50.6557 ir,tashtakan,Tashtakan,11,,26.9487,55.5542 kg,toguzbulak,Toguzbulak,04,,41.5666667,75.8 no,sjoli,Sjöli,01,,60.233333,11.5 ir,qal`eh-ye shur shur,Qal`eh-ye Shur Shur,23,,33.5936,49.1518 by,staryy pogost,Staryy Pogost,07,,55.4833333,27.6 us,fox hill,Fox Hill,CT,,41.2983333,-73.4791667 mx,cantamayeco,Cantamayeco,31,,20.483333,-89.083333 ba,kornica,Kornica,02,,44.9527778,18.4233333 ve,chaguaramal,Chaguaramal,19,,10.6683333,-62.1477778 pl,rengersdorf,Rengersdorf,72,,50.387877,16.634725 lk,ramiyoka,Ramiyoka,33,,6.7,80.4833333 it,nozza,Nozza,09,,45.7,10.383333 tn,maktar,Maktar,22,,35.857976,9.200717 es,caserio los carmonas,Caserío Los Carmonas,51,,37.4,-2.133333 lv,shleyas,Shleyas,25,,56.995,23.9436111 me,rastovac,Rastovac,00,,42.833056,18.931944 jm,ramble,Ramble,02,,18.3166667,-77.9833333 sa,duhayma',Duhayma',08,,25.52837,43.836981 mg,ambandanira,Ambandanira,06,,-24.55,46.5833333 id,tegalyasan timur,Tegalyasan Timur,08,,-8.3326,114.1494 mg,antsohiabo,Antsohiabo,03,,-16.8166667,46.15 zm,thomas,Thomas,05,,-13.2,30.85 am,nizhniy vardanadzor,Nizhniy Vardanadzor,08,,38.9694444,46.2141667 cz,stary spicak,Stary Spicak,79,,48.833333,14.05 id,kebalan-daya,Kebalan-daya,08,,-7.048611,112.815 lb,jabboule,Jabboûlé,01,,34.2333333,36.3333333 bo,chaupinac,Chaupiñac,07,,-21.6166667,-66.4166667 bg,kurlu emach,Kurlu Emach,43,,41.6666667,25.3 tr,cebekoglu,Cebekoglu,63,,37.37754,37.942539 ua,uscilug,Uscilug,24,,50.86048,24.154445 ru,novo-kiyevskiy,Novo-Kiyevskiy,04,,52.7352,78.7238 hu,idamajor,Idamajor,16,,47.433333,18.916667 my,kampong tebong,Kampong Tebong,04,,2.4382,102.3269 pl,wola luborzycka,Wola Luborzycka,77,,50.166667,20.116667 cd,keregbia,Keregbia,09,,4.466667,27.833333 at,unterbergen,Unterbergen,01,,47.283333,16.1 th,ban dong mamuang,Ban Dong Mamuang,09,,16.983333,99.933333 de,broderhausen,Bröderhausen,07,,52.266667,8.733333 ml,siela,Siéla,06,,12.5,-4.7333333 mm,taungteik,Taungteik,10,,23.0,96.5 kp,naksaengdong,Naksaengdong,17,,42.4913889,129.9405556 zr,omehele,Omehele,00,,-3.45,23.7833333 th,ban mae om la nua,Ban Mae Om La Nua,01,,18.599084,98.196361 id,tulangkuning,Tulangkuning,30,,-6.417222,106.720278 id,gekbrong,Gekbrong,30,,-6.867222,107.031111 af,jasowl,Jasowl,39,,32.778916,66.660511 at,wahl,Wahl,04,,47.933333,13.933333 ru,malaya kamala,Malaya Kamala,39,,56.089444,94.944167 jp,kure,Kure,11,196626,34.233333,132.566667 id,nyamen,Nyamen,38,,-3.1127,120.0873 th,amphoe wiang pa pao,Amphoe Wiang Pa Pao,03,,19.347778,99.507224 ca,hodgeville,Hodgeville,11,,50.116667,-106.983333 id,pasirindah,Pasirindah,33,,-6.1163,106.1786 cn,zimutang,Zimutang,30,,24.157568,116.840093 kh,compon-lina,Compon-lina,02,,12.0,105.45 mm,ra-sa-pu-htam,Ra-sa-pu-htam,11,,21.4166667,100.95 ir,sadeqabad,Sadeqabad,07,,28.5431,53.6099 cn,lanshan,Lanshan,02,,29.966944,121.221944 lt,cenkune,Cenkune,58,,55.6666667,21.25 ao,tchihombo,Tchihombo,08,,-12.75,14.916667 id,erana,Erana,18,,-8.366667,125.016667 id,gedawung,Gedawung,07,,-7.03,110.3425 kr,yongpungni,Yongpungni,16,,34.391944,126.708611 mx,media luna,Media Luna,28,,27.4,-99.583333 fi,jokela,Jokela,06,,66.4,26.4 th,ban nam dam,Ban Nam Dam,60,,8.566667,99.166667 lr,sasasu,Sasasu,05,,7.7447222,-10.0377778 gb,bodmin,Bodmin,C6,13063,50.466389,-4.725556 id,denokgalingan,Denokgalingan,08,,-8.1467,113.2514 pk,chilmarabad,Chilmarabad,03,,36.84448,73.348051 cf,boungba,Boungba,12,,6.8166667,17.2333333 pg,sagasia,Sagasia,06,,-8.6333333,143.5833333 in,masudpura,Masudpura,36,,25.4554,79.4008 de,oebelitz,Oebelitz,12,,54.183333,12.816667 fr,sorbon,Sorbon,A4,,49.538044,4.355747 hu,feked,Feked,01,,46.45,19.033333 pk,jahanewala,Jahanewala,04,,29.859144,70.772417 ne,injer,Injer,09,,14.1897222,3.6002778 ru,rodionovo-nesvetayskiy,Rodionovo-Nesvetayskiy,61,,47.610333,39.71212 tw,kanghsiang,Kanghsiang,04,,23.1,120.1333333 id,sangereng 1,Sangereng 1,30,,-6.220278,106.624167 mz,zangaia,Zangaia,08,,-15.6205556,33.1833333 my,simpang ampat,Simpang Ampat,07,,3.9001,100.9381 ar,calva,Calva,01,,-38.765219,-61.411316 lt,raseiniu,Raseiniu,61,,55.3736111,23.1216667 tr,zopran,Zopran,89,,41.125338,32.635998 us,quinns,Quinns,MT,,47.3247222,-114.8008333 fi,germundsvedja,Germundsvedja,15,,60.15,22.883333 jp,ryushima,Ryushima,26,,36.183333,137.783333 us,collins,Collins,MI,,42.9291667,-84.9438889 ua,zhabchemurovane,ZhabcheMurovane,15,,50.416667,24.1 co,las delicias,Las Delicias,02,,6.613333,-76.112778 ru,ray-pole,Ray-Pole,62,,53.984424,41.437971 cn,nafengxincun,Nafengxincun,31,,19.275278,108.806111 mm,kyandaw,Kyandaw,08,,21.4166667,96.1333333 cn,maocao,Maocao,01,,31.989916,118.233172 pk,shawai pila khel,Shawai Pila Khel,01,,33.746677,70.624369 pk,libana,Libana,04,,33.702882,72.902422 cn,xazgat,Xazgat,13,,46.333333,86.366667 gh,sawbrawso,Sawbrawso,09,,5.8833333,-1.75 ph,siffu,Siffu,31,,17.13704,121.793244 ml,kouniakari,Kouniakari,07,,13.0833333,-10.4166667 cn,nanyijing,Nanyijing,24,,38.451667,112.855278 tr,kirdirek,Kirdirek,72,,37.673611,40.720833 th,ban pa dae bu su,Ban Pa Dae Bu Su,69,,6.814472,101.308111 ca,saint david,Saint David,10,,47.4,-68.866667 kh,vott pun phnum,Vôtt Pun Phnum,04,,11.6,104.8 cn,jien,Jien,32,,28.370396,101.52959 cn,moshixi,Moshixi,18,,27.899722,108.354722 id,cangaan,Cangaan,08,,-7.141692,111.989925 tr,istirefi,Istirefi,28,,40.36937,38.551057 mw,nzola,Nzola,06,,-14.1333333,34.4 tz,bwasi,Bwasi,08,,-1.8833333,33.3833333 cn,eryangou,Eryangou,12,,32.633889,110.714722 id,muaro paiti,Muaro Paiti,37,,.2446,100.5515 ne,tousout,Tousout,06,,13.8333333,6.2833333 pk,shohal,Shohal,03,,33.804583,72.922439 sd,jombose,Jombose,27,,10.4,33.85 ru,tashkay,Tashkay,20,,53.034444,106.955 es,el oso,El Oso,55,,40.839838,-4.769636 mw,njuki,Njuki,11,,-14.3166667,33.8833333 ru,kurtyul,Kurtyul,39,,55.0384,92.5214 sy,qurdala at tahtani,Qurdala at Tahtani,09,,36.6,37.95 lv,aizstrautnieki,Aizstrautnieki,08,,56.6888889,23.21 bj,boussigui,Boussigui,03,,9.8666667,3.3166667 fr,la haute epine,La Haute Épine,A1,,48.079254,3.259253 us,paris store,Paris Store,VA,,36.6166667,-77.7013889 ru,shestina,Shestina,90,,59.337941,54.038188 ba,betanja,Betanja,01,,43.8844444,18.4122222 cn,gecuo,Gecuo,07,,24.215,117.238611 ng,dongwalanta,Dongwalanta,35,,10.076877,12.429863 af,kham-e paytow,Kham-e Paytow,11,,34.227802,62.912768 ph,calabanga,Calabanga,36,,13.25,120.75 ua,tsaredarovka,Tsaredarovka,07,,48.93935,36.22671 al,dushcu,Dushcu,44,,41.0027778,19.6833333 cn,guangshantou,Guangshantou,30,,22.305341,111.564193 sl,gerema,Gerema,01,,8.25,-10.4666667 lt,sheymatis,Sheymatis,64,,55.45,25.9166667 af,miankulak,Miankulak,05,,34.382668,66.745155 ir,hoseyn khan kandi,Hoseyn Khan Kandi,32,,38.6591,48.0328 ci,gboualo,Gboualo,91,,8.01674,-6.416519 pk,kanjanwala,Kanjanwala,04,,31.099196,71.36983 ir,khuryas pain,Khuryas Pain,41,,33.013297,59.253801 kp,kosarikol,Kosarikol,15,,39.3325,125.6436111 mz,navelaque,Navelaque,07,,-13.9202778,37.3766667 tj,shivansay,Shivansay,02,,38.1333333,69.15 by,stefanpol,Stefanpol,07,,55.4833333,27.9833333 cn,shijiuhao,Shijiuhao,10,,42.053333,117.148333 al,stevaster kuls,Stevaster Kuls,51,,40.3963889,19.7297222 bo,tocomechi,Tocomechi,08,,-17.5833333,-62.9166667 kr,namhyangdong,Namhyangdong,13,,37.283611,127.021389 pk,braj khwar banda,Braj Khwar Banda,03,,35.153484,72.222998 ph,inasagan,Inasagan,P1,,7.9759,123.5773 ph,capacuan,Capacuan,15,,14.2448,122.7386 cn,wangjiadachong,Wangjiadachong,11,,28.4875,112.149722 us,goering,Goering,KY,,37.8008333,-86.7616667 kz,dar'ya,Dar'ya,12,,49.084167,72.938056 cn,xiaolongjie,Xiaolongjie,29,,24.583333,100.85 fr,fresnes-sur-apance,Fresnes-sur-Apance,A4,,47.941254,5.83349 cm,mbamdi,Mbamdi,11,,5.6166667,12.3333333 ru,chistopolskiye vyselki,Chistopolskiye Vyselki,73,,55.333333,53.65 id,amboran,Amboran,36,,-5.75,140.85 pl,niwnik,Niwnik,72,,50.904283,17.248037 ru,zhuravlevo,Zhuravlevo,29,,54.7845,85.0625 cn,yahuoli,Yahuoli,26,,34.02925,106.910077 ru,tarandinovka,Tarandinovka,61,,48.846917,40.59417 de,rodehorst,Rodehorst,06,,52.883333,9.983333 cd,nshio,Nshio,01,,-2.966667,18.466667 mx,santa barbara,Santa Bárbara,07,,27.783333,-100.15 af,qarya-i-nezdawah,Qarya-i-Nezdawah,06,,33.282951,63.592972 pl,laskowice,Laskowice,74,,51.709571,19.368727 nc,pambou,Pambou,00,,-20.9666667,165.4 dk,avernaes,Avernæs,21,,55.590249,10.340322 pl,stoosznen,Stoosznen,85,,54.105348,22.422527 id,kilaba,Kilaba,28,,-3.633333,130.85 us,oak park mobile homes court,Oak Park Mobile Homes Court,LA,,31.3061111,-92.4555556 ao,cajia,Cajia,12,,-8.963246,17.11954 az,bakhshily,Bakhshily,63,,40.899588,48.979003 us,sharon center,Sharon Center,NY,,42.7800000,-74.5869444 ph,victorias,Victorias,30,,10.9,122.716667 ht,cajoux,Cajoux,08,,18.5166667,-74.05 gt,chuitziquina,Chuitziquiná,13,,14.766667,-91.483333 hr,markusevci,Markusevci,21,,45.8833333,16.0166667 mx,los pocitos,Los Pocitos,16,,18.675,-101.972222 ru,turkovskiy,Turkovskiy,38,,45.231119,38.185065 gb,goodworth clatford,Goodworth Clatford,F2,,51.166667,-1.483333 mx,tecerca,Tecerca,30,,20.983333,-97.95 us,piedmont,Piedmont,FL,,28.6377778,-81.4580556 ru,yershovtsy,Yershovtsy,37,,58.8203,46.226 us,bancroft,Bancroft,KY,,38.2830556,-85.6116667 mg,ambodihara-homby,Ambodihara-Homby,02,,-21.6,47.5333333 th,ban mueang luang,Ban Mueang Luang,30,,15.027695,104.071611 us,piedra,Piedra,AZ,,32.9047222,-112.9847222 id,cimanggu perikanan,Cimanggu Perikanan,30,,-6.572778,106.784722 vn,co sieo,Co Sieo,05,,22.766667,106.683333 ru,maloye klenno,Maloye Klenno,42,,59.3,28.7 mx,nogales,Nogales,07,,29.033333,-100.85 cz,detrichov,Detrichov,83,,50.893538,15.037513 cn,gouzhao,Gouzhao,09,,34.841389,113.519722 ph,carangag,Carangag,19,,13.6088,124.1058 id,kayumban,Kayumban,13,,-1.516667,115 cn,nenkiang,Nenkiang,08,,49.183333,125.216667 pe,albacas,Albacas,20,,-4.5172222,-80.6072222 pe,puca cancha,Puca Cancha,21,,-14.4322222,-69.9175 zm,suwinda,Suwinda,06,,-14.0833333,32.5833333 ru,malyshenskoye,Malyshenskoye,78,,56.616346,68.593717 sb,seleo,Seleo,00,,-8.1333333,159.6 no,kalvag,Kalvåg,15,369,61.766667,4.883333 ge,tsikhevdavi,Tsikhevdavi,19,,41.9927778,44.6480556 it,mezzoiuso,Mezzoiuso,15,,37.866667,13.466667 mg,ambalantsiraka,Ambalantsiraka,03,,-14.8666667,47.9166667 gb,airmyn,Airmyn,E1,,53.716667,-.9 us,broadwood manor,Broadwood Manor,MD,,39.0786111,-77.1191667 mx,el platanar,El Platanar,08,,18.891667,-103.934722 th,ban fai paen,Ban Fai Paen,05,,18.477222,98.958333 bf,tamipar,Tamipar,67,,9.85,-2.8 id,rumahpanjang,Rumahpanjang,01,,3.7842,96.7836 pk,shamsan ghat,Shamsan Ghat,05,,24.8829,67.0193 bg,povelyanovo,Povelyanovo,61,,43.2166667,27.65 zm,sekonde mashimikila,Sekonde Mashimikila,05,,-12.9,30.6666667 in,sasamusa,Sasamusa,34,,26.55,84.35 zr,bugarura,Bugarura,07,,-2.0388889,29.0622222 vn,thac vang,Thác Vàng,19,,21.883333,104.933333 ru,sukhoborka,Sukhoborka,33,,59.108006,49.968745 cn,xiaobeikeng,Xiaobeikeng,07,,26.178333,117.714445 cn,changlukou,Changlukou,24,,35.354722,113.064722 ru,kurbatovo,Kurbatovo,69,,55.511667,33.048611 se,harestorp,Hårestorp,12,,56.716667,14.666667 mx,ixtala,Ixtala,16,,18.766667,-103.116667 de,ellhorn,Ellhorn,10,,54.3,8.8 ao,bungo,Bungo,15,,-7.439564,15.385238 vn,an chau,An Châu,27,,15.316667,108.783333 bg,cukovec,Cukovec,58,,42.4166667,23.0333333 no,alsvik,Alsvik,14,,59.100556,5.935 ua,kochenovo,Kochenovo,14,,49.793737,38.375747 co,puntellano,Puntellano,09,,1.858787,-77.187125 cn,yungan,Yungan,16,,24.214055,110.517751 se,kristineberg,Kristineberg,28,,58.25,11.433333 ng,yapar,Yapar,35,,8.9,12.566667 gr,dhespotis,Dhespótis,10,,40.0166667,21.4333333 ir,deh khomeyn,Deh Khomeyn,15,,31.533333,49.95 cn,jiapigou,Jiapigou,19,,40.936667,125.566667 us,shawmut,Shawmut,MT,,46.3425000,-109.5241667 aw,ponton,Ponton,00,,12.5333333,-70.0333333 pk,kharmar dhok,Kharmar Dhok,04,,33.022844,71.921097 af,malang kalay,Malang Kalay,28,,32.595242,67.330513 gr,mesi paliokaria,Mési Paliokariá,22,,39.4163889,21.5002778 us,cokeburg,Cokeburg,PA,,40.1011111,-80.0675000 hu,telekdulo,Telekdulo,10,,47.4,21.45 af,tusogal khuni,Tusogal Khuni,34,,35.192504,71.377766 mm,pawntau,Pawntau,11,,21.1833333,97.5333333 de,hilferdingsen,Hilferdingsen,07,,52.3,8.766667 pg,sipisipi,Sipisipi,11,,-4.5833333,143.85 ru,akhtyrka,Akhtyrka,47,,56.25,37.933333 ir,kalateh-ye mehrak,Kalateh-ye Mehrak,42,,33.584987,59.930379 ye,kaydam ba masdus,Kaydam Ba Masdus,04,,15.0172222,48.1561111 mm,kinmungyon,Kinmungyon,13,,17.0833333,97.3 mm,pamedaw,Pamedaw,10,,22.1833333,95.2333333 fr,cubrial,Cubrial,A6,,47.495364,6.407329 ru,lyubimovo,Lyubimovo,76,,53.668253,36.777011 id,watungguling,Watungguling,18,,-9.915,120.1067 tr,koskonu,Koskonu,70,,37.432426,44.144015 cn,xijinggou,Xijinggou,10,,40.971667,117.545833 co,casa agapito,Casa Agapito,19,,2.05,-73.966667 cn,cuizhuang,Cuizhuang,10,,36.651111,114.852222 cg,poti,Poti,11,,-4.3502778,15.0325 la,sop sei,Sop Sei,18,,21.193333,102.471111 fr,le pont-de-beauvoisin,Le Pont-de-Beauvoisin,B9,,45.535163,5.668898 mx,pedro chacalatic,Pedro Chacalatic,05,,16.333333,-91.65 es,castellar de la muela,Castellar de la Muela,54,,40.819023,-1.759316 cn,xiannudian,Xiannudian,11,,29.284819,111.062433 mm,hko-latwanna,Hko-latwanna,11,,20.7833333,97.3333333 pk,faizu abro,Faizu Abro,05,,27.556308,68.578045 in,tsuntpathar,Tsuntpathar,12,,34.275,74.941667 co,el guineo,El Guineo,35,,10.033333,-75.2 id,telok keramat,Telok Keramat,11,,1.516667,109.233333 cu,margot,Margot,15,,20.4333333,-75.4166667 no,meskelva,Meskelva,05,,70.166667,28.666667 th,ban to khwan,Ban To Khwan,68,,6.95,100.35 ng,akpugu,Akpugu,47,,6.6999,7.2861 se,mossgruvan,Mossgruvan,15,,59.766667,15.016667 se,mellersta karsbo,Mellersta Karsbo,09,,56.316667,15.883333 us,english,English,AR,,34.1766667,-91.6550000 hu,ferto,Ferto,06,,46.633333,20.35 lk,kattaramulla,Kattaramulla,32,,7.3813889,79.8741667 pg,seleng,Seleng,17,,-6.0166667,149.45 ng,gidan musa,Gidan Musa,56,,7.9633,8.0195 fr,saint-lon-les-mines,Saint-Lon-les-Mines,97,,43.612743,-1.127018 tz,kunguta,Kunguta,09,,-8.4666667,33.25 pl,gawrzyalken,Gawrzyalken,85,,53.505991,21.170129 iq,parakh,Parakh,08,,37.275,42.7877778 id,ngampru,Ngampru,08,,-7.6893,111.3818 cn,sunjia wuchang,Sunjia Wuchang,03,,28.908417,115.897817 pa,lubre,Lubré,03,,8.7833333,-80.4 sd,kelabna,Kelabna,34,,11.15,27.7166667 th,ban mae khun tuen noi,Ban Mae Khun Tuen Noi,02,,17.315195,98.332889 de,fischen,Fischen,02,,47.45,10.266667 ro,birsana,Birsana,25,,47.816667,24.066667 my,kalumpang,Kalumpang,12,,3.6377,101.5761 ua,velikaya kosnitsa,Velikaya Kosnitsa,23,,48.135947,28.443357 de,kleinpelsen,Kleinpelsen,13,,51.216667,12.983333 vn,thach truc,Thach Truc,86,,21.411903,105.483856 ir,alband,Alband,36,,36.3187,49.1678 lv,pogulyanka,Pogulyanka,07,,55.9166667,26.45 hu,velis,Velis,08,,46.883333,18.9 mm,loi-lak,Loi-lak,11,,23.9666667,98.2333333 nl,heezerenbosch,Heezerenbosch,06,,51.374134,5.550365 lk,aluvihare colony,Aluvihare Colony,29,,7.5,80.6 af,qaburgha,Qaburgha,30,,36.525935,67.162547 vn,xom duong lang,Xom Duong Lang,48,,9.854167,105.623611 fr,chanay,Chanay,B9,,46.006437,5.787845 us,holtet court,Holtet Court,MT,,46.0222222,-114.1730556 vn,thanh luan,Thanh Luan,11,,21.216667,106.783333 id,nuduren,Nuduren,18,,-9.45,124.989444 mm,lapa ga,Lapa Ga,04,,25.95,96.9833333 sd,umm gureis,Umm Gureis,34,,11.8666667,31.6333333 kr,songchoniltong,Songchoniltong,03,,35.86544,127.13095 iq,mantan,Mantan,03,,31.4166667,45.3833333 pg,tainoraba,Tainoraba,09,,-6.7,145.75 ru,yemelkino,Yemelkino,55,,53.666667,53.866667 ru,kashurki,Kashurki,25,,54.445924,36.751216 sn,diembes,Diémbès,07,,14.7361111,-17.1175 id,rembun 2,Rembun 2,08,,-8.202402,112.710398 tr,neribagan,Neribagan,21,,38.431556,40.274846 ua,smezhnoye,Smezhnoye,11,,45.729473,34.549253 mx,cedralito,Cedralito,23,,18.941667,-88.733333 ru,shabalikha,Shabalikha,33,,58.1577,46.6122 ir,dudaheh,Dudaheh,38,,36.3725,49.6866 ru,poworino,Poworino,86,,51.1945,42.2457 sy,qatra,Qatra,12,,35.65,36.8833333 hr,stara kapela,Stara Kapela,01,,45.9,16.6166667 ir,chizar,Chizar,26,,35.7969,51.4531 cn,hsiamale,Hsiamale,13,,39.593611,78.469722 kr,panbawi,Panbawi,16,,34.788454,127.101989 cn,feiyunzhai,Feiyunzhai,19,,40.459342,122.391445 pk,shah shahwala,Shah Shahwala,04,,31.283139,72.051687 pl,ponikiewka,Ponikiewka,78,,52.947316,21.305573 us,oak hill,Oak Hill,OK,,34.0408333,-94.8355556 no,bakke,Bakke,18,,69.566667,18.7 hu,harsasi erdeszlak,Hársasi Erdészlak,11,,48.05,20.366667 lt,nikyaly,Nikyaly,58,,55.4847222,21.6119444 gb,portbury,Portbury,J4,,51.471667,-2.718333 be,bokkendries,Bokkendries,08,,50.8,4.016667 pl,bialystoczek,Bialystoczek,81,,53.404924,23.078811 zr,kikuti,Kikuti,08,,-5.2333333,15.85 sy,muqbilat hasan agha,Muqbilat Hasan Agha,09,,36.4333333,38.0166667 br,guarapara,Guarapará,27,,-21.5,-48.033333 zr,nepanepa,Nepanepa,10,,-3.9,27.2833333 ht,marche juste,Marché Juste,08,,18.3666667,-73.3 us,camp dealy,Camp Dealy,GU,,13.3508333,144.7666667 la,ban touy-yang,Ban Touy-Yang,09,,15.333333,106.9 tr,kilictasi,Kilictasi,69,,40.143027,39.319398 pa,las huacas,Las Huacas,06,,7.95,-80.8666667 id,matali,Matali,31,,.7231,124.3106 ma,iuasnanen,Iuasnanen,54,,35.119875,-3.589173 by,nagavki,Nagavki,06,,54.9833333,27.1 ma,oulad bounoua,Oulad Bounoua,58,,34.359326,-4.098922 pk,goth khairo dero,Goth Khairo Dero,05,,27.721954,68.249136 mm,thapangon,Thapangon,04,,24.3333333,96.6333333 cz,trstenice,Trstenice,78,,48.983333,16.2 ru,futyakino,Futyakino,37,,58.6145,42.306 cd,swa-dungu,Swa-Dungu,00,,-7.083333,16.95 ng,ita yomu yomu,Ita Yomu Yomu,30,,8.583333,4.483333 pe,cayena,Cayena,08,,-13.9469444,-71.0772222 gb,inversanda,Inversanda,V3,,56.683333,-5.366667 lt,rossieny,Rossieny,61,,55.3736111,23.1216667 pk,haji soho,Haji Soho,05,,24.662183,68.288678 ls,cheri,Cheri,13,,-29.6,27.1666667 id,ciapus landeuh,Ciapus Landeuh,30,,-6.608611,106.755833 cn,hujiamiao,Hujiamiao,26,,34.957939,108.418996 ml,donadji banko,Donadji Banko,07,,12.7891667,-8.4363889 lr,be kena,Be Kena,15,,6.5666667,-10.8833333 us,niulii,Niulii,HI,,20.2255556,-155.7458333 ir,kalach khani,Kalach Khani,08,,36.798825,49.872272 ru,dragotino,Dragotino,60,,58.428851,27.761995 af,mukhattakala,Mukhattakala,10,,31.625,64.505278 mx,campanilla,Campanilla,25,,24.249167,-106.821389 pk,lewispur,Lewispur,04,,30.891667,73.541667 id,gaganian,Gaganian,30,,-6.061944,106.447778 fr,ossey-les-trois-maisons,Ossey-les-Trois-Maisons,A4,,48.435823,3.741732 il,yoqne`am `illit,Yoqne`am `Illit,03,,32.666667,35.133333 br,sitio silvestre,Sítio Silvestre,18,,-23.9413,-50.8979 it,san desiderio,San Desiderio,12,,44.883333,9.033333 ru,khoyto-beye,Khoyto-Beye,11,,50.4,103.116667 vn,thi cau,Thi Cau,11,,21.2,106.083333 de,rehlingen-siersburg,Rehlingen-Siersburg,09,16121,49.366667,6.683333 id,pulobungong,Pulobungong,01,,5.0445,95.9296 cn,napenghsu,Napenghsu,16,,21.983333,108.933333 rs,preoce,Preoce,00,,42.598333,21.121389 kp,hwasoktong,Hwasoktong,09,,38.3575,127.0297222 in,sion,Sion,16,,19.033333,72.85 be,steert,Steert,09,,50.766667,3.233333 bd,ranahijal,Ranahijal,81,,24.7833333,91.0 kp,norumok,Norumok,17,,42.0833333,129.1166667 ru,podgorelets,Podgorelets,56,,53.17463,36.668903 np,tibrikot,Tibrikot,00,,29.0333333,82.7833333 no,nordlenangen,Nordlenangen,18,,69.9,20.15 ir,kalateh-ye shahreza,Kalateh-ye Shahreza,42,,35.438067,59.197235 pl,putzig,Putzig,86,,52.909914,16.392548 fr,regney,Regney,B2,,48.290331,6.305437 ir,khaneh miran,Khaneh Miran,34,,33.99393,49.573442 af,jasol,Jasol,39,,32.778916,66.660511 tr,kavacik,Kavacik,55,,41.271389,36.2875 it,vodo cadore,Vodo Cadore,20,,46.423333,12.249444 tr,yanikpinar,Yanikpinar,31,,36.026515,36.235431 tr,kuyluc,Kuyluç,37,,41.582002,34.321758 ro,munteni,Munteni,38,9760,45.933333,27.433333 th,ban thanon tok,Ban Thanon Tok,69,,6.75025,101.410889 us,harewood acres,Harewood Acres,OH,,39.1955556,-84.3852778 ru,suzdalova,Suzdalova,39,,56.840556,95.931944 gh,kpenduli,Kpenduli,06,,9.5166667,-0.7 ru,biryulevo zapadnoye,Biryulëvo Zapadnoye,47,,55.587658,37.642821 pl,raszkow,Raszkow,72,,50.483333,16.490643 tr,dogrul,Dogrul,57,,41.371521,34.573429 bg,khotantsa,Khotantsa,52,,43.8333333,26.2333333 ua,semenovka,Semenovka,06,,48.780954,25.312964 hu,ilk,Ilk,18,,48.116667,22.233333 ua,sadzavki,Sadzavki,22,,49.280615,26.151238 gb,ringford,Ringford,U2,,54.883333,-4.033333 id,jerak,Jerak,08,,-7.401389,111.251389 gb,kirkcudbright,Kirkcudbright,U2,3367,54.833333,-4.033333 pl,machary,Machary,85,,53.700057,21.264508 se,sjulsbo,Sjulsbo,10,,60.216667,15.983333 th,ban nong saeng,Ban Nong Saeng,26,,16.4,102.083333 fr,folleville,Folleville,A7,,49.157494,.503948 za,kei-mouth village,Kei-mouth Village,05,,-32.681971,28.376315 tg,zobedji,Zobédji,18,,6.4866667,1.0997222 af,qeshlaq tappeh,Qeshlaq Tappeh,03,,35.915077,68.498696 zr,mafuambo-kiesa,Mafuambo-Kiesa,08,,-5.2333333,13.7833333 ir,homay,Homay,11,,27.9017,56.453 se,fjusnas,Fjusnäs,03,,62.083333,16.75 al,trebisht-celebi,Trebisht-Çelebi,41,,41.4083333,20.5436111 at,flamberg,Flamberg,06,,46.816667,15.483333 de,utzmannsdorf,Utzmannsdorf,02,,49.083333,12.65 sk,raztoka,Ráztoka,01,,48.8166667,19.4 ir,adchai,Adchai,16,,35.7197,48.1862 cu,tamarindo,Tamarindo,05,,21.4,-77.9 ba,maslovare,Maslovare,02,4899,44.5655556,17.5336111 ua,tsiolkoviche male,Tsiolkoviche Male,19,,51.692764,25.974813 tr,senyurt,Senyurt,53,,41.216667,41.066667 af,zindajan,Zindajan,11,,34.342641,61.746747 ua,lemkivtsi,Lemkivtsi,25,,48.561432,22.462041 lt,paskynai,Paskynai,62,,55.2377778,22.91 id,sutawangi,Sutawangi,30,,-6.733333,108.25 kz,pervomayskoye,Pervomayskoye,15,,48.833333,81.233333 pk,shahdhand muslimabad,Shahdhand Muslimabad,03,,34.00839,71.59146 br,carasinho,Caràsinho,26,,-28.333333,-50.483333 id,panji,Panji,07,,-7.0357,110.3138 dz,bourouhou,Bourouhou,31,,36.5719444,6.7266667 ne,koure sakao,Kouré Sakao,03,,13.0,3.05 tw,chiangshan,Chiangshan,04,,22.6333333,120.4 cn,dongan,Dongan,04,,31.591165,119.774253 mz,zune,Zune,05,,-18.9672222,35.2775 fr,les terrassonnes,Les Terrassonnes,B8,,43.610024,6.732466 cn,darao,Darao,12,,31.178387,113.736067 gm,sare jam gido,Sare Jam Gido,02,,13.5833333,-15.55 cn,guangba liudui,Guangba Liudui,31,,19.016667,108.9775 in,jalapur dada,Jalapur Dada,36,,30.001667,77.809722 ru,alekseyevka,Alekseyevka,46,,54.432864,45.852218 fr,les maisonnettes,Les Maisonnettes,B6,,49.346645,1.853954 bj,bountiro,Bountiro,10,,9.1,2.5833333 jp,hishakuta,Hishakuta,07,,33.9,131 ru,konople,Konople,52,,58.130728,30.94671 ru,mikhalkov maydan,Mikhalkov Maydan,51,,54.907896,45.375995 th,ban kut ngong noi,Ban Kut Ngong Noi,78,,16.556806,104.637834 sy,balou,Baloû,14,,34.8333333,36.2166667 ru,medvezhya griva,Medvezhya Griva,54,,55.25801,75.217001 ro,tauti,Tauti,02,,46.283333,21.916667 et,khadzhi,Khadzhi,52,,9.627222,42.811389 be,le long jour,Le Long Jour,03,,50.6,4.183333 ru,ivlevka,Ivlevka,43,,52.5306,38.7222 uz,turn,Turn,14,,41.0166667,70.1436111 co,la bolsa,La Bolsa,33,,4.304711,-74.783058 sa,wushayqir,Wushayqir,10,,25.338226,45.182115 kr,soya,Soya,05,,36.216667,128.033333 it,tonzanico,Tonzanico,09,,45.9,9.316667 kr,samsalli,Samsalli,06,,37.84396,128.66475 gh,akyinim,Akyinim,09,,4.76,-2.0291667 ir,sa`idian,Sa`idian,11,,27.55,56.4 ba,josavka gornja,Josavka Gornja,02,,44.72,17.4636111 sa,ar ruwaq,Ar Ruwaq,13,,27.27863,42.250456 za,hoogland,Hoogland,05,,-30.815299,26.258602 cn,melhit,Melhit,20,,43.469444,122.208889 th,ban rong,Ban Rong,68,,7.692222,100.328334 cz,herrnwalde,Herrnwalde,83,,50.950675,14.468093 us,dug hill,Dug Hill,MD,,39.6800000,-76.8922222 cn,yuanshanchang,Yuanshanchang,32,,31.585119,105.429353 ca,new hamburg,New Hamburg,08,,43.383333,-80.716667 fr,saint-leger-de-fougeret,Saint-Léger-de-Fougeret,A1,,47.021069,3.897621 ru,gerasimovka,Gerasimovka,56,,52.827821,36.227237 dk,sonder kongerslev,Sönder Kongerslev,19,,56.886866,10.113142 tr,cercen,Çerçen,89,,41.191237,32.806838 us,youens,Youens,TX,,30.3152778,-95.3744444 sd,wahat an nukhila,Wahat An Nukhila,33,,19.05,26.3166667 id,benasari,Benasari,02,,-8.4311,115.6724 pk,kili dewal,Kili Dewal,02,,31.152599,69.549157 kh,phum ansong reach,Phum Ansong Réach,14,,11.1166667,105.4833333 us,vanleer,Vanleer,TN,,36.2350000,-87.4438889 ph,dalumpinas,Dalumpinas,28,,18.55,120.833333 id,djamboalurpisang,Djamboalurpisang,01,,3.7505,96.8944 tr,sancar,Sancar,72,,37.308227,40.879666 pk,goth laung lakha,Goth Laung Lakha,05,,25.799538,68.591342 cn,shijiashanyi,Shijiashanyi,15,,33.731962,104.467337 md,dobrodzhena nouye,Dobrodzhena Nouye,85,,47.827778,27.948333 rs,sermian,Sermian,00,,42.4725,20.476389 ir,ab kamun,Ab Kamun,11,,26.592778,58.059444 pt,vimieiro,Vimieiro,08,,38.830979,-7.840308 by,poniatycze,Poniatycze,06,,54.4166667,27.0833333 ng,ihapin,Ihapin,48,,6.314197,4.657416 co,donde cala,Donde Cala,19,,4.116389,-72.845833 au,warrigundi,Warrigundi,02,,-31.283333,150.683333 af,afdzal kala,Afdzal Kala,37,,33.12025,69.485515 us,albert city,Albert City,IA,,42.7819444,-94.9483333 ng,ungwan pa,Ungwan Pa,24,,11.390241,7.031605 mz,machava,Machava,03,,-23.9647222,34.7675 th,ban tha phrao,Ban Tha Phrao,64,,8.033333,99.483333 nz,albert town,Albert Town,F7,,-44.683333,169.2 ua,bortkuv,Bortkuv,15,,49.849041,24.631981 it,fornace benassati,Fornace Benassati,05,,44.616667,10.9 id,uluwolo,Uluwolo,18,,-8.5753,121.2908 ng,akporo,Akporo,50,,4.719167,7.211442 tr,kehmalli,Kehmalli,66,,39.902234,35.11376 gr,makriniais,Makriniaís,20,,39.2227778,21.0688889 gh,bonsa,Bonsa,09,,5.1833333,-2.05 gw,jabia,Jábia,04,,11.8,-14.15 md,micleuseni,Micleuseni,89,,47.122778,28.308056 eg,`izbat amin al bahiyy,`Izbat Amin al Bahiyy,03,,30.9694444,30.5958333 ph,sibulan,Sibulan,46,28079,9.3584,123.285 tr,kirka,Kirka,03,,38.733333,30.233333 mm,alegyaung,Alegyaung,05,,18.8,96.7 co,verganzo,Verganzo,33,,4.968882,-73.970976 ru,nizhneye agnevo,Nizhneye Agnevo,64,,50.566667,142.083333 kp,pyonamkol,Pyonamkol,15,,39.4077778,126.6819444 pk,shergha,Shergha,01,,32.488889,69.57 pk,basti alamgir,Basti Alamgir,04,,28.318651,70.167627 th,ban plakang,Ban Plakang,48,,13.073583,101.999417 kp,hongmyori,Hongmyori,07,,38.3086111,126.7761111 cn,mingqianjie,Mingqianjie,07,,26.616232,118.327767 ci,nargo,Nargo,87,,10.246944,-5.726111 id,japan,Japan,08,,-7.9377,112.0931 cn,hucun,Hucun,26,,34.033246,109.712334 iq,muhammad khuraybit,Muhammad Khuraybit,01,,33.4413889,44.1522222 ru,sotnikovo,Sotnikovo,85,,60.807,46.3336 in,rurajatia,Rurajatia,36,,26.363,79.4352 vn,doan xa,Doãn Xá,11,,21,106.016667 us,potato mound,Potato Mound,IN,,39.4080556,-86.5422222 fi,poskimaki,Poskimäki,14,,63.45,26.583333 tw,chekuangliao,Chekuangliao,04,,23.75,120.7666667 dk,farendlose,Farendløse,20,,55.391901,11.887324 tn,el blida,El Blida,03,,36.016667,10.033333 ru,koshelevka,Koshelëvka,76,,54.296904,36.681018 ru,spitsevka,Spitsevka,70,3374,45.123056,42.5125 ml,paramasso,Paramasso,05,,13.3,-5.1166667 id,cisitu dua,Cisitu Dua,30,,-6.881944,107.613056 id,ngesut,Ngesut,08,,-7.6989,111.4515 py,puerto marite,Puerto Marité,13,,-25.916667,-57.85 ru,malorossov,Malorossov,13,,55.066667,61.25 us,scio,Scio,OR,,44.7050000,-122.8480556 hr,podvrsje,Podvrsje,20,,44.2583333,15.3288889 ng,essa-odo,Essa-Odo,54,,7.75,4.816667 lk,panainindam,Panainindam,31,,9.1166667,80.6166667 br,cabaceiras,Cabaceiras,05,,-11.5,-42.333333 ir,tazeh kand-e janizeh,Tazeh Kand-e Janizeh,01,,37.6639,44.9703 id,sungaitampang,Sungaitampang,26,,2.333333,100.116667 ir,durin,Durin,40,,33.571065,56.147693 lt,dukstas,Dukstas,60,1021,55.5333333,26.3333333 es,campo real,Campo Real,29,,40.333333,-3.383333 jp,sasuru,Sasuru,12,,42.133333,143.316667 ng,fagolawa,Fagolawa,29,,12.318939,8.678386 de,hubscher,Hübscher,01,,47.783333,9.566667 cn,nanshih,Nanshih,23,,31.204444,121.481111 cn,wanyuandun,Wanyuandun,01,,30.116667,116.166667 at,gollacken,Gollacken,05,,47.89,13.003056 et,dibate,Dibate,47,,10.65,36.216667 mm,wan konglang,Wan Konglang,11,,21.9833333,97.35 kr,sangojong,Sangojong,03,,35.891009,127.818859 ru,belaya gora,Belaya Gora,27,,43.885542,41.907012 gh,naga central,Naga Central,10,,10.6094444,-1.0294444 it,la cappelletta,La Cappelletta,09,,45.1,10.766667 cn,dafeng,Dafeng,32,,30.760381,104.051412 th,nan,Nan,04,24670,18.792917,100.729722 us,sabillasville,Sabillasville,MD,,39.7000000,-77.4566667 kp,taemanchun,Taemanchun,03,,40.1366667,128.5102778 sv,san diego,San Diego,05,,13.4844444,-89.245 co,las brisas,Las Brisas,12,,7.361111,-75.967778 lk,pitiduwa,Pitiduwa,34,,5.9666667,80.4 kr,kangdangmal,Kangdangmal,17,,36.8542,126.8814 vn,trung luong,Trung Luong,27,,13.933333,109.25 id,mburidi,Mburidi,26,,3.2217,98.2251 lb,qarhayya,Qarhayya,03,,34.45,36.0833333 ru,pishtan,Pishtan,51,,56.9486,46.2759 at,hirzenriegel,Hirzenriegel,06,,46.916667,16.05 id,bukitpasau,Bukitpasau,33,,-6.2116,105.8325 cn,lanjiachong,Lanjiachong,32,,30.718538,104.324995 az,babasyr,Babasyr,32,,38.942779,48.683194 de,brunsen,Brunsen,06,,51.866667,9.866667 cn,shashentang,Shashentang,30,,24.540278,112.933056 la,ban komu,Ban Komu,06,,20.083333,103.366667 kp,kwaejinggae,Kwaejinggae,06,,37.9355556,126.24 in,barka purwa,Barka Purwa,36,,26.7549,79.5409 de,hordthof,Hördthof,01,,49.016667,9.566667 cn,shuanghotang,Shuanghotang,26,,32.366667,108.533333 th,ban huai yang,Ban Huai Yang,20,,16.982111,104.323667 ng,akabu,Akabu,43,,7,10.85 be,malplaquee,Malplaquée,02,,50.633333,4.383333 cn,dacheng,Dacheng,12,,30.457914,115.500656 cu,tinguaro,Tinguaro,03,,22.7666667,-80.9666667 id,gantingpuhuk,Gantingpuhuk,24,,-.671867,100.64155 zr,kikay,Kikay,08,,-4.7,14.3 gh,bulinga,Bulinga,11,,9.9333333,-2.2 si,loga di oliresonsi,Loga di Oliresonsi,04,,46.3166667,13.5 lk,panawala,Panawala,36,,6.9833333,80.0333333 az,evedzhyuk-kyshlakh,Evedzhyuk-Kyshlakh,60,,41.740778,48.620046 lr,ginauh town,Ginauh Town,15,,6.5897222,-10.7511111 gb,enfield lock,Enfield Lock,E3,,51.666667,-.016667 ml,atil barke,Atil Barké,00,,15.0,-9.2333333 pe,las huertas,Las Huertas,04,,-16.9666667,-72.05 us,river hill east,River Hill East,GA,,33.9194444,-83.3591667 tr,akdam,Akdam,84,,40.176482,43.2807 gh,gyegyeti,Gyegyeti,09,,6.4833333,-0.6833333 id,tjimanggu,Tjimanggu,07,,-7.3524,108.8402 tg,koye kope,Koyé Kopé,02,,6.25,1.5666667 pl,nac,Nac,79,,50.55,17.316667 la,ban avin,Ban Avin,10,,16.766667,106.45 ir,mowsheh,Mowsheh,15,,31.716667,47.933333 cn,baimadong,Baimadong,15,,33.676851,105.621056 id,lalobosebose,Lalobosebose,22,,-3.9819,122.0774 mm,na-hkau-long,Na-hkau-long,11,,21.8166667,97.8166667 sy,ahire,Ahiré,05,,32.8833333,36.4666667 ph,cabaroan,Cabaroan,63,,15.639,120.4393 ph,tubigan,Tubigan,13,,14.7751,121.0374 tr,dikkoy,Dikköy,12,,38.821389,40.661111 id,dusun satu bumbungon,Dusun Satu Bumbungon,31,,.6628,124.1108 th,ban mae ramat,Ban Mae Ramat,08,,16.984032,98.516646 af,haji faiz muhammad kelay,Haji Faiz Muhammad Kelay,23,,31.358768,66.56069 fi,kangasluoma,Kangasluoma,15,,62.516667,22.05 de,erndtebruck,Erndtebrück,07,,50.983333,8.266667 pk,jatri jhanda,Jatri Jhanda,04,,31.698889,73.711111 my,bukit batu puteh,Bukit Batu Puteh,13,,5.028068,103.29091 us,hutch,Hutch,KY,,36.6505556,-83.6213889 tr,kazanci,Kazanci,21,,37.770743,40.600077 de,lautenthal,Lautenthal,06,,51.866667,10.3 br,vila do felix,Vila do Félix,06,,-4.516667,-38.166667 lk,mount lavinia,Mount Lavinia,36,,6.8338889,79.8644444 ao,cunga,Cunga,06,,-11.05,14.35 ru,alagirka,Alagirka,39,,57.233333,89.2 cn,chencun,Chencun,03,,28.11237,115.049012 hn,nueva concepcion,Nueva Concepción,08,,13.9955556,-87.2486111 id,talagagirang,Talagagirang,30,,-7.1081,107.4812 id,pajabubeue,Pajabubeue,01,,5.0321,97.1901 co,las minas,Las Minas,02,,5.699547,-75.766302 us,carroll corners,Carroll Corners,CT,,41.9263889,-72.7655556 be,petit rosiere,Petit Rosière,02,,50.65,4.866667 us,clayburg,Clayburg,NY,,44.5963889,-73.8386111 gh,anitimfi,Anitimfi,09,,6.1166667,-1.9 pl,wolowiec,Wolowiec,87,,53.763105,15.152829 ir,rusta-ye enqelab,Rusta-ye Enqelab,25,,36.309804,54.905165 mm,u-kwe,U-kwe,04,,24.9,97.6166667 th,ban ko makham,Ban Ko Makham,53,,13.793778,100.119417 cn,duiqiupo,Duiqiupo,32,,27.940548,104.788481 th,kambheng bhej,Kambheng Bhej,11,,16.483442,99.521534 ir,de'ow,De'ow,07,,27.218056,53.663889 cn,shidatan,Shidatan,15,,34.759863,103.95919 kr,pyongpanni,Pyongpanni,13,,37.9034,127.4551 ru,khrobystovskaya,Khrobystovskaya,33,,58.432602,52.640073 ru,razberdeyevo,Razberdeyevo,62,,54.3383,40.4482 sd,kakeri,Kakeri,34,,14.3,29.3833333 zm,gideon,Gideon,05,,-15.1166667,29.5333333 dz,ouled el hadj kaddour,Ouled el Hadj Kaddour,51,,35.5666667,1.1 td,abori,Abori,10,,11.1666667,15.4 us,fulton,Fulton,MI,,42.1150000,-85.3525000 ru,leninokhabl,Leninokhabl,01,,44.984167,39.401944 bo,colomasata,Colomasata,07,,-19.8,-67.0166667 id,ndili,Ndili,18,,-8.3483,120.6769 kp,ssukpatkubi,Ssukpatkubi,01,,40.9855556,127.3130556 cm,ashun,Ashun,09,,5.6166667,9.35 pk,kotka muhabbat khan,Kotka Muhabbat Khan,03,,32.956633,70.899692 cn,loutichen,Loutichen,11,,27.734444,111.994444 in,rasulabad,Rasulabad,36,7801,26.75,80.483333 ir,mosayyeb mahalleh,Mosayyeb Mahalleh,35,,36.620717,53.847063 co,la montuosa,La Montuosa,21,,7.666667,-72.65 bd,singna kuturia,Singna Kuturia,81,,24.3833333,90.0333333 cz,dubec,Dubec,88,,50.063284,14.59397 id,pojoklaban satu,Pojoklaban Satu,30,,-6.095278,107.395278 cn,kuanping,Kuanping,26,,33.160278,109.373889 gb,south crosland,South Crosland,G8,,53.6,-1.816667 ru,molokanskiy,Molokanskiy,07,,48.216667,45.216667 mz,mebuva,Mebuva,04,,-25.2922222,32.3377778 mx,mohovano,Mohovano,10,,26.7,-103.65 cn,kiucheng,Kiucheng,29,,24.733333,98.083333 za,qamata poort,Qamata Poort,05,,-31.968281,27.448569 zr,lomami,Lomami,00,,-1.8166667,22.6333333 ma,el hammar,El Hammar,57,,35.748344,-5.881884 zr,bobulamo,Bobulamo,00,,-2.0833333,19.5 us,bethlehem,Bethlehem,MS,,34.5783333,-89.3275000 fj,ekubu,Ekubu,05,,-18.5166667,177.65 pk,chak six mr,Chak Six MR,04,,30.025768,71.677152 kp,hwaori,Hwaori,15,,39.3280556,125.9822222 ao,nachir,Nachir,17,,-7.35,20.783333 ru,bolshemurly,Bolshemurly,54,,55.928778,74.545659 ru,aktash-aukh,Aktash-Aukh,17,,43.091377,46.574339 vn,lang mon,Lang Mon,26,,19.433333,105.5 td,am habali,Am Habali,12,,13.7833333,20.3833333 cn,taolu,Taolu,19,,42.737222,124.722222 ru,lyubanovo,Lyubanovo,56,,52.844046,36.107766 lk,pahala karambankulama,Pahala Karambankulama,30,,8.3666667,80.55 lk,samanabedde,Samanabedde,36,,6.9166667,80.0833333 us,silco,Silco,GA,,30.8680556,-81.8311111 ie,buddock cross roads,Buddock Cross Roads,15,,53.0347222,-7.1627778 br,stio rosane,Stio Rosane,27,,-23.4082,-46.2344 se,timsfors,Timsfors,12,,56.483333,13.583333 jp,iinosetogo,Iinosetogo,27,,32.95,129 cn,maopingcun,Maopingcun,30,,22.081904,112.147671 jp,jogo,Jogo,08,,37.483333,140.166667 ve,wayamuliser,Wayamuliser,23,,11.4647222,-71.9705556 cn,jingtouwu,Jingtouwu,03,,26.365172,115.60892 us,fairview farms,Fairview Farms,VA,,37.0475000,-76.3516667 iq,khunainiya,Khunainiya,03,,31.3016667,45.435 az,xalfali,Xalfali,55,,39.766944,46.683056 bg,zavjet,Zavjet,52,,43.7666667,26.6666667 at,reiterdorfl,Reiterdorfl,07,,47.583333,12.516667 fr,masole,Masolé,B3,,43.998385,2.225135 us,parral,Parral,OH,,40.5611111,-81.4972222 ru,sherniny,Sherniny,33,,58.666667,48.666667 vn,buon ea hding,Buôn Ea Hding,07,,12.9,108.116667 zr,mubimbe,Mubimbe,05,,-5.1666667,28.3333333 id,leuweungbuah,Leuweungbuah,30,,-6.420556,107.605 ru,vozherovo,Vozherovo,37,,58.637479,44.042252 cn,annanpahotan,Annanpahotan,15,,39.283333,93 zm,godfrey kunda,Godfrey Kunda,05,,-12.8333333,30.7333333 jm,santa gloria,Santa Gloria,09,,18.4333333,-77.2 pl,olejnica,Olejnica,86,,51.961242,16.250476 bo,aturicamayoc,Aturicamayoc,07,,-21.1,-66.4 cn,hengshi,Hengshi,03,,26.05,114.683333 us,east cathlamet,East Cathlamet,WA,,46.1969444,-123.3655556 fr,mee,Mée,A3,,48.394864,1.275005 br,matador,Matador,26,,-27.205775,-49.5898 pk,adelwala,Adelwala,04,,29.597222,72.025 it,stabbia,Stabbia,16,,43.8,10.816667 ru,shubina,Shubina,20,,53.231667,103.19 cn,kungpingchi,Kungpingchi,01,,33.416667,117.183333 in,bhagwanpura,Bhagwanpura,36,,26.2929,79.1576 kr,kojinni,Kojinni,06,,38.445556,128.453056 kr,chowondong,Chowondong,17,,36.8058,126.8962 br,varjao,Varjão,29,,-17.05,-49.616667 kp,oparodongjagu,Oparodongjagu,15,,39.3308333,125.6366667 ru,kabachevo,Kabachëvo,51,,56.675742,43.562111 af,kowtgay,Kowtgay,37,,33.226111,69.546389 mm,galayang,Galayang,04,,26.35,97.1166667 fr,nampcelles-la-cour,Nampcelles-la-Cour,B6,,49.778719,4.003094 cn,yongqing linchang,Yongqing Linchang,08,,52.431389,125.110833 cn,xiazhouyuan,Xiazhouyuan,03,,28.615747,117.732922 hu,jak,Ják,22,2310,47.142495,16.581478 sk,juskova vola,Juskova Vola,05,,48.8833333,21.5666667 tr,mehikmemanli,Mehikmemanli,49,,39.169995,42.082856 mg,bepea,Bepea,06,,-19.7166667,45.4 de,saiser,Saiser,12,,54.5,13.533333 cn,mabutian,Mabutian,11,,26.948611,111.141111 cn,santan,Santan,12,,31.450476,112.467266 mm,taungcheyin,Taungcheyin,05,,17.4,97.5833333 mm,san,San,02,,21.4166667,94.0833333 fi,petajakoski,Petäjäkoski,14,,63.2,26.8 sd,el kur,El Kur,34,,11.9166667,30.6666667 pe,upahuire,Upahuire,05,,-15.3833333,-73.9 fr,pougy,Pougy,A4,,48.447169,4.357103 iq,khan musalla,Khan Musalla,06,,32.1405556,44.3375 bd,naohal,Naohal,81,,24.8833333,90.9666667 zr,ondolia,Ondolia,00,,2.95,30.7666667 ru,troyekturovka,Troyekturovka,65,,53.2609,48.5926 cn,zhiping shezu,Zhiping Shezu,07,,26.039018,116.51691 vn,ap tan qui,Ap Tan Qui,01,,10.466667,105.533333 be,steertheuvel,Steertheuvel,01,,51.416667,4.6 sv,el puente,El Puente,13,,13.8166667,-89.75 us,meriden hill,Meriden Hill,NH,,44.7822222,-71.5547222 pt,cambres,Cambres,22,,41.13544,-7.812377 af,dultah khanah,Dultah Khanah,32,,36.376862,67.592714 vn,ben trai,Bên Trai,30,,21.233333,107.35 us,fort bragg,Fort Bragg,CA,,39.4458333,-123.8041667 pk,tibbi nizan,Tibbi Nizan,04,,30.260476,70.976531 cn,rendong,Rendong,31,,19.574321,109.894523 af,kohneh deh,Kohneh Deh,40,,35.108131,69.191804 de,weirle,Weirle,01,,47.783333,8.066667 ma,tilmi,Tilmi,48,,32.178964,-5.470037 ru,yuberi,Yuberi,80,,57.433333,53.233333 ru,sredniy ubukun,Sredniy Ubukun,11,,51.466667,106.716667 cn,nailin,Nailin,20,,41.9,119.3 id,ancak,Ancak,02,,-8.8077,115.1989 cn,paotinghsien,Paotinghsien,31,,18.640278,109.699444 fr,villez-sous-bailleul,Villez-sous-Bailleul,A7,,49.111081,1.37912 gb,whaplode,Whaplode,H7,,52.783333,-.033333 cn,renjiadianzi,Renjiadianzi,19,,42.42408,122.370916 es,villardejusto,Villardejusto,34,,43.22876,-6.74149 dz,douar bencheloua,Douar Bencheloua,41,,36.4347222,1.2611111 th,dhohuak,Dhohuak,06,,18.416667,99.866667 pg,ru'ume,Ru'ume,06,,-5.7333333,141.15 kh,phumi krang dong,Phumi Krang Dong,04,,11.4,104.4166667 bj,delli,Delli,18,,7.1333333,1.9833333 ir,shahrab,Shahrab,09,,34.797872,48.160264 ng,huaka,Huaka,26,,7.15,8.533333 at,ellerbach bei lambrechten,Ellerbach bei Lambrechten,04,,48.316667,13.483333 cn,jiudian,Jiudian,04,,32.479444,119.433611 cn,gongjianao,Gongjianao,11,,29.17043,110.488323 mg,androtsibe,Androtsibe,06,,-20.25,45.3166667 ir,khoshg rud,Khoshg Rud,36,,36.8078,48.5327 af,ghawcqole,Ghawcqole,27,,34.39195,68.08709 fr,lagraulet,Lagraulet,B3,,43.792569,1.077963 ru,polovino-ovrazhye,Polovino-Ovrazhye,33,,57.1188,47.5103 rs,burremadh,Burrëmadh,00,,42.573611,20.336667 me,kalipolje,Kalipolje,00,,43.216667,19.451111 ma,ziazna,Ziazna,58,,34.401243,-5.347824 ru,ilanskiy,Ilanskiy,39,16668,56.2325,96.0652 th,ban wang i lian,Ban Wang I Lian,44,,13.613528,101.778028 sy,khirbat `aqlah,Khirbat `Aqlah,09,,36.0666667,38.0166667 ir,reyaneh,Reyaneh,08,,37.064444,49.091111 uz,khitay,Khitay,05,,41.3166667,60.85 ir,anjesash,Anjesash,42,,36.884559,59.267658 zw,jawunda,Jawunda,06,,-20.9333333,29.0 se,ambjorntorp,Ambjörntorp,28,,58.033333,12.833333 tw,chiamu,Chiamu,04,,22.7666667,120.7166667 lb,hai sindiani,Haï Sindiani,03,,34.25,35.7 bd,kismat seota,Kismat Seota,84,,22.5666667,90.3 ph,dupas,Dupas,36,,16.666667,120.416667 pt,cabo,Cabo,20,,41.951739,-8.553944 us,lake,Lake,MD,,39.3913889,-76.6411111 at,hernstein,Hernstein,03,,47.883333,16.1 mm,ngayandaing,Ngayandaing,10,,23.2,95.4 kp,wolsandong,Wolsandong,14,,38.7577778,125.5663889 th,ban chan,Ban Chan,64,,8.233333,99.95 fi,pohjasmaenpaa,Pohjasmäenpää,15,,63.266667,22.666667 af,guzari-surkh,Guzari-Surkh,10,,31.643694,64.414365 ml,faroto,Faroto,03,,14.2,-10.1833333 ro,zgaboesti,Zgaboesti,03,,45.083333,24.783333 id,pucangtuwo,Pucangtuwo,08,,-8.130833,110.938333 sd,umm gidir,Umm Gidir,33,,10.8,23.7333333 cg,landamambou,Landamambou,11,,-4.4683333,15.0811111 ru,kablukovo,Kablukovo,47,,56.033333,38.166667 pg,taipagama,Taipagama,16,,-5.55,144.0833333 ma,id bouhouch,Id Bouhouch,55,,29.412067,-9.617622 ar,monte dinero,Monte Dinero,20,,-52.323365,-68.559547 ir,warjushan,Warjushan,36,,36.1023,48.7044 co,el limon,El Limón,28,,3.370278,-75.587778 sd,wad abhas,Wad Abhas,27,,13.7666667,33.65 ci,anglanou,Anglanou,86,,6.295068,-4.484196 br,bocaiuva,Bocaiuva,14,,-14.65,-57.216667 vn,yen dan,Yên Dân,12,,20.866667,106 cn,hsichuan,Hsichuan,09,,32.981944,111.375278 mm,kyakhattaw,Kyakhattaw,05,,14.7833333,97.95 ci,vipleu,Vipleu,78,,7.139027,-8.215452 no,nebbanynten,Nebbanynten,04,,59.526389,10.423056 sb,malevaga,Malevaga,00,,-6.6166667,156.45 ao,rissosse,Rissosse,02,,-12.066667,17.55 mx,laguna,Laguna,12,,18.066667,-101.466667 al,shkalla,Shkalla,51,,39.6886111,20.1205556 us,pleasant valley,Pleasant Valley,IA,,41.5697222,-90.4230556 ve,la culata,La Culata,11,,11.0433333,-68.6072222 mx,nuevo mazapa,Nuevo Mazapa,05,,15.75,-92.15 ir,qarah khan mahalleh,Qarah Khan Mahalleh,08,,38.2171,48.883 gr,pikrinero,Pikrinero,49,,36.6833333,25.3333333 jp,funakoshi,Funakoshi,23,,34.266667,136.866667 id,kedaung wetan,Kedaung Wetan,30,,-6.133333,106.617222 ru,korobanovo,Korobanovo,77,,57.2033,38.1032 sy,ain divar,Aïn Divâr,01,,37.2802778,42.1919444 cn,nunganchen,Nunganchen,05,,44.381982,125.168469 mx,bolanitos,Bolañitos,32,,21.625,-103.416667 us,brightshade,Brightshade,KY,,37.0222222,-83.6600000 ma,tarhmiouine,Tarhmiouine,55,,30.764919,-7.914283 co,gardenia,Gardenia,38,,9.81253,-74.429886 es,azcamellas,Azcamellas,55,,41.13162,-2.418059 cn,talangyu,Talangyü,10,,40.087222,118.051944 tw,tashulung,Tashulung,04,,24.6833333,121.1333333 mz,chefe jaime,Chefe Jaime,09,,-16.2080556,38.2341667 dk,lydinge garde,Lydinge Gårde,21,,55.173572,10.386332 ng,doigbene,Doigbene,36,,5.150972,6.097049 lt,dauglaukis didysis,Dauglaukis Didysis,62,,55.1872222,22.2169444 id,waruleok,Waruleok,18,,-8.6543,120.6912 pt,mourisca do vouga,Mourisca do Vouga,02,,40.6111,-8.462074 bf,makui,Makui,63,,12.3,-3.5333333 zr,matala,Matala,05,,-5.1666667,27.2166667 id,kuburan,Kuburan,30,,-6.478333,108.286111 fr,neuvy-deux-clochers,Neuvy-Deux-Clochers,A3,,47.278479,2.70037 kh,phumi trapeang ampil,Phumi Trapeang Ampil,03,,12.3333333,104.4833333 ng,badumo,Badumo,29,,12.189979,8.316691 pg,kwisubi,Kwisubi,06,,-6.0833333,142.1833333 pg,augana,Augana,09,,-6.5166667,145.7333333 zw,mormon hill,Mormon Hill,04,,-16.7333333,29.8833333 cn,yangzhang,Yangzhang,15,,36.295688,106.863017 fr,doucy-en-beauges,Doucy-en-Beauges,B9,,45.696419,6.168166 ro,oniscani,Oniscani,04,,46.8,26.866667 no,sundset,Sundset,16,,62.75,9.95 fr,meigneville,Meigneville,A3,,48.26718,1.515723 bd,bikramsri,Bikramsri,81,,24.8833333,90.9 ru,turinskiy,Turinskiy,93,,51.6,114.116667 us,laws,Laws,NC,,36.2397222,-79.1188889 mz,chinfumbe,Chinfumbe,08,,-15.8227778,31.9488889 ru,boriskino,Boriskino,73,,54.78796,50.101411 tj,viskharvi,Viskharvi,01,,38.5516667,71.0905556 us,black rock,Black Rock,KY,,37.4183333,-86.1394444 af,towghah,Towghah,29,,32.9669,69.375519 ir,sang cheshmeh,Sang Cheshmeh,35,,36.218844,53.502591 bf,lozano,Lozano,24,,12.6,-2.55 es,villafane,Villafañé,55,,42.551851,-5.427887 pk,ginghro,Ginghro,05,,26.917611,69.192593 bt,diptsang,Diptsang,17,,27.05,91.9833333 mg,besatrana,Besatrana,06,,-23.1166667,44.4 ru,berezino,Berezino,47,,56.466667,36.666667 cu,platanal,Platanal,13,,21.2,-76.4166667 ne,koullele,Koullélé,02,,15.2833333,13.4 cn,zhenjiang,Zhenjiang,18,,26.663889,108.528889 mx,huatabampito,Huatabampito,25,,25.966667,-109.2 hr,pinizelic,Pinizelic,20,,43.8833333,15.2666667 gh,fanchirinko,Fanchirinko,08,,6.3333333,0.3333333 ru,svobodnyy,Svobodnyy,38,,44.567778,41.215833 kr,tobu,Tobu,06,,37.1138,128.5148 in,bodobil,Bodobil,21,,21.85,85.9 cu,natividad,Natividad,14,,21.6622222,-79.4708333 cn,laozishan,Laozishan,04,,33.184444,118.584444 zr,kinyamahura,Kinyamahura,11,,-1.3,29.55 th,ban naung daun,Ban Naung Daun,14,,16.833333,101.233333 gh,duayeden,Duayeden,08,,5.7833333,-0.4166667 au,walloway,Walloway,05,,-32.633333,138.583333 br,marfim,Marfim,06,,-4.683333,-40.433333 id,nglanang,Nglanang,10,,-7.745,110.423611 id,senggoro,Senggoro,17,,-8.633333,117.75 gr,stilia,Stília,32,,38.4666667,22.1 us,roberts crossroads,Roberts Crossroads,AL,,31.6008333,-85.5288889 lv,zidina,Zidina,07,,55.9333333,26.9 th,ban nam tok mae klang,Ban Nam Tok Mae Klang,02,,18.488806,98.661834 ng,duka,Duka,27,,10.137021,12.050071 tr,sinkirik,Sinkirik,21,,38.433333,40.033333 ao,aleixo,Aleixo,12,,-9.383333,15.6 bo,estancia caloyo,Estancia Caloyo,05,,-19.2166667,-67.5833333 ml,diendjila,Dièndjila,07,,12.895,-7.5972222 cn,lingoumen,Lingoumen,15,,36.18657,107.906782 ie,drumfree,Drumfree,06,,55.1963889,-7.3969444 co,once reses,Once Reses,10,,8.116667,-73.566667 id,semamoe,Semamoe,14,,3.6,116.066667 us,metipw en uh,Metipw En Uh,FM,,6.9577778,158.2655556 sv,nombre de dios,Nombre de Dios,02,,13.95,-88.5166667 id,kolongbaru,Kolongbaru,18,,-8.669,120.2463 mm,kokkohla,Kokkohla,07,,21.3166667,95.05 br,sitio leotilde marques bandeira,Sítio Leotilde Marques Bandeira,18,,-25.145356,-48.959636 co,montebello,Montebello,22,,.975766,-75.924995 cn,yungteng,Yungteng,15,,36.733056,103.254722 bd,kasira,Kasira,83,,24.9166667,89.05 id,balongpoh,Balongpoh,08,,-7.3544,112.7364 gt,buen retiro,Buen Retiro,02,,14.916667,-90.583333 kp,sangtaeilli,Sangtaeilli,09,,38.6925,127.5125 pa,senegal,Senegal,10,,7.7458333,-81.2933333 ve,salsipuedes,Salsipuedes,11,,10.6833333,-68.5166667 kz,tersakan,Tersakan,04,,47.883333,55.233333 id,kendalsumberbaru,Kendalsumberbaru,08,,-8.2633,114.1806 ru,mindyak,Mindyak,08,2955,54.0231,58.7891 zr,djom,Djom,10,,-4.1666667,25.0666667 se,on,Ön,06,,56.383333,13.133333 ru,ivashyuvom,Ivashyuvom,34,,65.8,57.683333 de,horath,Horath,07,,51.3,7.183333 cn,qibaoli,Qibaoli,30,,22.374881,112.348559 gh,kenyasi number 2,Kenyasi Number 2,03,,6.9833333,-2.3833333 us,allen center,Allen Center,NY,,42.3861111,-78.0155556 do,los hoyos,Los Hoyos,18,,19.6833333,-70.9333333 fr,le mesnil-gilbert,Le Mesnil-Gilbert,99,,48.714352,-1.064556 mz,mazombe,Mazombe,08,,-14.9777778,31.1694444 ml,solona,Solona,07,,11.1333333,-8.2166667 kp,kajwari,Kajwari,08,,37.8591667,126.5280556 uz,iardan,Iardan,03,,39.9638889,71.7655556 us,erie,Erie,ND,,47.1152778,-97.3875000 kp,sangsonbau,Sangsonbau,09,,38.7497222,127.5163889 cn,tzushanhsu,Tzushanhsü,03,,25.959953,115.541223 ru,peganovo,Peganovo,90,,57.1443,57.4817 cn,taigoumen,Taigoumen,15,,36.170131,107.915873 fr,lasseube-propre,Lasseube-Propre,B3,,43.576194,.596658 eg,minshat bisharah,Minshat Bisharah,03,,30.8166667,30.5991667 gh,togome,Togome,08,,6.1166667,0.1333333 us,pine village,Pine Village,IN,,40.4502778,-87.2544444 sn,diote sayane,Dioté Sayane,10,,14.3,-15.3 ro,putrezeni,Putrezeni,38,,46.25,27.433333 es,villar de fallaves,Villar de Fallaves,55,,41.925034,-5.340391 pk,akbruta,Akbruta,06,,33.788557,73.92082 bo,tanta,Tanta,07,,-19.6833333,-65.3166667 th,ban putsa,Ban Putsa,27,,15,102.183333 bo,bambarra,Bambarra,08,,-19.3166667,-57.9333333 ir,vash kowsh,Vash Kowsh,04,,25.45,60.166667 ru,kovkoy-selga,Kovkoy-Selga,28,,62.483333,34.083333 us,unique,Unique,IA,,42.7172222,-94.3450000 sd,umm sunaytah,Umm Sunaytah,27,,13.95,32.5833333 lk,bogahawewa,Bogahawewa,30,,7.8666667,80.6 ma,et tleta des beni beni zrannfel,Et Tleta des Beni Beni Zrannfel,50,,32.739559,-6.247647 de,perlkam,Perlkam,02,,48.433333,12.25 us,palmas,Palmas,PR,,17.9891667,-66.0258333 hk,wong mo ying,Wong Mo Ying,00,,22.4,114.3 tw,hsiassuhu,Hsiassuhu,04,,24.5333333,120.7333333 kr,mochigol,Mochigol,14,,36.401258,128.956983 hu,szakolyitanya,Szakolyitanya,18,,48.016667,21.8 ru,aul-krotovo,Aul-Krotovo,53,,54.7,79.566667 ee,khapsi,Khapsi,11,,58.3883333,23.7238889 at,stockerdorfl,Stockerdorfl,07,,47.433333,12.4 cn,qiaotouxia,Qiaotouxia,01,,30.2625,118.433333 bo,janko kollu,Janko Kollu,05,,-19.0666667,-67.5333333 cd,kabianga,Kabianga,00,,-6.75,16.983333 ci,klenle,Klenlé,78,,7.150074,-7.520687 bd,arazi chandpur,Arazi Chandpur,81,,24.1666667,88.8833333 cn,kiating ku,Kiating Ku,23,,31.388056,121.239722 ru,chelyuskin,Chelyuskin,10,,52.3928,34.099 id,waliran kulon,Waliran Kulon,08,,-8.1473,114.3733 ru,myachkovo,Myachkovo,47,,55.215479,38.673111 id,alulehob,Alulehob,01,,4.9455,97.2689 ru,bokovo,Bokovo,69,,55.593447,34.146552 de,moschlitz,Möschlitz,15,,50.55,11.733333 ir,dast-i-gird,Dast-i-Gird,25,,36.14158,56.094659 mx,la pila,La Pila,11,,20.031111,-100.432778 vn,lang chong,Làng Chong,26,,19.416667,105.416667 pk,chah pinalwala,Chah Pinalwala,04,,30.905,73.300556 ie,rath maolain,Ráth Maoláin,06,,55.0938889,-7.5402778 id,siwunah,Siwunah,39,,-3.466667,133.483333 ru,panino,Panino,43,,52.2413,40.4434 ma,tissouit ait seghrochen,Tissouit Aït Seghrochen,48,,32.614367,-4.722047 mx,el rodeo de arriba,El Rodeo de Arriba,18,,22.6075,-105.341111 ua,volchishchovitse,Volchishchovitse,15,,49.728582,23.298537 at,sommerau,Sommerau,02,,46.983333,14.666667 pk,nodanri,Nodanri,05,,26.233586,67.944083 lt,saltiniskiai,Saltiniskiai,57,,54.7,23.8833333 id,pangkalanbakoeng,Pangkalanbakoeng,11,,-2.166667,110.5 us,preston,Preston,OK,,35.7113889,-95.9913889 kr,tongbu,Tongbu,13,,37.7853,127.0357 cn,qinshui,Qinshui,03,,27.05,113.9 gh,onyemso,Onyemso,02,,6.75,-0.9666667 tn,al matamir,Al Matamir,28,,33.37123,10.437819 ru,arkhireyka,Arkhireyka,20,,52.453889,103.611389 id,delusuvati,Delusuvati,18,,-8.629722,125.171944 ir,zakariya kula,Zakariya Kula,35,,36.164506,53.442949 mx,rancho la cobriza,Rancho La Cobriza,26,,27.633333,-109.283333 kp,oundong,Oundong,09,,38.3638889,126.8688889 bg,kudurkioy,Kudurkioy,52,,43.7333333,26.8833333 py,estancia isla corazon,Estancia Isla Corazón,23,,-21.066667,-58.4 tr,yukari imrahor,Yukari Imrahor,68,,39.889715,32.910867 cm,boye,Boyé,10,,5.9666667,13.9666667 ua,vysokoye,Vysokoye,02,,50.661188,32.51059 cn,shi linchang,Shi Linchang,02,,30.080872,121.340195 sd,meika,Meika,27,,12.8333333,32.3833333 af,khushkna,Khushkna,41,,34.286881,66.35216 gn,bembou sambayabe,Bembou Sambayabé,27,,10.9166667,-13.7333333 np,nepa,Nepa,00,,28.65,81.9166667 ru,yunakova,Yunakova,88,,57.95,40.166667 br,guairas,Guaíras,05,,-12.65,-44.266667 ve,sarare,Sarare,22,,10.1013889,-68.8133333 in,dewgan,Dewgan,24,,27.171928,71.217799 gr,bala,Bála,38,,38.25,21.8 id,tompo,Tompo,07,,-7.549444,110.79 in,sulgaon,Sulgaon,35,,22.316667,76.1 cm,parawoy,Parawoy,12,,10.4666667,13.8833333 in,majhbhitia,Majhbhitia,36,,25.416667,82.816667 pk,darato,Darato,01,,33.844642,70.602399 cn,saobayingzi,Saobayingzi,19,,41.807599,120.923638 al,shtoshan,Shtoshan,41,,41.5897222,20.3880556 af,narghar,Narghar,06,,32.885864,63.924059 bf,soubo,Soubo,76,,13.5,-2.4833333 at,oberkarla,Oberkarla,06,,46.783333,15.9 cn,daji jiedao,Daji Jiedao,12,,30.508868,114.042808 zr,besarabwe,Besarabwe,11,,0.0166667,29.2 id,karangijo kulon,Karangijo Kulon,10,,-7.977778,110.705 es,juvencos,Juvencos,58,,42.433333,-8.116667 ru,dmitrova,Dmitrova,43,,51.925833,38.058333 ir,baz qal`eh-e malek,Baz Qal`eh-e Malek,08,,37.2025,49.755278 cn,damiao,Damiao,20,,38.493611,107.224167 ao,panzo muginga,Panzo Muginga,15,,-7.816667,15.216667 hu,nagybartalaposdulo,Nagybartalaposdulo,20,,47.183333,20.416667 pe,casta,Casta,15,,-11.7586111,-76.5955556 pk,binkot,Binkot,03,,35.00393,72.911398 pg,katalusa,Katalusa,15,,-1.4333333,149.7 de,schmorda,Schmorda,15,,50.65,11.583333 tr,kolaniz,Kolaniz,13,,38.317591,41.820649 rs,lucani,Lucani,00,4324,43.860833,20.138056 iq,khapakor,Khapakor,05,,34.9308333,45.0527778 cz,lipova lhota,Lipova Lhota,87,,49.282696,13.548453 id,welipopo,Welipopo,36,,-7.883333,139.1 sy,qabw al `awwamiyah,Qabw al `Awwamiyah,02,,35.45,35.9166667 hn,el carrizal,El Carrizal,13,,14.0833333,-88.3333333 ir,kharasf,Kharasf,42,,35.665596,58.192728 id,banjar sambangan,Banjar Sambangan,02,,-8.1461,115.0968 be,les fourches deminche,Les Fourches Deminche,07,,50.416667,4.733333 my,kampung behor gonchiar,Kampung Behor Gonchiar,08,,6.427252,100.179362 cn,ejiaqiao,Ejiaqiao,15,,36.051581,107.981306 af,gidargu,Gidargu,08,,33.551923,67.953554 us,tilghmanton heights,Tilghmanton Heights,MD,,39.5416667,-77.7419444 sd,gebellar,Gebellar,27,,11.4166667,34.9666667 ng,kawaya tera,Kawaya Tera,27,,10.497047,11.842191 us,coopertown,Coopertown,WV,,38.0780556,-81.5900000 sn,diayane,Diayane,07,,14.85,-16.7833333 pl,fryda,Fryda,82,,53.94193,18.510521 id,jatirogo,Jatirogo,08,,-6.8858,111.6592 cn,shangssuhsien,Shangssuhsien,16,,22.168409,107.943087 id,cigalang,Cigalang,30,,-7.3536,108.1601 se,korpemala,Korpemåla,12,,56.583333,15.2 pk,chak eighty-four ml,Chak Eighty-Four ML,04,,31.367272,71.057887 mg,lampamena,Lampamena,06,,-24.25,47.2166667 th,ban karu mang,Ban Karu Mang,70,,6.221444,101.221389 kh,kauk yieng,Kauk Yiéng,16,,13.6833333,103.6333333 de,kuhwinkel,Kuhwinkel,11,,53.083333,11.733333 us,buie,Buie,NC,,34.7363889,-79.1450000 co,hacienda santo domingo,Hacienda Santo Domingo,10,,10.061308,-74.011474 ro,radovanu,Radovanu,41,5065,44.2,26.516667 bf,samba,Samba,34,,13.0166667,-2.2833333 ao,catali novo,Catáli Novo,08,,-13.225278,15.263611 ir,sar chashmeh,Sar Chashmeh,42,,35.701207,60.380113 de,entenschwand,Entenschwand,01,,47.783333,7.883333 kz,koytas,Koytas,11,,51.5,76.25 id,bodowaluh,Bodowaluh,08,,-7.7209,111.708 cn,shuangdingshan,Shuangdingshan,05,,41.779312,127.114894 ae,fahlayn,Fahlayn,05,,25.684119,55.967495 af,agha mohd-nurkhan,Agha Mohd-nurkhan,19,,31.196111,61.8375 nl,keur,Keur,06,,51.616667,5.416667 ru,nuottajarvi,Nuottajärvi,49,,66.480677,32.060106 tr,beydemir,Beydemir,81,,37.27458,35.141269 ee,kuigatsi,Kuigatsi,19,,58.0119444,26.2055556 cn,jinting,Jinting,02,,29.570404,121.026765 ng,egbe,Egbe,22,,6.5518,8.9276 us,blueville,Blueville,WV,,39.3461111,-80.0036111 se,hagnas,Hägnas,26,,59.783333,18.916667 il,`uzayr,`Uzayr,03,,32.792124,35.329841 iq,summeicha,Summeicha,18,,33.8466667,44.2344444 at,magdalensberg,Magdalensberg,02,,46.65,14.966667 id,muaratunan,Muaratunan,14,,-1.4,116.65 pl,rudy,Rudy,83,,50.190788,18.450766 py,puesto santa maria,Puesto Santa Maria,16,,-22.5,-58.983333 ph,asis,Asis,09,,13.828763,120.992917 id,ngareng,Ngareng,08,,-7.0295,112.1131 pk,takh,Takh,02,,30.063821,69.774852 kr,soil,Soil,06,,37.3176,128.8519 ph,bolobolo,Bolobolo,M1,,10.9373,123.3688 sa,ash shu`aybah,Ash Shu`aybah,13,,27.836396,42.740985 us,west kankakee,West Kankakee,IL,,41.1186111,-87.8880556 tw,kuantzulingtsun,Kuantzulingtsun,04,,23.3333333,120.5 ve,la angostura,La Angostura,05,,7.7666667,-71.3333333 cn,aolizhao,Aolizhao,02,,29.305556,121.540833 na,otengua,Otengua,32,,-17.5833333,13.0 id,leuwijengkol,Leuwijengkol,33,,-6.7808,106.2532 ph,awitan,Awitan,15,,14.2,122.85 mn,dzaraa bulangiin hiid,Dzaraa Bulangiin Hiid,11,,46.9166667,109.0 cz,vysoke sedliste,Vysoke Sedliste,87,,49.833028,12.770785 ua,fashchiyevka,Fashchiyevka,09,,49.17603,27.165028 pe,colonia angamos,Colonia Angamos,16,,-5.1833333,-72.8833333 kh,phum prey svai,Phum Prey Svai,14,,11.5,105.3166667 az,avyarud,Avyarud,08,,38.506667,48.618056 co,la capellania,La Capellanía,26,,6.294107,-73.110757 zm,siamasambo,Siamasambo,03,,-16.7666667,25.0166667 us,pettit,Pettit,OK,,35.7647222,-94.9652778 kr,kajonni,Kajonni,17,,36.7562,126.371 us,north branch,North Branch,NH,,43.0805556,-71.9777778 jp,tonami,Tonami,42,42692,36.620467,136.943211 bi,nyakibaka,Nyakibaka,20,,-3.9647222,29.9083333 ir,khodaabad-e pa'in,Khodaabad-e Pa'in,40,,31.7424,53.8895 gr,mesarista,Mesárista,31,,38.4833333,21.5833333 fr,ouville-la-riviere,Ouville-la-Rivière,A7,,49.873728,.959698 kr,pongam,Pongam,03,,35.730988,127.005103 ph,trinidad,Trinidad,06,,10.8672,122.1103 by,krugloye,Krugloye,06,,53.0333333,27.85 lk,diwulapitiya,Diwulapitiya,36,,7.2166667,80.0155556 th,ban khlong phlo,Ban Khlong Phlo,47,,12.901667,101.704444 zm,siankodobo,Siankodobo,04,,-17.3333333,27.2166667 kh,phum chambak kong,Phum Chambâk Kong,18,,11.1666667,105.8333333 ua,myanolovichi,Myanolovichi,27,,51.021566,27.983672 tr,egribelen,Egribelen,65,,38.814165,44.177971 ir,khind-khale,Khind-Khale,08,,37.3818,49.4451 us,old fort,Old Fort,ID,,44.8116667,-116.1566667 ml,madouba,Madouba,07,,12.2166667,-8.5638889 kr,chodongni,Chodongni,05,,36.046944,127.813333 pa,guerita del platanal,Güerita del Platanal,07,,7.6,-80.55 cn,caotan,Caotan,03,,28.574227,115.038529 kz,komarovskiy,Komarovskiy,13,,52.65,60.866667 is,buðardalur,Búðardalur,08,,65.116667,-21.766667 il,kefar szold,Kefar Szold,03,,33.195913,35.658357 ir,malakshan-e `olya,Malakshan-e `Olya,16,,35.2565,46.8686 zr,asengwe,Asengwe,09,,-0.2833333,25.4166667 co,atrato,Atrato,38,,10.066667,-74.2 rs,nova babina poljana,Nova Babina Poljana,00,,42.451667,22.215833 gw,buaxe,Buaxe,06,,12.3502778,-15.9838889 mz,tecude,Tecúdè,10,,-17.5994444,33.0533333 ro,valea rosie,Valea Rosie,02,,46.016667,23.1 ru,yurtseva,Yurtseva,83,,56.283333,38.683333 us,picuris pueblo,Picuris Pueblo,NM,,36.2008333,-105.7094444 gr,evropouloi,Evropoúloi,25,,39.625,19.8613889 ng,kworhi,Kworhi,35,,10.322626,13.180066 kp,hwangdong,Hwangdong,06,,38.1741667,125.3558333 ao,mambamba,Mambamba,15,,-7.516067,16.992349 td,maimer,Maïmer,04,,11.4166667,16.3333333 pl,wola krysk,Wola Krysk,78,,52.532702,20.390439 cm,gakara,Gakara,12,,11.15,13.9 ro,vizesd,Vizesd,36,,45.942222,20.653056 bo,estancia arapata,Estancia Arapata,04,,-17.1333333,-67.2 mm,tungzang,Tungzang,02,,23.5166667,93.6 ht,monnery,Monnery,08,,18.5,-73.5333333 ng,iwowo,Iwowo,50,,5.007577,6.663193 mm,wan tam,Wan Tam,11,,21.7833333,98.0 lk,dehigampala,Dehigampala,33,,7.0666667,80.2833333 id,goenoeng batoe besar,Goenoeng Batoe Besar,12,,-2.616667,116.3 de,wittenforden,Wittenförden,12,,53.633333,11.333333 cl,cerrillo,Cerrillo,08,,-34.25,-70.983333 id,lumbung,Lumbung,21,,-.1179,119.9696 cn,zhaohongba,Zhaohongba,32,,28.388826,104.270089 cu,ave maria,Ave María,05,,21.5166667,-77.6833333 cn,hankuanghsu,Hankuanghsü,30,,24.109768,113.00501 lk,hatihare,Hatihare,32,,7.5833333,80.0833333 cn,houwuchen,Houwuchen,10,,37.366389,115.098056 cn,yingqiancun,Yingqiancun,03,,26.728539,116.415747 pk,kata nakhtar,Kata Nakhtar,01,,33.76055,70.825434 al,rodenja,Rodenja,45,,40.4027778,20.1655556 bd,harispur,Harispur,83,,24.65,88.4666667 id,begulan kidul,Begulan Kidul,07,,-7.488889,110.035278 ro,letea,Letea,37,,45.3,29.516667 us,merrymeeting trailer park,Merrymeeting Trailer Park,ME,,43.9077778,-69.9233333 cn,huaikan,Huaikan,02,,31.069444,119.681667 id,tjigorawang,Tjigorawang,30,,-6.888056,107.695833 de,hilersleben,Hilersleben,14,,52.266667,11.483333 ci,nanvikaha,Nanvikaha,87,,9.376431,-5.422733 mw,chambukira,Chambukira,11,,-13.9833333,33.7333333 id,pajameuligou,Pajameuligou,01,,4.8016,97.8353 mn,sutyn-khid,Sutyn-khid,17,,45.0666667,113.9 br,pennapolis,Pennapolis,27,,-21.4,-50.066667 br,sitio rivadavia r. da silva,Sítio Rivadavia R. da Silva,18,,-23.6879,-49.8885 ba,oskopice,Oskopice,02,,44.3830556,18.9358333 ro,berestii-de-sus,Berestii-de-Sus,22,,44.8,27.766667 gr,rizoviglo,Rizóviglo,46,,35.2166667,26.2666667 id,tampung randu,Tampung Randu,08,,-7.6734,112.9977 id,talanglubukgajah,Talanglubukgajah,15,,-5.215507,104.695934 id,bintauna pantai dusun 1,Bintauna Pantai Dusun 1,31,,.8951,123.5867 eg,al-mukattam city,Al-Mukattam City,11,,30.0333333,31.2666667 cz,trnawa,Trnawa,80,,49.254538,15.925539 pk,haji sakhani,Haji Sakhani,05,,25.130994,68.234286 mz,metambanhe,Metambanhe,05,,-20.6255556,34.6791667 cn,putangchen,Putangchen,04,,31.566667,118.983333 kr,yondung,Yondung,16,,34.583458,127.32087 ir,shib tall,Shib Tall,29,,30.0025,55.4202 tr,asagiagadeve,Asagiagadeve,04,,39.612707,43.167128 no,austera,Austerå,02,,58.631944,8.963056 cn,chenjiang,Chenjiang,30,,23.012198,114.318623 nl,palestina,Palestina,03,,52.208964,5.429991 in,nawasi,Nawasi,36,,26.3258,79.4219 kr,changye,Changye,16,,34.562338,127.120737 kr,chanbau,Chanbau,06,,38.302778,127.982222 co,zanjon pampama,Zanjón Pampamá,29,,3.687222,-76.348333 ru,privokzalnyy,Privokzalnyy,61,,46.89969,40.172916 la,ban na pha khao,Ban Na Pha Khao,04,,17.1,104.916667 ua,bekhtershchina,Bekhtershchina,18,,49.81934,33.606476 ng,kalaba,Kalaba,51,,13.429664,5.301053 tr,tavla,Tavla,38,,38.403076,36.522746 us,scotland,Scotland,CT,,41.6983333,-72.0819444 af,joy-e sabz,Joy-e Sabz,09,,34.025034,64.612518 pk,karianwala,Karianwala,04,,31.615278,73.45 us,inverness,Inverness,NY,,42.8927778,-77.8697222 gh,jata,Jata,10,,10.8,-1.1833333 iq,sarraji,Sarraji,02,,30.4883333,47.8513889 cn,tachiho,Tachiho,01,,32.885,117.821944 id,babakanloa,Babakanloa,30,,-6.876111,107.567222 kh,phumi ta cha,Phumi Ta Cha,05,,12.95,104.6 cn,kuidou,Kuidou,31,,19.914401,109.774067 us,port elizabeth,Port Elizabeth,NJ,,39.3133333,-74.9813889 ru,kyrgay,Kyrgay,29,,54.266667,87.066667 id,tjirampok,Tjirampok,30,,-6.435833,106.605833 me,solila,Solila,00,,43.111944,19.673056 cd,mikete,Mikete,04,,-6.183333,23.3 br,sitio jerusalem,Sítio Jerusalém,18,,-23.854456,-50.645379 gr,dhafni,Dháfni,25,,39.7297222,19.6936111 cn,chuankongyan,Chuankongyan,12,,30.350494,111.423194 tr,abbasgolkoy,Abbasgölköy,88,,39.83102,43.613439 mx,coyotla teyahuala,Coyotla Teyahuala,13,,21.05,-98.85 us,range,Range,OR,,44.8930556,-118.9675000 kp,pyoksongdong,Pyoksongdong,06,,38.3361111,125.5669444 kr,kyonghori,Kyonghori,16,,34.717778,127.725278 ba,vrgula,Vrgula,02,,44.8922222,18.1272222 af,mohammad aba,Mohammad Aba,01,,36.796951,70.030014 hr,igar,Igar,03,,43.2383333,17.1663889 al,mesmali,Mesmali,46,,40.7852778,20.5419444 mm,udaya,Udaya,08,,21.6833333,95.3833333 th,ban mak,Ban Mak,27,,14.683611,101.199444 mx,puerto de guadalupe,Puerto de Guadalupe,22,,21.255556,-99.116667 lb,el aayou,El Aayou,03,,34.4166667,35.9333333 in,pedda ahobilam,Pedda Ahobilam,02,,15.133333,78.716667 mx,anayeno,Anayeño,06,,27.583333,-105.35 az,xalfakuca,Xalfakuca,31,,38.733333,48.433333 cn,kaocheng,Kaocheng,24,,38.575278,112.758889 ru,rumyantsevo,Rumyantsevo,21,,56.987994,40.207695 my,kampung capur,Kampung Capur,13,,5.1849,102.8904 lt,degsne,Degsne,63,,55.85,22.65 bd,ranakhari,Ranakhari,81,,23.9666667,89.0666667 mm,wan hta-mantau,Wan Hta-mantau,11,,21.4666667,99.8166667 ma,oulad amara,Oulad Amara,46,,34.231865,-5.184546 pk,muhammad bhati pitafi,Muhammad Bhati Pitafi,04,,29.636539,70.742394 la,ban houaythak,Ban Houaythak,17,,19.873611,101.9125 gt,pasajoc,Pasajoc,21,,14.866667,-91.366667 sk,zavod,Závod,02,,48.55,17.0333333 iq,faqqah marut,Faqqah Marut,10,,34.4075,45.1602778 zm,sisheke,Sisheke,03,,-15.4166667,22.8833333 tw,kaohsiunghsien,Kaohsiunghsien,04,,22.6333333,120.35 af,tsambaran,Tsambaran,29,,32.787225,68.418116 id,tapuraukat,Tapuraukat,24,,-2.733333,100.216667 ph,bignay,Bignay,H2,,13.862778,121.489444 us,ralph,Ralph,WV,,38.4772222,-80.3688889 es,marcelin,Marcelín,58,,43.016667,-7 pl,na gorach,Na Gorach,80,,49.75,22.666667 se,marbogarden,Marbogården,28,,58.483056,12.9 ua,bakhtyk,Bakhtyk,07,,49.324867,37.535025 kh,khum prek achi,Khum Prek Achi,02,,12.2166667,105.55 af,takhteh pol,Takhteh Pol,30,,36.728546,67.026107 cz,ratschitz,Ratschitz,88,,50.460957,14.351332 ru,kosyakovo,Kosyakovo,47,,55.355412,38.494556 ru,eksenyakhta,Eksenyakhta,63,,63.783333,128.016667 pe,chacahuaya,Chacahuaya,18,,-16.65,-71.0166667 pl,przytullen kreis treuburg,Przytullen Kreis Treuburg,85,,54.066667,22.566667 np,khaireni,Khaireni,00,,27.7166667,83.25 co,pinuela,Piñuela,02,,6.283333,-75.566667 cz,liskovice,Liskovice,80,,49.543606,15.255034 tg,tabo,Tabo,18,,7.15,1.5833333 id,tamuan,Tamuan,38,,-3.0775,119.777 ir,daulatabad,Daulatabad,09,,34.6613,49.084 in,mohda,Mohda,37,,21.35,82.383333 us,lebo vista,Lebo Vista,PA,,41.3891667,-77.4686111 us,powersite,Powersite,MO,,36.6555556,-93.1211111 my,kampung jeram kedah,Kampung Jeram Kedah,05,,2.9007,101.9546 mz,muxilo,Muxilo,01,,-13.3094444,40.55 pe,piedras gordas,Piedras Gordas,15,,-11.8,-77.15 kr,bangtong,Bangtong,06,,38.313056,127.543333 be,saffraenberg,Saffraenberg,05,,50.783333,5.25 in,karaka,Karaka,19,,13.2,74.983333 id,citikur,Citikur,07,,-7.2507,108.7367 pk,gulabpura,Gulabpura,04,,32.256944,74.144444 vn,gong tuk,Gong Tuk,10,,15.133333,107.8 ht,beanos,Béanos,11,,18.3333333,-71.9333333 kr,anmadurae,Anmadurae,05,,36.3775,127.7901 af,toslah qol,Toslah Qol,05,,34.132315,67.154319 lt,katiliske,Katiliske,61,,55.5833333,22.7333333 cn,zhaduo,Zhaduo,15,,33.103899,104.658534 id,bongkot,Bongkot,07,,-7.1046,109.3557 cn,xujiacun,Xujiacun,19,,39.224722,121.675556 ir,sharima,Sharima,29,,28.0448,57.2023 id,pondokdjeruk,Pondokdjeruk,08,,-8.1881,113.405 co,morinda,Morinda,09,,2.509567,-76.624463 us,nisland,Nisland,SD,,44.6730556,-103.5530556 ru,kocherinovo,Kocherinovo,52,,57.9601,31.3247 hu,felsohegy,Felsohegy,17,,46.483333,17.316667 id,tamiangkoneng,Tamiangkoneng,30,,-7.1569,108.4291 mx,la higuera,La Higuera,32,,21.75,-102.833333 ph,siocon,Siocon,65,5071,7.706111,122.135278 it,fortunago,Fortunago,09,,44.916667,9.183333 id,cilangkap tiga,Cilangkap Tiga,30,,-6.450278,106.855 mx,tamasitlan,Tamasitlán,10,,25.45,-106.216667 ro,poeni,Poeni,28,,46.833333,26.35 gb,castle douglas,Castle Douglas,U2,3631,54.933333,-3.95 ru,kolontayevo,Kolontayevo,56,,53.37092,35.909407 lr,goza town,Goza Town,14,,6.2833333,-10.65 kh,prek hev,Prek Hev,01,,13.3333333,103.4166667 th,ban khu yai mi,Ban Khu Yai Mi,44,,13.648556,101.454195 mg,tsaramandroso,Tsaramandroso,02,,-21.8833333,46.75 cd,kisula,Kisula,00,,-7.483333,25.9 tr,buyukcakirman,Buyukcakirman,24,,39.739008,39.597519 af,taghowstay,Taghowstay,36,,33.871824,69.781169 cn,houguo,Houguo,07,,24.635116,118.212176 ne,roukouzou,Roukouzou,06,,14.4333333,5.5166667 ve,quiriquire,Quiriquire,11,,11.0666667,-68.8166667 ng,samana,Samana,50,,4.565153,7.371611 pk,jheuranwali,Jheuranwali,04,,32.488946,73.977021 id,ketringan barat,Ketringan Barat,07,,-6.9621,111.5549 ir,pa'in ahmad kola,Pa'in Ahmad Kola,35,,36.662761,52.668846 ml,yadianga,Yadianga,04,,14.0666667,-3.2 af,sayyid wal,Sayyid Wal,08,,33.336319,68.567589 th,ban beung kal,Ban Beung Kal,81,,18.363035,103.651944 cn,xijia,Xijia,04,,32.490424,120.530767 ru,ivanovo-samarskoye,Ivanovo-Samarskoye,80,,56.697923,52.785503 cm,djaoro sambo,Djaoro Sambo,10,,7.3833333,13.5333333 pl,trzesacz,Trzesacz,87,,54.074647,14.991482 pk,gustaniwala,Gustaniwala,04,,29.601706,71.580072 mx,el paredon,El Paredón,15,,19.380556,-99.839444 dz,ennedid,Ennedid,53,,22.8666667,4.9833333 tz,misherefu,Misherefu,20,,-5.2166667,39.8333333 pk,shigar,Shigar,07,,35.422551,75.73909 mx,el perdido,El Perdido,07,,27.616667,-103.55 sd,umm burma,Umm Burma,34,,13.05,31.3166667 ru,taganki,Taganki,69,,54.865278,34.3125 gr,cherpista,Cherpísta,05,,40.9166667,23.4833333 cd,sese-kilinda,Sese-Kilinda,02,,-5.416667,18.583333 kp,chondong,Chondong,06,,37.9,125.6666667 za,ngwegweni,Ngwegweni,05,,-30.735147,29.359308 be,verlorenhoek,Verlorenhoek,09,,50.85,2.933333 at,nessendorf,Nessendorf,02,,46.65,14.35 de,amesdorf,Amesdorf,14,,51.766667,11.6 cn,jiuzigou,Jiuzigou,26,,33.621949,106.687295 pk,goth haji allah jumo khan rajpar,Goth Haji Allah Jumo Khan Rajpar,05,,26.854383,68.378236 bd,lalasarai,Lalasarai,81,,23.7833333,90.4 cn,xiguapu,Xiguapu,12,,30.68313,115.138834 eg,al baraghit,Al Baraghit,23,,26.0997222,32.0216667 us,flat,Flat,MO,,37.7452778,-91.9288889 ba,huskici,Huskici,02,,44.9563889,16.8355556 td,mangara,Mangara,11,,8.9833333,18.0833333 hn,las uvillas,Las Uvillas,08,,13.9172222,-87.0352778 ci,fanala,Fanala,77,,9.773148,-7.945609 mx,campo veinte dos,Campo Veinte Dos,26,,27.4,-110.05 af,qal`ah-ye mulayim,Qal`ah-ye Mulayim,27,,34.318056,68.288611 ir,balm-e sagi,Balm-e Sagi,11,,27.8459,56.7729 pe,tasajera,Tasajera,14,,-6.2152778,-79.3263889 sk,vadicov,Vadicov,08,,49.2666667,18.85 td,tangata,Tangata,11,,10.3666667,17.8833333 id,kroyabaru,Kroyabaru,33,,-6.0456,106.1599 cn,kongling,Kongling,02,,29.492946,120.566219 ch,selfranga,Selfranga,09,,46.861426,9.884162 tr,koseoglu,Koseoglu,85,,41.31954,32.144534 ph,kakar,Kakar,B8,,7.210833,124.256389 mg,ambalanara,Ambalanara,02,,-21.8333333,47.2166667 cn,xiongjiayuanzi,Xiongjiayuanzi,15,,36.84152,107.139139 bz,tacistal,Tacistal,04,,17.8833333,-88.75 af,gharghara-i-dzamen,Gharghara-i-Dzamen,05,,34.547778,67.069722 am,dirak,Dirak,07,,40.7836111,43.9541667 pe,porococha,Porococha,15,,-12.5666667,-76.1666667 bf,dadou,Dadou,19,,12.1666667,-2.55 tr,cicikler,Cicikler,17,,39.922484,26.912958 ru,oguntakh,Oguntakh,63,,67.916667,131.4 cn,changchiachiaochen,Changchiachiaochen,04,,31.598056,120.596111 mm,kong-nio,Kong-nio,11,,22.7,97.9 pk,shera khel,Shera Khel,01,,33.730348,71.697216 pk,busalwali,Busalwali,04,,31.462703,72.80856 ar,costa grande,Costa Grande,08,,-32.15,-60.516667 ru,novokhopersk,Novokhopërsk,86,,51.0969,41.6252 ma,zawyat ourti,Zawyat Ourti,55,,30.917727,-7.406732 af,kar'yatavakal',Kar'yatavakal',17,,33.941389,68.977778 in,aliwal,Aliwal,23,,30.95,75.6 pt,abobreira,Abobreira,14,,39.021925,-9.296509 bd,baduli,Baduli,80,,23.0166667,91.0 ir,bon rud-e `olya,Bon Rud-e `Olya,04,,26.713611,59.929444 es,sotosalvos,Sotosalvos,55,,41.035367,-3.941149 me,bjelojevici,Bjelojevici,00,,42.935833,19.596667 id,ningalan,Ningalan,07,,-7.1356,111.4869 lk,kokkoluwa,Kokkoluwa,32,,7.55,79.8333333 id,pulau tanjung,Pulau Tanjung,01,,2.7972,99.6526 ua,dashenka,Dashenka,27,,50.649328,28.395946 is,eyvindarholar,Eyvindarhólar,23,,63.5,-19.616667 de,steinfurth,Steinfurth,10,,54.3,10.016667 th,yang,Yang,02,,18.520278,98.518889 th,amphoe beung na rang,Amphoe Beung Na Rang,13,,16.171195,100.125306 it,san zaccaria,San Zaccaria,05,,44.263333,12.208333 tr,guney,Güney,81,,37.462079,35.398822 gr,pedhianon,Pedhianón,23,,39.5172222,21.9527778 hu,alsocsampa,Alsócsámpa,21,,46.566191,18.828764 cn,chenbaerhu qi,Chenbaerhu Qi,20,,49.5,119.516667 mx,el badulaque,El Badulaque,06,,27.633333,-105.966667 cn,tianningzhuang,Tianningzhuang,02,,30.896041,120.800571 it,zanengo,Zanengo,09,,45.216667,9.85 es,belerma,Belerma,51,,36.728678,-2.884459 ru,novoyeniseysk,Novoyeniseysk,39,,58.2938,92.3823 gn,kamanou,Kamanou,01,,8.9833333,-8.6666667 th,ban phai,Ban Phai,22,35583,16.059972,102.730972 ie,srath,Srath,06,,55.1458333,-7.2872222 gr,mavrothalassa,Mavrothálassa,05,,40.9,23.75 eg,kafr el-rahawi,Kafr el-Rahâwî,08,,30.1980556,31.04 ir,mazu takhteh,Mazu Takhteh,37,,37.034039,55.412974 pe,hacienda huatiapa,Hacienda Huatiapa,04,,-15.9647222,-72.4658333 co,el aji,El Ají,04,,10.85,-74.866667 mm,maseplo,Maseplo,11,,19.3833333,96.8333333 ly,taqqrutin,Taqqrutin,30,,26.0166667,13.65 ma,ait bou yahya,Aït Bou Yahya,53,,30.2,-7.55 pl,przelek wielki,Przelek Wielki,85,,53.233333,20 th,ban san tap tong,Ban San Tap Tong,03,,19.966667,100.283333 ir,`eyn ol mejbel,`Eyn ol Mejbel,15,,31.374,49.2197 ru,morkonnitsy,Morkonnitsy,52,,58.839373,32.951122 ru,nikolskoye,Nikolskoye,56,,52.102785,37.519099 us,dunyon dell,Dunyon Dell,UT,,40.6327778,-111.6130556 bw,makwa,Makwa,01,,-21.7166667,26.3666667 cd,kuki,Kuki,01,,-3.5,17.533333 th,ban khao hin,Ban Khao Hin,46,,13.054472,101.097945 cn,yekengwu,Yekengwu,02,,30.555282,119.331162 af,qoregh-e bala,Qoregh-e Bala,09,,34.343494,65.993263 be,soudromont,Soudromont,03,,50.516667,4.25 ng,tungan jero,Tungan Jero,40,,12.008786,4.166393 ru,kaylovo,Kaylovo,88,,57.6961,38.5967 au,beauty point,Beauty Point,07,,-36.379799,150.071259 us,thompson heights,Thompson Heights,WV,,38.4169444,-82.0358333 vn,bac me,Bac Me,17,,22.734601,105.374243 sy,qozdjali kebir,Qozdjali Kébîr,09,,36.4666667,37.7833333 gt,ical,Ical,08,,15.45,-91.733333 th,muban phong siri chai nueng,Muban Phong Siri Chai Nueng,55,,13.70686,100.32611 fr,etain,Étain,B2,,49.212586,5.640218 sl,makabi,Makabi,04,,8.3841667,-13.0025 in,jhiri,Jhiri,24,,26.4,77.416667 pl,ciekocino,Ciekocino,82,,54.746122,17.798482 fr,boiteau,Boiteau,A3,,47.238282,2.664478 es,san robredin,San Robredín,58,,42.773435,-6.934535 fr,les illas,Les Illas,A9,,42.425794,2.785653 jp,onogawa,Onogawa,08,,37.683333,140.116667 cz,kras,Kras,84,,50.363919,17.160077 by,iserna,Iserna,06,,52.9,27.6333333 sn,tiofak,Tiofak,10,,14.1666667,-16.05 il,shutta,Shutta,03,,32.554167,35.4375 lt,viliusai,Viliusai,59,,54.9,23.3666667 pg,hohola,Hohola,20,,-9.4666667,147.1666667 se,bankevid,Bankevid,16,,58.066667,15.633333 cn,zhanghong,Zhanghong,26,,34.694167,108.633333 ir,darreh mandeh-ye hajji,Darreh Mandeh-ye Hajji,04,,25.566667,59.783333 us,topping,Topping,VA,,37.5880556,-76.4747222 af,zardalu darrah-ye bala,Zardalu Darrah-ye Bala,26,,36.73732,69.955168 fi,lounaala,Lounaala,15,,62.85,21.933333 ru,kalenovskoye,Kalenovskoye,11,,51.757414,107.12 ru,zhelannyy,Zhelannyy,29,,54.75,85.133333 ma,bargha,Bargha,57,,35.019866,-6.210803 tw,nantsun,Nantsun,04,,23.9833333,120.9166667 de,obel,Öbel,07,,51.233333,6.15 dk,haraldsborg,Haraldsborg,20,,55.65,12.1 ba,dobrinje,Dobrinje,01,3987,44.0497222,18.1194444 id,karangtengah,Karangtengah,30,,-7.9699,113.9232 ee,kuusalu,Kuusalu,01,1238,59.4438889,25.4413889 cn,lishanping,Lishanping,11,,27.403056,112.488889 bg,kyuklyudzha,Kyuklyudzha,61,,43.15,27.85 mx,mezacapa,Mezacapa,30,,20.433333,-97.15 tg,dabou kope,Dabou Kopé,21,,6.3,1.5333333 id,perum inkopad,Perum Inkopad,30,,-6.454722,106.748333 ua,reksino,Reksino,10,,48.916667,32.466667 pg,lossu 1,Lossu 1,15,,-3.05,151.6166667 my,kampung kebun tembakau,Kampung Kebun Tembakau,02,,5.440303,100.589744 gr,lambrino,Lambrinó,35,,37.8833333,23.4166667 pe,cachendo,Cachendo,04,,-16.9833333,-71.8 pl,piskorzewen,Piskorzewen,85,,53.508478,21.783289 mg,bedona,Bedona,02,,-23.0666667,46.9833333 af,deh deraz,Deh Deraz,30,,36.933194,66.676961 af,chulawyan,Chulawyan,10,,32.22957,64.814366 ru,zavodskoy,Zavodskoy,46,,54.445219,45.831358 no,grunnfjordbotn,Grunnfjordbotn,09,,67.916667,16.5 pa,dormilon,Dormilón,07,,7.8666667,-80.35 th,ban kok moh,Ban Kok Moh,51,,14.45,100.116667 ir,kushk,Kushk,10,,32.7571,47.8734 bd,bara beraid,Bara Beraid,81,,23.8,90.4833333 de,nendorp,Nendorp,06,,53.3,7.316667 ir,bard-e qulunak,Bard-e Qulunak,05,,30.576658,51.382403 gr,mesokhori,Mesokhóri,08,,40.8833333,21.5166667 it,scorano,Scorano,07,,42.133333,12.583333 cn,chiaochiatang,Chiaochiatang,04,,32.284068,120.05551 ph,kalukalu,Kalukalu,56,,7.118889,124.399167 us,ryors,Ryors,MO,,38.4825000,-91.6980556 id,tjitjalung 2,Tjitjalung 2,30,,-6.820278,107.656944 ga,mavouama,Mavouama,02,,-1.6,13.5666667 sl,miliki,Miliki,02,,8.9333333,-11.95 af,nagar khana,Nagar Khana,11,,33.906867,63.171114 af,hasan kheyl,Hasan Kheyl,27,,33.930556,68.686667 ve,buena vista de chive,Buena Vista de Chive,02,,9.0352778,-63.8188889 ir,amir ol amar,Amir ol Amar,09,,34.1962,48.6699 rw,colline kintarure,Colline Kintarure,05,,-1.7166667,29.6166667 de,launsbach,Launsbach,05,,50.616667,8.666667 uy,totoral,Totoral,02,,-34.6666667,-56.0 bd,bijul,Bijul,83,,25.35,89.0333333 pk,battamori,Battamori,03,,34.686751,73.086251 hr,gornje kusonje,Gornje Kusonje,17,,45.7,17.5833333 ro,cinta,Cinta,27,,46.466667,24.55 fr,plessis-pate,Plessis-Paté,A8,,48.616741,2.327741 co,valle bonito,Valle Bonito,29,,3.775833,-76.016944 ie,alloon lower,Alloon Lower,10,,53.3933333,-8.4758333 th,ban mai samakkhi nuea,Ban Mai Samakkhi Nuea,08,,17.294167,99.057389 az,vanatly,Vanatly,69,,39.152087,46.633176 pl,karczewizna,Karczewizna,78,,52.495113,21.773687 be,fonteine,Fonteine,08,,51.2,3.75 mx,el capiri,El Capiri,16,,19.116667,-102.016667 ua,moskalenki,Moskalenki,01,,49.448852,32.512922 th,ban tachilep,Ban Tachilep,48,,12.541278,102.051 ro,cartieru demobilizatilor,Cartieru Demobilizatilor,18,,45.45,28.05 gn,kamisaya,Kamisaya,16,,10.4166667,-12.4666667 ir,isfaranjan,Isfaranjan,28,,33.495052,50.35468 ve,piedra el buroo,Piedra El Buroo,03,,6.3322222,-67.3505556 pl,krzewica,Krzewica,78,,52.054963,22.673141 mm,loi-lin,Loi-lin,11,,20.9666667,97.2166667 cn,hsiangshan,Hsiangshan,02,,28.183333,120.746944 hr,majkovac,Majkovac,17,,45.9141667,17.5322222 fr,soussigny,Soussigny,B7,,46.857594,-.200612 ng,olomu oguname,Olomu Oguname,36,,5.458776,5.919819 et,ahimed,Ahimed,46,,10.966667,39.833333 bj,soklogbo,Soklogbo,11,,7.6833333,2.25 hu,birito,Biritó,21,,46.614764,18.798953 no,skjelfjord,Skjelfjord,09,,68.05,13.266667 th,ban ham hae,Ban Ham Hae,23,,16.45,103.566667 ru,morozova,Morozova,52,,58.421094,35.15645 ir,serdan,Serdan,38,,36.6471,49.1918 mx,coxcatlan,Coxcatlán,21,5830,18.266667,-97.15 th,ban non phu thong,Ban Non Phu Thong,18,,17.037111,102.066084 my,tawar,Tawar,02,,5.59561,100.770163 gt,los jocotes,Los Jocotes,22,,14.966667,-89.5 in,padiv,Padiv,24,,24.916667,72.783333 ve,carisito,Carisito,16,,9.3616667,-63.9488889 hr,granice,Granice,11,,45.4005556,18.1216667 bg,chepintsi,Chepintsi,42,,42.7666667,23.4333333 mx,ojapa,Ojapa,30,,17.883333,-94.866667 cn,saipotsui,Saipotsui,11,,28.978611,112.500556 hu,lickovadamos,Lickóvadamos,24,,46.74649,16.769611 kz,novotroitsk,Novotroitsk,15,,49.827222,82.889444 cn,hejiayuan,Hejiayuan,32,,32.399919,106.142526 kz,bagatyrevka,Bagatyrevka,07,,50.366667,48.771667 us,sessex,Sessex,NC,,36.5616667,-81.4191667 ru,chagorta,Chagorta,24,,46.7272,43.9769 us,mancos,Mancos,CO,,37.3450000,-108.2886111 id,sangriindah,Sangriindah,04,,-6.2388,106.7501 se,taftea,Täfteå,23,,63.833333,20.483333 mx,chianjale salchiji,Chianjale Salchiji,05,,15.2,-92.2 kr,jokodo,Jokodo,06,,38.282222,128.133611 eg,`izbat ad daramalli al qibliyah,`Izbat ad Daramalli al Qibliyah,03,,30.9291667,30.5336111 ph,nagpanaoan,Nagpanaoan,01,,17.633333,120.633333 id,tjalongrajeu,Tjalongrajeu,01,,5.4073,95.9002 tn,dar sidi m'hamed ech cherif,Dar Sidi M'hamed ech Cherif,36,,36.888333,10.318056 dk,lille fuglede,Lille Fuglede,20,,55.593771,11.275277 af,babakirkheyl',Babakirkheyl',18,,34.294827,70.225601 de,neuselingsbach,Neuselingsbach,02,,49.466667,10.65 sb,heleta,Heleta,08,,-9.0833333,160.1166667 mg,sambohova,Sambohova,02,,-21.7166667,47.2333333 be,raversijde-baden,Raversijde-Baden,09,,51.2,2.85 nl,tjummarum,Tjummarum,02,,53.237984,5.547175 at,fuchslucken,Fuchslucken,06,,47.55,14.216667 cu,el credo,El Credo,07,,21.8666667,-78.65 us,meadowbrook,Meadowbrook,AL,,33.4019444,-86.6966667 us,woodland hills,Woodland Hills,SC,,34.0347222,-81.1272222 lv,grube,Grube,02,,57.5333333,26.7833333 kr,sillari,Sillari,14,,36.5319,129.4383 tr,ekicekyenikoy,Ekicekyeniköy,75,,38.55,34.15 ng,saa berri,Saa Berri,50,,4.699506,7.423136 dk,logstrup,Løgstrup,18,,56.510316,9.335377 ir,kalateh-ye sheykh,Kalateh-ye Sheykh,41,,32.4525,59.628 id,tretespanggung,Tretespanggung,08,,-8.2604,112.7994 cn,quliushu,Quliushu,19,,41.975584,124.335959 fi,rukkisenpera,Rukkisenperä,08,,64.516667,25.05 ru,savostyanova,Savostyanova,69,,54.634919,33.4813 rw,nyamabuye,Nyamabuye,06,,-2.0680556,29.7661111 us,withamtown,Withamtown,TN,,36.5466667,-86.3038889 cn,dongbaoxiang,Dongbaoxiang,03,,27.184079,116.728901 cn,qugya,Qugya,14,,27.705,89.105 ir,tanbak,Tanbak,23,,33.4991,49.4928 ir,asbeshah,Asbeshah,01,,38.0878,44.5573 de,kirchheim am ries,Kirchheim am Ries,01,,48.883333,10.4 mx,landero y cos,Landero y Cos,30,,19.733333,-96.866667 id,gununggawe,Gununggawe,08,,-7.8356,111.499 mn,bayan-enger,Bayan-Enger,03,,48.3833333,90.8 ar,vanguardia,Vanguardia,21,,-33.357126,-60.656593 in,richhpura,Richhpura,36,,24.5323,78.5098 lv,viseles muiza,Viseles Muiza,29,,56.8694444,23.3166667 ir,dowzahir,Dowzahir,25,,35.637296,53.897723 ee,savala,Savala,03,,59.3097222,27.0127778 cg,divina,Divina,07,,-2.6772222,12.0855556 ph,butubot sur,Butubot Sur,36,,16.7986,120.4396 cm,mbendzi,Mbendzi,11,,4.7333333,12.0166667 ru,belovskoye,Belovskoye,09,,50.579502,36.739378 cn,binyang,Binyang,07,,27.261111,120.349167 af,kareze agha,Kareze Agha,11,,32.91695,61.916512 in,purwa ranjit,Purwa Ranjit,36,,26.5008,79.8157 ua,volchkuv,Volchkuv,22,,48.716667,25.866667 ao,cassolo,Cassolo,04,,-14.5,19.383333 mn,lung ula,Lung Ula,18,,47.8666667,105.25 cm,ndodehe,Ndodéhe,12,,12.45,14.4333333 cd,yaeloti,Yaeloti,09,,1.583333,23.533333 br,corvo branco,Corvo Branco,18,,-25.566667,-52.05 gh,yigwania,Yigwania,10,,10.8833333,-1.1166667 co,puerto miriti,Puerto Miriti,01,,-1.166667,-69.983333 zw,dema business centre,Dema Business Centre,04,,-18.0833333,31.2166667 dk,foldingbro,Foldingbro,21,,55.44247,9.002594 tr,semedeli,Semedeli,17,,40.000556,27.121667 gb,warrington,Warrington,P2,81238,53.383333,-2.6 fi,pohjala,Pohjala,13,,61.5,25.966667 kp,unsan,Unsan,15,,39.445,126.0208333 ph,dampis,Dampis,60,,6.262778,120.496389 cm,mba,Mba,11,,3.6166667,11.95 ua,vyazovok,Vyazovok,01,,49.172901,31.415316 cn,xiaxipo,Xiaxipo,07,,25.478611,119.154444 id,tarpapadi,Tarpapadi,38,,-5.9979,120.5421 id,kedjobong,Kedjobong,07,,-7.390833,109.508611 ir,khowjeh beyk,Khowjeh Beyk,42,,34.980306,59.469505 ar,tres estacas,Tres Estacas,03,,-26.933333,-61.6 mm,kyagwin,Kyagwin,09,,18.5166667,96.45 co,las margaritas,Las Margaritas,27,,9.062566,-75.186284 ph,imaru,Imaru,40,,13.0489,120.9519 fr,marolles,Marolles,B6,,49.170347,3.104949 ug,rwenjura,Rwenjura,40,,0.1,29.8833333 kz,letovochnoe,Letovochnoe,16,,53.733611,68.981944 ru,revyaikno,Revyaikno,56,,52.249808,37.415431 dz,taguersift,Taguersift,14,,36.7833333,4.3166667 de,furstlich gutow,Fürstlich Gutow,12,,53.916667,11.116667 za,steynsnek,Steynsnek,05,,-31.175417,26.856302 ph,pao,Pao,01,,17.52,120.6472 cz,wonischen,Wonischen,87,,49.503365,12.84429 ru,klevantsevo,Klevantsevo,37,,57.821015,42.450587 cn,changhao yidui,Changhao Yidui,31,,18.721926,109.552969 ma,imghrad,Imghrad,47,,31.109501,-9.656843 us,chenango lake,Chenango Lake,NY,,42.5850000,-75.4355556 af,shanakhti kalay,Shanakhti Kalay,23,,31.597004,66.414338 rs,guvrrisht,Guvrrisht,00,,43.231111,20.787222 ru,pchelka,Pchëlka,08,,52.85,55.95 ke,vinunyi,Vinunyi,02,,-4.1833333,39.5333333 ua,brodetskoye,Brodetskoye,23,,49.760424,28.630809 ru,barun-asa,Barun-Asa,11,,52.366667,109.033333 id,sendani,Sendani,07,,-7.520278,109.342222 gh,kpatani,Kpatani,06,,10.3333333,0.2333333 pg,garu,Garu,17,,-5.4166667,149.9666667 cn,yehchenghsien,Yehchenghsien,13,,37.885,77.413056 id,nangah pengkadan,Nangah Pengkadan,11,,.583333,112.316667 af,deh dana,Deh Dana,13,,34.467222,69.132222 ao,cambau,Cambau,06,,-10.088618,15.209579 gm,ker bamba lowe,Ker Bamba Lowe,02,,13.55,-15.4166667 pl,janowiec koscielny,Janowiec Koscielny,85,,53.289827,20.522711 ua,sosnitsa,Sosnitsa,02,,51.523873,32.499849 eg,abu ghanima,Abu Ghanîma,21,,31.2775,30.6355556 se,flackarp,Flackarp,27,,56.116667,14.25 gb,ellenbrook,Ellenbrook,L5,,53.516667,-2.416667 cn,huangcaogou,Huangcaogou,32,,32.178854,107.034362 zr,ginekuda,Ginekuda,09,,4.2833333,27.5666667 us,fallstaff,Fallstaff,MD,,39.3683333,-76.7069444 ir,kaidi,Kaidi,11,,26.259444,57.691944 td,kana ii,Kana II,08,,8.6666667,15.9 it,fanzolo,Fanzolo,20,,45.716667,11.983333 it,san silvestro,San Silvestro,18,,42.766667,12.683333 cn,yuenchowfu,Yuenchowfu,11,,27.458139,109.659196 it,salassa,Salassa,12,,45.366667,7.683333 et,dimbi,Dimbi,51,,8.081326,36.461361 de,rassbach,Raßbach,02,,48.616667,13.55 ru,grabarovka,Grabarovka,10,,52.5446,33.2251 zr,mombole,Mombole,02,,1.8333333,22.7333333 us,black,Black,OH,,40.0466667,-81.5922222 mx,xocoxuitla,Xocoxuitla,21,,19.616667,-97.85 mw,gunda,Gunda,11,,-14.3666667,33.7 tw,yingchien,Yingchien,04,,22.8833333,120.2666667 fr,issy,Issy,A1,,46.707625,3.973686 br,aracui,Aracuí,08,,-20.65,-41.2 pl,witobel,Witobel,86,,52.269713,16.70734 gh,atesikrom,Atesikrom,03,,7.2666667,-2.9 pa,corocita,Corocita,10,,7.7325,-81.1369444 md,gura kamenchiy,Gura Kamenchiy,75,,47.890556,28.356944 si,mali lipoglav,Mali Lipoglav,04,,45.9930556,14.6430556 sn,gokh mbath,Gokh Mbath,04,,16.0452778,-16.5088889 ma,tizi n'zou,Tizi n'Zou,48,,32.514494,-5.083221 ir,qarabast,Qarabast,07,,29.4528,52.1709 rs,rajcinovice,Rajcinovice,00,,43.153056,20.443333 ph,kangtingco,Kangtingco,37,,11.1395,124.5735 mx,juan eugenio,Juan Eugenio,07,,25.15,-103.316667 ar,el piquete,El Piquete,17,,-24.753205,-64.469145 ru,suma,Suma,06,,64.6,40.083333 pg,keti,Keti,09,,-6.5,145.5166667 ir,mobarezabad,Mobarezabad,15,,32.183333,48.533333 ro,slatina-timisului,Slatina-Timisului,12,,45.25,22.283333 ru,gornostalikha,Gornostalikha,33,,60.175,46.8507 jp,noheji,Noheji,03,,40.866667,141.126111 cn,shidou,Shidou,30,,22.75026,111.543333 ir,chehel sar,Chehel Sar,04,,25.656542,61.078377 kh,phumi khyaong,Phumi Khyaong,02,,11.75,105.1 pk,lora,Lora,03,,33.891239,73.281668 id,rumbija,Rumbija,26,,1.933333,99.983333 cn,lishujie,Lishujie,09,,33.755833,111.969167 sv,barro de los ausoles,Barro de Los Ausoles,01,,13.9125,-89.8272222 ba,zaovista,Zaovista,02,,43.0733333,18.1344444 se,bringsjoberg,Bringsjöberg,10,,60.133333,14.783333 fr,bois,Bois,B6,,49.592452,1.774467 tr,hamadiye,Hamadiye,81,,37.558527,34.965417 kp,kwangdaeto,Kwangdaeto,09,,38.2586111,127.0102778 bo,san marcos,San Marcos,04,,-13.7319444,-67.4194444 us,oneida,Oneida,OH,,40.6986111,-81.1491667 kp,koshin,Koshin,17,,40.9861111,129.7180556 tr,karaoyunca,Karaoyunca,55,,41.338056,36.181944 ir,shahinabad,Shahinabad,01,,37.0318,45.0547 cn,danjingshan,Danjingshan,32,,31.071773,103.849534 af,chigini deh,Chigini Deh,19,,30.37008,61.854158 br,america,América,18,,-25.516667,-48.883333 pk,badiana,Badiana,04,,32.377284,74.616572 ru,ketkovo,Ketkovo,77,,57.3084,38.1839 jp,hinata,Hinata,19,,35.3,139.65 cd,masitoro,Masitoro,00,,2.6,23.65 mg,andobomana,Andobomana,03,,-18.3666667,44.2833333 ml,hamaragoungou,Hamaragoungou,08,,16.7833333,-2.35 pt,quintais,Quintãis,20,,41.939097,-8.492168 by,pribylovichi,Pribylovichi,02,,51.6666667,27.8166667 eg,nishil,Nishîl,05,,30.9675,31.0219444 af,shirgish,Shirgish,23,,31.301014,67.350281 mm,thabeikkyin,Thabeikkyin,10,,22.8833333,95.9833333 in,kaleran,Kaleran,10,,30.2008,76.7224 ir,ozunbijeh,Ozunbijeh,43,,37.54578,57.462827 cu,estaca,Estaca,11,,22.8166667,-82.15 ro,prajoaia,Prajoaia,04,,46.416667,26.716667 br,serrotinho,Serrotinho,17,,-6.916667,-37.633333 zr,bosombuma,Bosombuma,02,,3.7,18.7666667 es,abio,Abio,60,,38.549969,-.451236 lt,gatauciu,Gatauciu,61,,56.1608333,23.9822222 se,hulan,Hulån,10,,60.55,14.3 bd,sundail,Sundail,81,,24.6,90.7833333 ir,sarkavirdan,Sarkavirdan,22,,29.4075,51.260278 co,tapaz del chipe,Tapaz del Chipe,36,,5.604722,-74.188611 ir,mahlavan,Mahlavan,08,,37.1894,49.1887 ru,tserkovnaya,Tserkovnaya,37,,59.152686,43.735552 pt,cu marinho,Cu Marinho,08,,38.331597,-7.64504 mm,tikakhi,Tikakhi,06,,18.7,97.1666667 cg,makanga,Makanga,07,,-2.6877778,11.6963889 gw,senquerem,Senquerem,06,,12.4625,-15.5541667 in,lokhar daura,Lokhar Daura,36,,26.5305,79.9144 ro,balutoaia,Balutoaia,26,,44.766667,24.233333 co,el placer,El Placer,10,,9.279167,-73.943056 kz,zimovka syurguta,Zimovka Syurguta,12,,47.383333,68 tg,afotoude,Afotoudé,10,,6.1766667,1.2186111 br,mamoeiro,Mamoeiro,30,,-7.966667,-38.933333 id,bassei-miraaf,Bassei-miraaf,36,,-7.716667,140.783333 ao,vila henrique de carvalho,Vila Henrique de Carvalho,18,,-9.66078,20.391553 se,juttersbo,Juttersbo,09,,57.816667,16 fr,conde-sur-huisne,Condé-sur-Huisne,99,,48.381031,.850934 th,ban non bo,Ban Non Bo,24,,15.45,103.4 cn,huoluchengkuan,Huoluchengkuan,10,,38.080556,114.296111 ru,verkhne-unzha,Verkhne-Unzha,83,,55.4517,41.5244 id,magekoba,Magekoba,18,,-8.6891,122.0751 ir,kafri,Kafri,07,,29.5013,52.4857 sd,law,Law,32,,6.7333333,30.4166667 mz,vondue,Vondue,03,,-22.685,33.9841667 gr,khora,Khóra,49,,36.35,25.7666667 ro,nucetu,Nucetu,26,,44.75,23.283333 pg,rabos,Rabos,17,,-5.7166667,149.2166667 sy,beremji,Béremji,09,,36.55,36.7 cn,dongbaozi,Dongbaozi,26,,34.898,109.545078 ht,petite cahouane,Petite Cahouane,08,,18.4,-74.45 cz,bohmisch grillowitz,Bohmisch Grillowitz,78,,48.833333,16.283333 us,shopton,Shopton,NC,,35.1713889,-80.9616667 sl,gokoma,Gokoma,01,,8.2833333,-11.3333333 mk,cemersko,Cemersko,49,,41.2938889,22.1413889 et,adi awde,Adi Awde,53,,13.75,37.466667 ph,pangasugan,Pangasugan,37,,10.683333,124.8 my,mercang,Mercang,13,,5.0369,103.2934 ru,gben,Gben,10,,52.673889,34.669722 cr,cabecera lajas,Cabecera Lajas,03,,10.345133,-84.985213 cn,shiwu,Shiwu,05,,43.780556,124.222778 th,ban rong chaang,Ban Rong Chaang,33,,14.816667,100.433333 hu,mehestanya,Méhestanya,04,,48.266667,20.733333 ml,sirakourou,Sirakourou,07,,10.6833333,-7.5166667 ph,lower kalandagan,Lower Kalandagan,71,,6.656389,124.700833 ao,quinzombe,Quinzombé,15,,-7.667984,15.892027 tr,yukari samanlik,Yukari Samanlik,68,,40.008017,33.474322 th,ban khok charoen,Ban Khok Charoen,77,,15.730944,104.6845 kp,tahari,Tahari,11,,40.5397222,125.4372222 vn,ban cam,Ban Cam,19,,22.516667,104.083333 br,bom jesus do madeira,Bom Jesus do Madeira,15,,-20.716667,-42.416667 tz,uleia,Uleia,24,,-8.1,32.6166667 ph,san carlos,San Carlos,N4,,13.3764,123.7208 pg,lossu 2,Lossu 2,15,,-3.0333333,151.6166667 ru,nikolayevka,Nikolayevka,41,,51.2477,35.0165 uz,arab-parkuza,Arab-Parkuza,08,,38.8947222,65.8430556 ru,shamanovka,Shamanovka,77,,57.3035,38.2465 af,amarkheyl,Amarkheyl,27,,34.373889,68.837778 ir,oryan,Oryan,42,,35.764088,57.5294 cd,zanza,Zanza,05,,-5.716667,26.95 zr,kizoladio,Kizoladio,08,,-5.85,14.2666667 cm,malbeti,Malbéti,10,,7.9166667,12.3666667 fi,krok,Krok,15,,60.133333,21.733333 us,white hill,White Hill,IL,,37.3191667,-89.0213889 ir,qal`eh istui,Qal`eh Istui,42,,35.440813,61.087754 tr,abbashalimpasa,Abbashalimpasa,26,,39.40153,31.078233 au,clandulla,Clandulla,02,,-32.883333,149.966667 ru,malinovo,Malinovo,60,,57.139,28.5271 af,dahan-e gudar,Dahan-e Gudar,05,,34.367428,66.766266 us,bethel chapel,Bethel Chapel,AR,,34.3930556,-94.3291667 cn,haiziyan,Haiziyan,13,,43.573056,92.789444 ru,sheksna vtoraya,Sheksna Vtoraya,85,,59.235361,38.507652 ru,dubonovichi,Dubonovichi,60,,57.8567,28.829 ve,capure,Capure,09,,9.9663889,-62.2525 mg,fenoarivokely,Fenoarivokely,02,,-21.4666667,45.9 ir,gavterna,Gavterna,42,,36.540569,59.236841 ng,hoche,Hoche,41,,7.4743,7.7415 mx,el oasis,El Oasis,02,,31.8,-115.133333 ma,agadir lrhazi,Agadir Lrhazi,55,,30.504921,-9.490473 my,taman lknp bukit setongkol,Taman LKNP Bukit Setongkol,06,,3.8047,103.3016 cu,playas coloradas,Playas Coloradas,09,,19.9,-77.7166667 am,tedshirabad,Tedshirabad,05,,40.205,44.6430556 id,banjar sekarkejula kelod,Banjar Sekarkejula Kelod,02,,-8.3785,114.7532 et,fech'ase,Fech'ase,51,,8.966667,36.666667 id,limes,Limes,30,,-6.484,106.4718 ua,kolkhoznyy,Kolkhoznyy,07,,49.468056,37.686111 bd,ganespur,Ganespur,82,,22.4,89.0166667 cn,kuangyuanhsien,Kuangyüanhsien,32,,32.442015,105.822996 th,ban phrong,Ban Phrong,66,,7.733333,99.816667 vn,khuoi hoi,Khuoi Hoi,05,,22.716667,106.233333 id,sempalan,Sempalan,17,,-8.793,116.285 si,krizovci,Krizovci,09,,46.7888889,16.2469444 bo,pizarro,Pizarro,08,,-17.1333333,-63.0 kr,gaeopri,Gaeopri,13,,37.273611,127.619444 za,rosherville,Rosherville,06,,-26.183333,28.15 cn,xiaopuzi,Xiaopuzi,29,,24.127142,102.328596 et,gol,Gol,46,,10.816667,39.216667 ml,anfoulgoulaye,Anfoulgoulaye,08,,15.9333333,-3.45 td,djidi bagaye,Djidi Bagaye,10,,9.7833333,15.5666667 ci,bottou amon,Bottou Amon,74,,5.983178,-4.48732 tm,chalsu,Chalsu,02,,38.8333333,56.2166667 ng,bununu kassa,Bununu Kassa,46,,9.868056,9.662778 mx,tizapan,Tizapan,14,,20.166667,-103.066667 jp,kasano,Kasano,24,,37.95,140.916667 ua,volnanesht,Volnanesht,26,,46.57622,35.101689 ma,tifcht,Tifcht,56,,31.403688,-6.773688 fr,burlats,Burlats,B3,,43.636327,2.318789 bj,tatanta,Tatanta,01,,10.45,1.45 id,samuntai,Samuntai,14,,-1.666667,116.133333 br,estiva,Estiva,23,,-29.866667,-53.266667 bd,sakuai,Sakuai,81,,25.0,90.4333333 tr,genel,Genel,61,,40.923574,39.587231 pk,taurianwala,Taurianwala,04,,30.079167,72.286111 gr,sinoikismos limbotous,Sinoikismós Limbotoús,14,,41.2333333,24.4 br,bairro taquarivai,Bairro Taquarivaí,27,,-23.933333,-48.683333 bg,panagiuriste,Panagiuriste,48,,42.5,24.1833333 ph,cabak,Cabak,21,,11.2353,123.6979 br,carlos ribeiro,Carlos Ribeiro,15,,-21.016667,-45.833333 ru,mikhaylovo,Mikhaylovo,62,,54.6837,42.1913 pl,wanacja,Wanacja,81,,53.409709,21.648516 sd,abbasiya,Abbasiya,27,,13.1333333,32.7666667 ao,mucama,Mucama,17,,-8.116667,18.783333 gm,jwenkelly,Jwenkelly,05,,13.1833333,-15.8333333 fr,mouzay,Mouzay,A3,,47.089482,.892104 cn,huxingguo,Huxingguo,03,,28.384612,114.596739 mx,palma,Palma,28,,22.75,-98.816667 do,los pomes,Los Pomes,30,,19.1333333,-70.65 ge,yeli,Yeli,36,,43.0058333,42.7536111 pl,czerwin,Czerwin,77,,49.816667,20.1 id,balongsono,Balongsono,08,,-7.1608,112.0758 us,honey,Honey,PA,,40.7111111,-77.5213889 id,pasarkapuk,Pasarkapuk,08,,-7.0352,112.7439 pl,koziarnia,Koziarnia,80,,50.370807,22.328322 in,larka,Larka,37,,20.2,82.666667 ir,ya`qub shah,Ya`qub Shah,09,,34.4369,48.3876 af,sah mari,Sah Mari,01,,37.018521,70.449539 pe,santa julia,Santa Julia,20,,-4.8758333,-80.9291667 lt,kunigishki-bart,Kunigishki-Bart,59,,54.5,23.0666667 ru,molchanovo,Molchanovo,46,,54.563761,43.644407 ru,argeningken-graudzhen,Argeningken-Graudzhen,23,,54.976716,21.887913 ru,arestovo,Arestovo,69,,55.976663,34.400483 ro,miluiti,Miluiti,11,,44.966667,26.683333 pl,bugaj,Bugaj,79,,50.983333,18.65 ph,lumbay,Lumbay,30,,10.966667,122.716667 us,hanesville,Hanesville,MD,,39.2758333,-76.1358333 ch,uitikon am albis,Uitikon am Albis,25,,47.373071,8.453426 ir,kalateh mir `abbas,Kalateh Mir `Abbas,41,,32.733333,59.133333 mx,animas,Animas,30,,17.9,-94.566667 ua,dunareanca,Dunareanca,17,,45.830908,29.107938 id,kalimurni,Kalimurni,30,,-6.533333,106.795833 th,kong krailat,Kong Krailat,09,,16.951972,99.977695 be,ligny,Ligny,03,,50.6,3.45 ve,petare,Petare,19,,10.3333333,-64.3833333 ir,padai,Padai,04,,31.2405,61.7375 ro,danulesti,Danulesti,40,,45.516667,26.95 cn,kaochuan,Kaochuan,10,,38.216667,116.533333 de,hohenpeissenberg,Hohenpeißenberg,02,,47.8,11 fr,saint-martin-le-hebert,Saint-Martin-le-Hébert,99,,49.512224,-1.617201 us,roseland,Roseland,SC,,33.5433333,-81.6747222 ph,camanbugan,Camanbugan,30,,10.833333,122.533333 sd,runchol,Runchol,32,,6.55,29.9 us,sims,Sims,TX,,30.6661111,-96.5513889 cn,duanjiaji,Duanjiaji,15,,35.718333,108.129722 us,smyrna,Smyrna,WA,,46.8394444,-119.6611111 cn,houjiangqiao,Houjiangqiao,11,,25.373056,111.726111 kz,yeski-bugun',Yeski-Bugun',14,,46.2,61.283333 ru,samoylovka,Samoylovka,09,,50.847733,37.066016 de,haidvocking,Haidvocking,02,,48.25,12.116667 so,magdad,Magdad,01,,3.5833333,44.2 kh,bos khnor,Bos Khnor,02,,12.1833333,105.3333333 fi,saarlanti,Saarlanti,15,,61.766667,24 ph,pagina,Pagina,11,,9.6505,124.3666 us,oak terrace,Oak Terrace,FL,,27.8388889,-81.9775000 ru,stepnovskiy,Stepnovskiy,84,,49.94314,45.814874 cn,yuxin,Yuxin,04,,32.031073,120.784684 zr,magombo,Magombo,09,,3.9166667,27.9 id,blunyah,Blunyah,10,,-7.764444,110.367222 cn,baishuiji,Baishuiji,02,,27.682222,119.6525 mp,highlands,Highlands,17,,-20.2747222,57.5111111 ua,svalyava,Svalyava,25,16507,48.548533,22.995782 jp,mikazuki,Mikazuki,13,,34.966667,134.45 es,narganes,Narganes,34,,43.337235,-4.554233 nl,oud-appelscha,Oud-Appelscha,02,,52.95,6.333333 se,hisingsviken,Hisingsviken,28,,58.008333,11.483333 pt,santa comba dao,Santa Comba Dão,22,,40.398559,-8.131601 kh,phumi sayav,Phumi Sayav,04,,11.4,104.7666667 mg,mahabo,Mahabo,02,,-22.2833333,46.25 sd,faki mustafa,Faki Mustafa,27,,14.7666667,32.15 al,vakumone,Vakumonë,50,,41.2719444,20.06 pk,merihang,Merihang,04,,33.261263,72.858609 ru,arkhangelskiye klyari,Arkhangelskiye Klyari,73,,55.1999,49.0898 id,bilekuwur,Bilekuwur,17,,-8.8335,116.4144 az,kyurdalilyar,Kyurdalilyar,62,,40.388611,46.251111 id,banteran wetan,Banteran Wetan,07,,-7.361389,109.268889 ng,ukpana,Ukpana,21,,4.588002,7.828558 tr,ulus,Ulus,68,,39.939561,32.85339 id,bungkan lor,Bungkan Lor,07,,-7.334167,110.418333 ph,luca,Luca,30,,11.166667,123.016667 lt,devoynyantsy pervoye,Devoynyantsy Pervoye,57,,54.8333333,24.25 ir,bozar-e bala,Bozar-e Bala,29,,28.747222,56.540833 sy,dahr el kebir,Dahr el Kébîr,12,,35.6,36.5166667 cz,landstrassen,Landstrassen,87,,49.883333,13.7 ma,ait ibrereur,Aït Ibrereur,55,,31.437854,-6.024981 cn,heshangbi,Heshangbi,24,,39.619439,112.057558 lk,dodangollegama,Dodangollegama,32,,7.8166667,80.15 sd,al qowez,Al Qowez,27,,15.3791667,32.8677778 al,letani i siperm,Letani i Sipërm,43,,41.1508333,20.0533333 sd,sabun,Sabun,33,,13.1833333,24.8 ir,kalateh-ye yusefabad,Kalateh-ye Yusefabad,42,,33.744835,59.223845 ru,rodnikovo,Rodnikovo,85,,58.655852,40.931524 za,batshabela,Batshabela,03,,-26.838931,27.849463 zm,itwi,Itwi,03,,-15.35,22.85 kr,wikkori,Wikkori,06,,37.7181,127.7988 au,sutton grange,Sutton Grange,07,,-36.983333,144.366667 tr,yesilkoy,Yesilkoy,61,,40.795799,40.048128 ve,guamachito,Guamachito,12,,8.2897222,-67.4922222 ru,pushkareva,Pushkareva,93,,51.79275,115.396744 zm,mungoza,Mungoza,06,,-14.4333333,31.8833333 th,ban nong son,Ban Nong Son,51,,14.35,100.116667 ph,nambaran,Nambaran,J7,,17.442524,121.521446 cn,gaoquan,Gaoquan,03,,29.532815,115.536813 br,sitio sao adele,Sítio São Adele,27,,-23.348401,-46.637849 kr,chungmaul,Chungmaul,13,,37.086667,126.803333 af,jangali,Jangali,28,,32.966007,67.187107 kp,chasandong,Chasandong,07,,38.7763889,126.3747222 ir,shumdeh,Shumdeh,04,,28.5674,61.1868 cz,spittelgrund,Spittelgrund,83,,50.830775,14.832503 ua,staraya emetovka,Staraya Emetovka,17,,46.731549,30.597157 cz,prikazy,Prikazy,84,,49.643338,17.145349 co,la codicia,La Codicia,12,,8.166667,-76.1 ga,kantsaga,Kantsaga,02,,-1.7166667,14.3333333 ma,agni,Agni,47,,30.993482,-8.928869 pk,ali mast,Ali Mast,03,,34.669729,72.047185 gr,pidna,Pidna,16,,40.3755556,22.5783333 th,ban non yat,Ban Non Yat,76,,16.921584,102.876222 cd,lomba,Lomba,02,,-.383333,23.283333 ru,srednyaya sakala,Srednyaya Sakala,29,,52.633333,87.35 th,ban lang khao,Ban Lang Khao,46,,13.093084,101.336111 vn,tuc mac,Tuc Mac,16,,20.433333,105.483333 bg,drandanovo,Drandanovo,39,,42.6166667,26.5666667 ir,razmqan,Razmqan,43,,37.314649,57.909311 kr,ongjongni,Ongjongni,03,,35.358611,127.299722 km,mlalouankoudjou,Mlalouankoudjou,02,,-11.8652778,43.4588889 dk,brolos,Broløs,19,,56.601482,9.903187 ci,dyotrou,Dyotrou,78,,7.277376,-7.487955 cn,shuiwenhsu,Shuiwenhsü,16,,22.683333,110.979722 ba,brlog,Brlog,01,,44.7941667,16.66 co,el porvenir,El Porvenir,27,,9.4,-75.453033 ml,agaminan taoussa,Agaminan Taoussa,08,,16.4166667,-3.1833333 eg,nag` el `aqula,Nag` el `Aqûla,10,,27.6736111,30.6972222 pe,tahuapalca,Tahuapalca,08,,-14.8608333,-71.6383333 sl,motuo,Motuo,03,,7.6144444,-12.0463889 mm,man lu-hsaw,Man Lu-hsaw,11,,23.2166667,98.2333333 cn,qingshui xiang,Qingshui Xiang,06,,35.833089,102.540261 at,unterganserndorf,Unterganserndorf,03,,48.35,16.733333 vu,ikeupo,Ikeupo,15,,-19.4833333,169.3166667 ec,inca,Inca,10,,-2.0,-80.6166667 sy,kari sud,Kari Sud,01,,36.9638889,41.0833333 id,manado tua 2,Manado Tua 2,31,,1.6229,124.7048 de,wornershof,Wörnershof,01,,48.716667,9.433333 fi,hyrynsaimi,Hyrynsaimi,08,,64.666667,28.533333 ru,krapivna,Krapivna,42,,59.393926,32.710229 ru,yama,Yama,53,,54.630602,77.512632 ng,bunsura,Bunsura,23,,11.19387,8.402031 ru,sinnitsy,Sinnitsy,47,,54.869722,38.757222 gr,roidhon,Róïdhon,28,,37.7666667,20.8666667 bo,jalsuri,Jalsuri,05,,-17.7666667,-66.95 ve,coraboda,Coraboda,02,,9.7833333,-65.35 in,chhabba purwa,Chhabba Purwa,36,,27.214,79.899 th,ban non sang,Ban Non Sang,73,,16.911611,104.707028 us,hardscrabble,Hardscrabble,OH,,40.2750000,-81.8263889 pt,ponta da garca,Ponta da Garca,23,,37.716667,-25.366667 mg,ankisiny,Ankisiny,06,,-18.4333333,45.1333333 pk,bazo kili,Bazo Kili,01,,33.616545,71.760624 id,ambulu,Ambulu,08,27503,-8.3504,113.6069 es,cortez de pallas,Cortez de Pallas,60,,39.25,-.933333 ru,dubovaya gora,Dubovaya Gora,90,,56.551395,55.673194 bd,puglapeer,Puglapeer,83,,25.8166667,89.15 dz,el aioun,El Aïoun,24,,36.6,5.65 mm,thategon,Thategon,09,,17.65,96.6 cn,cuiling,Cuiling,08,,51.6,123.983333 ma,ech chidmia,Ech Chidmia,47,,31.96,-7.58 ro,cotu siretului,Cotu Siretului,04,,46.683333,26.933333 la,ban mokphay,Ban Môkphay,07,,19.915556,101.146667 ua,berdjansk,Berdjansk,26,,46.766296,36.798822 tg,ayaouo kope,Ayaouo Kopé,17,,6.55,1.5 cn,nyizhe,Nyizhê,14,,31,89.066667 us,cape elizabeth,Cape Elizabeth,ME,8999,43.5636111,-70.2005556 kr,tokbangi,Tokbangi,13,,37.165833,126.814722 ir,bon cheshmeh,Bon Cheshmeh,29,,28.06688,58.87124 id,mamangkok,Mamangkok,38,,-4.9236,119.7602 cn,watan,Watan,04,,33.808333,119.416667 sk,u privary,U Privary,08,,49.4833333,18.7333333 iq,soran,Soran,18,,35.3063889,44.8280556 gb,yervilton,Yervilton,I9,,52.566667,1.366667 pk,chak kot wala,Chak Kot Wala,04,,30.510092,71.89693 ru,svetlovodsk,Svetlovodsk,22,,43.901389,43.178056 bg,bebrovo,Bebrovo,46,,42.95,26.0166667 no,holvik,Holvik,10,,64.6,11.3 bo,ortario,Ortario,04,,-17.0166667,-68.05 bt,ta-ga-na,Ta-Ga-Na,08,,27.0666667,89.8833333 mx,rancho negro,Rancho Negro,25,,25.666667,-108.15 hn,el rio,El Río,02,,13.3166667,-86.9666667 cn,guangwayuan,Guangwayuan,30,,22.624824,114.059639 cn,hsiaokangtzu,Hsiaokangtzu,08,,47.191667,124.234722 de,plaika,Plaika,02,,48.483333,12.383333 cn,dikou zhen,Dikou Zhen,07,,26.750018,118.465011 us,moomaw heights,Moomaw Heights,VA,,37.2902778,-80.0111111 zm,kankomba,Kankomba,06,,-11.8,32.5666667 us,harvard,Harvard,MA,,42.5000000,-71.5833333 in,hamidpur,Hamidpur,36,,26.3296,79.3517 us,collins,Collins,MT,,47.9283333,-111.8094444 fi,nilsby,Nilsby,15,,60.333333,22.416667 mx,perla,Perla,07,,25.933333,-100.95 cn,milinhsien,Milinhsien,14,,29.2,94.083333 pk,goth khoati,Goth Khoati,02,,25.432412,67.107686 mx,rancho el coyote,Rancho El Coyote,26,,27.766667,-109.516667 ma,takeltoumt,Takeltoumt,55,,30.784438,-8.341244 mn,aborahu hural,Aborahü hural,14,,44.3833333,105.55 tn,douar el haj ahmed,Douar el Haj Ahmed,27,,36.602222,10.278889 af,muhammado,Muhammado,23,,32.093001,65.873259 ru,novotitarovskaya,Novotitarovskaya,38,22630,45.237565,38.98059 pk,basti nanak,Basti Nanak,04,,30.846658,72.114577 al,gjorme,Gjormë,43,,41.1866667,20.0166667 cn,juzu,Juzu,02,,30.325216,119.581126 ga,moungoundi,Moungoundi,05,,-2.95,11.4166667 se,suoppat,Suoppat,14,,66.3,20.516667 ua,mikhaylovka pervaya,Mikhaylovka Pervaya,07,,50.072222,36.535833 pk,chak one hundred seventy eb,Chak One Hundred Seventy EB,04,,30.185714,72.515824 lk,kovulwewa,Kovulwewa,32,,7.4333333,80.1833333 hu,balazsdulo,Balazsdulo,04,,48.25,21.6 tr,ovaakcakoy,Ovaakçaköy,16,,40.297617,29.059023 eg,kafr el-sheikh,Kafr el-Sheikh,21,,31.1113889,30.9363889 pk,basti kachah,Basti Kachah,04,,29.497716,70.979342 cn,zhangli,Zhangli,32,,32.176147,102.06928 ch,weesen,Weesen,08,,47.13534,9.098541 ng,sendeye,Sendeye,26,,7.016667,8.9 in,mentada,Mentada,02,,18.316667,83.233333 us,gaines junction,Gaines Junction,PA,,41.7472222,-77.5738889 us,shore acres,Shore Acres,NY,,42.1502778,-79.3802778 bd,north nasaraddi,North Nasaraddi,80,,23.5166667,90.7166667 ir,ablalu,Ablalu,33,,38.599,46.9065 mx,tanimul,Tanimul,30,,21.516667,-97.85 gr,kranokhorion,Kranokhórion,14,,41.0666667,24.4833333 us,merritt,Merritt,OK,,35.3697222,-99.5050000 ru,berezovka,Berëzovka,76,,53.668194,38.571708 ir,shahrak-e mohajerin,Shahrak-e Mohajerin,05,,30.32,50.9746 sk,tomek,Tomek,02,,48.5666667,17.1 ru,mtesh,Mtesh,60,,58.114012,27.640126 kp,yonghungcham,Yonghungcham,11,,40.0158333,126.1647222 mg,morarano,Morarano,03,,-15.8666667,48.7666667 ru,tukhakala,Tukhakala,28,,65.694695,30.77401 co,cerrazon,Cerrazón,02,,6.676944,-76.314167 ba,krike,Krike,01,,44.3516667,17.5338889 fr,pleynes,Pleynes,98,,45.109926,4.348111 ru,mnogopolnyy,Mnogopolnyy,38,,44.966667,37.433333 pt,monte da touca,Monte da Touca,06,,40.088486,-7.421343 ru,zlydino,Zlydino,41,,52.080556,35.060556 de,moschwitz,Moschwitz,15,,50.633333,12.15 kz,samai-kuzha,Samai-Kuzha,04,,48.916667,54.283333 om,makhsain,Makhsain,00,,19.0,56.9166667 us,riverside,Riverside,IL,,41.8350000,-87.8227778 pk,mohanawala,Mohanawala,04,,29.3003,70.747756 ir,ghaffar kandi,Ghaffar Kandi,32,,38.9555,47.9634 cn,tungtai,Tungtai,02,,28.713657,121.366067 fr,tarzy,Tarzy,98,,46.381905,2.854093 mx,cruz bailadora,Cruz Bailadora,20,,16.283333,-96.983333 la,ban thaophang,Ban Thaophang,18,,21.013056,102.229167 cm,mbotakoum,Mbotakoum,10,,6.1333333,11.2833333 pl,karczyce,Karczyce,72,,51.103029,16.744641 my,kampung kuala semir,Kampung Kuala Semir,02,,5.846254,100.633972 pk,wahur goth,Wahur Goth,05,,27.290805,68.266454 cn,tianlaotai,Tianlaotai,12,,30.371649,112.522503 de,oberburg,Oberbürg,02,,49.066667,11.55 de,unterrauhen,Unterrauhen,01,,47.933333,9.65 ru,rzhakso-semenovka,Rzhakso-Semënovka,72,,52.2572,41.9832 dz,douar oulad boudali,Douar Oulad Boudali,51,,35.5130556,0.9102778 th,ban mai ngae,Ban Mai Ngae,01,,19.27425,97.962695 ir,badi` oz zaman,Badi` oz Zaman,09,,34.102862,48.498522 es,valdealmendras,Valdealmendras,54,,41.145503,-2.65696 de,glowitz,Glowitz,12,,54.316667,13.45 ru,belogubtsevo,Belogubtsevo,77,,56.486944,33.401111 om,sidaira,Sidaira,06,,22.5775,58.0236111 gr,melissia,Melíssia,38,,38.1833333,22.0666667 ru,sibirkovyy,Sibirkovyy,61,,47.4164,42.0168 mg,ambahibe,Ambahibe,03,,-18.3666667,44.5333333 de,radelandsiedlung,Radelandsiedlung,11,,52.05,13.55 zm,kenan,Kenan,07,,-9.2666667,32.5166667 bi,gitibu,Gitibu,11,,-3.1869444,30.575 de,kleefeld,Kleefeld,06,,52.366667,9.783333 gt,el suj,El Suj,08,,15.378056,-91.336667 id,fingkoe,Fingkoe,18,,-9.268889,124.5975 ir,chogha chubin,Chogha Chubin,13,,34.388023,46.343423 cn,leiwukeng,Leiwukeng,02,,29.964436,119.813167 cz,stanislavice,Stanislavice,85,,49.758577,18.545122 no,gronland,Grønland,06,,61.3,12.483333 ru,garazh,Garazh,85,,59.533333,45.45 co,derrumbo,Derrumbo,09,,2.233333,-76.716667 es,curchiaga,Curchiaga,59,,43.350714,-2.504496 cn,qingquan,Qingquan,01,,30.976321,118.02898 tw,kotzuhu,Kotzuhu,04,,24.75,121.0333333 cn,liuzhen,Liuzhen,10,,37.633333,116.066667 ru,krutaya,Krutaya,71,,57.2537,61.7506 af,abdak-e balinah,Abdak-e Balinah,05,,34.874713,66.543614 pk,garang,Garang,03,,34.57749,73.087018 us,oil city,Oil City,MI,,43.6108333,-84.5883333 lv,vale,Vale,30,,57.5166667,25.6666667 at,schlusslberg,Schlusslberg,04,,48.216667,13.866667 ru,lomy,Lomy,60,,56.1207,29.7539 kz,kurylysshy,Kurylysshy,02,,43.271389,76.879167 pl,wola kalkowa,Wola Kalkowa,74,,52.127491,19.622968 cn,dashuigou,Dashuigou,15,,33.017284,105.525485 th,ban klang nuea,Ban Klang Nuea,02,,18.64,98.8815 cz,zvole,Zvole,82,,50.364581,15.978388 vn,tou morong,Tou Morong,55,,14.883333,107.983333 id,sariinten,Sariinten,30,,-6.601667,106.765556 mm,loi-kiu-ti,Loi-kiu-ti,11,,20.4166667,99.1166667 ir,kazogi,Kazogi,43,,37.094816,57.553558 ua,verbin,Verbin,02,,51.705323,32.800627 kz,kizyl-mechet',Kizyl-Mechet',07,,49.633333,51.9 vn,ban foc,Ban Foc,02,,22.416667,105.916667 ru,petrozavadovka,Petrozavadovka,67,,51.36711,44.106142 ye,sharj al-sharif,Sharj al-Sharif,04,,15.3833333,48.4833333 tr,zerziya,Zerziya,65,,37.838333,43.218611 uz,kirovo,Kirovo,03,,40.4358333,70.6102778 cn,libian,Libian,30,,22.223848,112.766413 tr,hanculiz,Hanculiz,65,,37.977222,44.119444 gt,brisas azules,Brisas Azules,17,,14.85,-91.783333 tz,mofu,Mofu,04,,-8.2833333,36.3333333 zr,kongolo-kasuki,Kongolo-Kasuki,03,,-5.5666667,22.1333333 ru,koshcheyevo,Koshcheyevo,83,,55.933333,40.6 kr,sinni,Sinni,05,,37,128.15 us,kellnersville,Kellnersville,WI,,44.2258333,-87.8022222 id,kalijambu satu,Kalijambu Satu,07,,-7.1104,109.2079 us,date,Date,SD,,45.3672222,-102.6791667 my,pengkalan kerian,Pengkalan Kerian,13,,5.683333,102.483333 mx,pahuatlan del valle,Pahuatlán del Valle,21,,20.283333,-98.15 za,winterstrand,Winterstrand,05,,-33.094737,27.790962 kr,sudongni,Sudongni,16,,34.371389,126.933889 fr,noel-cerneux,Noël-Cerneux,A6,,47.103384,6.661735 vn,tan hoa,Tân Hoa,17,,22.407571,105.177567 gr,filippou,Filíppou,45,,35.0333333,25.2333333 ph,bayabas,Bayabas,56,,6.9,124.133333 cn,antianpo,Antianpo,30,,22.075977,110.81327 lb,juniyah,Juniyah,05,96322,33.9808333,35.6177778 ne,waze,Wazé,03,,13.5333333,3.1666667 pl,niemce,Niemce,75,,51.359909,22.632352 af,shinkay kelay,Shinkay Kêlay,29,,31.728889,68.772222 si,gyertyanos,Gyertyános,09,,46.5547222,16.4 iq,basta,Basta,05,,36.3347222,45.1936111 id,jeruwile,Jeruwile,17,,-8.7962,116.4381 ru,novaya dmitriyevka,Novaya Dmitriyevka,39,,56.982778,95.623333 id,pandai,Pandai,17,,-8.5488,118.4713 us,hilltop,Hilltop,TN,,35.3747222,-86.3594444 ng,iwuru obiontan,Iwuru Obiontan,22,,5.420663,8.176812 be,oppuers,Oppuers,01,,51.066667,4.25 ir,ramileh,Ramileh,15,,30.9721,49.4519 id,angke,Angke,04,,-6.1443,106.7954 pk,janua,Janua,04,,31.7675,74.484444 us,yarnaby,Yarnaby,OK,,33.7908333,-96.2566667 ir,kyaraly,Kyaraly,33,,38.5482,46.694 at,unterreitbach,Unterreitbach,04,,48.283333,13.8 ru,venejarvi,Venejärvi,28,,62.6,36.316667 vn,sam linh,Sâm Linh,29,,15.45,108.666667 se,simrishamn,Simrishamn,27,,55.55,14.333333 pk,maiun,Maiun,07,,36.252773,74.426727 tw,shaochia,Shaochia,04,,22.4166667,120.8333333 cd,luliba,Luliba,12,,-3.2,28.216667 sa,az zurqa,Az Zurqa,02,,20.1,41.283333 bd,kazirkona,Kazirkona,80,,23.5166667,90.7333333 cn,huixihe,Huixihe,11,,29.053685,110.90667 cn,shangliuyu,Shangliuyu,26,,33.319359,107.580093 kr,kongdarami,Kongdarami,13,,37.233611,127.448056 pk,garahi,Garahi,02,,26.640983,65.678648 pl,rudlowo,Rudlowo,85,,54.370198,19.833143 gh,mpenkuro,Mpenkuro,09,,5.9166667,-1.85 my,padang terap,Padang Terap,02,,6.301881,100.65759 gh,odumsi,Odumsi,08,,5.85,-0.05 ro,iapa,Iapa,25,,47.933333,23.833333 dk,strandlyst,Strandlyst,20,,55.4,11.233333 md,durlesti,Durlesti,57,,47.017778,28.7625 gb,notgrove,Notgrove,E6,,51.866667,-1.833333 fm,palikir,Palikir,02,,6.9166667,158.15 ma,moha ou lahousine,Moha ou Lahousine,48,,32.113426,-4.366339 th,ban tha khanon,Ban Tha Khanon,60,,9.030195,98.952861 az,mammadbayli,Mammadbayli,69,,39.159046,46.808645 ao,tchaquengue,Tchaquengue,14,,-10.646267,22.220048 cn,shuiqian xiang,Shuiqian Xiang,07,,26.466594,116.743152 fi,thusby,Thusby,13,,60.416667,25.033333 cn,loyanghsien,Loyanghsien,09,,34.683611,112.453611 ru,korobovshchina,Korobovshchina,33,,58.127696,49.376353 lk,velanai,Velanai,31,,9.6333333,79.9 ru,sosnovyy nos,Sosnovyy Nos,39,,53.083333,92.95 au,wyandra,Wyandra,04,,-27.25,145.983333 za,manelsdam,Manelsdam,05,,-31.961276,26.102463 id,karangpucung,Karangpucung,08,,-8.3165,112.408 mg,besaony,Besaony,03,,-16.4833333,47.1666667 pl,laskowka,Laskowka,80,,49.856388,22.288103 ug,kimole,Kimole,47,,1.5166667,32.45 cn,gonghe xiang,Gonghe Xiang,08,,44.11108,130.204839 do,loma bonita,Loma Bonita,29,,18.9333333,-69.4833333 mg,ambalakitata,Ambalakitata,03,,-15.7166667,47.2333333 co,ararac,Ararac,01,,-.8,-72.333333 lb,mazra`at matar,Mazra`at Matar,01,,34.1,36.0833333 kr,nammegi,Nammegi,05,,36.566667,127.766667 tr,yaylapazari,Yaylapazari,78,,36.492651,32.945908 de,hangard,Hangard,09,,49.383333,7.216667 mx,dona margarita,Doña Margarita,30,,18.35,-95.033333 th,ban huai pao yong,Ban Huai Pao Yong,02,,18.452806,98.764195 cg,tsoundi,Tsoundi,07,,-4.7241667,13.2744444 ng,kaldangari,Kaldangari,27,,11.868066,14.213646 fr,orschwihr,Orschwihr,C1,,47.935292,7.233407 mq,tartane,Tartane,00,,14.75,-60.9166667 mx,el fuenteno,El Fuenteño,22,,20.9,-100.1625 mg,anjohibe,Anjohibe,03,,-14.6833333,48.7666667 ru,sarannoye,Sarannoye,92,,55.315833,166.136389 co,la ardita,La Ardita,02,,5.851778,-75.66066 sn,kerfari,Kerfari,08,,15.2666667,-15.85 ru,politovskiy,Politovskiy,84,,50.0032,41.8345 us,hamburg,Hamburg,OH,,39.6544444,-82.6608333 la,ban sene keo,Ban Sene Keo,01,,14.466667,106.933333 mz,sabraba,Sabraba,01,,-12.3386111,38.3338889 tr,tataryeniyapan,Tataryeniyapan,50,,39.03966,34.554136 fi,tiskarla,Tiskarla,15,,60.566667,23.216667 bg,duzhdevitsa,Duzhdevitsa,58,,42.3291667,22.565 ph,ichon,Ichon,59,3821,10.109722,124.901667 ru,kamyshevatskaya,Kamyshevatskaya,38,5201,46.413159,37.956316 ua,bezruchkov,Bezruchkov,18,,49.866667,34.133333 ug,bugobi,Bugobi,78,,0.7166667,33.7719444 vn,ban pung,Ban Pung,05,,22.766667,106.666667 gr,prodhromos,Pródhromos,07,,41.0319444,22.1908333 mm,yawngbre,Yawngbre,11,,22.85,99.4166667 my,sungai choh,Sungai Choh,12,,3.347,101.5926 bi,kiyenzi,Kiyenzi,02,,-3.4527778,29.4163889 om,as sayh,As Sayh,02,,24.2158333,56.8275 ir,chah-e sharaf,Chah-e Sharaf,07,,27.4488,53.1361 ir,takht-e chaman,Takht-e Chaman,07,,30.3547,52.7116 ge,kanda,Kanda,19,,41.9030556,44.6033333 lk,alawala,Alawala,33,,7.2,80.3 kz,pervogo maya,Pervogo Maya,13,,51.85,60.4 sa,thadik,Thadik,10,,25.289474,45.866351 do,hoyo largo,Hoyo Largo,20,,19.0833333,-69.55 ru,zagrebino,Zagrebino,80,,57.327604,53.166707 lv,priyedayne,Priyedayne,25,,56.975,23.8977778 fr,la poujade,La Poujade,97,,45.076356,1.390444 de,pischelsdorf,Pischelsdorf,02,,48.433333,11.466667 hr,vagovina,Vagovina,01,,45.7788889,16.6783333 us,douglas,Douglas,NE,,40.5955556,-96.3872222 id,putjung 3,Putjung 3,07,,-7.093,110.4126 es,tudelilla,Tudelilla,27,,42.300234,-2.117487 ng,makuda,Makuda,29,,12.418681,8.432528 no,vestby,Vestby,06,,61.183333,12.15 cn,machuanzi xiang,Machuanzi Xiang,05,,42.86193,130.396128 ht,nan malgre,Nan Malgré,11,,18.5,-72.6333333 ca,waterloo,Waterloo,08,110800,43.466667,-80.533333 ro,isaia,Isaia,23,,46.935833,28.0075 cg,bouloupesse,Bouloupesse,07,,-1.9691667,12.6683333 de,klein stubben,Klein Stubben,12,,54.316667,13.3 pk,ali nawaz mughairi,Ali Nawaz Mughairi,05,,27.561354,68.011033 fr,loussous,Loussous,B3,,43.652941,.073357 do,la gorda,La Gorda,14,,19.45,-69.9166667 sl,keika,Keika,03,,7.5766667,-12.3055556 in,nimbavda,Nimbavda,16,,17.466667,74.866667 cn,shuguang,Shuguang,04,,31.271919,118.982402 ba,stara leskovaca,Stara Leskovaca,02,,44.7947222,19.2733333 lk,katiramarasinnakulam,Katiramarasinnakulam,31,,8.8,80.4666667 pk,baba kartar singh,Baba Kartar Singh,04,,30.434722,73.409722 am,songyur,Songyur,07,,40.6327778,43.8705556 cn,xiamen,Xiamen,15,,35.520985,105.736525 ru,patrikanvaara,Patrikanvaara,28,,65.2,32.733333 mk,adzinci,Adzinci,97,,42.2547222,21.8502778 br,sitio estori palma,Sítio Estori Palma,27,,-23.279498,-46.677872 ng,korobo,Korobo,54,,8.85,5.25 ir,khalassera,Khalassera,08,,37.6847,49.0017 at,steindl,Steindl,06,,46.9,15.966667 jp,fuji,Fuji,37,240017,35.15,138.65 pt,ferral,Ferral,02,,40.891187,-8.542583 ru,yasnyy,Yasnyy,30,,52.6487,135.7959 eg,`izbat fudah,`Izbat Fudah,21,,31.1777778,31.1694444 bd,faikan,Faikan,82,,22.35,89.05 ir,qal`eh-ye isun,Qal`eh-ye Isun,42,,35.440813,61.087754 lk,kanukkeni,Kanukkeni,31,,9.2166667,80.8 mg,andohanimendranomavo,Andohanimendranomavo,02,,-21.6166667,47.1 ro,vorona noua,Vorona Noua,07,,47.6,26.633333 ir,azraq hashish,Azraq Hashish,15,,31.3067,48.4026 it,isola bella,Isola Bella,07,,41.55,12.8 mx,xhitey,Xhitey,15,,19.993333,-99.531944 kp,wosongni,Wosongni,07,,38.4377778,125.8011111 jp,shindo,Shindo,44,,38.171111,140.292778 pk,akkare,Akkare,04,,31.961134,71.125665 mx,crucillal,Crucillal,19,,26.654167,-100.224167 th,ban mae yae ta,Ban Mae Yae Ta,01,,18.283333,97.65 al,stajke,Stajkë,49,,41.9872222,19.5872222 tr,husnuyan,Hüsnüyan,12,,39.410498,41.003829 kz,bikktesin,Bikktesin,16,,53.481111,68.931389 ua,sadzhevka,Sadzhevka,22,,49.280615,26.151238 us,indian lake estates,Indian Lake Estates,LA,,32.5516667,-92.2391667 tr,citler,Çitler,14,,40.707603,32.070472 ir,pai qal`eh,Pai Qal`eh,29,,30.2607,55.4784 af,woghejam,Woghejam,27,,34.425833,67.683889 ir,tarsi,Tarsi,35,,36.442436,52.780241 kz,fabrichnoy,Fabrichnöy,01,,43.161667,76.411389 pk,mari puadhi,Mari Puadhi,04,,30.971515,70.780728 ao,ngio,Ngío,12,,-9.25584,15.952205 ir,tuy sina,Tuy Sina,01,,36.0751,45.5009 id,perendek,Perendek,17,,-8.7767,116.2727 my,kampong banggol lunas,Kampong Banggol Lunas,13,,5.333333,103.083333 ng,oraukwu,Oraukwu,25,,6.076477,6.970803 pg,matapau,Matapau,18,,-3.35,143.0 mx,tanlacuc,Tanlacuc,24,,21.65,-99.333333 ua,yanzhelovka,Yanzhelovka,02,,52.296704,32.569789 sb,kombau,Kombau,08,,-9.6166667,159.6666667 gt,el curro,El Curro,12,,16.533333,-90.466667 kp,komabol,Komabol,06,,38.1816667,125.4133333 ua,pasieczna,Pasieczna,06,,48.571524,24.43003 cn,wangniuching,Wangniuching,08,,46.156389,126.968611 ht,potorien,Potorien,08,,18.4166667,-74.35 kp,sagijomdok,Sagijomdok,17,,41.2886111,129.3616667 ru,novgorodskoye,Novgorodskoye,23,,54.840052,20.845909 sy,mardidu,Mardidu,02,,35.5333333,35.9333333 ru,seredka,Serëdka,88,,57.9789,37.5863 sy,abou el moujaher,Abou el Moujâher,09,,35.8,37.15 cn,shiyingshang,Shiyingshang,01,,31.066667,117.55 cn,kofan,Kofan,02,,28.633333,119.866667 ar,la rubia,La Rubia,21,,-30.109449,-61.792211 iq,taimar,Taimar,05,,35.3941667,45.3786111 in,khakhusar,Khakhusar,24,,27.6569,72.9164 ru,burkovskaya,Burkovskaya,33,,58.249463,46.810465 mx,sacaba,Sacaba,31,,20.5625,-88.904167 gb,radlett,Radlett,F8,,51.683333,-.316667 td,gori,Gori,07,,13.5666667,15.1833333 id,saarmutiara satu,Saarmutiara Satu,30,,-6.943333,107.468611 mn,tsagaan toyrimiin hiid,Tsagaan Toyrimiin Hiid,18,,46.85,104.6 ru,malyy surmet,Malyy Surmet,55,,53.8,53.366667 kr,chugyokuri,Chugyokuri,16,,35.260939,126.884123 au,kilroo,Kilroo,05,,-33.583333,136.083333 af,malla,Malla,02,,35.579494,63.636149 ph,cayoog,Cayoog,16,,13.6512,122.9241 cn,chingkang,Chingkang,32,,30.888924,105.532944 cn,huluhu,Huluhu,30,,22.923732,115.085285 np,gongrali,Gongrali,00,,28.7,82.7 pe,turpay,Turpay,15,,-10.8877778,-76.8713889 th,ban nong ru khae,Ban Nong Ru Khae,22,,16.133333,102.8 zr,sefu,Sefu,02,,-6.4666667,19.3666667 ru,kurganskaya,Kurganskaya,54,,55.016667,72.65 cn,huaping,Huaping,11,,27.808333,112.437778 ir,anahgari,Anahgari,07,,30.118532,51.437981 co,el silencio,El Silencio,20,,1.57637,-77.09108 mm,yegyawzu,Yegyawzu,09,,17.25,96.0166667 la,ban thon,Ban Thon,17,,19.976944,102.096944 ru,rybezhka,Rybëzhka,42,,59.668146,33.787721 vn,phu vinh,Phú Vinh,27,,13.783333,109.183333 ua,bilychi,Bilychi,15,,49.614224,23.02631 bg,sukhariuka,Sukhariuka,46,,42.8833333,25.7 th,ban na dong tai,Ban Na Dong Tai,06,,18.100556,99.631667 iq,koira kani,Koira Kani,05,,35.9763889,45.0508333 lr,maana,Maana,15,,6.7783333,-10.8058333 ma,tiouit,Tiouit,55,,31.158899,-5.595701 nl,nederasselt,Nederasselt,03,,51.772088,5.744553 br,goulart,Goulart,27,,-21.133333,-50.283333 ir,pariab-e seyd-e mohammad,Pariab-e Seyd-e Mohammad,23,,33.2278,48.4879 kz,tyul'kubas,Tyul'kubas,10,,42.488611,70.288611 kz,kotel'nikov,Kotel'nikov,07,,49.816667,51.233333 ci,somadougou,Somadougou,87,,9.398609,-4.650646 th,ban kham phai,Ban Kham Phai,81,,18.306639,103.507222 uz,qurghontepa,Qurghontepa,01,,40.7266667,72.7591667 es,san vicente,San Vicente,32,,42.685817,-1.32507 it,semelano di sotto,Semelano di Sotto,05,,44.316667,10.966667 ru,georgiyevka,Georgiyevka,53,,54.005556,76.803056 sa,dahu,Dahu,11,,20.11195,42.655341 ec,hacienda ceuceda,Hacienda Ceuceda,10,,-2.2166667,-80.1 be,grand-aa,Grand-Aa,04,,50.716667,5.616667 kh,phumi anlong svay,Phumi Anlong Svay,17,,13.5166667,105.9333333 de,ponickau,Ponickau,13,,51.35,13.766667 iq,`abd hasan al kaza`,`Abd Hasan al Kaza`,01,,33.4491667,44.3277778 us,east farmington,East Farmington,WI,,45.2530556,-92.6972222 gr,filiates,Filiátes,18,2129,39.6011111,20.3119444 ng,ilugboro,Ilugboro,16,,6.787713,3.084661 la,ban thapho tay,Ban Thapho Tay,02,,14.05,105.866667 cn,zhuqudian,Zhuqudian,14,,29.403,94.303 bd,kayetkhali,Kayetkhali,82,,23.2166667,89.25 tw,hsiawuli,Hsiawuli,04,,23.9166667,120.95 kz,tomar,Tomar,11,,52.666667,76.487778 id,djamprit,Djamprit,07,,-7.966667,110.95 se,harstad,Härstad,28,,58.283333,12.4 us,spring valley estates,Spring Valley Estates,GA,,33.9625000,-83.3444444 us,burnett,Burnett,WI,,43.5047222,-88.7069444 ru,pershino,Pershino,90,,57.783782,55.218759 es,valverde de los ajos,Valverde de los Ajos,55,,41.560748,-2.865248 et,ciacu,Ciacu,46,,10.683333,36.366667 vn,ngoc lam,Ngoc Lam,28,,12.933333,109.2 ru,sorevnovaniye,Sorevnovaniye,56,,52.388058,36.315634 us,emory valley,Emory Valley,TN,,36.0269444,-84.2122222 ph,espenanzo,Espenanzo,18,,11.4011,122.5279 pg,eia,Eia,14,,-7.9333333,147.8166667 ng,lumu,Lumu,51,,11.686909,4.68879 jm,california,California,04,,18.0166667,-77.5666667 vu,vousin,Vousin,13,,-15.4666667,166.8833333 mx,la colonia,La Colonia,06,,28.65,-105.666667 ph,camatongo,Camatongo,30,,11.1682,122.5312 es,os,Os,56,,41.873141,.720168 uz,dzhar,Dzhar,10,,39.4494444,67.3666667 hu,fulop-puszta,Fülöp-puszta,10,,47.633333,22.066667 tr,tahtaciorencik,Tahtaciorencik,68,,40.279236,32.138346 id,dusun,Dusun,26,,2.9518,98.6281 kh,phum laak,Phum Laak,16,,13.3166667,103.9333333 ao,camata,Camata,12,,-9.066667,15.966667 af,hajji mohammad karim kalay,Hajji Mohammad Karim Kalay,23,,32.328199,66.229105 de,stockdum,Stockdum,07,,51.183333,7.083333 ru,uspenskoye,Uspenskoye,25,,53.441489,35.101589 ve,puerto cabello del caura,Puerto Cabello del Caura,06,,7.1333333,-64.9833333 et,gombor,Gombor,52,,8.566667,43.4 mx,soyatitla,Soyatitla,20,,18.066667,-96.85 us,indian camp,Indian Camp,OH,,40.0944444,-81.6458333 lr,saindih,Saindih,11,,6.6166667,-9.15 zr,kitabo i,Kitabo I,04,,-6.4333333,24.9333333 id,lumbantonang,Lumbantonang,26,,2.1591,98.6581 ru,nizhnyaya aliya,Nizhnyaya Aliya,93,,52.3,117.616667 ru,fedotovamaki,Fedotovamaki,42,,60.193071,33.88472 ng,kuriyantuba,Kuriyantuba,24,,12.86743,8.641698 ru,snegirevo,Snegirëvo,60,,57.7325,28.2093 id,sekebunar,Sekebunar,30,,-6.896111,107.6875 mx,tesoro,Tesoro,10,,26.233333,-104.966667 id,kalihiang,Kalihiang,31,,2.6659,125.4057 ci,mokta el hadid,Mokta el Hadid,88,,5.323659,-5.389032 jp,otsukawa,Otsukawa,01,,34.9,136.933333 kh,phumi kouk loveang,Phumi Kouk Loveang,02,,11.8166667,105.7833333 cl,natuco,Natuco,14,,-42.642778,-73.816389 de,niendorf zwei,Niendorf Zwei,06,,52.933333,10.566667 lb,ra's bayrut,Ra's Bayrut,04,,33.9,35.4833333 pl,buszkowo,Buszkowo,73,,53.347383,17.863657 br,iacu,Iaçu,05,22665,-12.75,-40.216667 in,kilna,Kilna,11,,31.157778,77.123056 sn,ndiomdi,Ndiomdi,09,,14.05,-16.3666667 ua,tshchenets,Tshchenets,15,,49.788284,23.079907 kr,inje,Inje,06,,38.065556,128.173056 de,monchow,Mönchow,12,,53.85,13.883333 pk,ali afzal shah pathan,Ali Afzal Shah Pathan,05,,26.419972,68.256183 lt,kolesniki,Kolesniki,56,,54.4,24.2166667 us,syner,Syner,PA,,40.3491667,-76.5880556 cn,pingluo,Pingluo,09,,32.829167,112.492222 kg,uzunbulak,Uzunbulak,04,,42.1333333,75.2666667 ro,romini,Romini,39,,44.983333,24.25 ua,yezupil,Yezupil,06,,49.042805,24.780794 sk,dekenes,Dekenes,04,,48.2166667,18.4666667 tw,hsinwenan,Hsinwenan,04,,22.8,120.2333333 br,sitio joao vitorino,Sítio João Vitorino,18,,-23.74,-50.217479 br,carmo do paranaiba,Carmo do Paranaíba,15,26537,-18.983333,-46.35 cn,xiamaqiaotou,Xiamaqiaotou,02,,29.366869,119.772106 cz,dolni cervena voda,Dolni Cervena Voda,84,,50.345669,17.199167 id,tegalrandu,Tegalrandu,07,,-7.3775,110.330556 cn,lichongyang,Lichongyang,01,,30.275,117.472222 cn,jiangtuo,Jiangtuo,32,,31.720219,100.610725 gh,adzanu,Adzanu,08,,5.8833333,0.8 uz,baisuk,Baisuk,12,,38.2061111,67.1986111 us,ocala,Ocala,VA,,36.8600000,-80.6386111 ru,vepreva pustyn,Vepreva Pustyn,88,,56.906259,39.16435 cn,taixing,Taixing,05,,42.58489,129.390217 us,arago,Arago,MN,,47.0511111,-95.1613889 az,avdur,Avdur,65,,39.843889,46.939444 uz,kok-saray,Kok-Saray,14,,41.1166667,70.3 kr,nochon,Nochon,17,,36.121,127.2045 tz,kisogwa,Kisogwa,05,,-3.8858333,30.6202778 et,ciaia,Ciaia,47,,11.3,35.966667 pg,banaranda,Banaranda,09,,-6.4166667,145.8166667 af,akba `alikhel,Akba `alikhel,37,,33.30778,69.851952 si,topolza,Topolza,04,,45.5836111,14.2166667 ph,nassco,Nassco,07,,14.4438,120.5061 us,east butte,East Butte,MT,,46.0113889,-112.4958333 de,oberelchingen,Oberelchingen,02,,48.45,10.083333 lr,bawlike,Bawlike,02,,5.0241667,-7.6575 tg,kloto,Kloto,08,,6.95,0.5666667 us,countryside village,Countryside Village,TN,,35.2266667,-84.8805556 id,citeguh,Citeguh,30,,-7.3372,107.9513 pk,goth yausuf maujai,Goth Yausuf Maujai,05,,27.079001,68.448223 zr,mokobe,Mokobe,09,,-0.0666667,25.25 ve,quebrada del medio,Quebrada del Medio,06,,7.3591667,-66.1466667 ph,padios,Padios,30,,11.246389,123.026389 ee,torremae,Tõrremäe,08,,59.3616667,26.325 tr,hamza fakihli,Hamza Fakihli,85,,41.220831,31.453509 fr,tichey,Tichey,A1,,47.013916,5.283563 ba,balj,Balj,02,,45.2108333,16.5675 ao,samussuia,Samussuia,17,,-7.468346,20.033597 lt,matskantsishki,Matskantsishki,65,,54.5833333,24.6166667 ir,sahmabad,Sahmabad,40,,30.503549,54.216077 cn,poshang,Poshang,29,,23.7,100.016667 ye,hafrah,Hafrah,01,,14.4666667,46.4833333 cn,zhongdian,Zhongdian,09,,33.470773,112.160262 ye,jundan,Jundan,16,,16.0833333,43.9833333 pk,dhri rampur,Dhri Rampur,06,,33.262382,73.756221 mz,regulo zupair,Régulo Zupair,06,,-16.0088889,40.1180556 sd,jimmeza,Jimmeza,28,,5.6877778,31.7952778 id,pulangari,Pulangari,08,,-8.0127,112.7446 de,kirchseelte,Kirchseelte,06,,52.95,8.683333 hu,racszentpeter,Rácszentpéter,08,,47.218162,18.790257 cn,lizhi,Lizhi,32,,31.585645,107.161632 ca,herbert,Herbert,11,,50.433333,-107.216667 iq,qasr shailal,Qasr Shailal,17,,31.6,44.45 ht,lacadonie,Lacadonie,08,,18.45,-73.9666667 ua,belitsa,Belitsa,21,,52.006221,33.765206 cn,hsinotsun,Hsinotsun,08,,49.166667,127.9 mg,ampanimiongana,Ampanimiongana,06,,-24.7,45.3166667 pk,goth mithlar,Goth Mithlar,05,,28.247718,69.169126 id,tenjoraja,Tenjoraja,30,,-6.965833,108.317778 af,saran,Saran,01,,37.290677,70.482163 bg,slawschtiza,Slawschtiza,46,,43.05,24.3333333 bd,senerkhil,Senerkhil,80,,22.8833333,91.3666667 af,qarya-i-cenar,Qarya-i-Cenar,10,,32.704613,64.982367 ph,sambrana,Sambrana,14,,17.8249,121.4449 tr,kamur,Kamür,62,,39.016667,38.95 cz,irritz,Irritz,78,,48.916667,16.4 ru,vtoroy uchastok sovkhoza kultura,Vtoroy Uchastok Sovkhoza Kultura,51,,55.304901,43.675565 fr,la renouliere,La Renoulière,B5,,46.961551,-1.414525 bf,itian,Itian,34,,12.7833333,-2.3666667 ir,chilakhana ashaghi,Chilakhana Ashaghi,33,,38.2421,46.0575 ve,banco,Banco,18,,9.3166667,-69.15 us,white pine,White Pine,MI,,46.7538889,-89.5838889 pg,selalou,Selalou,13,,-2.2,147.1833333 ro,meia,Meia,26,,45.05,23.85 tw,chimi,Chimi,04,,23.5,121.4333333 id,tambelang,Tambelang,08,,-7.883333,113.483333 hr,pecno,Pecno,05,,45.75,15.5166667 mx,san pedro las playas,San Pedro Las Playas,12,,16.825,-99.733333 lk,karimalaiuttu,Karimalaiuttu,31,,8.5166667,81.2 ir,qujur-e sofla,Qujur-e Sofla,33,,37.0446,47.0151 id,banjar jeroagung,Banjar Jeroagung,02,,-8.5571,115.4061 se,gunnarsbo,Gunnarsbo,09,,56.9,16.316667 se,hallersrud,Hallersrud,22,,59.333333,13.516667 ph,margus grande,Margus Grande,70,,5.6425,125.305556 pt,vale,Vale,07,,40.128827,-8.236017 ve,el cristo,El Cristo,06,,6.9666667,-63.3333333 cz,hohentann,Hohentann,81,,50.4552,13.263983 ru,toskliva,Toskliva,32,,59.783333,65.816667 mm,subokkon,Subokkon,10,,23.05,95.5333333 cd,wolaneki,Wolaneki,07,,-3.133333,28.916667 tr,karaevli,Karaevli,37,,41.199565,33.736807 ir,emamiyeh,Emamiyeh,33,,37.675,47.0904 ru,kirja,Kirja,16,,55.081023,46.860906 lk,olaithoduvai,Olaithoduvai,31,,9.0333333,79.8333333 de,jostberg,Jostberg,07,,51.133333,7.35 ru,vyselok tarasov,Vyselok Tarasov,50,,66.214217,46.781935 us,monclova,Monclova,OH,,41.5586111,-83.7330556 us,garrard ranch,Garrard Ranch,ID,,42.3166667,-114.0008333 rs,ljac mahala,Ljac Mahala,00,,42.537778,20.731389 tj,bolgali,Bolgali,03,,39.8333333,68.8666667 al,shenkolla,Shenkolla,50,,41.2391667,19.8711111 sk,tuhrina,Tuhrina,05,,48.9,21.4166667 mz,nantaca,Nantaca,01,,-11.75,40.2072222 br,gomalina,Gomalina,14,,-15.816667,-59.802778 tr,agaca,Agaca,82,,40.73225,32.790565 de,buchleiten,Buchleiten,02,,47.75,11.733333 se,kropphallarna,Kropphällarna,09,,57.7,16.216667 ci,nadiefongo,Nadiefongo,87,,9.783703,-5.141791 hu,ligettanya,Ligettanya,18,,47.94278,22.079975 ci,nounongouonouogo,Nounongouonouogo,87,,10.133333,-5.516667 mz,ualela,Ualela,06,,-14.4205556,39.37 bf,koria,Koria,38,,13.9833333,0.05 kr,jinheungmal,Jinheungmal,12,,37.745,126.507222 us,west leigh,West Leigh,VA,,38.0680556,-78.5783333 cn,gaoguan,Gaoguan,30,,21.661703,112.802127 gw,sincha totala,Sinchã Totala,10,,12.3,-14.3166667 lk,kosukuvadi,Kosukuvadi,31,,9.0166667,79.8666667 cn,zhengjiazhangzi,Zhengjiazhangzi,19,,41.09648,120.01486 af,kuz mirza khel,Kuz Mirza Khel,18,,34.40778,70.684522 cn,chenlou,Chenlou,02,,27.650635,120.505864 pe,hacienda polloquito,Hacienda Polloquito,06,,-7.1333333,-78.3 cn,banchangwan,Banchangwan,32,,27.234562,101.936328 mz,u. cofe,U. Cofe,03,,-23.9294444,35.2558333 de,scheppern,Scheppern,10,,54.3,9.283333 iq,qal`at julan,Qal`at Julan,05,,35.6994444,45.5386111 ph,niug sangahan,Niug Sangahan,60,,5.954722,121.097778 us,floe,Floe,WV,,38.6438889,-81.0125000 cz,doxan,Doxan,88,,50.454235,14.163362 ba,trojinovac,Trojinovac,02,,44.9405556,16.2069444 tn,menzel el heurr,Menzel el Heurr,19,,36.728181,10.957565 us,winthrop beach,Winthrop Beach,MA,,42.3777778,-70.9736111 id,babelan,Babelan,30,,-6.166944,107.042778 pk,ramdani jhalawani,Ramdani Jhalawani,02,,28.809194,68.165947 pk,goth bachal gado,Goth Bachal Gado,05,,24.717222,67.792778 pk,khairowal,Khairowal,04,,31.261898,72.799465 jp,kusukaya,Kusukaya,47,,26.316667,127.866667 th,ban na pa khai,Ban Na Pa Khai,10,,17.513992,100.27137 de,achternholt,Achternholt,06,,53.05,8.15 mz,conge,Conge,05,,-17.6677778,35.0641667 ma,iarhaben,Iârhabèn,55,,31.01779,-6.483176 na,uitspan,Uitspan,39,,-18.8666667,18.6666667 ru,eyk,Eyk,63,,66.033333,117.4 ru,beloomut,Beloomut,47,6971,54.944776,39.339414 dz,lichta,Lichta,00,,29.2166667,0.2 us,ratsville,Ratsville,OH,,41.4716667,-84.0763889 kz,urdabay,Urdabay,07,,49.837778,48.268889 pl,biala pierwsza,Biala Pierwsza,74,,51.273597,18.432083 et,tukhuli,Tukhuli,53,,13.408969,39.113585 iq,waziriyah,Waziriyah,07,,33.37,44.3830556 mx,taravillas,Taravillas,10,,24.3325,-104.012222 br,sao luiz do parahytinga,São Luiz do Parahytinga,27,,-23.233333,-45.333333 ph,busikong,Busikong,G4,,8.059,123.7017 pt,belas,Belas,14,21018,38.777212,-9.260782 kh,phumi kaoh chek,Phumi Kaoh Chek,14,,11.0666667,105.2166667 et,sherifa,Sherifa,51,,9.216667,40.966667 mr,abdallah diori,Abdallah Diori,05,,16.2833333,-13.9 cn,miaoerzui,Miaoerzui,32,,31.58954,107.216566 dz,el djenane,El Djenane,13,,35.1066667,0.9741667 us,sanctuary,Sanctuary,TX,,32.9086111,-97.5838889 cn,langdong zhen,Langdong Zhen,18,,26.361944,108.545278 ar,el cienago,El Cienago,12,,-30.733333,-66.233333 gh,asuanta,Asuanta,02,,6.55,-2.9666667 az,kyurtboragy,Kyurtboragy,11,,40.409916,47.035952 kr,umjipajae,Umjipajae,14,,36.2893,128.9221 es,rajay,Rajay,58,,42.684595,-8.629515 lr,silikai,Silikai,05,,7.3166667,-10.0666667 id,sumberejo,Sumberejo,30,,-7.3931,111.4477 ir,bid gereh,Bid Gereh,05,,30.959775,51.162304 id,banjar buu,Banjar Buu,02,,-8.3358,115.2935 bj,daro-wirou,Daro-Wirou,01,,10.4166667,1.7333333 tr,belce,Belce,03,,38.916667,30.466667 ba,drmica staje,Drmica Staje,01,,43.6763889,17.1416667 th,ban mae ka,Ban Mae Ka,41,,19.05,99.933333 ru,berezinskiy,Berezinskiy,13,,53.656111,60.307778 pe,pampa lino,Pampa Lino,14,,-6.3711111,-79.8308333 ru,krasnoyarovka,Krasnoyarovka,72,,51.650653,42.287415 ng,chibakur,Chibakur,27,,10.737556,12.251141 cn,fulugoumen,Fulügoumen,19,,40.664755,123.902829 pl,montki,Montki,85,,53.835383,20.345571 ir,gormunow,Gormunow,11,,27.4979,56.4244 ru,mikhino,Mikhino,33,,57.3305,50.166 ru,khornvary,Khornvary,16,,55.908297,47.238635 us,chances crossroad,Chances Crossroad,AL,,34.1741667,-87.0586111 cn,xaglho,Xaglho,14,,29.004,92.104 br,juquia-grande,Juquiá-Grande,27,,-23.9771,-47.2265 ru,vysokoye,Vysokoye,05,,49.589,129.1357 pk,mulla khel,Mulla Khel,03,,32.691754,70.825982 ua,volovo,Volovo,25,,48.52458,23.505627 ao,saianvua,Saianvua,18,,-9.791949,20.321633 ua,komarno,Komarno,15,3845,49.627392,23.699516 af,obah chorah,Obah Chorah,27,,34.534444,67.908333 kg,kirovskoye,Kirovskoye,06,,42.6294444,71.5905556 tr,kondudizan,Kondudizan,74,,38.091031,42.062092 af,sar bulaq,Sar Bulaq,40,,34.899396,68.789336 th,ban suphan,Ban Suphan,50,,14.161917,98.950195 zr,kaminania,Kaminania,10,,-3.2666667,26.1 tw,toukou,Toukou,04,,22.0333333,120.7166667 kr,kalchonni,Kalchonni,13,,36.983333,127.233333 kp,taehyangoguchon,Taehyangoguchon,17,,41.5611111,129.5522222 bf,felenga,Félènga,15,,13.7833333,-1.65 am,maralik,Maralik,07,4959,40.5722222,43.8669444 ru,dolgogusevskiy,Dolgogusevskiy,38,,44.802398,39.788379 pk,nusratwala khuh,Nusratwala Khuh,04,,29.638889,72.2625 us,oscar,Oscar,MO,,37.4141667,-91.8302778 kh,sralau,Srâlau,17,,13.7833333,105.5833333 ng,ogbekuma,Ogbekuma,25,,5.954157,6.731248 cn,zhongdong,Zhongdong,03,,26.729662,115.268963 bd,kadim dowhakhola,Kadim Dowhakhola,81,,24.7166667,90.5166667 ir,hich rud,Hich Rud,35,,36.686293,51.344733 ht,capin,Capin,03,,19.7372222,-73.1494444 ir,akhvor badin,Akhvor Badin,26,,35.633333,52.016667 hu,kazar,Kazár,14,2080,48.049524,19.861432 cn,dayuezhai,Dayuezhai,01,,33.333333,115.733333 cn,pinganchengchen,Pinganchengchen,10,,40.048333,117.779722 cn,longzhong,Longzhong,12,,31.993775,112.026635 ng,unguwar galadima,Unguwar Galadima,23,,9.5,8.05 by,usveya,Usveya,07,,55.2333333,29.1 lr,balama,Balama,01,,7.0169444,-9.2491667 pg,weam,Weam,06,,-8.6166667,141.1333333 de,hohenheide,Hohenheide,11,,53.116667,12.333333 us,state road,State Road,OH,,41.3002778,-80.8980556 al,jaupas,Jaupas,40,,40.5763889,20.1302778 tr,canaptal,Canaptal,58,,39.65,36.266667 us,artesian,Artesian,WA,,46.5522222,-120.3533333 my,kampong jidek,Kampong Jidek,13,,5.2006,103.0751 ir,seh korreh,Seh Korreh,23,,33.6298,47.957 gh,pesika,Pesika,08,,6.4666667,0.1166667 pk,addepur,Addepur,04,,30.645935,73.733447 pl,stara dabrowa,Stara Dabrowa,87,,53.421277,15.14298 ml,kara bassa,Kara Bassa,02,,16.8666667,-0.3666667 jp,abuta,Abuta,12,,42.553889,140.757222 cn,mingchiaoshih,Mingchiaoshih,04,,31.566667,118.883333 gf,cokioco,Cokioco,00,,4.9166667,-53.5 ir,alraj,Alraj,34,,34.1187,49.3172 cn,sarzo,Sarzo,32,,32.169009,102.158084 ru,turgosha,Turgosha,42,,59.3276,35.1616 rs,sokolova,Sokolova,00,,43.468611,19.7325 la,ban nongkhang,Ban Nongkhang,03,,20.618056,104.075 bd,kadma,Kadma,83,,24.7833333,89.0333333 mx,salsipuedes,Salsipuedes,10,,22.916667,-105.733333 de,mooshof,Mooshof,02,,48.416667,12.95 et,adi kawna,Adi Kawna,53,,13.499764,39.676356 ci,niaoa,Niaoa,79,,6.290043,-6.131145 es,caserio palacios,Caserío Palacios,57,,40.059129,-6.156693 mm,y-e-gyaung,Y-e-gyaung,10,,24.3833333,94.7666667 ru,sarkun,Sarkun,04,,52.616667,79.666667 de,halfterhauser,Halfterhäuser,13,,50.7,13.116667 ir,tol gerd,Tol Gerd,07,,30.1378,52.0532 in,parsulia,Parsulia,35,,23.85,76.85 cn,yuanyang,Yüanyang,15,,34.8,104.783333 id,teropongbintang,Teropongbintang,30,,-6.820833,107.616389 ru,poludennik,Poludennik,52,,57.516667,31.783333 sl,masanga,Masanga,02,,8.7833333,-11.8333333 mw,kachaje,Kachaje,13,,-13.7666667,33.0666667 no,sorbrandal,Sørbrandal,08,,62.166667,5.566667 sy,tell istabl,Tell Istabl,09,,36.1333333,37.45 la,ban namoun,Ban Namoun,15,,17.143889,106.098611 mz,matula,Matula,09,,-17.0752778,37.8913889 ru,subbotina,Subbotina,20,,52.943,103.2982 ml,nadani,Nadani,07,,14.0166667,-6.1333333 ru,filatovskiy,Filatovskiy,72,,52.179938,42.582115 de,leversbach,Leversbach,07,,50.716667,6.466667 co,fundo bogador,Fundo Bogador,03,,6.51089,-70.971505 kr,midong,Midong,13,,37.8333,127.1353 us,illia,Illia,WA,,46.6761111,-117.5033333 cn,fengjialing,Fengjialing,01,,30.559666,118.60839 br,tiririca,Tiririca,05,,-11.033333,-38.716667 cl,caracol,Caracol,05,,-28.683333,-70.566667 ua,makartetyano,Makartetyano,14,,49.577771,38.923338 fi,juva,Juva,15,,60.733333,21.916667 kp,pyongsong,Pyongsong,15,,39.2463889,125.8719444 ru,poserednoye,Poserednoye,09,,50.7087,38.5626 ru,panovka,Panovka,73,,55.1592,49.7564 id,lempayan,Lempayan,07,,-7.198056,109.416944 se,ravelsnas,Ravelsnäs,03,,62.118056,17.471389 cn,qiagai,Qiagai,15,,34.844963,103.459126 ug,lubale,Lubale,89,,0.1333333,31.8 uz,chinabad,Chinabad,12,,37.4066667,67.1044444 hu,vorosmajor,Vörösmajor,23,,46.967327,17.24472 bf,katanga,Katanga,32,,12.65,-1.7166667 ir,mubarykabad,Mubarykabad,08,,37.375666,49.541883 es,villafeliz,Villafeliz,55,,42.947416,-5.982777 pl,wielacza,Wielacza,75,,50.721117,23.082708 ru,shalayevo,Shalayevo,21,,56.680813,42.766223 us,walters,Walters,WA,,47.0413889,-117.1052778 ru,gikalov-yurt,Gikalov-Yurt,CI,,43.22831,45.733121 ir,molla hoseyn,Molla Hoseyn,04,,31.1092,61.7112 id,kotoranah,Kotoranah,24,,.0104,100.7138 iq,muhammad al `amr,Muhammad al `Amr,06,,33.1033333,44.1144444 ua,verbizh,Verbizh,15,,49.546175,23.895098 gh,anum,Anum,08,,5.95,-0.4333333 sy,darwishiyah,Darwishiyah,11,,34.7583333,37.4791667 ir,jowzan-e nuki,Jowzan-e Nuki,41,,32.803611,59.221667 ml,ngarasso,Ngarasso,06,,12.3833333,-5.0833333 az,lanbaran,Lanbaran,11,,40.219105,47.312438 cu,buenos aires,Buenos Aires,08,,21.9666667,-80.15 cn,aidang,Aidang,30,,25.184722,112.198333 ru,oglobin,Oglobin,84,,49.083333,45.466667 ph,layong,Layong,39,,12.3429,123.677 es,medreguer,Medreguer,60,,38.793343,.034293 af,bazmukhammedkalay,Bazmukhammedkalay,23,,31.085293,66.534261 ru,dolgaya luzha,Dolgaya Luzha,83,,56.14822,40.51455 ie,ballyhean,Ballyhean,20,,53.7833333,-9.3166667 pk,pupi,Pupi,02,,27.968983,63.313297 om,al `adhfayn,Al `Adhfayn,04,,22.5677778,59.1113889 bg,turnen kladenets,Turnen Kladenets,46,,42.9166667,26.1833333 gr,charadras kalyvai,Charádras Kalývai,16,,40.3444444,22.4263889 us,cable,Cable,OH,,40.1702778,-83.6283333 cn,shangchin,Shangchin,16,,22.336111,107.005 la,ban kenggnang,Ban Kènggnang,11,,17.883333,102.616667 pl,sukow,Sukow,78,,51.493729,20.923837 cd,bena ntise,Bena Ntise,04,,-6.5,23.85 ve,la musuy,La Musuy,14,,8.7633333,-70.9416667 ru,lenskiy,Lenskiy,10,,52.3979,32.861976 ru,agirzya,Agirzya,08,,55.580589,57.237323 it,propezzano,Propezzano,10,,42.866667,13.35 fj,nukuvou,Nukuvou,02,,-19.0166667,178.4666667 de,bur-haver,Bur-haver,06,,53.55,8.35 ua,drakula,Drakula,17,,45.620994,29.397195 mx,rancho san cayetano,Rancho San Cayetano,26,,30.383333,-111.183333 pl,wilklow,Wilklow,83,,50.996478,19.294852 ru,vtoroy shirokiy,Vtoroy Shirokiy,61,,49.559167,40.176111 ua,danilovka,Danilovka,11,,44.521894,34.26042 cn,sanchazi,Sanchazi,26,,33.284683,106.063463 al,renes,Renes,43,,40.9433333,19.9691667 fr,autechaux,Autechaux,A6,,47.378119,6.383976 cn,shihtzukou,Shihtzukou,18,,28.427222,106.355556 cn,baiyangtan,Baiyangtan,32,,32.442203,106.41687 id,glagaharoem,Glagaharoem,08,,-8.3321,112.7495 by,berezki,Berëzki,07,,54.7,27.8166667 vn,nam le,Nam Le,19,,22.733333,104.133333 ec,hacienda almendral,Hacienda Almendral,12,,-4.0833333,-79.8 kr,yugumi,Yugumi,17,,36.6519,126.3961 cf,lima,Lima,06,,6.0,18.3833333 ar,las saladas,Las Saladas,05,,-30.759924,-63.203132 af,sudzhi-garbi,Sudzhi-Garbi,06,,32.678459,62.489761 af,sheblan jel,Sheblan Jel,01,,37.394201,70.685848 cn,beiguoyuan,Beiguoyuan,10,,38.773611,114.307778 id,waerambung,Waerambung,18,,-8.4071,120.5327 ua,kasperovtse,Kasperovtse,22,,48.666173,25.844407 id,babakancirumput,Babakancirumput,30,,-6.9375,106.989167 id,pilangsari,Pilangsari,08,,-7.6001,112.7476 id,kalaka,Kalaka,21,,-.843361,122.169089 ir,hoseynabad-e chang `abbasi,Hoseynabad-e Chang `Abbasi,42,,36.0397,59.1595 ir,sar tappeh,Sar Tappeh,37,,37.095206,55.138273 co,bocas de cano claro,Bocas de Caño Claro,11,,7.235833,-76.852222 cd,luhambwe,Luhambwe,04,,-4.716667,25.216667 pk,ghila khurd,Ghila Khurd,04,,33.292092,72.736976 us,whittier,Whittier,IA,,42.0947222,-91.4625000 bo,chichalla,Chichalla,07,,-21.65,-65.9833333 tj,zanoch,Zanoch,01,,37.1925,71.9230556 id,pongkolaero,Pongkolaero,22,,-5.35,121.85 cn,nanpao,Nanpao,10,,39.05,118.316667 vn,lang dao,Làng Dao,02,,21.783333,105.75 ru,vatrai,Vatrai,85,,58.963598,38.41216 id,batoedjadjar,Batoedjadjar,30,,-6.922222,107.493056 af,gandachah,Gandachah,23,,32.395061,65.593175 id,manasuka,Manasuka,30,,-6.564722,107.757222 zr,tshambi,Tshambi,11,,-0.7333333,29.2333333 hn,san antonio de flores,San Antonio de Flores,07,,13.7166667,-86.8833333 zr,bafwagamea,Bafwagamea,09,,1.3666667,26.2666667 cn,miaohu,Miaohu,01,,31.958333,118.2 ru,sredniy urgal,Sredniy Urgal,30,,51.155,132.941944 cn,liuxigou,Liuxigou,26,,33.071703,106.096703 pl,moskorzew,Moskorzew,84,,50.646567,19.931044 eg,el birba,El Birba,24,,26.3416667,31.8416667 ru,mishkina gora,Mishkina Gora,06,,62.131445,48.984942 ph,tagbubungang diot,Tagbubungang Diot,37,,11.1257,124.4028 id,betik,Betik,08,,-7.7957,111.9963 tw,pinlang,Pinlang,04,,21.9666667,120.7166667 pl,kalinowo stare,Kalinowo Stare,81,,52.97283,22.595043 cn,qiangsheng,Qiangsheng,32,,26.914678,101.42733 ro,podu de fier,Podu de Fier,33,,45.65,24.266667 ge,guriant'a,Guriant'a,40,,41.9472222,41.9619444 id,salam,Salam,33,,-6.1043,106.0089 es,argual,Argual,53,,28.65,-17.916667 zm,nyakawanda,Nyakawanda,01,,-13.3333333,23.2166667 mm,nan-aw,Nan-aw,11,,20.1333333,96.6166667 cu,banaguises,Banagüises,03,,22.7666667,-80.85 tm,khatap,Khatap,04,,37.6233333,65.5294444 mx,galera,Galera,14,,19.583333,-103.483333 pw,galeds,Galeds,00,,7.7211111,134.6097222 ao,calengo,Calengo,14,,-12.933333,18.316667 dz,franchetti,Franchetti,10,,35.0247222,0.1088889 ph,pula,Pula,58,,12.8908,123.6553 tr,mehmetalikuyusu,Mehmetalikuyusu,03,,38.933333,31.5 nz,kenepuru head,Kenepuru Head,F4,,-41.166667,174.116667 rs,jasunja,Jasunja,00,,43.066944,22.019167 mm,molsang,Molsang,10,,24.9166667,94.7 ir,zur azema-ye sofla,Zur Azema-ye Sofla,05,,30.984,50.0276 se,lillesater,Lillesäter,28,,58.6,12.033333 br,barra do triunfo,Barra do Triunfo,08,,-19.7,-40.5 rs,miranovac,Miranovac,00,,43.363889,22.373333 bd,pazakhali hazra,Pazakhali Hazra,84,,22.4,90.4166667 ua,potochishche,Potochishche,06,,48.741361,25.585165 pk,bamilai banda,Bamilai Banda,03,,34.825988,72.933899 mx,marcelo,Marcelo,28,,26.016667,-98.333333 ao,chunja,Chunja,07,,-16.533333,14.716667 ve,san fernando atabapo,San Fernando Atabapo,01,,4.0486111,-67.7022222 us,kennebec,Kennebec,NC,,35.5400000,-78.7475000 br,poli velho,Poli Velho,20,,-5.033333,-42.833333 ru,potma,Potma,46,4296,53.933236,42.979056 cn,anmengtun,Anmengtun,08,,45.035313,127.079294 it,villaggio badia,Villaggio Badia,09,,45.533333,10.166667 my,kampung tiwang,Kampung Tiwang,16,,5.8245,116.5551 hr,zupa,Zupa,03,,43.3347222,17.1136111 ph,locmit,Locmit,50,,14.95,120.716667 tr,elhaskormustafa,Elhaskörmustafa,44,,38.065092,38.727228 ng,maijego,Maijego,57,,11.796243,7.071084 fr,saint-may,Saint-May,B9,,44.426973,5.318594 cn,yiguo,Yiguo,29,,24.126251,103.395183 us,skyline ridge,Skyline Ridge,DE,,39.7213889,-75.6947222 it,sorrento,Sorrento,04,15308,40.616667,14.366667 et,egia,Egià,54,,8.083333,38.033333 cn,huangsha,Huangsha,26,,33.133014,106.786879 ru,selkhoztekhnika,Selkhoztekhnika,90,,59.940552,54.950888 mw,lipempe,Lipempe,20,,-13.4333333,33.75 zm,makwe,Makwe,03,,-15.4833333,23.2833333 ru,nizhniye borovy,Nizhniye Borovy,60,,56.978846,28.806924 mz,chirrenguete,Chirrenguete,03,,-23.7722222,34.8975 bg,kurnowo,Kurnowo,33,,43.0833333,23.85 ir,shah `abdul qasim,Shah `Abdul Qasim,07,,30.143002,53.716567 in,ramnagar garhia,Ramnagar Garhia,36,,27.2372,79.2948 ar,villa dolores,Villa Dolores,19,,-32.56009,-65.242699 iq,daqdaqah,Daqdaqah,09,,30.9833333,46.1333333 ru,donilova,Donilova,90,,60.266517,54.342323 ec,guangana,Guangana,19,,-1.3,-78.65 kz,belyy kamen',Belyy Kamen',15,,50.7,81.965833 pt,sarzedo,Sarzedo,22,,41.011201,-7.659755 vn,ke thuong,Ke Thuong,34,,19.466667,105.633333 id,ciseke,Ciseke,33,,-6.3547,106.2661 mx,la cuchilla,La Cuchilla,16,,18.475,-100.833333 in,diga,Diga,28,,22.938889,88.531389 pl,modlica,Modlica,86,,52.134404,17.669165 ma,touamrine,Touamrine,55,,29.78,-9.45 pg,uparua,Uparua,06,,-8.6333333,141.6333333 ru,zvyagino,Zvyagino,13,,54.7435,60.7525 kr,agok,Agok,14,,36.5839,129.3851 af,durkhel,Durkhel,28,,31.653463,67.292027 cn,burultoka¿ay,Burultok¿ay,13,,47.1,87.383333 af,guri-ye nazar,Guri-ye Nazar,30,,36.176701,67.433215 mg,menasatroka,Menasatroka,04,,-17.5166667,48.4 cn,panshantou,Panshantou,02,,28.229858,119.219236 bd,gurukachi,Gurukachi,86,,25.0833333,91.9166667 gb,long sutton,Long Sutton,F2,,51.216667,-.933333 cn,sixionggoushanshang,Sixionggoushanshang,15,,32.941385,105.09346 nl,grashoek,Grashoek,05,,51.360473,5.941827 af,pirich,Pirich,07,,35.674824,65.118462 us,keeney,Keeney,NY,,42.7850000,-75.9652778 ve,el milagro,El Milagro,06,,7.5633333,-65.8238889 zm,kapwenge,Kapwenge,08,,-10.15,29.6166667 id,dojo,Dojo,36,,-2.55,140.516667 be,stokstraat,Stokstraat,08,,50.8,3.683333 br,sao roque do paraguacu,São Roque do Paraguaçu,05,,-12.85,-38.85 cn,tehwahsien,Tehwahsien,07,,25.498611,118.227778 af,nawe payendeh,Nawe Payendeh,05,,34.421844,66.832977 za,sonderwater,Sonderwater,06,,-25.689545,28.542572 de,babing,Babing,02,,48.3,12.85 sn,sintiou meissa,Sintiou Meïssa,08,,15.6,-16.45 us,jose mercado,Jose Mercado,PR,,18.2194444,-66.0241667 ru,zhavar,Zhavar,54,,55.805884,71.633548 es,ardales,Ardales,51,,36.878806,-4.846208 pl,loza,Loza,82,,53.69184,17.073175 lt,nauyasis obyalinas,Nauyasis Obyalinas,62,,55.4761111,22.3172222 pl,korczycow,Korczycow,76,,52.131629,14.92621 pt,vale de paredes,Vale de Paredes,13,,39.701482,-9.048642 id,ghokat satu,Ghokat Satu,18,,-9.4149,119.2708 ua,odzhayka,Odzhayka,11,,45.7322,34.300854 cn,rendong,Rendong,30,,22.199444,111.850833 id,gintungan,Gintungan,10,,-7.806944,110.155833 pg,tabibuga,Tabibuga,16,,-5.6,144.6833333 ua,vinozh,Vinozh,23,,48.694763,27.703267 my,kampong kuala beriwan,Kampong Kuala Beriwan,11,,4.683333,115.316667 tr,konuksever,Konuksever,24,,39.613337,39.29632 fr,les ardilliers,Les Ardilliers,B5,,46.916667,1.066667 lk,hunuketa-ela,Hunuketa-ela,29,,7.55,80.65 tw,chennankung,Chennankung,04,,22.0,120.75 ro,valea botei,Valea Botei,11,,45.116667,26.633333 ru,ibrakayevo,Ibrakayevo,08,,53.4721,55.355282 ph,tubig buan,Tubig Buan,60,,5.54,120.861944 mx,los castillo,Los Castillo,06,,31.55,-108.15 id,prajinan,Prajinan,07,,-7.759444,110.546944 so,bulo rer scek abdulla,Bulo Rer Scek Abdulla,13,,2.7,45.8 mz,pechisso,Pechisso,03,,-22.4733333,34.0211111 ru,shchebenchikha,Shchebenchikha,30,,47.306111,134.450278 in,laikera,Laikera,21,,21.883333,84.2 ye,hai shamsan,Hai Shamsan,02,,12.7788889,45.0308333 td,bobinda,Bobinda,09,,8.35,16.45 ir,cherak,Cherak,43,,37.580119,57.118964 cg,mayola,Mayola,11,,-4.0502778,14.9491667 ru,spasskoye,Spasskoye,56,,52.133333,37.15 ua,tereshchenky,Tereshchenky,21,,51.019745,34.194393 sy,maryamayn,Maryamayn,12,,35.9166667,36.4 tr,kemerli,Kemerli,80,,37.412778,42.494722 ir,musaabad,Musaabad,34,,34.545169,49.924641 cn,dongsifangtai,Dongsifangtai,19,,40.224508,119.984681 tr,limankoy,Limanköy,08,,41.466965,41.492443 cl,pailad,Pailad,14,,-42.850278,-73.62 pk,khada,Khada,05,,24.8556,66.9918 mx,cruz segunda,Cruz Segunda,25,,24.25,-107.316667 af,jongoli,Jongoli,24,,36.674324,69.039604 kz,svyatoslavskiy,Svyatoslavskiy,13,,53.913333,62.208056 kh,phumi thlok ropea,Phumi Thlok Ropea,03,,12.25,104.4666667 ar,pilar,Pilar,01,,-34.457607,-58.913845 ir,mazdaqan-e kohneh,Mazdaqan-e Kohneh,34,,35.1173,49.7388 pk,goth jam mehr,Goth Jam Mehr,05,,25.286561,68.495681 pk,jilga hadira,Jilga Hadira,02,,31.020326,66.738935 th,ban phai hua khe,Ban Phai Hua Khe,53,,13.766667,100.116667 cn,chintouchen,Chintouchen,26,,34.572222,108.105 pk,new iqbal town,New Iqbal Town,04,,33.6501,73.1077 cn,maziba,Maziba,32,,29.459909,103.78513 us,pine hill farms,Pine Hill Farms,MD,,39.5147222,-76.7230556 mx,piedras pintas,Piedras Pintas,19,,26.65,-99.666667 ph,garang,Garang,G4,,8.0583,123.7222 mg,tsiandamba,Tsiandamba,06,,-22.6833333,43.3333333 id,sarlan,Sarlan,31,,.9221,123.1362 mm,tarongyang,Tarongyang,04,,25.6833333,96.75 ir,mizheydun,Mizheydun,29,,28.025,57.995556 id,bergan,Bergan,07,,-7.960556,110.916667 zr,ndaradi,Ndaradi,10,,-4.15,26.5666667 ec,ubillus,Ubillús,18,,-0.4166667,-78.3833333 vn,na mo,Na Mò,39,,21.7,107.033333 pe,vista allegre,Vista Allegre,14,,-6.7333333,-79.7833333 kr,araemanjisan,Araemanjisan,06,,37.3266,128.6056 sk,predajna,Predajná,01,,48.8166667,19.4666667 ru,krasnokutskaya,Krasnokutskaya,61,,49.153425,41.953248 vn,go gai,Go Gai,86,,21.4301,105.258572 dz,liana,Liana,47,,34.7666667,6.6666667 ru,bezrukovo,Bezrukovo,29,,53.7813,87.5552 sd,wer ping,Wer Ping,26,,9.4666667,28.9166667 be,lijssenthoek,Lijssenthoek,09,,50.816667,2.7 tr,kurt,Kürt,71,,38.411706,31.517729 cd,djom,Djom,10,,-4.166667,25.066667 pl,truskolasy lachy,Truskolasy Lachy,81,,53.03241,22.702838 af,dada,Dada,36,,33.804444,69.673333 ir,suqeh-ye bala,Suqeh-ye Bala,43,,37.585547,56.172883 ni,santa maria,Santa María,06,,12.2166667,-85.9 es,esfiliana,Esfiliana,51,,37.267196,-3.102185 ps,`islah,`Islah,00,,32.1725,35.034167 mx,campo pacifico,Campo Pacífico,25,,24.869722,-107.754444 mz,malia,Malia,01,,-13.1161111,38.8758333 ru,udintseva,Udintseva,71,,57.923703,62.67927 za,kagamayasha,Kagamayasha,10,,-25.866521,25.316826 ru,aryg-bazhi,Aryg-Bazhi,79,,50.766667,92 ao,casseleco,Casseleco,08,,-12.45816,16.072953 id,sumbergede,Sumbergede,15,,-5.12736,105.439027 mx,el matorral,El Matorral,24,,23.3,-100.8 ci,kamaha,Kamaha,87,,9.551954,-6.10873 ao,tchicuta,Tchicuta,18,,-10.064552,18.856607 jm,sandy bay,Sandy Bay,01,,17.8166667,-77.1833333 vn,tham rom,Thâm Rom,67,,9.879167,106.443056 ao,gangula,Gangula,04,,-16.716667,18.55 fr,blaisy,Blaisy,A4,,48.172929,4.996159 cd,egbunda,Egbunda,00,,2.733333,27.2 pk,ukahnawala,Ukahnawala,04,,30.012845,71.1984 be,sassenhout,Sassenhout,01,,51.216667,4.816667 us,sleepy lake west,Sleepy Lake West,VA,,36.9041667,-76.5108333 ru,kaukiula,Kaukiula,42,,60.55,28.15 ru,uslanka,Uslanka,42,,60.973862,33.891808 iq,kifrok,Kifrok,15,,36.5466667,43.0636111 pk,dhok gidar,Dhok Gidar,04,,33.101306,71.889783 ru,sobrino,Sobrino,08,,56.133333,57.7 bo,estancia kailla nasa,Estancia Kailla Nasa,04,,-16.85,-69.2 id,sigrumung,Sigrumung,07,,-7.0748,110.2857 no,nevedal,Nevedal,15,,60.95,5.083333 ru,mazary,Mazary,33,,57.110442,49.68701 si,sent ruperti,Sent Ruperti,09,,46.1652778,15.3505556 ve,barrio nuevo,Barrio Nuevo,22,,9.9475,-69.1305556 hu,kiss ignac-dulo,Kiss Ignac-dulo,12,,47.783333,18.75 zr,tongerlo-saint-norbert,Tongerlo-Saint-Norbert,00,,2.6166667,23.6333333 ml,nana guinde,Nana Guindé,08,,16.8833333,-2.0333333 cf,mboum,Mboum,13,,7.2666667,15.8 ir,sendadan,Sendadan,41,,33.017642,59.621419 ru,malaya zhadunka,Malaya Zhadunka,60,,57.7265,28.5359 nl,ubbergen,Ubbergen,03,,51.836076,5.909793 cn,shanglutian,Shanglutian,03,,27.845275,115.66087 jp,shido,Shido,17,22859,34.323333,134.173333 sa,al masna`ah,Al Masna`ah,14,,19.833333,41.55 ph,kagat,Kagat,C1,,10.55,124 ne,yaouna,Yaouna,03,,13.3833333,3.3166667 ir,refen,Refen,03,,31.67297,50.62002 se,herrang,Herräng,26,,59.266667,17.966667 es,oropesa,Oropesa,60,,40.092838,.136259 lt,mustomyany,Mustomyany,65,,54.7,24.7 la,ban namma,Ban Namma,16,,21.046111,101.048333 mn,gurban bayan sum,Gurban Bayan Sum,11,,48.4333333,112.25 ir,bash bolagh,Bash Bolagh,33,,37.2621,48.1322 gn,bandoni,Bandoni,17,,8.9391667,-10.1155556 pk,desiwala,Desiwala,04,,29.579134,71.83356 no,faeravaag,Færavaag,07,,59.983333,5.45 ir,kur takvil,Kur Takvil,01,,37.6173,44.7196 pk,pathan mahar,Pathan Mahar,05,,27.781788,69.370458 cn,fangjiadun,Fangjiadun,01,,30.672222,117.269444 us,etlah,Etlah,MO,,38.6391667,-91.2763889 br,sitio toca,Sítio Toca,27,,-23.221111,-46.577222 ru,uyma-fedorovskaya,Uyma-Fëdorovskaya,06,,64.465,40.891 zm,mutenge,Mutenge,05,,-13.25,31.0333333 th,pohk,Pohk,05,,18.040278,98.885 ru,shipitsy,Shipitsy,52,,58.080843,30.58994 fr,saint-malo des 3 fontaines,Saint-Malo des 3 Fontaines,A2,,48.013906,-2.472758 co,el roble,El Roble,02,,6.613889,-75.535 dz,sidi mesrich,Sidi Mesrich,31,,36.6805556,6.7225 af,qal`a-i-mulla,Qal`a-i-Mulla,05,,34.835475,67.786707 cn,tungchoushih,Tungchoushih,22,,39.905278,116.599444 br,jarudore,Jarudore,14,,-16.2,-54.3 us,effie,Effie,MN,,47.8402778,-93.6427778 ro,angofa,Angofa,16,,46.216667,24.8 us,west lowville,West Lowville,NY,,43.7933333,-75.5480556 ir,taranpuk,Taranpuk,04,,26.4258,59.4193 cn,hanika¿atam,Hanik¿atam,13,,41.466667,83.133333 id,monbruk,Monbruk,01,,5.5388,95.3686 th,muang yering,Muang Yering,69,,6.866167,101.368945 ao,catacala,Catacala,05,,-9.324062,14.760024 us,hatley,Hatley,WI,,44.8875000,-89.3386111 id,banjarpigogah,Banjarpigogah,24,,.266667,99.316667 lk,mahamailankulama,Mahamailankulama,31,,8.7166667,80.5333333 hu,gododulo,Gododulo,20,,47.133333,20.383333 af,qarghizi-ye pa'in,Qarghizi-ye Pa'in,24,,36.693016,69.13147 bj,agbatou,Agbatou,11,,7.8166667,1.7 mm,myeni,Myeni,07,,20.9,94.8833333 vn,hoang cac,Hoàng Các,12,,20.7,106.216667 dk,mosvraa,Møsvraa,21,,55.562256,9.520838 vn,ap tan my,Ap Tan My,51,,21.057309,105.310242 us,etna,Etna,NY,,42.4850000,-76.3838889 us,cortland,Cortland,OH,,41.3302778,-80.7255556 cn,yanpiqiao,Yanpiqiao,11,,27.05,112.283333 ir,kheyrabad-e mayagh,Kheyrabad-e Mayagh,07,,29.7519,52.9509 ir,halaleh,Halaleh,15,,31.8438,49.0003 hr,blinjski kut,Blinjski Kut,14,,45.4116667,16.4655556 ru,baykal,Baykal,59,,44.233056,131.358889 ke,gatimu,Gatimu,01,,-1.1666667,36.65 in,meria,Meria,28,,22.976667,88.327778 ir,bala zarrinabad,Bala Zarrinabad,35,,36.519823,53.202628 cn,lienshih,Lienshih,02,,30.708459,120.416722 th,ban krap,Ban Krap,33,,14.816667,100.266667 sd,`arab,`Arab,32,,9.0333333,25.4166667 mn,nomon haanii hiid,Nomon Haanii Hiid,17,,46.9,112.1166667 ee,hindu,Hindu,02,,58.6997222,22.5136111 mz,mexicopa,Mexicôpa,06,,-15.3708333,38.4936111 ro,bacanul,Bacanul,42,,44.416667,25.816667 de,lehnacker,Lehnacker,01,,47.716667,7.766667 af,arkhel,Arkhel,37,,33.316658,69.837091 tr,konuklu,Konuklu,63,,37.126317,38.848584 uy,el hueco,El Hueco,07,,-33.95,-55.85 so,sinujif,Sinujif,11,,8.55,48.9833333 ru,tiyerbes,Tiyerbes,63,,64.376111,120.546944 ru,otradnovo,Otradnovo,71,,58.665863,62.059916 ir,feyzabad,Feyzabad,42,,34.019544,58.754163 cn,shajia,Shajia,04,,31.501608,120.846128 cn,heijianang,Heijianang,11,,29.513623,110.357153 ph,san fernando,San Fernando,54,,12.303644,122.600411 id,babakanmicunah,Babakanmicunah,30,,-6.510278,107.803889 zr,botungu,Botungu,00,,2.0666667,18.3 pe,huypara,Huypara,03,,-13.7833333,-72.5666667 mx,san bartolo albarradas,San Bartolo Albarradas,20,,16.954167,-96.46 lk,yahalearawa,Yahalearawa,35,,6.9333333,80.9166667 lk,kulankulam,Kulankulam,31,,8.7666667,79.9666667 zr,basikabanga,Basikabanga,12,,-4.0591667,28.8708333 ge,sarkveletubani,Sarkveletubani,14,,42.2666667,43.2 ru,zhizhimoy,Zhizhimoy,84,,49.030278,46.621389 es,renau,Renau,56,,41.224484,1.310832 ru,yakovlevskiy uchastok,Yakovlevskiy Uchastok,76,,54.782644,37.398537 no,heroysundet,Herøysundet,07,,59.917222,5.789444 pk,dumewala,Dumewala,04,,30.139451,72.484766 ma,zaouia lalla taourirt,Zaouia Lalla Taourirt,47,,31.746315,-9.492781 cf,sanguere,Sanguéré,09,,6.0,15.7666667 ir,qaranjik-e makhtum qoli,Qaranjik-e Makhtum Qoli,37,,36.983333,54.316667 ir,mahabad,Mahabad,28,,33.5272,52.2128 cd,twabinga,Twabinga,09,,-.65,26.633333 cn,dadubao,Dadubao,11,,29.325441,109.467661 ph,cogon,Cogon,J1,,10.782643,123.528503 id,pintukota kecil,Pintukota Kecil,31,,1.4591,125.2452 na,santa,Santa,29,,-22.65,14.6333333 sb,siriwareo,Siriwareo,08,,-9.0666667,161.2 af,lal'mi-buz,Lal'mi-Buz,26,,36.750305,69.328079 us,park villas,Park Villas,GA,,33.5200000,-84.4172222 de,troschenreuth,Troschenreuth,13,,50.35,12 mx,el mechudo,El Mechudo,12,,17.566667,-100.879167 fr,saint-maur,Saint-Maur,B3,,43.476354,.340313 sy,bhouzi,Bhoûzi,14,,34.75,36.0 sk,salovec,Salovec,03,,48.5833333,20.4833333 us,spearmint,Spearmint,UT,,39.1116667,-111.8030556 mx,pinta,Pinta,24,,24.016667,-100.916667 lb,ed daher,Ed Daher,03,,34.4833333,36.1833333 vn,vinh hoi dong,Vinh Hoi Dong,01,,10.783333,105.066667 za,galisili,Galisili,10,,-27.166667,23.45 al,mekurthe,Mëkurthë,48,,41.8180556,20.1380556 ma,oualidia,Oualidia,51,,32.736147,-9.027538 tw,koutsaoli,Koutsaoli,04,,23.6166667,120.2833333 th,ban phrai,Ban Phrai,80,,14.033333,102.7 tr,ocaktasi,Ocaktasi,28,,40.209632,38.563753 ru,yurkina,Yurkina,33,,60.683333,47.05 bd,mollapara,Mollapara,82,,24.4666667,88.4 fr,martinod,Martinod,B9,,45.737403,6.098076 pg,you,You,08,,-6.7666667,145.1666667 ir,tirkan,Tirkan,29,,29.846791,57.758567 ru,leonidovka,Leonidovka,08,,54.395403,53.544935 cn,fengchengchen,Fengchengchen,19,,40.453611,124.071667 zr,kabwe ii,Kabwe II,04,,-6.2166667,25.3666667 in,vijaydurg,Vijaydurg,16,,16.566667,73.333333 bo,incarpampa,Incarpampa,04,,-15.3666667,-68.2833333 us,straight mountain,Straight Mountain,AL,,33.8763889,-86.3944444 ma,douar el abiat,Douar el Abiat,52,,34.417974,-5.808668 sy,msit,Msit,02,,35.4666667,36.1166667 lt,zhemguley,Zhemguley,58,,55.7166667,21.6333333 co,niusa,Niusa,36,,5.587222,-74.1 ru,mostovka,Mostovka,75,,56.889167,84.901944 ir,taghab,Taghab,41,,32.838574,58.928964 cf,loli,Loli,16,,3.6666667,16.75 ve,crucero las majadas,Crucero Las Majadas,06,,7.7,-64.4666667 il,burgata,Burgata,02,,32.326352,34.962356 id,ngringit,Ngringit,08,,-8.0293,112.7167 pk,algadi khwula mela,Algadi Khwula Mela,03,,32.954208,71.145336 de,sankt hulfer bruch,Sankt Hülfer Bruch,06,,52.566667,8.416667 cn,linjiang,Linjiang,01,,30.158333,116.869444 ro,edilchioi,Edilchioi,14,,44,28.35 in,kosam khiraj,Kosam Khiraj,36,,25.333333,81.4 af,niazollah kalay,Niazollah Kalay,03,,35.964458,68.664035 ru,mekhkerg,Mekhkerg,17,,41.664389,48.001522 cn,dalianhuapao,Dalianhuapao,19,,42.282596,123.7825 eg,shubra nabat,Shubra Nabat,05,,31.1,31.15 pk,hortal,Hortal,02,,26.07827,64.239795 jp,seimi,Seimi,36,,34.95,132.25 id,prupugan,Prupugan,30,,-6.413611,108.336111 th,ban bang khang,Ban Bang Khang,61,,9.05,98.416667 pk,barbarian di basti,Barbarian di Basti,04,,29.250951,70.854665 id,cimanyan,Cimanyan,30,,-7.0924,108.0954 th,ban saeng mani,Ban Saeng Mani,39,,14.088695,100.824667 ma,ait ichou,Aït Ichou,46,,33.68,-4.65 ru,luki,Luki,86,,50.936328,39.235063 ke,kiamabara,Kiamabara,01,,-0.5166667,37.1166667 id,dago,Dago,31,,3.4397,125.5636 dk,lomborg,Lomborg,18,,56.500508,8.26553 id,fagoedoe,Fagoedoe,29,,-1.894443,126.029409 jp,sambongi,Sambongi,29,,37.75,139.183333 ir,ansur,Ansur,28,,33.243104,50.317105 pl,blinno,Blinno,78,,52.904378,19.473856 tr,alesehir,Alesehir,45,,38.350833,28.517175 td,mourrai,Mourrai,12,,12.0,22.0 de,burgwedel,Burgwedel,10,,53.65,9.9 ru,staro-kumlyak,Staro-Kumlyak,13,,54.5016,60.4624 nz,porootarao,Porootarao,F9,,-38.55,175.316667 de,stesse,Stesse,07,,51.35,8.216667 bd,gandhi,Gandhi,81,,24.45,90.0833333 tn,beni eta,Beni Eta,18,,37.230334,10.07957 es,la ermita,La Ermita,60,,38.52269,-.237802 ht,diobel,Diobel,11,,18.4375,-71.9894444 ge,tsivitskali,Tsivitskali,47,,42.0908333,42.3877778 pk,kot hasham,Kot Hasham,04,,30.692778,73.362778 cl,san agustin,San Agustin,14,,-41.705268,-73.065581 ec,la encrucijada,La Encrucijada,12,,-3.55,-79.4333333 ru,chernoborskiy,Chernoborskiy,13,,53.9275,60.505556 kr,araegaraejae,Araegaraejae,14,,35.899774,128.002444 rs,cagllavice,Çagllavicë,00,,42.62,21.146944 cn,houyinchong,Houyinchong,01,,30.775,118.108333 vn,ban xop nhun,Ban Xop Nhun,26,,19.533333,104.183333 pl,kernsdorf,Kernsdorf,85,,53.556804,19.930722 lr,sanda,Sanda,11,,6.6,-9.1833333 cn,pingman,Pingman,16,,23.718889,106.429167 ir,do shalvari,Do Shalvari,15,,31.799167,50.101667 se,ryet,Ryet,27,,56.3,12.916667 th,ban nong no,Ban Nong No,79,,17.350833,102.404722 mg,bemokolely,Bemokolely,01,,-12.3333333,49.4166667 cg,impe,Impe,08,,-2.7291667,15.2697222 in,bandha,Bandha,35,,24.5519,79.1036 ml,sanka,Sanka,03,,14.4,-9.8833333 af,lal sultan,Lal Sultan,33,,36.166721,66.055613 sk,latkovce,Látkovce,06,,48.7166667,18.35 us,mid city,Mid City,MO,,36.2336111,-89.8966667 gn,koladou,Koladou,17,,9.0333333,-10.0166667 ro,podul vadului,Podul Vadului,42,,45.15,25.683333 ru,sysuyevo,Sysuyevo,37,,58.8299,42.2211 br,poco da ilha,Poço da Ilha,04,,-3.079167,-63.144444 br,piriperi,Piriperi,05,,-12.483333,-38.333333 cd,zandu-kapumbu,Zandu-Kapumbu,01,,-5.166667,18.266667 cn,huashulintzu,Huashulintzu,05,,43.210278,126.988333 kz,assan-mula,Assan-Mula,06,,46.716667,49.533333 hr,donji bitelic,Donji Bitelic,15,,43.8152778,16.6427778 kr,sinjon,Sinjon,16,,34.287778,126.0825 bi,bwasare,Bwasare,14,,-3.1452778,30.1919444 fr,le mazel,Le Mazel,B9,,44.955056,4.246807 kz,sholak-doshchan,Sholak-Doshchan,16,,54.583333,69.566667 hn,granadillas,Granadillas,08,,13.9483333,-87.3597222 za,qombe,Qombe,05,,-32.012304,28.51108 pl,janiszew,Janiszew,86,,52.079253,18.638773 cn,yufang,Yufang,12,,29.259298,114.029896 bo,cuchi ingenio,Cuchi Ingenio,07,,-19.9166667,-65.6666667 us,hilton,Hilton,NY,,43.2880556,-77.7936111 br,desvio erval,Desvio Erval,23,,-31.883333,-53.166667 br,juventino rocha,Juventino Rocha,15,,-17.95,-40.383333 sa,zamrat `aqabah,Zamrat `Aqabah,14,,22.983333,39.233333 tr,cardak,Çardak,21,,38.165833,40.971111 mg,zavola,Zavola,02,,-22.75,45.35 cn,nanligang,Nanligang,02,,30.855947,120.854662 sl,matopi,Matopi,02,,8.4333333,-12.2833333 sn,omoul koure,Omoul Kouré,12,,12.8008333,-15.0672222 af,murghan kechar,Murghan Kechar,23,,31.533313,65.970074 dk,soby,Søby,21,,54.939627,10.255635 sy,meidaa,Meïdaâ,08,,33.5666667,36.5333333 gh,denjua,Denjua,02,,7.5166667,-1.6666667 pl,wola raczyborowska,Wola Raczyborowska,74,,52.292912,19.360222 cd,didiba,Didiba,00,,-7.2,26.733333 au,tarrango,Tarrango,07,,-34.5,141.8 be,niel-bij-asch,Niel-bij-Asch,05,,51.016667,5.6 gr,dholous,Dholoús,40,,36.9333333,22.1666667 sv,altos del moral,Altos del Moral,09,,13.4116667,-88.0844444 pk,jalkot,Jalkot,03,,35.072688,72.869751 my,kampong labau,Kampong Labau,16,,5.765,116.4477 ph,balongabong,Balongabong,10,,16.658975,120.84554 af,sangobar,Sangobar,09,,34.503505,65.088599 pt,nuzedo,Nuzedo,21,,41.516947,-7.622082 ru,krasnozatonskiy,Krasnozatonskiy,34,8078,61.675778,50.97939 af,arezu kheyl,Arezu Kheyl,17,,33.695833,68.888333 ru,maslovskiye dvory,Maslovskiye Dvory,56,,53.064832,35.815259 ir,gheyb `ali,Gheyb `Ali,01,,36.6001,46.5468 tw,wuchikeng,Wuchikeng,04,,23.2666667,120.2333333 fr,vaumoise,Vaumoise,B6,,49.236759,2.980922 ru,zherikey,Zherikey,20,,54.866667,100.833333 eg,bindar el sharqiya,Bindâr el Sharqîya,24,,26.3713889,31.8416667 br,porto caneca,Pôrto Caneca,14,,-16.666667,-56.466667 us,moyer,Moyer,PA,,40.0494444,-79.5658333 bj,wanko,Wanko,01,,10.0666667,1.3 br,sitio chachoeira do tateto,Sítio Chachoeira do Tateto,18,,-23.996236,-50.427778 lr,gbolu,Gbolu,02,,5.8261111,-8.3177778 zr,kalombo-shibanza,Kalombo-Shibanza,05,,-8.4666667,26.0333333 th,ban muai to,Ban Muai To,01,,19.308543,97.965302 et,lefe isa,Lefe Isa,52,,9.6125,42.978889 us,centerville,Centerville,TX,,31.2577778,-95.9780556 af,sersa,Sersa,23,,29.621389,65.346667 tr,diyadin,Diyadin,04,,39.540556,43.671349 ru,novenkiy,Novenkiy,86,,50.6347,40.3058 be,kleystraat,Kleystraat,08,,50.916667,4.083333 cn,dongyuan,Dongyuan,30,,23.501949,116.125414 id,kongalo,Kongalo,18,,-9.406,119.3149 pk,ramzan panhwar,Ramzan Panhwar,05,,25.322479,68.448908 hu,mogyorosdulo,Mogyorosdulo,01,,47.049608,19.416382 bd,kauadi,Kauadi,80,,23.4333333,90.75 se,sotebyn,Sotebyn,28,,59,12.633333 bg,caradarlar,Caradârlar,52,,43.9333333,26.75 cn,fangtzu,Fangtzu,10,,37.765278,116.730278 us,grimesdale,Grimesdale,NC,,35.3638889,-82.4755556 cm,meri,Méri,12,,10.7766667,14.1227778 it,angera,Angera,09,,45.766667,8.583333 md,besalma,Besalma,51,,46.172778,28.648333 ru,timyashevo,Timyashevo,08,,53.3644,54.5829 by,zlesye,Zlesye,02,,51.65,28.4333333 af,ghaslambar,Ghaslambar,11,,34.234291,62.187639 my,garau,Garau,16,,6.75,116.716667 ng,gangkula,Gangkula,35,,8.833333,11.833333 cn,luozhou,Luozhou,30,,21.632844,110.273727 cn,siukonghu,Siukonghü,16,,22.281457,109.529339 bf,bini,Bini,48,,10.55,-3.7333333 pl,lelice,Lelice,78,,52.73733,19.766691 ru,kalinin pervyy,Kalinin Pervyy,38,,45.971389,40.133333 ru,svyatoy nos,Svyatoy Nos,49,,68.134786,39.770632 cn,fanchiachuang,Fanchiachuang,24,,35.298889,110.539167 id,kadukanas,Kadukanas,33,,-6.3375,106.0631 es,quintela de leirado,Quintela de Leirado,58,,42.140468,-8.10389 id,bagikrinde,Bagikrinde,17,,-8.7133,116.2885 pe,sudadero,Sudadero,17,,-12.3666667,-69.1666667 pk,seor,Seor,04,,32.426389,74.677778 tr,akat,Akat,80,,37.523719,43.028505 ru,abdulkarimova,Abdulkarimova,08,,52.423,57.8696 al,vanje,Vanje,51,,39.9325,20.0227778 bo,ivo,Ivo,01,,-20.45,-63.4333333 th,ban cham plalai,Ban Cham Plalai,48,,12.660889,101.993611 al,mal' i barda,Mal' i Barda,48,,41.6561111,19.7588889 mw,namoni,Namoni,07,,-13.6833333,34.0833333 at,friedreichs,Friedreichs,03,,48.633333,14.933333 ng,agal,Agal,26,,7.333333,8.733333 bd,radhanagar,Radhanagar,83,,25.7166667,88.9833333 ng,umunoha,Umunoha,28,,5.618351,6.976918 dz,mechtat seba aioun,Mechtat Seba Aïoun,12,,36.0166667,5.5333333 kh,phumi anlong tien,Phumi Anlong Tien,19,,10.85,104.9833333 us,kirwan heights,Kirwan Heights,PA,,40.3686111,-80.1019444 tr,kizilagil koyu,Kizilagil Koyu,40,,38.911418,34.287707 nl,schraard,Schraard,02,,53.080601,5.451244 us,forest hills,Forest Hills,IN,,40.1236111,-85.6966667 fm,alauso,Alauso,02,,6.8291667,158.1527778 id,plorenganjurang,Plorenganjurang,07,,-7.201667,109.664167 ee,myza tumala,Myza Tumala,14,,58.5369444,23.0416667 mm,danaw,Danaw,03,,17.1666667,95.3833333 gb,maindy,Maindy,X5,,51.5,-3.2 se,borshorva,Borshorva,09,,56.733333,16.266667 co,la venturosa,La Venturosa,31,,6.143101,-68.782126 bz,joe wagner boom,Joe Wagner Boom,01,,17.4166667,-88.3666667 cn,kuohouchi,Kuohouchi,08,,45.5,125.133333 pk,moghal kili,Moghal Kili,03,,34.24404,71.902877 mg,ambatoharanana,Ambatoharanana,03,,-14.6,49.3833333 fr,les chevaliers,Les Chevaliers,B8,,44.483333,6.35 dk,tuen,Tuen,19,,57.587948,10.289437 tr,dimlek,Dimlek,12,,39.2,40.466667 pk,amarpur,Amarpur,04,,31.17173,72.518125 cm,mara,Mara,12,,12.2166667,14.9 eg,kafrat al `arab,Kafrat al `Arab,09,,30.7302778,30.9219444 kr,annonsigol,Annonsigol,14,,36.4614,129.0699 az,erkedge,Erkedge,21,,40.464728,46.472687 es,pedro martin,Pedro Martín,57,,38.466415,-7.014112 fr,albaron,Albaron,B8,,43.60984,4.476827 es,nalech,Nalech,56,,41.559601,1.115134 ru,babakinskiy,Babakinskiy,70,,44.1775,44.4525 cl,el rulo,El Rulo,12,,-33.8,-70.916667 cn,wangzhuangcun,Wangzhuangcun,26,,33.315469,107.605731 af,chukurkheyl',Chukurkheyl',40,,35.060097,69.267456 ru,koshelikha,Koshelikha,51,,55.020834,43.538797 sy,al `aridiyah,Al `Aridiyah,09,,36.1833333,37.9166667 co,guacamaya,Guacamaya,08,,2.367658,-74.927567 ru,belebelka,Belebelka,52,,57.566588,30.921375 pt,presa,Presa,18,,39.557078,-8.112443 id,plosobaru,Plosobaru,07,,-7.693611,110.604722 sl,yemiya,Yemiya,02,,8.7225,-13.1997222 jp,inui,Inui,37,,34.95,137.883333 my,kampong plangit,Kampong Plangit,13,,4.682153,103.104389 kh,phum kichar,Phum Kichar,16,,13.65,103.75 dz,oum toub,Oum Toub,31,,36.6913889,6.5794444 ru,tretyakovka,Tretyakovka,72,,52.399507,41.12204 cn,huazhang,Huazhang,26,,34.714345,109.324562 gb,aldwark,Aldwark,L3,,53.433333,-1.316667 kz,kirovskoye,Kirovskoye,15,,49.866667,83.1 fr,le croisic,Le Croisic,B5,,47.291893,-2.5138 pl,bodzejowice,Bodzejowice,83,,50.612414,19.617167 bg,chernik,Chernik,52,,43.8,27.1166667 kh,sre cham,Sre Cham,06,,10.5333333,103.8 ua,demyanka,Demyanka,18,,49.543809,32.776129 pk,sangra banda,Sangra Banda,03,,34.443504,72.417252 pk,kundi wanjara,Kundi Wanjara,04,,29.55,71.583333 sn,naide boussa,Naïdé Boussa,03,,14.9666667,-15.8666667 ua,grimno,Grimno,15,,49.599945,23.768875 ee,lodi,Lodi,20,,58.2827778,25.5666667 mx,las beatas,Las Beatas,11,,21.193056,-100.5625 ir,shahrak-e san`ati-ye amir kabir,Shahrak-e San`ati-ye Amir Kabir,28,,33.9069,51.5455 us,white river city,White River City,CO,,40.0908333,-108.2236111 ir,khairabad,Khairabad,05,,30.5257,50.4397 do,hondonada,Hondonada,05,,18.5333333,-69.9833333 ir,bashgol,Bashgol,38,,36.1415,49.5602 pk,sehrinkoh,Sehrinkoh,04,,30.207948,70.134283 us,mount shira,Mount Shira,MO,,36.5816667,-94.4641667 th,ban mae lop khi,Ban Mae Lop Khi,02,,17.806667,98.199806 mx,rancho alegre,Rancho Alegre,18,,21.7,-105.25 ec,manzanilla,Manzanilla,02,,-3.2166667,-79.5333333 se,krakan,Kråkan,23,,63.483333,19.733333 cn,dainkog,Dainkog,32,,32.533333,97.916667 cn,linshanwei,Linshanwei,02,,30.153948,120.99182 tr,goller,Göller,89,,41.32767,32.938341 de,wonfurt,Wonfurt,02,,50.016667,10.466667 mx,la ovejeria,La Ovejería,05,,16.733333,-93.25 ir,bab khowshab,Bab Khowshab,29,,30.984087,56.627318 mz,gonunga,Gonunga,10,,-19.1066667,33.8225 af,delaram,Delaram,19,,32.164345,63.426777 us,steamtown,Steamtown,OH,,39.8163889,-81.3600000 lv,ozolkalns,Ozolkalns,09,,57.2,26.7 bw,palapaye road,Palapaye Road,01,,-22.55,27.1333333 zr,sangwa,Sangwa,04,,-5.8666667,25.4833333 cn,shihtouching,Shihtouching,08,,48.064167,126.296389 jp,kaminokuni,Kaminokuni,12,,41.8,140.116667 co,hacienda la tablilla,Hacienda La Tablilla,35,,10.113026,-75.203749 ru,kara,Kara,17,,42.287239,47.170926 tr,sarikoy,Sarikoy,89,,41.467833,32.769009 cz,godesin,Godesin,81,,50.194435,13.308573 ru,kotolanovo,Kotolanovo,76,,53.843831,36.06139 af,band kalay,Band Kalay,28,,32.135,67.308611 mm,shandegyi-auk,Shandegyi-auk,09,,17.0166667,96.2833333 lt,mishtuny,Mishtuny,65,,54.2833333,24.9 sk,dvorsky majer,Dvorský Majer,04,,48.0166667,18.2666667 ni,devonia,Devonia,12,,12.8333333,-85.6833333 pk,basti ghulam nabi,Basti Ghulam Nabi,04,,28.663695,70.513156 my,tok jawa,Tok Jawa,09,,5.446682,100.465025 cd,makena,Makena,00,,-6.733333,26.1 af,rachalam,Rachalam,34,,34.962466,70.847389 be,brazel,Brazel,01,,51.233333,5.083333 ng,gidan sarkin katul,Gidan Sarkin Katul,23,,9.9,8.016667 uz,chartak,Chartak,06,,41.0722222,71.8211111 th,ban nong krang lek,Ban Nong Krang Lek,53,,14.128889,99.976528 et,bogol manyo,Bogol Manyo,52,,4.5175,41.536389 vu,mohoun'gha,Mohoun'gha,15,,-19.5166667,170.2 bf,banguema,Banguéma,16,,12.1605556,-1.6222222 bg,knezhni luk,Knezhni Luk,46,,42.8833333,24.7166667 br,sitio francisco,Sítio Francisco,27,,-23.239444,-46.5925 ro,giurcani,Giurcani,38,,46.283333,27.966667 br,sitio pedro c. mendes,Sítio Pedro C. Mendes,18,,-25.889281,-49.906006 cm,bateka,Bateka,09,,4.7666667,8.65 sd,babiu,Babiu,32,,6.5083333,31.3308333 in,koli majra,Koli Majra,36,,29.785833,77.223056 us,reeves place,Reeves Place,CA,,39.8891667,-123.1125000 ua,bezbrudy,Bezbrudy,15,,49.919921,24.551182 bd,chelikhola,Chelikhola,80,,23.8,90.95 cn,huajiangou,Huajiangou,26,,34.471111,108.040833 ir,shahkuh pain,Shahkuh Pain,37,,36.5625,54.417222 th,ban khok kroat,Ban Khok Kroat,60,,9.466667,99.966667 br,urca,Urca,21,,-22.945476,-43.159927 br,barrinha,Barrinha,05,,-10.233333,-43.5 th,muang savankulok,Muang Savankulok,09,,17.315972,99.831861 tn,le krib,Le Krib,14,,36.328023,9.136128 zr,nsangando,Nsangando,01,,-2.0166667,17.1166667 pk,goth alu sahuwal,Goth Alu Sahuwal,05,,25.619726,68.690414 lv,stimbinaja,Stimbinaja,10,,56.5166667,26.2166667 br,encruzilhada,Encruzilhada,21,,-22.183889,-43.296389 ir,sarqul,Sarqul,16,,36.0557,45.8427 pg,kapo,Kapo,17,,-5.55,149.3833333 jp,sunagohara,Sunagohara,08,,37.45,139.683333 in,bungi,Bungi,24,,28.733333,75.266667 ge,savekuo,Savekuo,15,,42.4961111,42.1863889 ua,zhichka,Zhichka,06,,48.716667,24.666667 ru,singul,Singul,54,,56.2466,71.6598 sn,koudibekounda,Koudibékounda,11,,12.8686111,-15.7425 us,rio oso,Rio Oso,CA,,38.9611111,-121.5433333 hn,rabinal,Rabinal,05,,14.8333333,-89.0 hn,chontales,Chontales,03,,16.0166667,-85.9833333 co,los escombros,Los Escombros,28,,3.473056,-75.618611 in,hadgaon buzurg,Hadgaon Buzurg,16,,19.316667,76.333333 pk,golai,Golai,02,,25.709823,66.609262 ru,klimovo,Klimovo,42,,59.193611,34.688056 id,tjerme,Tjerme,08,,-7.2357,112.5642 la,ban xiangkhong,Ban Xiangkhông,14,,19.1,103.35 gr,arkoudhitsi,Arkoudhítsi,17,,39.7044444,21.0647222 id,pekajon 2,Pekajon 2,30,,-6.063889,106.549444 ua,kulishovka,Kulishovka,27,,50.242295,29.043418 cn,wengtang,Wengtang,18,,26.983333,108.183333 kh,phumi prek lovea,Phumi Prek Lovea,02,,11.85,105.0166667 ge,(( korsavi )),(( Korsavi )),54,,42.245,45.0319444 de,menningen,Menningen,09,,49.4,6.666667 la,ban namchiat,Ban Namchiat,03,,20.458611,103.453611 us,deacons,Deacons,NJ,,40.0377778,-74.8277778 bd,nautala,Nautala,80,,23.5058333,90.9438889 mg,imehy,Imehy,05,,-18.8833333,46.4666667 in,saleri,Saleri,12,,33.075,74.430556 eg,le caire,Le Caire,11,,30.05,31.25 jp,shiramizu,Shiramizu,11,,34.266667,132.916667 gm,kanube tenda,Kanube Tenda,04,,13.3333333,-14.3 cm,bobok,Bobok,05,,4.5691667,9.8783333 cn,gaogongmiao,Gaogongmiao,01,,33.4,115.883333 it,terricoli,Terricoli,10,,43.233333,12.966667 kp,onyangni,Onyangni,15,,39.9666667,126.7666667 ua,khliborob,Khliborob,21,,52.222388,33.973531 my,aur,Aur,11,,1.316667,111.55 ve,munada,Munadá,06,,5.2333333,-63.0833333 us,parkview estates,Parkview Estates,MD,,39.4800000,-77.4669444 de,mohr,Mohr,01,,47.983333,9.933333 kp,changnaeri,Changnaeri,03,,40.4055556,128.8816667 ma,ait buhokku,Ait Buhokku,55,,29.13,-10.21 tr,finikeyaziri,Finikeyaziri,07,,36.475556,29.971944 ir,owlad mirza `ali,Owlad Mirza `Ali,07,,29.854662,51.593265 iq,darwishan,Darwishan,15,,36.5666667,43.4833333 pt,barros da paz,Barros da Paz,13,,39.962967,-8.673707 nz,lyndhurst,Lyndhurst,E9,,-43.7,171.716667 af,sadu kot,Sadu Kot,29,,32.989517,69.240723 af,nurza'i,Nurza'i,23,,31.573311,65.444161 by,borodzeniche,Borodzeniche,07,,55.5333333,27.2833333 gr,kuvatsovitsa,Kuvatsóvitsa,14,,41.3166667,24.7666667 hn,banaderos,Bañaderos,17,,13.6341667,-87.4311111 us,morrison,Morrison,TN,,35.6027778,-85.9197222 gm,sinchang keykala,Sinchang Keykala,04,,13.2666667,-14.1333333 zm,kahemba,Kahemba,03,,-14.95,25.2 in,nagla dehli,Nagla Dehli,36,,27.133,79.2609 hn,cerro lare,Cerro Lare,07,,13.6166667,-86.9666667 sk,koniarovce,Koniarovce,04,,48.4333333,18.1 ru,gorbuny,Gorbuny,47,,55.266667,35.45 id,kedungg,Kedungg,30,,-6.303056,107.148333 pk,kurala,Kurala,04,,31.686123,72.997274 us,carlisle,Carlisle,OK,,35.5005556,-95.0261111 ru,kutugay,Kutugay,93,,50.8523,117.3681 de,hasslage,Haßlage,07,,52.4,8.583333 af,alif safed,Alif Safed,33,,35.935252,66.067 cf,wanbaki,Wanbaki,11,,5.6605556,20.5219444 ir,"ebrahim abad arzoo"" eyeh","Ebrahim Abad Arzoo"" eyeh",29,,28.3533,56.8922 us,venetian isles,Venetian Isles,LA,,30.0669444,-89.8127778 gh,winiso sekyekurom,Winiso Sekyekurom,02,,6.5333333,-1.8 cn,nanpogen,Nanpogen,09,,35.738333,113.902778 pl,malochwiej mala,Malochwiej Mala,75,,50.933333,23.25 cz,hvezdov,Hvezdov,83,,50.637045,14.793255 ma,douar ouled machou,Douar Ouled Machou,51,,32,-8.43 mx,esperanza molota,Esperanza Molota,30,,18.011111,-95.048611 rs,nikolici,Nikolici,00,,43.076944,20.519167 lt,mikabaliai,Mikabaliai,56,,54.2,23.75 ph,binuangan,Binuangan,65,,8.2663,122.9685 pg,hohoro,Hohoro,02,,-7.8833333,145.3666667 lk,nadukkuda,Nadukkuda,31,,9.0333333,79.8 ni,corozo,Corozo,11,,11.9666667,-86.3166667 ma,aghazzane,Aghazzane,47,,31.255745,-7.808746 et,gela wedesa,Gela Wedesa,51,,9.15,37.783333 de,olxheim,Olxheim,06,,51.833333,9.95 tr,ciftevi,Çiftevi,79,,39.466667,33.583333 my,kampong talang ulu,Kampong Talang Ulu,07,,4.766667,100.916667 ro,colonia tiganilor,Colonia Tiganilor,09,,45.7,25.433333 ro,buza-catun,Buza-Catun,06,,46.9,24.15 ru,gorkiy,Gorkiy,61,,47.8,39.116667 mx,morelos,Morelos,02,,28.3,-114.033333 de,mengers,Mengers,05,,50.8,9.783333 tr,savak,Savak,62,,38.892959,39.212898 zr,mafumbo,Mafumbo,05,,-9.7,26.7833333 es,canada de junco,Cañada de Junco,51,,37.127404,-4.056261 mx,tzinacapan,Tzinacapan,21,,20.05,-97.533333 ve,la centellita,La Centellita,16,,9.2086111,-63.0563889 af,magara,Magara,37,,33.160209,69.55164 in,pipaliwala town,Pipaliwala Town,05,,30.7212,76.8352 id,bondosawit,Bondosawit,08,,-8.3839,112.7047 at,oberdamuls,Oberdamuls,08,,47.283333,9.866667 us,homestead,Homestead,NC,,35.2833333,-80.9133333 ht,lan mat,Lan Mat,06,,19.2,-72.4166667 fr,venon,Venon,A7,,49.172418,1.05024 ro,degerati,Degerati,42,,44.933333,26.366667 kr,sipori,Sipori,17,,36.9252,127.0234 us,san emidio,San Emidio,CA,,35.0944444,-119.3036111 se,mantyvaara,Mäntyvaara,14,,66.833333,21.716667 bg,canakcje,Canakcje,61,,43.5,27.2666667 pt,fontoura,Fontoura,20,,41.957953,-8.633188 zr,bokokolo,Bokokolo,02,,0.6166667,22.4 mz,cobub,Cobub,07,,-12.1438889,34.7586111 af,dahan-e beremak,Dahan-e Beremak,05,,34.242253,67.423279 id,kasangtibun,Kasangtibun,37,,.2573,101.1768 br,itabayanna,Itabayanna,04,,-6.05,-67.833333 ua,manki,Manki,02,,51.719972,30.740983 ru,buroy,Buroy,CI,,42.694444,45.457222 rs,doana,Doana,00,,42.273889,21.190278 lr,klaboke,Klaboke,02,,5.0605556,-7.7622222 fi,vadbacken,Vadbacken,15,,62.8,21.25 id,pulobambutua,Pulobambutua,30,,-6.195833,107.180556 cn,hongdingxiang,Hongdingxiang,32,,32.161049,106.702039 kz,badane,Badane,06,,48.383333,51.666667 lt,geguzynes,Geguzynes,57,,55.0166667,24.4833333 am,nor gekhi,Nor Gekhi,05,,40.3211111,44.5797222 ht,decouvert,Découvert,03,,20.0166667,-72.7 af,tokhtah,Tokhtah,03,,35.944211,68.466093 cn,dingtanggou,Dingtanggou,04,,31.331423,121.112774 td,bimourbare,Bimourbaré,10,,9.8666667,14.3166667 mg,ambalamasina,Ambalamasina,02,,-20.55,48.1166667 tr,balcilar,Balcilar,14,,40.731684,32.240553 ru,tiberdino-chelny,Tiberdino-Chelny,73,,55.645518,50.650254 mm,natkan-u,Natkan-U,07,,20.4833333,94.9333333 fr,chanteloube,Chanteloube,B8,,44.516667,6.3 ru,bazancha,Bazancha,29,,52.8849,87.6123 af,sarpanak,Sarpanak,09,,33.581455,64.557835 ph,tan-agan,Tan-agan,54,,12.507222,122.012222 ru,novo-yezdotsk,Novo-Yezdotsk,09,,50.186667,38.118611 kh,phum koh,Phum Koh,04,,11.6,104.5333333 pk,tarund,Tarund,04,,30.299999,70.750834 iq,sayyid idris,Sayyid Idris,04,,31.7,44.5166667 pk,mamdu lashari,Mamdu Lashari,05,,28.123768,68.103676 sy,sahhara,Sahhara,09,,36.1833333,36.8333333 id,nangsi,Nangsi,30,,-6.246944,106.451667 ir,naqadeh kesh,Naqadeh Kesh,08,,38.2547,48.8649 mz,chefe malalo,Chefe Malalo,09,,-15.7327778,36.8747222 ir,cham kangari,Cham Kangari,07,,30.5295,52.0678 ph,bayusan,Bayusan,31,,16.833956,122.074441 et,gandaba,Gandaba,52,,7.8,42.2 id,gato,Gato,08,,-6.9204,111.6092 th,bang nong wiwat,Bang Nong Wiwat,49,,11.883333,102.816667 ru,dyektiyek,Dyektiyek,03,,51.271389,85.608056 zm,sinamalina,Sinamalina,04,,-17.0666667,27.5833333 vn,xom thu mudi,Xom Thu Mudi,21,,9.75,104.916667 ar,colonia progreso,Colonia Progreso,05,,-33.249045,-62.268684 mx,los agrios,Los Agrios,18,,20.883333,-104.5 zm,isake mangole,Isake Mangole,05,,-13.1166667,30.95 th,pakbhli,Pakbhli,43,,14.166667,101.266667 pl,lenie male,Lenie Male,73,,52.662404,19.383206 us,gilmerton,Gilmerton,VA,,36.7708333,-76.3122222 ht,losandieu,Losandieu,12,,18.2333333,-73.2833333 es,roiles,Roiles,34,,43.35,-5.533333 ua,horodok,Horodok,24,,51.689093,25.268272 fr,eyzerac,Eyzerac,97,,45.388484,.92053 in,kavalandi,Kavalandi,19,,12.027778,76.795833 pl,szczupliny,Szczupliny,85,,53.381916,20.009466 zm,changwe lisamona,Changwe Lisamona,05,,-13.4,30.2333333 ir,sarrig,Sarrig,11,,26.6832,55.4673 my,kampong bugu,Kampong Bugu,11,,1.016667,110.55 ph,panag,Panag,41,,12.546733,121.499914 fr,les hopitaux,Les Hôpitaux,B9,,45.869221,5.533487 es,santa eugenia de ribeira,Santa Eugenia de Ribeira,58,,42.554923,-8.991156 cu,la mano,La Mano,16,,22.5,-79.7666667 gb,strachur,Strachur,T8,,56.166667,-5.066667 ru,svetlyy luch,Svetlyy Luch,56,,52.48,35.4509 cn,kongmoon city,Kongmoon City,30,,22.583333,113.083333 cg,moukala,Moukala,07,,-3.5566667,12.335 af,qal`ah-ye hazrat sahib,Qal`ah-ye Hazrat Sahib,35,,34.500323,70.305361 mx,la haciendita,La Haciendita,19,,25.514167,-99.750556 cn,shikou,Shikou,02,,28.644141,118.580148 pw,gabatouru,Gabatouru,00,,7.5044444,134.5052778 id,jambuan satu,Jambuan Satu,08,,-8.1558,113.822 mx,texopa,Texopa,15,,19.533333,-98.866667 my,kampong serabak,Kampong Serabak,11,,1.333333,110.016667 hr,cavri,Cavri,15,,43.5694444,16.8163889 cm,wofka,Wofka,12,,10.2333333,13.6333333 us,west bainbridge,West Bainbridge,NY,,42.3138889,-75.5438889 id,banprao,Banprao,08,,-7.0072,113.2657 ph,uncas,Uncas,49,,9.743333,118.679444 us,glenfield,Glenfield,NC,,35.3819444,-77.6355556 ru,staroselye,Staroselye,09,,50.7069,35.4687 pk,warziri,Warziri,01,,32.754167,69.526667 se,markeback,Markebäck,15,,58.866667,14.783333 br,cajapio,Cajapió,22,,-2.966667,-44.8 af,feroz kalay,Feroz Kalay,39,,32.821277,66.575396 kr,pongdongni,Pongdongni,03,,35.743879,127.522786 pk,goth rawat khan,Goth Rawat Khan,05,,25.0491,69.111795 ne,narmar,Narmar,07,,14.7666667,8.8833333 ec,sigiro,Sigiro,12,,-4.0333333,-79.6 pk,sambli behranai,Sambli Behranai,04,,33.834559,73.367539 il,huseifa,Huseifa,04,,32.717222,35.062778 pk,muqarba,Muqarba,03,,34.643975,72.720579 de,kauerlach,Kauerlach,02,,49.15,11.333333 cz,kunice,Kunice,78,,49.478812,16.491077 ru,sinkin nos,Sinkin Nos,50,,68.688485,59.927937 td,tiaouy,Tiaouy,04,,12.2833333,17.15 be,fairoul,Fairoul,07,,50.25,4.466667 cd,zizi,Zizi,00,,3.166667,28.15 se,arkilsmala,Ärkilsmåla,02,,56.4,15.616667 kh,phumi anlong kreul,Phumi Anlong Kreul,17,,13.8833333,105.9666667 us,boquillas,Boquillas,PR,,18.4644444,-66.4886111 la,ban vangveun,Ban Vangveun,09,,15.4,105.95 cg,matembo i,Matembo I,07,,-4.5188889,13.1383333 ua,kirovka,Kirovka,23,,49.459961,28.732722 ch,acquarossa,Acquarossa,20,,46.451762,8.939989 in,sargauli,Sargauli,36,,26.8961,79.5464 us,west lake highlands,West Lake Highlands,AL,,33.3966667,-86.9713889 ml,nionia,Nionia,07,,12.5708333,-7.6980556 kp,soksari,Soksari,09,,38.4777778,128.0458333 my,kampong chenderai,Kampong Chenderai,03,,6.05,102.05 fr,la chapelle-basse-mer,La Chapelle-Basse-Mer,B5,,47.27086,-1.339133 fr,basses lisieres,Basses Lisières,A3,,48.817971,1.48835 cn,guanbu,Guanbu,30,,23.433611,116.463611 ng,santarbi,Santarbi,39,,12.621997,8.993063 cn,yuwei,Yuwei,04,,33.9,119.05 us,north bay shore,North Bay Shore,NY,16023,40.7361111,-73.2630556 ug,karita,Karita,91,,1.5675,34.9305556 cz,slivonice,Slivonice,79,,49.369624,13.784149 pk,salhu nureka,Salhu Nureka,04,,30.632909,73.756898 cv,vila sao filipe,Vila São Filipe,17,,14.9,-24.5166667 id,gebangcabang,Gebangcabang,30,,-6.106111,107.066667 fr,le puytren,Le Puytren,B1,,45.712877,1.11678 pk,batora,Batora,03,,34.725523,72.328418 cr,rio brujo,Río Brujo,03,,10.016667,-85.433333 pl,kierzbun,Kierzbun,85,,53.804651,20.851827 ao,quicuba,Quicuba,19,,-9.633333,14.166667 hu,mohartelek,Mohartelek,21,,46.731836,18.257439 eg,el hawayna el kebira,El Hawâyna el Kebîra,14,,30.5333333,31.9 pl,bytnica,Bytnica,76,,52.147484,15.16581 id,babakancigaclung,Babakancigaclung,33,,-6.6039,106.2836 ma,id ben aomar,Id Ben Aomar,55,,29.38,-10 ec,la merced,La Merced,07,,-0.9833333,-78.7 ee,kasenurme,Kasenurme,13,,58.9666667,24.1833333 be,bouchout,Bouchout,01,,51.166667,4.5 ru,urusovo,Urusovo,62,,53.315556,40.182222 cn,hongao,Hongao,30,,22.722391,113.935222 br,sitio lidia napper,Sítio Lídia Napper,26,,-26.1873,-49.4844 cn,gaoche,Gaoche,03,,26.267966,115.963556 us,castle hill,Castle Hill,FL,,28.5455556,-81.6844444 ga,salaganga,Salaganga,08,,-1.9333333,10.1666667 pl,siddau,Siddau,85,,54.310556,20.839167 us,twins of arden,Twins of Arden,UT,,40.6563889,-112.0216667 kr,tokpyong,Tokpyong,16,,34.533333,126.283333 ar,colonia tata cua,Colonia Tata Cua,06,,-28.383333,-58.4 hr,jovancevici,Jovancevici,14,,44.2397222,15.8841667 cn,taerping,Taerping,26,,33.285,108.640556 tr,tahtaci,Tahtaci,20,,37.85,28.766667 cn,yangshen,Yangshen,01,,30.993963,119.360663 ru,sangar,Sangar,63,4633,63.924167,127.473889 gh,boso,Boso,08,,6.2833333,0.55 tr,budikan,Budikân,63,,36.936111,38.759444 ru,zhukovo,Zhukovo,52,,57.712069,31.396602 cd,lungungu,Lungungu,12,,-2.566667,27.266667 bg,korudzhilare,Korudzhilare,51,,42.35,24.9 gm,ker modi teddy,Ker Modi Teddy,07,,13.5833333,-15.9666667 cn,xinchengli,Xinchengli,19,,40.581153,123.127623 ru,novaya dmitriyevka,Novaya Dmitriyevka,43,,52.652363,39.227138 ru,staraya utka,Staraya Utka,71,,57.230166,59.334826 td,karouadji,Karouadji,12,,12.8,21.0166667 ao,pimpao,Pimpão,08,,-12.55,15.566667 pl,osiecko,Osiecko,76,,52.51828,15.296048 id,banjar kapal,Banjar Kapal,02,,-8.6222,115.257 ru,soldatskiy,Soldatskiy,61,,46.190347,40.976756 mg,ambohitsara,Ambohitsara,04,,-16.75,48.3166667 zr,bena-musampa,Bena-Musampa,04,,-6.4166667,23.8666667 bg,ferdinandowo,Ferdinandowo,61,,43.5,27.6666667 us,sand springs,Sand Springs,TX,,32.2825000,-101.3505556 cn,guala,Guala,18,,26.766667,104.2 zr,makobongo,Makobongo,05,,-9.3333333,24.8166667 de,kellern,Kellern,02,,47.716667,11.566667 af,niyazi kala,Niyazi Kala,36,,33.643552,69.21014 fi,kurrola,Kurrola,13,,61.366667,28.75 ru,maritsy,Maritsy,34,,66.76457,52.245731 es,santa cruz de la sierra,Santa Cruz de la Sierra,57,,39.336348,-5.845606 cn,maozhuang,Maozhuang,01,,30.861111,117.2 pa,ana maria,Ana María,03,,8.6166667,-80.6166667 ma,beni mengout,Beni Mengout,57,,35.583312,-5.758795 cd,akei,Akei,00,,3.116667,30.666667 cd,tongoni kapaya,Tongoni Kapaya,10,,-4.45,26.666667 eg,as surah,As Surah,14,,30.8236111,31.7166667 us,thomas circle,Thomas Circle,DC,,38.9061111,-77.0291667 mx,nejapa,Nejapa,20,,16.616667,-95.983333 de,luppersricht,Luppersricht,02,,49.533333,11.783333 ir,panabar,Panabar,10,,33.6515,46.6734 us,mount wesley,Mount Wesley,MD,,38.1713889,-75.3436111 ng,awadi,Awadi,40,,12.815894,4.628464 cz,janovice,Janovice,87,,49.2,13.516667 hu,tarnaitanya,Tarnaitanya,18,,47.911174,22.215032 no,haukaas,Haukaas,07,,59.566667,5.433333 pe,malla,Malla,15,,-11.7977778,-76.39 pe,huayhalahuichan,Huayhalahuichan,12,,-11.3583333,-75.6030556 fi,hauranki,Hauranki,14,,62.933333,28.35 sn,niakhib ouolof,Niakhib Ouolof,07,,14.8266667,-17.0513889 af,garmabeh,Garmabeh,03,,36.020602,69.574849 us,gannon,Gannon,TX,,32.5566667,-100.4830556 us,edella,Edella,PA,,41.5136111,-75.6605556 cn,jiaji,Jiaji,32,,26.45,102.616667 pk,balu jo goth,Balu jo Goth,05,,24.815198,69.508472 af,pazenjaluk,Pazenjaluk,38,,35.385158,71.422764 br,marau,Maraú,05,2956,-14.1,-39 ng,egburegbene,Egburegbene,37,,6.141138,5.278096 mg,sanilenta,Sanilenta,04,,-18.1,49.1166667 ng,hashidu habe,Hashidu Habe,46,,10.397463,10.716179 cn,weitouzhuang,Weitouzhuang,04,,34.55,119.4 br,camatei,Camateí,05,,-14.566667,-42.95 id,cilemer timur,Cilemer Timur,33,,-6.4535,106.1122 mx,san jose de bernalejo,San José de Bernalejo,32,,22.066667,-101.5 bg,kurudzha dere,Kurudzha Dere,43,,41.35,25.1666667 vn,lung oat,Lung Oat,05,,22.866667,106.65 ne,maizouga,Maïzouga,03,,13.65,3.9666667 id,wonoasih,Wonoasih,08,,-7.8028,113.2085 id,sebankembar kidul,Sebankembar Kidul,08,,-7.9905,112.3929 pl,maslow stara wies,Maslow Stara Wies,84,,50.9,20.733333 by,savovshchina,Savovshchina,03,,53.5666667,24.9166667 pl,krzepielow,Krzepielow,72,,51.7,16.1 pk,kan madhora,Kan Madhora,04,,32.017275,73.397201 vn,nhuan ngoc,Nhuân Ngoc,26,,18.833333,105.333333 eh,uad damran,Uad Damran,00,,27.4625,-12.9922222 th,ban nam pu lang,Ban Nam Pu Lang,50,,14.928333,99.247778 de,stratwies,Stratwies,02,,49.283333,12.566667 ru,nabiullina,Nabiullina,08,,53.2632,57.5397 ng,egbelotobo,Egbelotobo,52,,4.791952,5.548534 so,jumbo,Jumbo,09,,-0.25,42.6333333 ng,gwomba,Gwomba,35,,9.65,12.1 cn,lishupai,Lishupai,03,,26.184504,115.9765 se,kalltjarn,Kalltjärn,03,,60.75,16.7 us,royston shores,Royston Shores,MD,,39.2222222,-76.0291667 es,villarjubin,Villarjubín,58,,43.283333,-7.116667 id,waloer,Waloer,15,,-5.030004,103.744452 ye,otala,Otala,08,,15.5333333,43.1833333 ec,pilcopata,Pilcopata,04,,-2.5166667,-78.95 do,arena gorda,Arena Gorda,10,,18.7333333,-68.4666667 gb,wych cross,Wych Cross,E2,,51.066667,.016667 us,morgan bluff,Morgan Bluff,LA,,30.3286111,-89.7125000 cm,makou,Makou,05,,4.95,10.1166667 ma,el alaouine,El Alaouine,58,,34.21109,-4.233995 af,qawghuzar,Qawghuzar,08,,33.099709,67.573883 us,etta,Etta,VA,,38.1427778,-77.1736111 id,pagarsih,Pagarsih,30,,-6.922222,107.593611 bo,estancia thola sirca,Estancia Thola Sirca,05,,-18.1733333,-68.6369444 ba,reljevo,Reljevo,01,,43.8875,18.3122222 ir,kheymeh sefid,Kheymeh Sefid,16,,35.7579,47.2269 ru,troitsk-roslyay,Troitsk-Roslyay,72,,51.964092,41.091103 pk,fauji afsaran,Fauji Afsaran,04,,31.193611,74.055833 al,sterkanji,Stërkanji,46,,40.8019444,20.5830556 ru,abanosevo,Abanosevo,72,,52.531427,41.066239 cn,zeyuan,Zeyuan,32,,28.224321,102.048301 de,wilchenreuth,Wilchenreuth,02,,49.7,12.216667 us,alden,Alden,MI,,44.8811111,-85.2755556 ve,los caobos,Los Caobos,11,,10.7044444,-70.9933333 pe,rioseco,Ríoseco,13,,-7.6922222,-79.3430556 kz,taypaq,Taypaq,07,,49.033333,51.833333 it,volla,Volla,20,,45.098333,12.255833 de,wendisch borgitz,Wendisch Börgitz,14,,52.55,11.616667 cu,la oriental,La Oriental,07,,22.3130556,-78.8811111 ht,sobia,Sobia,12,,18.2833333,-73.1833333 id,gudangturen,Gudangturen,08,,-8.1376,113.7676 lt,kibishyay,Kibishyay,56,,54.15,24.0833333 ru,kishkinskiy,Kishkinskiy,45,,56.5616,49.542375 pl,wladyslawow,Wladyslawow,74,,51.455119,19.645313 mx,las pilas,Las Pilas,29,,19.455556,-98.409722 ru,besila-irzo,Besila-Irzo,12,,43.124694,46.305086 us,topeka,Topeka,IN,,41.5391667,-85.5397222 pk,nura rath,Nura Rath,04,,30.15211,73.162424 ne,maykaka,Maykaka,04,,14.0333333,7.7833333 gm,talen wollof,Talen Wollof,07,,13.5833333,-15.9833333 id,pasirsereh,Pasirsereh,33,,-6.0444,105.9395 ru,bolshaya svecha,Bolshaya Svecha,51,,57.702289,46.289415 us,crowdertown,Crowdertown,VA,,38.0091667,-79.8511111 be,kerkgat,Kerkgat,08,,50.85,3.666667 de,gebersdorf,Gebersdorf,02,,48.516667,11.033333 gb,orford,Orford,N5,,52.083333,1.533333 br,suzano,Suzano,27,283319,-23.533333,-46.333333 ru,ivenka,Ivenka,57,,52.98134,44.158125 id,beluk lor,Beluk Lor,08,,-7.4688,112.3886 in,sangam,Sangam,02,,14.6,79.75 tr,cakmak,Çakmak,82,,40.566667,33.05 br,sitio henrique,Sítio Henrique,18,,-25.962965,-48.89629 pk,kangali,Kangali,03,,34.4375,72.980833 zr,mai,Mai,09,,3.8166667,28.6333333 ua,velikiy shpakov,Velikiy Shpakov,19,,50.606409,25.935326 gw,filaboual,Filaboual,04,,11.7333333,-14.4833333 us,troy,Troy,MI,81269,42.6055556,-83.1500000 ye,hassan,Hassan,11,,14.95,44.3333333 fi,paunupaa,Paunupää,15,,62.733333,21.783333 al,cerkociva,Cerkoçiva,51,,39.8269444,20.2077778 cn,chungtsin,ChungTsin,32,,30.629391,103.675656 ru,muranitnaya,Muranitnaya,71,,56.7878,61.3633 be,desnie,Desnié,04,,50.466667,5.8 ph,tinago,Tinago,11,,9.613333,123.83 de,heckenhof,Heckenhof,02,,49.883333,11.25 cm,avobengono,Avobengono,14,,2.6666667,12.8833333 fr,agnieres,Agnières,B6,,49.719303,1.902876 fr,chavagne,Chavagne,A2,,48.054377,-1.785712 lv,majorenhof,Majorenhof,25,,56.9738889,23.8038889 de,horhof,Hörhof,02,,49.45,10.516667 us,elberon,Elberon,VA,,37.0741667,-76.8838889 ba,pravoslavni ramici,Pravoslavni Ramici,01,,44.5788889,16.7366667 bd,bhatkota,Bhatkota,83,,25.1333333,88.9666667 in,jugulpura,Jugulpura,24,,28.129167,74.873889 ng,akamo,Akamo,32,,7.333333,4.066667 tr,congura,Çongura,55,,41.65157,35.418021 za,hiwahlwazi,Hiwahlwazi,05,,-31.141701,29.649018 be,thumaide,Thumaide,03,,50.366667,3.616667 us,west topsham,West Topsham,VT,,44.1150000,-72.3122222 mx,plan seco,Plan Seco,20,,17.3975,-96.893056 id,lumutan,Lumutan,07,,-6.6461,110.748 mz,changabeza,Changabeza,03,,-21.3880556,34.6013889 ru,poselok gidroliznogo zavoda,Posëlok Gidroliznogo Zavoda,06,,64.6373,40.5413 lk,karagastalawa,Karagastalawa,33,,6.7147222,80.7788889 kr,tchokkol,Tchokkol,03,,36.0398,127.2405 tr,adayatak,Adayatak,10,,40.016667,27.516667 pk,adam jan pathan,Adam Jan Pathan,05,,25.329167,69.529167 cn,lanfu,Lanfu,31,,19.741409,109.676967 mx,carrizal quemado,Carrizal Quemado,06,,28.85,-108.583333 vn,an lac,An Lac,11,,21.333333,106.95 af,badmuk,Badmuk,38,,35.632804,71.330716 th,ban nong ta khieo,Ban Nong Ta Khieo,12,,16.65,100.133333 af,saway,Saway,37,,33.555239,70.113375 in,kheralu,Kheralu,09,20757,23.883333,72.616667 hu,vetesitanya,Vetésitanya,10,,47.4,22 ir,kimeh,Kimeh,15,,31.255382,49.599128 mz,chefe banhine,Chefe Banhine,02,,-24.8488889,33.8197222 ru,kartsevo,Kartsevo,60,,56.489974,30.615232 ir,boozar,Boozar,07,,28.4412,55.3343 my,kampung matang simpur,Kampung Matang Simpur,02,,5.132479,100.576961 us,summit chase,Summit Chase,GA,,33.8569444,-83.9694444 th,ban sai tho song tai,Ban Sai Tho Song Tai,28,,14.387472,103.1275 ug,ntwetwe,Ntwetwe,42,,0.9547222,31.5741667 pk,allah warayo magsi,Allah Warayo Magsi,05,,26.1907,68.289962 ru,bratskiy,Bratskiy,25,,53.480008,34.753873 rs,sigavac,Sigavac,00,,42.973889,20.711667 ch,alpe di quarnajo,Alpe di Quarnajo,20,,46.483333,9.016667 ml,tougankoura,Tougankoura,07,,13.95,-5.6333333 cn,youxinggongqu,Youxinggongqu,07,,25.245,118.352778 cn,shimenzi,Shimenzi,19,,39.685556,122.320278 es,la puebla,La Puebla,57,,38.4,-6.4 ua,ortynitse,Ortynitse,15,,49.482889,23.466786 lk,weerapokuna,Weerapokuna,32,,7.6527778,79.9883333 lk,udaperuwa,Udaperuwa,35,,6.8333333,81.0166667 mm,padaukkon,Padaukkon,05,,15.9666667,97.9666667 de,tuifstadt,Tuifstädt,02,,48.75,10.566667 ru,poselok zasheyek,Posëlok Zasheyek,49,,67.419523,32.536585 pk,ahmedpur east municipality,Ahmedpur East Municipality,04,,29.143092,71.259757 pk,shalimar 10-1,Shalimar 10-1,04,,33.6852,73.003 so,haaf,Haaf,04,,2.9833333,44.1666667 tr,sahmuns,Sahmuns,65,,37.901389,42.931667 sn,ngaye diaye,Ngaye Diaye,08,,15.4166667,-16.0333333 ru,savaki,Savaki,30,,48.983333,133.466667 co,la sardina,La Sardina,08,,1.64797,-75.532657 es,quintanilla del olmo,Quintanilla del Olmo,55,,41.905608,-5.407264 bd,paschim sambhurkandi,Paschim Sambhurkandi,81,,23.8,89.3666667 br,sao jose da boa vista,São José da Boa Vista,27,,-20.6,-47.666667 cn,taweikou,Taweikou,21,,39.041944,106.395833 fj,navuto,Navuto,01,,-17.9,178.3833333 pk,arghanjo mela,Arghanjo Mela,01,,33.896378,70.303695 co,los cocuisos,Los Cocuisos,03,,6.684513,-70.482834 us,hanover,Hanover,MA,16906,42.1130556,-70.8125000 us,highcroft,Highcroft,CA,,38.5019444,-122.9425000 fi,kaakkuri,Kaakkuri,06,,66.933333,27.433333 id,sruwodadi,Sruwodadi,07,,-7.594167,109.951944 tw,paochitsun,Paochitsun,04,,23.2883333,120.1352778 cd,monganda,Monganda,00,,-6.516667,16.866667 tg,chapouko,Chapouko,05,,9.1,0.6166667 my,taman sri emas,Taman Sri Emas,07,,3.9986,101.0072 nl,cranendonck,Cranendonck,06,20427,51.303894,5.59804 co,guabitas,Guabitas,29,,3.765,-76.303333 ht,provence,Provence,09,,19.5333333,-72.1 pk,hinglun post,Hinglun Post,04,,30.468495,70.076383 ma,akhbalou,Akhbalou,57,,35.061955,-4.802707 ir,saru kola,Saru Kola,35,,36.457516,52.893321 ir,khiyov,Khiyov,32,,38.399,47.682 ru,goncharovka,Goncharovka,54,,54.425391,73.660166 cn,jiangjialao,Jiangjialao,01,,31.542277,118.044726 pk,dulur,Dulur,06,,34.551295,73.848069 ma,ti idazzine,Ti Idazzine,55,,30.094501,-9.379577 sl,golahun,Golahun,03,,7.2538889,-11.6305556 pl,zimnochy susly,Zimnochy Susly,81,,52.942846,23.070418 mx,san pedro chenchela,San Pedro Chenchela,31,,20.866667,-88.3125 th,ban muang chum,Ban Muang Chum,02,,18.733056,99.161278 ir,qal`eh-ye mohammad beyk,Qal`eh-ye Mohammad Beyk,34,,33.679655,50.304722 ci,dabrililie,Dabrililié,88,,5.893672,-5.712227 ar,yacanto chico,Yacanto Chico,05,,-32.105718,-64.754803 mx,tecuitlapa,Tecuitlapa,21,,19.116667,-97.566667 id,baransari,Baransari,10,,-7.717778,110.403333 it,venezia,Venezia,20,,45.438611,12.326667 ua,pryazhev,Pryazhev,27,,50.19129,28.674396 sv,la esperanza,La Esperanza,04,,13.8080556,-89.005 mm,myitkyo,Myitkyo,09,,17.2166667,95.9166667 kz,iskra,Iskra,03,,52.1,72.033333 id,bababakansindangwargi,Bababakansindangwargi,30,,-7.208,107.961 pl,boguszow,Boguszow,72,,50.755135,16.204937 be,schawijk,Schawijk,01,,51.2,4.55 ng,sarkin noma,Sarkin Noma,57,,11.214286,6.13297 ro,voivodeni,Voivodeni,13,,47.05,23.433333 us,pflugerville,Pflugerville,TX,29541,30.4391667,-97.6197222 dk,hosterkjob,Hösterkjöb,17,,55.856427,12.481773 in,vajhur,Vajhur,16,,19.066667,76.85 cd,yaoseki,Yaoseki,02,,.55,22.8 al,rrapesha,Rrapësha,49,,42.3988889,19.4916667 ne,bey bey,Bey Bey,03,,12.8877778,3.9241667 ru,plotinka,Plotinka,51,,56.186432,44.774035 cn,hanjiawa,Hanjiawa,10,,38.486667,114.946667 ru,boygorinka,Boygorinka,61,,48.073516,41.106947 mx,xnohlan,Xnohlan,04,,20.283333,-90.083333 lt,trakogalis,Trakogalis,63,,55.6333333,22.3666667 sy,mjaidel,Mjaïdel,14,,35.0166667,36.1166667 id,boengkoe,Boengkoe,21,,-2.5471,121.972 mx,meson,Mesón,32,,22.6,-102.416667 ve,cerro el veral,Cerro El Veral,11,,11.4783333,-69.3238889 ir,fenjan,Fenjan,34,,34.049859,49.620325 af,siah butah,Siah Butah,27,,34.492778,68.0275 eg,`izbat as salhi,`Izbat as Salhi,14,,30.6333333,31.4569444 cn,huishang,Huishang,03,,28.293335,115.047269 ma,demnat,Demnat,56,,31.734431,-7.005052 ru,myakshivo,Myakshivo,88,,57.31446,40.356824 id,kukupu,Kukupu,30,,-6.397222,106.787222 pl,kolonia deby wolskie,Kolonia Deby Wolskie,74,,51.295986,18.930056 af,wakil-qadir,Wakil-Qadir,08,,33.590424,67.346539 cr,grifo alto,Grifo Alto,08,,9.877458,-84.388607 id,berawi,Berawi,01,,5.561,95.3411 br,tupanatinga,Tupanatinga,30,5768,-8.75,-37.333333 mm,banit,Banit,03,,17.05,95.4 tr,sargin,Sargin,76,,37.586667,41.480556 us,beverley hills,Beverley Hills,VA,,38.8377778,-77.0727778 co,el eucalipto,El Eucalipto,26,,5.813333,-73.829722 bo,estancia tokhoro,Estancia Tokhoro,07,,-19.65,-64.8833333 cd,bena-tshiloba,Bena-Tshiloba,03,,-6.416667,23.216667 sb,mamulele,Mamulele,08,,-8.7833333,160.9166667 az,medrese,Medrese,50,,40.612705,48.56336 ke,kajinga,Kajinga,01,,-1.2,36.6833333 sk,velcice,Velcice,06,,48.8666667,17.95 et,kharbauein,Kharbauein,52,,7.603611,47.045 rw,colline bushingamohetu,Colline Bushingamohetu,02,,-1.55,29.95 ua,maloyanysol,Maloyanysol,05,,47.373117,37.336239 in,khirhar,Khirhar,34,,26.516667,85.966667 cn,kuangchihsien,Kuangchihsien,12,,29.850578,115.552504 af,waze,Waze,36,,33.364928,69.441373 se,veddarsbo,Veddarsbo,10,,60.166667,16.283333 id,hutansanggar,Hutansanggar,26,,2.9242,98.5115 lv,klajumi,Klajumi,33,,57.5333333,22.1333333 ph,iba oeste,Iba Oeste,13,,14.916667,120.766667 pe,layo,Layo,08,,-14.4936111,-71.155 zm,matempa samwa mutakasha,Matempa Samwa Mutakasha,05,,-12.7166667,30.35 ir,gazan band,Gazan Band,33,,38.5684,46.5155 us,hale,Hale,TN,,35.9355556,-85.0425000 us,ladow,Ladow,WA,,46.9858333,-117.0844444 th,ban rong rua,Ban Rong Rua,03,,20.242389,99.968917 za,kwajozana,KwaJozana,05,,-30.855139,28.681134 fr,bourdeaux,Bourdeaux,B9,,44.58661,5.13554 af,syahkhel,Syahkhel,29,,32.87928,68.81942 sn,diavuene,Diavuène,08,,15.6166667,-16.0333333 ht,campo,Campo,11,,18.45,-72.1 fr,nadalie,Nadalie,97,,44.702793,1.203028 br,cajaiba,Cajaíba,05,,-12.083333,-40.55 no,auma,Auma,06,,62.216667,10.666667 pl,swiercze,Swiercze,80,,50.077242,21.326671 ua,svarychiv,Svarychiv,06,4845,48.962196,24.196585 in,plonliang,Plonliang,30,,28.283333,96.566667 sd,bulbuong,Bulbuong,26,,8.6666667,32.75 id,pawoleni,Pawoleni,18,,-8.8182,120.8486 ir,farzaqeh,Farzaqeh,10,,33.7832,46.344 th,ban mae sapok noi,Ban Mae Sapok Noi,02,,18.666806,98.640611 cn,tuolie,Tuolie,14,,29.004,91.604 cn,gumiaokou,Gumiaokou,02,,28.221944,120.766389 co,pozo boyaca numero dos,Pozo Boyaca Número Dos,36,,5.983611,-74.418056 cn,ahu,Ahu,04,,34.433333,118.616667 hn,ducle nombre,Ducle Nombre,15,,15.1,-85.5333333 mm,kabaungyon,Kabaungyon,10,,23.4166667,95.2 ru,kostikov,Kostikov,61,,47.685426,40.30398 ye,nawbat al atwam,Nawbat al Atwam,06,,13.1113889,44.4538889 tr,dizdaroglu,Dizdaroglu,57,,41.909404,35.019092 ua,chervone,Chervone,02,,51.34925,30.869389 it,agropoli,Agropoli,04,21243,40.35,14.983333 ru,ulkhova,Ulkhova,69,,55.0457,32.7812 br,alto dos gomes,Alto dos Gomes,17,,-6.566667,-38.45 fr,jameyzieu,Jameyzieu,B9,,45.716662,5.163141 fr,sainte-marie-du-bois,Sainte-Marie-du-Bois,99,,48.562417,-.89172 th,ban cham pho,Ban Cham Pho,30,,14.702056,104.666528 lk,borukgamuwa,Borukgamuwa,33,,7.3,80.2833333 tm,monzhukli,Monzhukli,02,,38.15,55.8833333 pk,isa mochiwala,Isa Mochiwala,04,,30.316667,71.054167 mx,el tuchi,El Tuchi,25,,26.416667,-108.683333 ru,demidova,Demidova,60,,56.393049,30.634444 tr,benlisultan,Benlisultan,37,,41.194503,33.865489 ng,munki,Munki,51,,13.275271,5.815195 us,sperry,Sperry,WA,,46.7000000,-118.4088889 ro,dezsanfalva,Dezsanfalva,36,,45.285833,21.296389 mx,r de lugo,R de Lugo,06,,28.65,-107.5 it,villa ruatti,Villa Ruatti,01,,42.283333,14.383333 sd,kwainchekthuan,Kwainchekthuan,26,,8.95,32.5833333 cn,changlingkou,Changlingkou,30,,23.315278,116.115556 pg,usa,Usa,05,,-6.3333333,143.7333333 kr,kungori,Kungori,06,,37.8791,127.9006 gr,zilevton,Zilevtón,23,,38.9333333,22.25 ma,tazouka,Tazouka,48,,31.979926,-4.465474 pk,bate,Bate,06,,33.809816,74.005196 id,soetji,Soetji,08,,-7.1464,112.603 cn,xiahucun,Xiahucun,01,,29.90003,118.712301 pg,gagora,Gagora,06,,-7.7833333,143.2166667 cn,qizhenxiang,Qizhenxiang,02,,30.858848,120.766897 pt,monte dos pelados,Monte dos Pelados,18,,38.805754,-8.556902 br,pedra furada,Pedra Furada,02,,-9.9,-36.766667 ru,tyryshkino,Tyryshkino,53,,55.2859,82.4081 us,salem neck,Salem Neck,MA,,42.5333333,-70.8680556 ir,eslamabad,Eslamabad,43,,37.527209,56.896663 th,ban dong michai,Ban Dong Michai,03,,19.51725,99.836972 do,el chorro,El Chorro,27,,19.6833333,-71.0 id,taraitak,Taraitak,31,,1.1598,124.8202 jp,kamure,Kamure,12,,44.733333,142.133333 us,rome,Rome,SC,,33.6477778,-79.4386111 iq,shivi,Shivi,11,,37.1394444,43.7077778 tr,yayakoy,Yayaköy,35,,39.083333,27.316667 ve,las lagunitas,Las Lagunitas,12,,9.1333333,-65.3333333 cn,baijuanzi,Baijuanzi,21,,37.033333,105.35 pk,khozai mela,Khozai Mela,01,,32.312222,70.114167 pa,pinogana,Pinogana,05,,8.1333333,-77.6833333 ir,kali,Kali,32,,37.483611,48.4925 gb,saint peter aldwinkle,Saint Peter Aldwinkle,J1,,52.416667,-.516667 so,ali assan,Ali Assan,14,,1.0666667,43.4166667 ru,zapadnaya polyana,Zapadnaya Polyana,57,,53.2071,44.9748 tr,sove,Söve,10,,39.991334,28.095574 rs,samarnica,Samarnica,00,,42.939167,22.176944 kr,samtan,Samtan,05,,37.0736,128.0393 pt,rio alcaide,Rio Alcaide,13,,39.598529,-8.81434 cm,goudoum,Goudoum,12,,10.6216667,14.7683333 ro,satuc,Satuc,11,,45.183333,27.15 tr,narisufla,Narisüfla,65,,37.851667,43.133056 be,vezonchaux,Vezonchaux,03,,50.55,3.466667 ca,sydney,Sydney,07,32660,46.15,-60.166667 my,kampong bukit lintang,Kampong Bukit Lintang,01,,1.7976,103.8903 de,bergwitz,Bergwitz,14,,51.8,12.583333 kr,turyeri,Turyeri,20,,35.292222,128.808056 ir,la`l-e bijar,La`l-e Bijar,35,,36.480708,51.311058 cn,mianyuan,Mianyuan,32,,31.411231,104.308132 in,dhar,Dhar,35,82447,22.6,75.3 cn,maping,Maping,16,,24.0075,109.545833 id,ajematekko,Ajematekko,38,,-4.2912,120.0897 uz,ziaeddin,Ziaeddin,10,,40.0341667,65.6547222 ma,iyedderene,Iyedderene,54,,35.21,-3.65 id,kersamenak,Kersamenak,30,,-7.1957,108.2068 ua,strusow,Strusów,22,,49.343129,25.61238 ru,plavlya,Plavlya,25,,53.55,34.566667 cn,shinongtang,Shinongtang,02,,30.187262,122.195481 vn,tinh gia,Tinh Gia,34,,19.466667,105.716667 hu,agostyan,Ágostyán,12,,47.652891,18.31838 cz,domamil,Domamil,80,,49.082544,15.695922 cn,cuizhuang,Cuizhuang,01,,31.195698,118.454946 al,spolat,Spolat,44,,40.9172222,19.5816667 th,ban bu ro bu to,Ban Bu Ro Bu To,31,,6.446334,101.812334 pk,wara gujaran,Wara Gujaran,04,,32.749615,73.503962 kr,to,To,06,,37.1721,129.0384 nz,waterton,Waterton,E9,,-44.066667,171.75 cn,changchiatan,Changchiatan,26,,36.513889,110.211389 cn,paguo,Paguo,14,,32.002,92.502 cn,qijiaoping,Qijiaoping,11,,29.084013,110.163735 si,malo mlacevo,Malo Mlacevo,04,,45.9341667,14.6808333 id,bulung,Bulung,38,,-3.2903,119.683 id,ciwidey,Ciwidey,30,,-7.1024,107.4654 us,richfield,Richfield,OH,,41.2397222,-81.6383333 af,carbagh,Carbagh,23,,31.643048,65.640921 fr,tromborn,Tromborn,B2,,49.256877,6.586187 do,el bono,El Bono,06,,19.0666667,-69.9 ru,ararat,Ararat,61,,46.308333,40.376111 ru,vyryp,Vyryp,34,,61.357564,52.49021 gr,karvasaras,Karvasarás,33,,38.5666667,22.7833333 cn,longsheng,Longsheng,05,,41.629707,125.825862 cn,tanjiaban,Tanjiaban,01,,29.854501,116.971227 za,lamont,Lamont,02,,-29.942064,30.942998 ru,zayar,Zayar,84,,48.694546,44.933175 cn,yinkoucun,Yinkoucun,03,,27.216111,115.833889 in,sarsai helu,Sarsai Helu,36,,26.9966,79.1832 us,slackwoods,Slackwoods,NJ,,40.2530556,-74.7350000 cz,stojcin,Stojcin,80,,49.238848,15.214755 zr,mukubu,Mukubu,03,,-5.0666667,23.6666667 ru,savskiy,Savskiy,53,,55.416667,83.6 us,glynn isles,Glynn Isles,GA,,33.5608333,-83.9694444 mk,blizanci,Blizanci,51,,42.0525,22.2169444 hn,clubkimuna,Clubkimuna,09,,15.0333333,-83.2666667 th,ban khun cha,Ban Khun Cha,36,,14.266667,100.483333 cn,liangfang,Liangfang,03,,27.135492,115.571038 se,salto,Saltö,02,,56.166667,15.566667 bo,chijta,Chijta,04,,-17.25,-67.8666667 cn,dalubian,Dalubian,12,,31.195257,113.023248 fr,saint-hippolyte,Saint-Hippolyte,B7,,45.918841,-.891827 al,preca e siperme,Preça e Sipërme,43,,41.2,20.0666667 ba,zelinja gornja,Zelinja Gornja,02,,44.8219444,18.3072222 us,poole,Poole,LA,,32.2863889,-93.4919444 cn,huangyoubi linchang,Huangyoubi Linchang,30,,24.755298,116.271536 es,las majadas,Las Majadas,54,,40.297319,-2.02146 pk,khairo rind,Khairo Rind,05,,26.08357,68.597252 af,chehelbaghtuy pasa'i,Chehelbaghtuy Pasa'i,08,,33.108651,67.243336 pl,krakowek,Krakowek,73,,53.497937,18.286822 pl,przebedowo,Przebedowo,85,,54.321055,20.181525 za,ntsundwane,Ntsundwane,05,,-31.766622,29.212122 ru,staryy kaypan,Staryy Kaypan,08,,56.37489,55.745485 hr,knezevac,Knezevac,11,,45.3463889,18.045 kr,sulgok,Sulgok,20,,35.576948,127.991154 af,eshnawa,Eshnawa,14,,35.061745,69.714348 us,osseo,Osseo,MI,,41.8858333,-84.5441667 ir,buqmich,Buqmich,42,,36.847598,59.245026 pk,kirani,Kirani,02,,30.171888,66.952663 id,jopo,Jopo,04,,-8.113306,113.379012 af,kazak-e khord,Kazak-e Khord,02,,35.180084,64.210182 id,keudeudue,Keudeudue,01,,5.2569,96.1408 mm,zidawsu,Zidawsu,07,,21.3333333,94.4166667 af,kharzar,Kharzar,05,,34.1402,67.386621 za,kwa-gangata,Kwa-Gangata,05,,-31.437772,29.520932 mx,porvenir agrarista,Porvenir Agrarista,05,,16.166667,-91.833333 pe,el ayro,El Ayro,23,,-17.6530556,-69.6744444 sy,`artuz,`Artuz,08,,33.4166667,36.15 af,kareze `azizi,Kareze `Azizi,17,,34.031667,69.253333 sk,toma,Toma,04,,48.55,18.5833333 us,crestwood gardens,Crestwood Gardens,NY,,40.9680556,-73.8208333 ir,hezar jan,Hezar Jan,07,,29.933333,54.083333 mx,ojo caliente de santo domingo,Ojo Caliente de Santo Domingo,06,,30.716667,-106.916667 be,croisseau,Croisseau,03,,50.616667,4.033333 vn,phu hiep,Phu Hiep,23,,11.633333,108.183333 et,somo,Somo,51,,9.666667,37.966667 no,heggedal,Heggedal,01,,59.784167,10.441944 tg,aglomedji,Aglomedji,02,,6.2833333,1.6333333 cn,tieluling,Tieluling,11,,28.507222,111.570556 pk,babar kili,Babar Kili,01,,33.30214,70.531743 tz,kibarra,Kibarra,12,,-2.15,33.45 nl,kruisstraat,Kruisstraat,06,,51.50826,4.459658 pk,isra mohianwala,Isra Mohianwala,04,,30.697222,73.769444 us,ashland estates,Ashland Estates,GA,,33.5725000,-84.4544444 ru,aloni gory,Aloni Gory,25,,54.749707,35.460948 fr,hettange-grande,Hettange-Grande,B2,,49.406394,6.150573 cn,yingxiu,Yingxiu,32,,31.059715,103.487195 ng,tele,Tele,40,,11.32628,4.400516 us,lora lynn heights,Lora Lynn Heights,VA,,37.3394444,-77.4486111 ml,diahouatou,Diahouatou,08,,16.3333333,-3.4166667 gr,yahali,Yahalí,13,,40.8388889,22.6461111 mg,kamakama,Kamakama,03,,-16.9166667,46.4833333 es,el bonal,El Bonal,54,,39.257538,-4.190719 sd,al qulayd bahri,Al Qulayd Bahri,30,,18.5,30.65 us,countryside mobile home park,Countryside Mobile Home Park,NE,,40.4986111,-98.9475000 cn,charkhlig,Charkhlig,13,,39.033333,88 ci,zabanangoro,Zabanangoro,78,,8.270092,-8.167123 vn,ap an qui,Ap An Qui,03,,10,106.6 md,ghetlova,Ghetlova,82,,47.371944,28.532222 hr,zacinji,Zacinji,04,,45.39,13.5825 co,san roque,San Roque,28,,3.631273,-74.785527 pa,el limon,El Limón,03,,8.2833333,-80.5333333 de,karstrasse,Karstraße,07,,51.333333,6.283333 td,graoudou,Graoudou,06,,13.95,15.4666667 ru,grushevskaya,Grushevskaya,09,,50.4324,37.6197 hr,vignje,Vignje,03,,42.5336111,18.3180556 cn,huangtian,Huangtian,02,,27.765556,118.933056 us,isabel,Isabel,IL,,39.6552778,-87.9500000 in,karbigwan,Karbigwan,36,,26.2,80.5 pe,estancia vila apacheta,Estancia Vila Apacheta,18,,-16.2166667,-70.4333333 af,dzhankara,Dzhankara,27,,34.418056,67.743333 vn,xom quyen,Xom Quyen,04,,17.7,105.966667 vn,bach da,Bach Da,12,,21,106.35 bf,yaltenga,Yaltenga,34,,12.9483333,-1.8994444 ph,cahil,Cahil,J3,,10.59796,122.550203 mm,aungbinle,Aungbinle,08,,21.95,96.1333333 jp,igata,Igata,05,,34.216667,133.066667 hn,torihuaque,Torihuaque,05,,14.8333333,-88.7333333 kr,panggakkol,Panggakkol,17,,36.13,127.3845 sv,la lucha,La Lucha,06,,13.4666667,-88.85 ru,shugurovo,Shugurovo,16,,55.605816,47.299069 kp,usan,Usan,07,,38.4005556,126.0358333 at,ganslberg,Ganslberg,05,,47.083333,13.766667 pt,unhais da serra,Unhais da Serra,06,,40.260378,-7.624077 sy,koufreine,Koufreïné,08,,33.4388889,36.5488889 es,el castillo de alba,El Castillo de Alba,55,,41.660399,-6.065723 gq,ebinoyon,Ebinoyon,06,,1.45,10.5666667 th,ban ta plo,Ban Ta Plo,29,,14.472028,103.445889 ma,arhbalou,Arhbalou,58,,34.521367,-4.375382 cn,daijia,Daijia,02,,30.310556,119.095278 br,vagner,Vagner,05,,-12.216667,-41.183333 fr,coupray,Coupray,A4,,47.975679,4.943375 ru,buki,Buki,25,,53.366964,35.225004 fr,lamarche,Lamarche,A1,,47.269455,5.385894 cn,shangtangchen,Shangtangchen,04,,32.071667,119.410833 gr,megalo sirini,Megálo Siríni,10,,40.1166667,21.4166667 th,ban lai rong,Ban Lai Rong,03,,19.564389,99.961861 mx,pima,Pima,06,,28.716667,-105.666667 ph,nabalay,Nabalay,54,,12.959303,122.077416 ng,yaratu,Yaratu,29,,12.108376,8.293338 es,herreruela de oropesa,Herreruela de Oropesa,54,,39.889283,-5.242786 in,naihara,Naihara,11,,31.171944,77.091111 md,codreni,Codreni,68,,46.675556,28.883611 cn,qiebai,Qiebai,14,,29.101,88.601 id,kujun,Kujun,01,,4.5665,96.7308 ph,turod sur,Turod Sur,31,,16.6702,121.4721 iq,gilip,Gilip,18,,35.2622222,46.0852778 gb,tayenloan,Tayenloan,T8,,55.65,-5.65 bg,sokolare,Sokolare,33,,43.4333333,23.8666667 ru,herzogsrode,Herzogsrode,23,,54.397222,22.24 ua,selyshche,Selyshche,03,,48.2,25.55 ie,cummeen,Cummeen,11,,51.8725,-9.4022222 ua,volostkuv,Volostkuv,15,,49.753183,23.304329 ec,san antonio,San Antonio,18,,-0.0166667,-78.45 ru,sloboda pavlovskaya,Sloboda Pavlovskaya,42,,59.566667,30.133333 af,gul darah,Gul Darah,32,,35.788895,67.150779 kz,zaisan,Zaisan,15,,47.466667,84.866667 de,grafschaft,Grafschaft,07,,51.15,8.316667 tr,imranlar,Imranlar,85,,41.225695,31.537787 id,badjoelmati,Badjoelmati,08,,-7.925,114.386389 ir,gharb veyseh,Gharb Veyseh,16,,35.4295,46.1365 fr,villequiers,Villequiers,A3,,47.070569,2.803997 tr,arzovink,Arzovink,13,,38.504597,41.717688 td,mazembam,Mazembam,12,,13.4,21.2333333 tw,liuchiashun,Liuchiashun,04,,23.0230556,120.2077778 au,warracknabeal,Warracknabeal,07,,-36.253262,142.392807 cd,etoile du congo,Étoile du Congo,05,,-11.633333,27.566667 pe,algodon,Algodón,13,,-7.8766667,-77.6519444 id,pulaumusang,Pulaumusang,05,,-1.166667,102.1 hr,tatalovici,Tatalovici,12,,45.1372222,15.1044444 pk,goth gul khan mari,Goth Gul Khan Mari,05,,26.795467,68.314381 ir,delaram-e `olya,Delaram-e `Olya,34,,34.70441,49.947757 pl,darsin,Darsin,82,,54.466425,17.463031 sn,taiba,Taïba,08,,15.6333333,-16.35 id,kalikuto tengah,Kalikuto Tengah,07,,-7.381389,110.275 pl,mokrosek,Mokrosek,78,,51.532325,21.043796 cn,yonghe dadui guoshuyuan,Yonghe Dadui Guoshuyuan,05,,43.327439,129.549911 ma,azib talddamt,Azib Talddamt,55,,31.392855,-6.62119 ir,seyyed ghias,Seyyed Ghias,15,,31.4334,48.4544 ru,kurmanayevka,Kurmanayevka,55,4552,52.5093,52.0675 my,kampong meripoh,Kampong Meripoh,06,,3.0029,102.9494 ao,cassamba,Cassamba,16,,-10.351699,20.191186 ht,la citee,La Citée,06,,19.1,-72.4666667 bg,kalevitsa,Kalevitsa,51,,41.7333333,24.5666667 nl,nieuwendijk,Nieuwendijk,11,,51.754769,4.321014 td,belil ardebe,Bélil Ardébé,05,,12.9166667,19.55 tr,bagtepe,Bagtepe,83,,37.332361,37.628177 nl,egede,Egede,15,,52.440445,6.455902 mx,el camaron,El Camarón,20,,16.5625,-96.031111 gr,papadhania,Papadhaniá,31,,38.6666667,21.5 ru,shabel,Shabel,69,,53.998075,32.217501 ma,bougdour,Bougdour,57,,35.674962,-5.861707 dk,andkaer,Andkær,21,,55.665825,9.627522 it,la pervolidda,La Pervolidda,15,,37.483333,13.866667 gf,carbet medard,Carbet Médard,00,,5.4,-53.6666667 ru,sklad,Sklad,32,,62.05,60.333333 ph,bagtas,Bagtas,20,,14.334211,120.848963 ba,gornji josavac,Gornji Josavac,01,,44.4983333,18.2030556 pl,glody,Glody,81,,52.579475,22.464049 ir,molla susan,Molla Susan,07,,30.216667,51.833333 us,kennedys,Kennedys,NJ,,40.6480556,-75.1277778 de,horst,Horst,07,,51.033333,6.166667 tr,kinederic,Kinederiç,23,,38.517149,39.247149 cn,shihpingchow,Shihpingchow,29,,23.691374,102.487014 cn,jinglinsi,Jinglinsi,02,,29.816389,119.507778 ir,tappeh maran,Tappeh Maran,13,,34.594552,45.781933 id,duripolo,Duripolo,04,,-6.1629,106.804 pl,dziadowice,Dziadowice,86,,51.991709,18.361337 bf,yorgo dar salam,Yorgo Dar Salam,16,,12.3608333,-1.6444444 ir,chah-e ab-e shahrdari number four and five,Chah-e Ab-e Shahrdari Number Four and Five,29,,30.366667,56.033333 om,nadan,Nadan,02,,23.0666667,57.0341667 ru,cheremokhovo,Cheremokhovo,65,,53.4518,48.2786 ru,maloye gorodishche,Maloye Gorodishche,51,,57.0126,46.7396 ru,verkhniy karabut,Verkhniy Karabut,86,,50.554721,39.918623 es,aiguafreda,Aiguafreda,56,,41.767667,2.250857 do,villa de nizao,Villa de Nizao,17,,18.25,-70.2 cu,san andres,San Andrés,16,,22.3666667,-79.6333333 ng,mallamai,Mallamai,57,,12.013369,6.787873 ir,kani `ali gordeh,Kani `Ali Gordeh,01,,36.7556,46.3201 ee,olatu,Õlatu,19,,57.9933333,26.2075 us,mount zion,Mount Zion,KY,,36.6830556,-86.0572222 tm,danishen,Danishen,04,,41.0666667,61.8833333 af,terzaw,Terzaw,38,,35.371302,71.422121 ru,gogol,Gogol,53,,55.316667,77.266667 et,lomi,Lomi,51,,9.8,38.15 cn,gaofeishan,Gaofeishan,07,,25.1825,118.006389 ru,faktoriya belushya guba,Faktoriya Belushya Guba,06,,71.539238,52.332117 sk,apaca-szakallas,Apáca-Szakállas,02,,47.9,17.8166667 cd,gbale,Gbale,00,,4.166667,21.666667 se,lokrume,Lokrume,05,,57.683333,18.533333 us,north almont,North Almont,ND,,46.8397222,-101.5091667 cn,yakrik,Yakrik,13,,41.583889,81.366389 gw,secote,Secote,06,,12.3733333,-15.9758333 id,arjosari,Arjosari,07,,-7.0714,109.4367 id,jurang,Jurang,07,,-6.6529,110.9377 cn,chengxia liujia,Chengxia Liujia,03,,29.727336,116.435474 cf,bembor,Bembor,00,,7.55,16.3 fr,lignorelles,Lignorelles,A1,,47.862724,3.727758 fr,hagenau,Hagenau,C1,,48.814228,7.786232 uz,qoraqalpoq,Qoraqalpoq,01,,40.8591667,72.3552778 ps,khirbat al karmah,Khirbat al Karmah,00,,31.45,35.033333 ga,lissoka-mabeka,Lissoka-Mabeka,07,,-1.4166667,12.8833333 id,kenongan,Kenongan,07,,-7.656667,110.693333 id,kopopermai satu,Kopopermai Satu,30,,-6.964444,107.582778 cd,kungwe,Kungwe,00,,-6.6,28.833333 cn,mangshan,Mangshan,09,,34.715833,112.415556 af,dowlatabad,Dowlatabad,30,,36.98782,66.82066 fr,abaucourt,Abaucourt,B2,,48.896643,6.257827 cn,hungliuyuan,Hungliuyüan,15,,38.871944,103.311667 br,centro dos jeronimos,Centro dos Jerônímos,13,,-3.656944,-43.311667 us,gibsonburg,Gibsonburg,OH,,41.3844444,-83.3205556 na,titima,Titima,34,,-18.1833333,20.8333333 bj,mammi,Mammi,01,,9.55,1.5166667 at,steinholz,Steinholz,04,,48.266667,14 gr,katarrakhion,Katarrákhion,39,,37.65,21.4333333 hn,llano de san antonio,Llano de San Antonio,08,,13.9333333,-87.5 th,ban nong samong,Ban Nong Samong,26,,15.814444,101.967778 bo,estancia cruzani,Estancia Cruzani,05,,-17.3666667,-68.5666667 ug,kyungu,Kyungu,90,,0.3333333,32.7333333 cn,niujiaobacun,Niujiaobacun,26,,33.422341,107.849874 hn,chachagua,Chachagua,02,,13.4,-86.7833333 ir,ab mow,Ab Mow,05,,30.869,50.3783 et,bachuma,Bachuma,54,,6.833333,35.866667 gw,monte cristo,Monte Cristo,04,,11.95,-15.6333333 bd,pachaltia,Pachaltia,81,,24.1833333,90.5 mx,san diego,San Diego,10,,24,-103.966667 us,leland,Leland,GA,,33.8122222,-84.5588889 ph,abbel,Abbel,H6,,18.116667,121.066667 ir,durak rahman,Durak Rahman,15,,31.763007,50.374771 cn,qianwalijia,Qianwalijia,01,,33.583333,116.633333 pt,mendigos,Mendigos,13,,39.625755,-8.81114 lr,niaplan,Niaplan,11,,6.2561111,-9.4188889 az,agdam,Agdam,58,,40.905278,45.556389 kr,komdalli,Komdalli,06,,38.105556,127.4775 cn,yangmeilan,Yangmeilan,07,,26.04346,117.569161 no,bustad,Bustad,05,,70.85,24.316667 pk,maharaji,Maharaji,03,,33.916667,71.966667 kz,kokatyz,Kokatyz,13,,50.65,62.566667 hr,bergozza,Bergozza,04,,45.3822222,14.1472222 cd,bafwadema,Bafwadema,00,,1.85,27.9 lv,kraukli,Kraukli,14,,56.0833333,27.2833333 dz,mechta merah et tarfa,Mechta Merah et Tarfa,29,,35.6580556,7.3244444 cn,hexian chachang,Hexian Chachang,01,,31.628828,118.174634 ee,vyistre,Vyistre,20,,58.4425,25.5847222 zr,kalonga,Kalonga,05,,-10.25,26.5333333 ve,boca de doradar,Boca de Doradar,05,,7.4833333,-71.3166667 pg,gurisi,Gurisi,17,,-5.4833333,148.7166667 be,bas masville,Bas Masville,02,,50.6,4.266667 br,baixa do sapateiro,Baixa do Sapateiro,21,,-22.859849,-43.241578 pe,chichirpuquio,Chichirpuquio,06,,-7.5238889,-77.9938889 fr,les faux,Les Faux,B9,,45.1,4.383333 cf,kedja,Kedja,11,,4.9666667,20.0833333 cn,nanancun,Nanancun,03,,26.410537,115.312522 pt,macinhata da seixa,Macinhata da Seixa,02,,40.820389,-8.467292 de,niestedt,Niestedt,06,,53.083333,11.05 et,dzhiba,Dzhiba,53,,13.040014,39.099941 me,podgaj,Podgaj,00,,43.119722,19.2925 ve,agua blanca,Agua Blanca,12,,8.7916667,-66.6683333 ga,makoungoulou,Makoungoulou,07,,-1.1833333,12.85 cz,mooshauser,Mooshauser,79,,48.807328,14.922624 cn,posom,Posom,14,,30.5,96.5 fr,les pauls,Les Pauls,B8,,44.018791,6.361528 se,tassegarde,Tåssegärde,08,,57.216667,14.966667 es,chavida,Chavida,55,,41.078621,-3.88344 ru,novyj jurt,Novyj Jurt,CI,,43.46545,45.858819 pk,kesonwali,Kesonwali,04,,30.095833,72.065278 pl,gosciejewko,Gosciejewko,86,,52.806781,16.89881 ir,aqbolagh,Aqbolagh,23,,33.8688,48.9329 cy,istingo,Istingó,06,,34.9708333,32.5208333 id,lendiwatu,Lendiwatu,18,,-9.5317,119.1474 fj,na wai nde,Na wai nde,03,,-16.9833333,178.7833333 co,chaguala,Chaguala,02,,5.8,-75.516667 cn,beishanting,Beishanting,07,,27.353588,120.198024 td,kalaky,Kalaky,10,,10.5166667,15.5166667 th,ban kraman,Ban Kraman,30,,14.667445,104.440861 bg,bobevtsu,Bobevtsu,46,,42.95,25.3166667 ru,stal,Stal,63,,59.666667,132.8 pl,zambrzyniec nowy,Zambrzyniec Nowy,78,,52.512812,21.815048 lv,suzhas,Suzhas,25,,57.0188889,24.2069444 sv,san pedro,San Pedro,04,,13.6833333,-88.9 ru,ogloblino,Ogloblino,33,,58.683611,50.111667 jp,kawabe,Kawabe,31,,34.633333,133.716667 ph,jamaoas,Jamaoas,46,,9.197,123.1853 id,muarasaibi,Muarasaibi,24,,-1.333333,99.083333 md,munteana,Munteana,68,,46.709167,28.774722 pg,lowat kang,Lowat Kang,15,,-3.3,151.9 se,jobsbo,Jobsbo,25,,59.683333,16.15 dk,navntoft,Navntoft,18,,56.503639,9.39796 ma,laalama,Laalama,58,,34.355521,-4.233899 af,barzibi,Barzibi,06,,33.380858,63.79872 cn,guxi jiedao,Guxi Jiedao,07,,26.089706,119.284377 jp,madomai,Madomai,47,,26.350075,126.818306 pk,shah alizai,Shah Alizai,02,,29.410481,66.55177 tr,uman,Uman,12,,38.7,40.466667 ht,yaguana,Yaguana,11,,18.5108333,-72.6338889 mx,trigo,Trigo,26,,27.516667,-109.1 ru,alentyevka,Alentyevka,67,,52.583026,46.396405 vn,binhtay,Binhtay,27,,15.183333,108.883333 pk,theth,Theth,05,,27.321569,67.674573 kr,ahyonni,Ahyonni,17,,36.85,126.883333 ao,quiteca mgengue,Quiteca Mgengue,15,,-7.243887,16.025623 tw,peihanpao,Peihanpao,04,,24.0166667,120.3833333 my,gawang,Gawang,11,,1.15,110.9 fr,fourdrain,Fourdrain,B6,,49.610827,3.471783 kr,ritcho,Ritcho,17,,36.916667,127.216667 pk,birahimwala,Birahimwala,04,,29.55064,71.586859 cn,dawa zhen,Dawa Zhen,19,,40.993731,122.068042 om,`ayja,`Ayja,04,,22.5669444,59.5427778 sy,dukhayrah,Dukhayrah,09,,36.2666667,38.0166667 tr,karaomer,Karaömer,46,,38.121026,36.691273 id,pollotempe,Pollotempe,38,,-2.9672,120.1473 pg,kesevaka,Kesevaka,09,,-6.1666667,145.6833333 vn,thiem loc,Thiem Loc,26,,18.783333,105.733333 ir,yekahi,Yekahi,15,,32.5,48.9 de,neu sacro,Neu Sacro,11,,51.766667,14.616667 mx,pedregoso,Pedregoso,16,,19.316667,-101.483333 mm,nyaungbingon,Nyaungbingon,05,,18.0166667,97.4166667 kr,chungni,Chungni,17,,36.1312,127.2734 id,klambir lima kampung,Klambir Lima Kampung,26,,3.6477,98.5922 gr,ayia varvara,Ayía Varvára,38,,38.0,22.2666667 ci,manorota,Manorota,87,,9.211045,-4.539618 ci,angama kouassikro,Angama Kouassikro,90,,7.498306,-5.174699 cn,hsiatsao,Hsiatsao,24,,38.062778,113.338889 us,crescentville,Crescentville,PA,,40.0444444,-75.1013889 us,fayette,Fayette,ME,,44.4088889,-70.0341667 lu,bettange-sur-messe,Bettange-sur-Messe,03,,49.5758333,5.9838889 ir,talakuh,Talakuh,08,,36.812396,49.700748 vn,ban suoi yen,Ban Suoi Yen,16,,20.95,105.1 iq,rashwan,Rashwan,11,,36.4316667,43.9105556 tr,okcular,Okçular,31,,36.08895,36.144269 af,taghan gozar,Taghan Gozar,30,,36.978068,67.938753 pk,mangara,Mangara,01,,34.575162,71.375449 id,taliboi,Taliboi,21,,-1.2904,121.194 pk,goth hound ali shar,Goth Hound Ali Shar,05,,26.963491,68.420122 af,watapore ma'el,Watapore Ma'el,41,,34.248673,66.200241 id,sajon,Sajon,21,,-1.405556,123.3 ht,gerard,Gérard,09,,19.4666667,-72.3166667 sv,morro,Morro,10,,13.6166667,-89.1333333 do,palmarejo,Palmarejo,26,,19.4166667,-71.3 pk,zhopu,Zhopu,03,,36.595398,72.898171 ru,grabchenki,Grabchenki,47,,54.781304,38.26632 fi,over olmoss,Över Ölmoss,15,,60.083333,22.416667 id,cinyalindung,Cinyalindung,30,,-7.4248,107.0751 iq,shir darreh,Shir Darreh,05,,35.3936111,44.7591667 pl,godzianow gaszcz,Godzianow Gaszcz,74,,51.886886,20.017444 af,lar-e qarah,Lar-e Qarah,30,,35.988836,66.898909 id,boekitkaboe,Boekitkaboe,03,,-3.8,102.45 cn,longbai,Longbai,23,,31.169066,121.347521 ru,sadovyy,Sadovyy,46,,54.7081,42.8913 al,orpen,Orpen,43,,41.2119444,20.1180556 mx,huizachal,Huizachal,05,,16.05,-93.8 bf,goersa,Goersa,66,,12.55,-3.05 lt,eglonenai,Eglonenai,58,,55.5833333,21.3833333 cd,poka-ongo,Poka-Ongo,00,,-2.116667,22.833333 us,blackwood,Blackwood,MT,,45.6419444,-111.1447222 us,cedar point,Cedar Point,OR,,43.1797222,-124.2122222 at,kaunz,Kaunz,02,,46.733333,14.716667 cl,chitita,Chitita,16,,-18.816667,-69.683333 cn,hotzuhsu,Hotzuhsü,03,,24.916667,115.216667 jp,wajiki,Wajiki,39,,33.85,134.5 mn,tsagaan-olom,Tsagaan-Olom,10,,46.7,96.5 af,khalak,Khalak,32,,35.77107,67.866172 ir,kazpatan,Kazpatan,29,,28.233333,57.75 be,zevergem,Zevergem,08,,50.983333,3.7 se,akre,Åkre,03,,61.516667,16.366667 lr,jarjeloken,Jarjeloken,13,,4.8619444,-7.9516667 ng,maigadari,Maigadari,27,,10.820582,13.334686 hu,viteztelek,Vitéztelek,22,,47.166667,17.05 tr,karaman,Karaman,23,,38.751667,40.014167 rs,bela,Bela,00,,43.233056,22.720556 ma,ouaaroun sahel,Ouâaroun Sahel,53,,28.947174,-10.164467 ru,shchelkunov,Shchelkunov,07,,48.323907,46.545274 cn,tangjialu,Tangjialu,02,,30.914698,120.715956 tw,chiehtungchiao,Chiehtungchiao,04,,22.7833333,120.5 no,vika,Vika,06,,61.316667,11.8 fr,le plessis-pate,Le Plessis-Pâté,A8,,48.616741,2.327741 ir,kani jowz,Kani Jowz,01,,36.2171,45.5377 cl,agua fria,Agua Fria,14,,-43.021944,-73.610556 ir,kamaneh-ye yusof khan,Kamaneh-ye Yusof Khan,42,,35.067157,61.107243 by,kopcha,Kopcha,04,,53.3,29.0333333 us,south elkhorn,South Elkhorn,KY,,37.9963889,-84.5822222 hr,blinja,Blinja,14,,45.3569444,16.3719444 jp,okumachi,Okumachi,01,,35.316667,136.766667 sk,dubrava,Dúbrava,03,,48.8833333,22.3666667 sd,ahmed abu geira,Ahmed Abu Geira,29,,15.3666667,32.5833333 cn,shuihua,Shuihua,11,,27.172778,111.240833 at,anzenbach,Anzenbach,04,,47.85,14.466667 iq,saylki,Saylki,11,,37.0444444,44.0869444 ir,kusevand,Kusevand,13,,34.4278,46.8628 lt,vaygovishki,Vaygovishki,57,,55.0666667,23.2 bf,laougou,Laougou,32,,12.6166667,-1.1166667 pk,raj mulk,Raj Mulk,05,,24.6475,67.563056 ir,idahlu-ye khalifeh,Idahlu-ye Khalifeh,33,,37.4279,46.7238 us,brisbon,Brisbon,GA,,31.9169444,-81.3063889 br,gramados,Gramados,18,,-26.066667,-52.5 bi,ruhinga,Ruhinga,11,,-3.2566667,30.6 cn,waipo,Waipo,11,,30.00345,110.969502 th,ban pho tharam,Ban Pho Tharam,48,,12.772528,101.86425 nl,verlaat,Verlaat,15,,52.783333,6.1 ru,yermakovskiy,Yermakovskiy,71,,58.878293,59.768728 eg,naj` hilal,Naj` Hilal,16,,25.1208333,32.8055556 pg,kona,Kona,11,,-4.55,142.5166667 my,sik dalam,Sik Dalam,02,,5.847043,100.751406 cn,humei,Humei,07,,25.799444,117.932222 us,sand hills,Sand Hills,MA,,42.2097222,-70.7255556 pk,juma lashari,Juma Lashari,05,,24.732204,68.435425 kr,mongsan,Mongsan,03,,35.866667,126.816667 th,ban ang tabaek,Ban Ang Tabaek,44,,13.719889,101.633278 zm,nyanda,Nyanda,07,,-9.0833333,31.1166667 jo,mahayy,Mahayy,09,,30.98919,35.861268 af,nazargul kelay,Nazargul Kelay,28,,31.836739,66.339743 iq,tall manqul,Tall Manqul,10,,34.37,45.215 ve,los hoyos,Los Hoyos,16,,10.0355556,-63.5255556 bg,zora,Zora,43,,42.4166667,25.7 cn,taankou,Taankou,10,,40.241667,117.772778 pe,pucara,Pucará,13,3970,-7.5172222,-77.8452778 rs,wekerle,Wekerle,00,,45.33,19.436389 af,shaykh a`zam baba,Shaykh A`zam Baba,27,,34.061389,68.707222 th,ban bang makap,Ban Bang Makap,61,,8.933333,98.266667 pt,quintela,Quintela,05,,41.861284,-6.939742 pl,kraskowo,Kraskowo,85,,54.134994,21.181893 ma,arg n' ait slimane,Arg n' Ait Slimane,55,,30.634462,-7.700446 de,eick,Eick,07,,51.483333,6.633333 bo,santa isabel,Santa Isabel,08,,-14.5333333,-61.8166667 ua,sorokatyaga,Sorokatyaga,01,,49.198355,30.176448 tr,dulkadirlikaraisa,Dulkadirlikaraisa,40,,39.492314,34.134211 us,point field landing on the severn,Point Field Landing on the Severn,MD,,39.0847222,-76.6163889 ru,popova melnitsa,Popova Melnitsa,81,,53.72748,47.087346 ph,vista alegre,Vista Alegre,30,,11.074167,122.893611 cg,omoyi ngadzita,Omoyi Ngadzita,05,,-2.6177778,13.615 ph,pidig,Pidig,36,,16.3128,120.4304 cn,qincun,Qincun,03,,27.130084,114.468918 ru,aleshino,Alëshino,47,,55.432486,39.009277 mx,mangos de barreiro,Mangos de Barreiro,30,,17.7,-94.55 de,holzdorf,Holzdorf,14,,51.766667,13.133333 cn,dongguapo,Dongguapo,11,,27.367222,109.753056 bg,aftane,Aftane,39,,42.4666667,26.8333333 tr,bogazoren,Bogazoren,58,,39.820034,38.176557 cn,zhangjiacun,Zhangjiacun,03,,28.072862,115.607195 ml,dekourabougou,Dékourabougou,07,,12.7713889,-7.4486111 ng,api,Api,43,,8.683333,11.133333 ua,aleksandrovka,Aleksandrovka,26,,46.533973,35.48823 ve,chorochoro arriba,Chorochoro Arriba,02,,9.3419444,-64.5475 us,schug,Schug,AR,,35.9658333,-90.4419444 co,san francisco,San Francisco,12,,8.120389,-75.759814 fr,biernes,Biernes,A4,,48.261514,4.915323 af,sorkh doz,Sorkh Doz,10,,31.266667,64.233333 la,ban kouei,Ban Kouei,23,,18.4,103.6 us,burton mill,Burton Mill,CA,,35.5005556,-118.4061111 ma,skira,Skira,47,,31.47277,-8.585898 ru,krasnenoye,Krasnenoye,15,,64.633333,174.8 so,aggherar,Aggherar,06,,4.05,42.6666667 tr,cilasor,Cilasor,25,,40.316667,40.616667 gr,markopoulon oropou,Markópoulon Oropoú,35,,38.2833333,23.8333333 ru,arabatuk,Arabatuk,93,,50.1583,117.0747 mm,numawng,Numawng,04,,26.05,97.8 us,micheew,Micheew,FM,,9.5802778,138.1641667 ir,bagdaneh,Bagdaneh,07,,29.2879,52.1384 ru,ozerki,Ozerki,60,,56.816667,30.116667 td,soumai,Soumaï,08,,9.1166667,16.25 cn,nanxiaofang,Nanxiaofang,19,,40.909666,122.136795 sn,nguieki pinkiou,Nguiéki Pinkiou,03,,14.9333333,-16.2166667 in,budha khera kalwa,Budha Khera Kalwa,10,,29.383333,76.55 lb,al kufur,Al Kufur,04,,33.4,35.4555556 tr,hilal,Hilâl,80,,37.475278,42.785833 co,aguas claras,Aguas Claras,12,,8.470064,-75.444257 bg,perival,Perival,58,,42.3666667,22.6333333 bg,golyamo yurendzhik,Golyamo Yurendzhik,43,,42.0166667,25.6 ru,sinyal-ubeyevo,Sinyal-Ubeyevo,16,,55.7449,47.2133 cn,lutuan,Lutuan,10,,41.116667,116.433333 lb,`ayn jwayya,`Ayn Jwayya,05,,34.05,35.7333333 mx,san bartolo ameyalco,San Bartolo Ameyalco,09,,19.331667,-99.273333 pk,rangewala,Rangewala,04,,29.887265,70.742874 vn,xom muc,Xóm Muc,16,,20.483333,105.616667 ru,staraya yaksarka,Staraya Yaksarka,57,,53.024712,45.428823 in,chikkerur,Chikkerur,19,,14.533333,75.3 co,hacienda junin,Hacienda Junín,27,,9.363371,-75.518784 zr,akbata,Akbata,09,,1.75,29.05 ir,mobeytiheh-e yek,Mobeytiheh-e Yek,15,,31.533,48.6624 af,dahan-e naw daraz,Dahan-e Naw Daraz,41,,34.240968,66.481819 pe,parahuillca,Parahuillca,12,,-11.4911111,-75.8205556 pe,palomar,Palomar,13,,-7.6316667,-77.6177778 ir,cheru,Cheru,42,,36.4669,57.7007 gr,kutles,Kútles,12,,40.4811111,22.3136111 gr,neokhorion,Neokhórion,19,,38.9833333,20.7833333 vn,tra kho,Tra Kho,36,,11.833333,108.816667 ar,los mogotes colorados,Los Mogotes Colorados,12,,-30.066667,-67.133333 ng,shima,Shima,35,,10.10039,12.614394 ph,alibasao,Alibasao,H3,,10.592358,123.159002 bo,tacabarenda,Tacabarenda,01,,-19.2333333,-63.9166667 vn,plei la iran,Plei La Iran,07,,13.633333,108.3 gr,dhitikos frangista,Dhitikos Frangísta,30,,38.95,21.6 in,hari,Hari,12,,34.086111,73.929167 af,muhammad shah,Muhammad Shah,29,,32.807044,68.482199 ua,rovno,Rovno,17,,46.013197,29.138906 nl,dordt,Dordt,11,,51.800653,4.698199 et,morka,Morka,54,,6.433333,37.3 ml,outombougou,Outombougou,06,,11.2833333,-6.1166667 ru,kalgan-bashkirskiy,Kalgan-Bashkirskiy,55,,51.5893,57.8178 br,tigre,Tigre,15,,-18.583333,-43.85 de,herleshof,Herleshof,02,,49.933333,10.266667 ru,kumak,Kumak,55,,51.169167,60.137222 de,bergdortf-harrl,Bergdortf-Harrl,06,,52.25,9.066667 cn,caitangxia,Caitangxia,30,,23.755026,111.742748 bd,bherunia,Bherunia,80,,23.4333333,90.9333333 at,fraham,Fraham,05,,47.983333,13.083333 ru,ostroukhovo,Ostroukhovo,09,,50.6806,38.2249 pl,biadacz,Biadacz,79,,50.74181,17.955067 co,joaquin,Joaquin,03,,6.225751,-71.521954 pl,otomin,Otomin,82,,54.319618,18.512479 id,muarapinggai,Muarapinggai,24,,-.673002,100.557516 id,kedungrong,Kedungrong,10,,-7.71,110.210833 cm,agorma,Agorma,13,,8.8333333,13.7166667 ru,pakulovo,Pakulovo,93,,51.65,114.6 ua,novyy poselok,Novyy Posëlok,04,,48.190862,35.679096 tr,cigyatagi,Cigyatagi,21,,38.206029,40.88309 et,chabr,Chabr,51,,9.6,37.066667 bf,bobonon,Bobonon,39,,11.55,-1.65 af,dust`ali,Dust`ali,42,,35.250114,69.749756 mg,bealama,Bealama,03,,-16.3833333,46.65 es,vegamolinos,Vegamolinos,58,,42.422622,-6.998764 mm,kanthitkon,Kanthitkon,07,,20.7166667,94.9 af,syahi,Syahi,01,,37.046436,71.221417 ro,mihaiu viteazul,Mihaiu Viteazul,14,,44.633333,28.683333 co,naya,Naya,29,,3.17042,-77.136492 us,reader,Reader,IL,,39.3055556,-90.0408333 cn,yulongge,Yulongge,29,,24.481684,103.161453 bd,chak brindaban,Chak Brindaban,83,,24.85,89.3666667 cn,yujiapo,Yujiapo,32,,31.331902,107.687178 us,flowers crossing,Flowers Crossing,GA,,33.9050000,-84.0311111 ua,smigirevk,Smigirevk,16,,47.07579,32.805164 ie,rath bhoth,Ráth Bhoth,06,,54.8747222,-7.5983333 jp,shimonogo,Shimonogo,26,,36.366667,138.216667 az,sincan,Sincan,37,,40.94276,47.585591 ru,novopushkino,Novopushkino,51,,54.955685,45.335771 ir,seyf khvar,Seyf Khvar,08,,37.4566,48.9197 my,rumah kudi,Rumah Kudi,11,,1.9,113.166667 cn,daqin tal,Daqin Tal,20,,42.883333,120.666667 id,teloekdalam,Teloekdalam,26,,.5729,97.8034 by,vasyuty,Vasyuty,07,,55.1436111,30.2877778 ru,leninskiy,Leninskiy,84,,48.702329,45.197981 kz,shoshkakol',Shoshkakol',04,,47.183333,57.833333 ua,svistunovka,Svistunovka,18,,49.256275,34.75465 cn,shangyatang,Shangyatang,03,,26.133696,116.172206 it,fontanigorda,Fontanigorda,08,,44.533333,9.3 tr,mergevash,Mergevash,21,,37.99,40.989722 gq,oguom,Oguom,08,,1.8,9.9 af,aq burya,Aq Burya,01,,37.026973,70.443016 br,vila verde,Vila Verde,21,,-22.73441,-43.354958 ma,krerma,Krerma,51,,32.219182,-8.803703 mm,daunglin-gya,Daunglin-gya,09,,19.45,96.2333333 by,kamen,Kamen,01,,52.3166667,26.3833333 cn,yijiadian,Yijiadian,05,,45.4,125.583333 bd,kamia,Kamia,81,,23.7833333,89.5 us,mound,Mound,LA,,32.3391667,-91.0238889 zr,kitaba,Kitaba,04,,-7.3166667,24.6166667 td,tiatala,Tiatala,06,,14.4333333,15.3833333 gb,chapelton,Chapelton,D4,,51.016667,-4.033333 mx,jagueycito,Jagüeycito,22,,21.533333,-99.2625 af,surkhdewal,Surkhdewal,09,,33.407612,64.670094 sl,bugami,Bugami,02,,9.5,-12.6166667 pk,asrayanwala,Asrayanwala,04,,30.898396,71.173238 ru,duldurga,Duldurga,93,6259,50.676111,113.593056 kh,phumi cheung kruos,Phumi Cheung Kruos,03,,12.2833333,104.8166667 ua,teremkivtsi,Teremkivtsi,09,,49.04067,26.344678 ru,mestovo,Mestovo,42,,58.9911,28.1634 gt,agua zarca,Agua Zarca,07,,14.766667,-90.383333 pl,zoppot,Zoppot,82,,54.434676,18.57076 ir,pir sharif,Pir Sharif,23,,33.7015,48.7108 fr,hautecour,Hautecour,B9,,45.499031,6.544704 mx,rancho chavez,Rancho Chavez,06,,28.233333,-106.933333 hu,szunyogcsarda,Szúnyogcsárda,21,,46.463241,18.442005 gr,xyrikon,Xyrikón,17,,39.7702778,21.0677778 sy,kefr el aouamid,Kefr el Aouamid,08,,33.6166667,36.1166667 th,ban thung ao,Ban Thung Ao,04,,19.466667,100.9 ir,behjerd,Behjerd,29,,28.668,57.6985 ru,bogoyavlenskoye,Bogoyavlenskoye,72,,52.733333,40.716667 ru,pyatino,Pyatino,21,,57.19746,42.147578 us,milton,Milton,MD,,38.4977778,-76.1855556 in,hakimgund,Hakimgund,12,,34.186111,74.752778 za,sediba,Sediba,03,,-29.028768,26.941587 de,krakow,Krakow,12,,53.65,12.266667 cn,wupo zhen,Wupo Zhen,31,,19.184289,110.067224 ru,kokina,Kokina,10,,52.4964,34.7808 tw,sanchiatsun,Sanchiatsun,04,,22.55,120.55 ir,sherk,Sherk,41,,33.210976,59.090381 za,neilersdrift,Neilersdrift,08,,-28.744931,20.985372 us,fayette acres,Fayette Acres,GA,,33.4916667,-84.4886111 br,ribeirao de cima,Ribeirão de Cima,05,,-13.216667,-41.916667 cn,zhenping,Zhenping,32,,32.23347,103.764065 ro,cotnari,Cotnari,23,7985,47.35,26.983333 gh,volivo gbesedom,Volivo Gbesedom,08,,6.1,0.25 cn,howchen,Howchen,25,,37,118.933333 kz,zhalanash,Zhalanash,01,,43.043056,78.641111 km,combani,Combani,02,,-11.6230556,43.3566667 mx,metepec,Metepec,21,,18.933333,-98.466667 ee,viki,Viki,14,,58.3416667,22.0991667 ao,casacota,Casacota,12,,-9.184999,15.74553 ru,ust-zaostrovskaya,Ust-Zaostrovskaya,06,,64.515833,40.513889 bo,chaillohorca,Chaillohorca,07,,-21.4,-66.7333333 tr,celabder,Celabder,63,,37.363641,39.590591 pt,marmeleira,Marmeleira,07,,40.176616,-8.265129 ro,pischinti,Pischinti,02,,45.866667,23.316667 pk,dinan shah takri,Dinan Shah Takri,05,,27.196344,68.798915 id,gedebeg,Gedebeg,07,,-7.0705,111.2974 ru,pokcha,Pokcha,34,,62.942197,56.120606 ru,afrikanka,Afrikanka,43,,52.431389,40.224167 us,maples corner,Maples Corner,KY,,37.8330556,-86.1336111 zw,milan,Milan,04,,-18.1333333,29.9166667 ru,ugrevatoye,Ugrevatoye,52,,57.091191,31.165908 lk,katkidantakulam,Katkidantakulam,31,,8.8166667,80.05 br,palmares,Palmares,27,,-21.1,-48.783333 ci,titikoa,Titikoa,92,,7.816667,-3.016667 de,goseck,Goseck,14,,51.2,11.866667 cn,lungwokouchieh,Lungwokouchieh,04,,32.278056,119.876111 us,hogan,Hogan,AR,,36.1577778,-91.1316667 pg,yumungu,Yumungu,11,,-3.8166667,143.5333333 af,kala,Kala,34,,34.734253,70.880425 pk,kanak,Kanak,02,,27.799182,66.598023 af,kakal,Kakal,13,,34.868049,69.183645 af,qaryeh-ye shakhdari,Qaryeh-ye Shakhdari,33,,35.425357,66.518996 sk,zadubnie,Zádubnie,08,,49.25,18.7833333 pk,wazir khan,Wazir Khan,04,,32.989825,71.709032 cd,kikumba,Kikumba,04,,-4.6,24.866667 ir,pa'in shadeh,Pa'in Shadeh,08,,37.2084,49.825 fi,potila,Potila,15,,63,21.966667 pk,nishpa kili,Nishpa Kili,02,,30.65006,68.466479 lb,abu halqah,Abu Halqah,03,,34.4166667,35.8333333 ru,verkhne-usugli,Verkhne-Usugli,93,,52.683333,115.233333 ir,andaq,Andaq,38,,36.2555,49.6436 tr,asagiduvecik,Asagiduvecik,55,,41.234992,36.320457 de,drossig,Drößig,11,,51.6,13.666667 ru,kakhib,Kakhib,17,,42.428492,46.59598 ht,montery,Montery,09,,19.4,-72.0333333 ua,futori,Futori,09,,49.808198,27.233445 td,koudou mechri,Koudou Mechri,04,,11.4333333,15.35 la,ban paicho,Ban Paicho,18,,21.904722,102.179444 ua,imeni khrushcheva,Imeni Khrushcheva,21,,50.780556,34.008056 it,angri,Angri,04,29745,40.733333,14.566667 ng,zaranda,Zaranda,27,,10.779847,12.011638 mn,tszara bulungoyn khid,Tszara Bulungöyn Khid,11,,46.9166667,109.0 ir,dizaj amir,Dizaj Amir,33,,37.9272,46.0645 gm,medina manneh,Medina Manneh,05,,13.5586111,-16.3944444 cn,xiaoling,Xiaoling,30,,24.030833,113.086389 csv-1.3.0/examples/data/smallpop-colon.csv000064400000000000000000000005731046102023000166300ustar 00000000000000city:region:country:population Southborough:MA:United States:9686 Northbridge:MA:United States:14061 Westborough:MA:United States:29313 Marlborough:MA:United States:38334 Springfield:MA:United States:152227 Springfield:MO:United States:150443 Springfield:NJ:United States:14976 Springfield:OH:United States:64325 Springfield:OR:United States:56032 Concord:NH:United States:42605 csv-1.3.0/examples/data/smallpop-no-headers.csv000064400000000000000000000005341046102023000175400ustar 00000000000000Southborough,MA,United States,9686 Northbridge,MA,United States,14061 Westborough,MA,United States,29313 Marlborough,MA,United States,38334 Springfield,MA,United States,152227 Springfield,MO,United States,150443 Springfield,NJ,United States,14976 Springfield,OH,United States,64325 Springfield,OR,United States,56032 Concord,NH,United States,42605 csv-1.3.0/examples/data/smallpop.csv000064400000000000000000000005731046102023000155200ustar 00000000000000city,region,country,population Southborough,MA,United States,9686 Northbridge,MA,United States,14061 Westborough,MA,United States,29313 Marlborough,MA,United States,38334 Springfield,MA,United States,152227 Springfield,MO,United States,150443 Springfield,NJ,United States,14976 Springfield,OH,United States,64325 Springfield,OR,United States,56032 Concord,NH,United States,42605 csv-1.3.0/examples/data/strange.csv000064400000000000000000000003451046102023000153310ustar 00000000000000"\"Hacksaw\" Jim Duggan";1987 "Bret \"Hit Man\" Hart";1984 # We're not sure when Rafael started, so omit the year. Rafael Halperin "\"Big Cat\" Ernie Ladd";1964 "\"Macho Man\" Randy Savage";1985 "Jake \"The Snake\" Roberts";1986 csv-1.3.0/examples/data/uspop-latin1.csv000064400000000000000000000077661046102023000162400ustar 00000000000000City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 akman,AL,,33.7133333,-87.3886111 Richards Crossroads,AL,,31.7369444,-85.2644444 Sandfort,AL,,32.3380556,-85.2233333 Selma,AL,18980,32.4072222,-87.0211111 Shadow Oaks Addition,AR,,34.9555556,-91.9475000 Summerville,AR,,33.5202778,-92.3555556 El Mirage,AZ,32308,33.6130556,-112.3238889 Willow Springs,AZ,,36.1894444,-111.3930556 Colton,CA,52335,34.0738889,-117.3127778 Fontana,CA,169160,34.0922222,-117.4341667 Fountain Valley,CA,56133,33.7091667,-117.9527778 Kings Beach,CA,,39.2377778,-120.0255556 Milpitas,CA,62636,37.4283333,-121.9055556 Mokelumne City,CA,,38.2530556,-121.4380556 Mount Eden,CA,,37.6361111,-122.0988889 San Clemente,CA,62272,33.4269444,-117.6111111 Seal Beach,CA,24404,33.7413889,-118.1038889 West Hollywood,CA,37031,34.0900000,-118.3608333 Bridgeport,CT,139090,41.1669444,-73.2052778 Orange,CT,13860,41.2783333,-73.0261111 Azalea Park,FL,12347,28.5408333,-81.3008333 Bratt,FL,,30.9655556,-87.4275000 Cutler Ridge,FL,26831,25.5802778,-80.3469444 Dunn Creek,FL,,30.4861111,-81.5908333 South Daytona,FL,14451,29.1655556,-81.0047222 Brickhouse,GA,,33.7750000,-82.8108333 Lakeview Heights,GA,,33.6188889,-84.4505556 Perry,GA,11234,32.4580556,-83.7316667 Roswell,GA,77218,34.0230556,-84.3616667 Warfield,GA,,33.2994444,-83.3838889 Kirkman,IA,,41.7286111,-95.2650000 Travers,ID,,42.6091667,-113.7361111 Calhoun,IL,,38.6502778,-88.0436111 Cleone,IL,,39.4230556,-87.9075000 Deerfield,IL,19618,42.1711111,-87.8444444 Highbank Town,IN,,38.5144444,-87.1502778 Indianapolis,IN,773283,39.7683333,-86.1580556 Leona,KS,,39.7872222,-95.3213889 New Salem,KS,,37.3105556,-96.8950000 Flint Springs,KY,,37.3433333,-86.7136111 Harvey,LA,22383,29.9033333,-90.0772222 Jennings,LA,10547,30.2222222,-92.6569444 King,LA,,32.2405556,-91.1213889 Opelousas,LA,22835,30.5333333,-92.0813889 Reading,MA,23441,42.5255556,-71.0958333 Mount Airy,MD,8714,39.3761111,-77.1550000 Auburn,ME,23488,44.0977778,-70.2316667 Ellsworth,ME,7055,44.5433333,-68.4200000 Sturgis,MI,11081,41.7991667,-85.4191667 Brooklyn Center,MN,27718,45.0761111,-93.3325000 Coon Rapids,MN,62528,45.1200000,-93.2875000 Moark,MO,,36.3825000,-89.9888889 Owens,MO,,37.2188889,-92.4027778 Natchez,MS,17118,31.5602778,-91.4030556 Rogers,NE,,41.4652778,-96.9147222 Hollis,NH,7711,42.7430556,-71.5922222 Bayonne,NJ,59878,40.6686111,-74.1147222 Belleville,NJ,36878,40.7936111,-74.1505556 Frenchtown,NJ,,40.5261111,-75.0619444 Sharp,NJ,,40.0922222,-74.7427778 Los Ranchos de Albuquerque,NM,5184,35.1619444,-106.6422222 Deerhead,NY,,44.3522222,-73.5436111 Howland,NY,,43.0791667,-76.6827778 Lake Grove,NY,10715,40.8527778,-73.1155556 Penfield Center,NY,,43.1672222,-77.4313889 Comet,OH,,39.1158333,-82.5511111 Little Mountain,OH,,41.6402778,-81.2819444 Mason,OH,30988,39.3600000,-84.3100000 Siverly,OH,,39.3488889,-82.5000000 Gladstone,OR,12249,45.3808333,-122.5936111 Gresham,OR,98851,45.4983333,-122.4302778 Ephrata,PA,13182,40.1797222,-76.1791667 Mount Airy,PA,,41.0941667,-79.5222222 Uhlerstown,PA,,40.5252778,-75.0736111 Weis Library,PA,,42.0483333,-80.1700000 Woodcock,PA,,41.7547222,-80.0858333 Rock Hill,SC,59766,34.9247222,-81.0252778 Summerville,SC,34958,33.0183333,-80.1758333 Wolfton,SC,,33.5883333,-80.9819444 Avenger Village,TX,,32.4594444,-100.4552778 Brashear,TX,,33.1186111,-95.7333333 Dumas Junction,TX,,35.2127778,-101.8019444 Edinburg,TX,60509,26.3013889,-98.1630556 Eichelberger Crossing,TX,,31.6166667,-97.3077778 Euless,TX,53221,32.8369444,-97.0816667 Greenock,TX,,31.7661111,-97.3452778 Greenville,TX,25382,33.1383333,-96.1105556 Highland Village,TX,15365,33.0916667,-97.0463889 Maxey Town,TX,,31.4433333,-94.1225000 Pharr,TX,60687,26.1944444,-98.1833333 Snyder,TX,10600,32.7177778,-100.9172222 Webster,TX,9038,29.5375000,-95.1180556 Wild Peach Village,TX,,29.0833333,-95.6336111 Misty Hills Numbers 1-7,UT,,40.6416667,-111.9955556 Pleasant Grove,UT,24449,40.3641667,-111.7377778 Rio Vista,VA,,37.5688889,-77.5230556 Tabernacle,VA,,37.4230556,-76.2966667 Cody,WY,9161,44.5263889,-109.0558333 csv-1.3.0/examples/data/uspop-null.csv000064400000000000000000000100021046102023000157730ustar 00000000000000City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 Oakman,AL,,33.7133333,-87.3886111 Richards Crossroads,AL,,31.7369444,-85.2644444 Sandfort,AL,,32.3380556,-85.2233333 Selma,AL,18980,32.4072222,-87.0211111 Shadow Oaks Addition,AR,,34.9555556,-91.9475000 Summerville,AR,,33.5202778,-92.3555556 El Mirage,AZ,32308,33.6130556,-112.3238889 Willow Springs,AZ,,36.1894444,-111.3930556 Colton,CA,52335,34.0738889,-117.3127778 Fontana,CA,169160,34.0922222,-117.4341667 Fountain Valley,CA,56133,33.7091667,-117.9527778 Kings Beach,CA,,39.2377778,-120.0255556 Milpitas,CA,62636,37.4283333,-121.9055556 Mokelumne City,CA,,38.2530556,-121.4380556 Mount Eden,CA,,37.6361111,-122.0988889 San Clemente,CA,62272,33.4269444,-117.6111111 Seal Beach,CA,24404,33.7413889,-118.1038889 West Hollywood,CA,37031,34.0900000,-118.3608333 Bridgeport,CT,139090,41.1669444,-73.2052778 Orange,CT,13860,41.2783333,-73.0261111 Azalea Park,FL,12347,28.5408333,-81.3008333 Bratt,FL,,30.9655556,-87.4275000 Cutler Ridge,FL,26831,25.5802778,-80.3469444 Dunn Creek,FL,,30.4861111,-81.5908333 South Daytona,FL,14451,29.1655556,-81.0047222 Brickhouse,GA,,33.7750000,-82.8108333 Lakeview Heights,GA,,33.6188889,-84.4505556 Perry,GA,11234,32.4580556,-83.7316667 Roswell,GA,77218,34.0230556,-84.3616667 Warfield,GA,,33.2994444,-83.3838889 Kirkman,IA,,41.7286111,-95.2650000 Travers,ID,,42.6091667,-113.7361111 Calhoun,IL,,38.6502778,-88.0436111 Cleone,IL,,39.4230556,-87.9075000 Deerfield,IL,19618,42.1711111,-87.8444444 Highbank Town,IN,,38.5144444,-87.1502778 Indianapolis,IN,773283,39.7683333,-86.1580556 Leona,KS,,39.7872222,-95.3213889 New Salem,KS,,37.3105556,-96.8950000 Flint Springs,KY,NULL,37.3433333,-86.7136111 Harvey,LA,22383,29.9033333,-90.0772222 Jennings,LA,10547,30.2222222,-92.6569444 King,LA,,32.2405556,-91.1213889 Opelousas,LA,22835,30.5333333,-92.0813889 Reading,MA,23441,42.5255556,-71.0958333 Mount Airy,MD,8714,39.3761111,-77.1550000 Auburn,ME,23488,44.0977778,-70.2316667 Ellsworth,ME,7055,44.5433333,-68.4200000 Sturgis,MI,11081,41.7991667,-85.4191667 Brooklyn Center,MN,27718,45.0761111,-93.3325000 Coon Rapids,MN,62528,45.1200000,-93.2875000 Moark,MO,NULL,36.3825000,-89.9888889 Owens,MO,,37.2188889,-92.4027778 Natchez,MS,17118,31.5602778,-91.4030556 Rogers,NE,,41.4652778,-96.9147222 Hollis,NH,7711,42.7430556,-71.5922222 Bayonne,NJ,59878,40.6686111,-74.1147222 Belleville,NJ,36878,40.7936111,-74.1505556 Frenchtown,NJ,NULL,40.5261111,-75.0619444 Sharp,NJ,,40.0922222,-74.7427778 Los Ranchos de Albuquerque,NM,5184,35.1619444,-106.6422222 Deerhead,NY,,44.3522222,-73.5436111 Howland,NY,,43.0791667,-76.6827778 Lake Grove,NY,10715,40.8527778,-73.1155556 Penfield Center,NY,,43.1672222,-77.4313889 Comet,OH,,39.1158333,-82.5511111 Little Mountain,OH,,41.6402778,-81.2819444 Mason,OH,30988,39.3600000,-84.3100000 Siverly,OH,,39.3488889,-82.5000000 Gladstone,OR,12249,45.3808333,-122.5936111 Gresham,OR,98851,45.4983333,-122.4302778 Ephrata,PA,13182,40.1797222,-76.1791667 Mount Airy,PA,,41.0941667,-79.5222222 Uhlerstown,PA,,40.5252778,-75.0736111 Weis Library,PA,,42.0483333,-80.1700000 Woodcock,PA,,41.7547222,-80.0858333 Rock Hill,SC,59766,34.9247222,-81.0252778 Summerville,SC,34958,33.0183333,-80.1758333 Wolfton,SC,,33.5883333,-80.9819444 Avenger Village,TX,,32.4594444,-100.4552778 Brashear,TX,,33.1186111,-95.7333333 Dumas Junction,TX,,35.2127778,-101.8019444 Edinburg,TX,60509,26.3013889,-98.1630556 Eichelberger Crossing,TX,,31.6166667,-97.3077778 Euless,TX,53221,32.8369444,-97.0816667 Greenock,TX,,31.7661111,-97.3452778 Greenville,TX,25382,33.1383333,-96.1105556 Highland Village,TX,15365,33.0916667,-97.0463889 Maxey Town,TX,,31.4433333,-94.1225000 Pharr,TX,60687,26.1944444,-98.1833333 Snyder,TX,10600,32.7177778,-100.9172222 Webster,TX,9038,29.5375000,-95.1180556 Wild Peach Village,TX,,29.0833333,-95.6336111 Misty Hills Numbers 1-7,UT,,40.6416667,-111.9955556 Pleasant Grove,UT,24449,40.3641667,-111.7377778 Rio Vista,VA,,37.5688889,-77.5230556 Tabernacle,VA,,37.4230556,-76.2966667 Cody,WY,9161,44.5263889,-109.0558333 csv-1.3.0/examples/data/uspop.csv000064400000000000000000000077661046102023000150520ustar 00000000000000City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 Oakman,AL,,33.7133333,-87.3886111 Richards Crossroads,AL,,31.7369444,-85.2644444 Sandfort,AL,,32.3380556,-85.2233333 Selma,AL,18980,32.4072222,-87.0211111 Shadow Oaks Addition,AR,,34.9555556,-91.9475000 Summerville,AR,,33.5202778,-92.3555556 El Mirage,AZ,32308,33.6130556,-112.3238889 Willow Springs,AZ,,36.1894444,-111.3930556 Colton,CA,52335,34.0738889,-117.3127778 Fontana,CA,169160,34.0922222,-117.4341667 Fountain Valley,CA,56133,33.7091667,-117.9527778 Kings Beach,CA,,39.2377778,-120.0255556 Milpitas,CA,62636,37.4283333,-121.9055556 Mokelumne City,CA,,38.2530556,-121.4380556 Mount Eden,CA,,37.6361111,-122.0988889 San Clemente,CA,62272,33.4269444,-117.6111111 Seal Beach,CA,24404,33.7413889,-118.1038889 West Hollywood,CA,37031,34.0900000,-118.3608333 Bridgeport,CT,139090,41.1669444,-73.2052778 Orange,CT,13860,41.2783333,-73.0261111 Azalea Park,FL,12347,28.5408333,-81.3008333 Bratt,FL,,30.9655556,-87.4275000 Cutler Ridge,FL,26831,25.5802778,-80.3469444 Dunn Creek,FL,,30.4861111,-81.5908333 South Daytona,FL,14451,29.1655556,-81.0047222 Brickhouse,GA,,33.7750000,-82.8108333 Lakeview Heights,GA,,33.6188889,-84.4505556 Perry,GA,11234,32.4580556,-83.7316667 Roswell,GA,77218,34.0230556,-84.3616667 Warfield,GA,,33.2994444,-83.3838889 Kirkman,IA,,41.7286111,-95.2650000 Travers,ID,,42.6091667,-113.7361111 Calhoun,IL,,38.6502778,-88.0436111 Cleone,IL,,39.4230556,-87.9075000 Deerfield,IL,19618,42.1711111,-87.8444444 Highbank Town,IN,,38.5144444,-87.1502778 Indianapolis,IN,773283,39.7683333,-86.1580556 Leona,KS,,39.7872222,-95.3213889 New Salem,KS,,37.3105556,-96.8950000 Flint Springs,KY,,37.3433333,-86.7136111 Harvey,LA,22383,29.9033333,-90.0772222 Jennings,LA,10547,30.2222222,-92.6569444 King,LA,,32.2405556,-91.1213889 Opelousas,LA,22835,30.5333333,-92.0813889 Reading,MA,23441,42.5255556,-71.0958333 Mount Airy,MD,8714,39.3761111,-77.1550000 Auburn,ME,23488,44.0977778,-70.2316667 Ellsworth,ME,7055,44.5433333,-68.4200000 Sturgis,MI,11081,41.7991667,-85.4191667 Brooklyn Center,MN,27718,45.0761111,-93.3325000 Coon Rapids,MN,62528,45.1200000,-93.2875000 Moark,MO,,36.3825000,-89.9888889 Owens,MO,,37.2188889,-92.4027778 Natchez,MS,17118,31.5602778,-91.4030556 Rogers,NE,,41.4652778,-96.9147222 Hollis,NH,7711,42.7430556,-71.5922222 Bayonne,NJ,59878,40.6686111,-74.1147222 Belleville,NJ,36878,40.7936111,-74.1505556 Frenchtown,NJ,,40.5261111,-75.0619444 Sharp,NJ,,40.0922222,-74.7427778 Los Ranchos de Albuquerque,NM,5184,35.1619444,-106.6422222 Deerhead,NY,,44.3522222,-73.5436111 Howland,NY,,43.0791667,-76.6827778 Lake Grove,NY,10715,40.8527778,-73.1155556 Penfield Center,NY,,43.1672222,-77.4313889 Comet,OH,,39.1158333,-82.5511111 Little Mountain,OH,,41.6402778,-81.2819444 Mason,OH,30988,39.3600000,-84.3100000 Siverly,OH,,39.3488889,-82.5000000 Gladstone,OR,12249,45.3808333,-122.5936111 Gresham,OR,98851,45.4983333,-122.4302778 Ephrata,PA,13182,40.1797222,-76.1791667 Mount Airy,PA,,41.0941667,-79.5222222 Uhlerstown,PA,,40.5252778,-75.0736111 Weis Library,PA,,42.0483333,-80.1700000 Woodcock,PA,,41.7547222,-80.0858333 Rock Hill,SC,59766,34.9247222,-81.0252778 Summerville,SC,34958,33.0183333,-80.1758333 Wolfton,SC,,33.5883333,-80.9819444 Avenger Village,TX,,32.4594444,-100.4552778 Brashear,TX,,33.1186111,-95.7333333 Dumas Junction,TX,,35.2127778,-101.8019444 Edinburg,TX,60509,26.3013889,-98.1630556 Eichelberger Crossing,TX,,31.6166667,-97.3077778 Euless,TX,53221,32.8369444,-97.0816667 Greenock,TX,,31.7661111,-97.3452778 Greenville,TX,25382,33.1383333,-96.1105556 Highland Village,TX,15365,33.0916667,-97.0463889 Maxey Town,TX,,31.4433333,-94.1225000 Pharr,TX,60687,26.1944444,-98.1833333 Snyder,TX,10600,32.7177778,-100.9172222 Webster,TX,9038,29.5375000,-95.1180556 Wild Peach Village,TX,,29.0833333,-95.6336111 Misty Hills Numbers 1-7,UT,,40.6416667,-111.9955556 Pleasant Grove,UT,24449,40.3641667,-111.7377778 Rio Vista,VA,,37.5688889,-77.5230556 Tabernacle,VA,,37.4230556,-76.2966667 Cody,WY,9161,44.5263889,-109.0558333 csv-1.3.0/examples/tutorial-error-01.rs000064400000000000000000000003231046102023000160120ustar 00000000000000use std::io; fn main() { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { let record = result.expect("a CSV record"); println!("{:?}", record); } } csv-1.3.0/examples/tutorial-error-02.rs000064400000000000000000000010051046102023000160110ustar 00000000000000use std::{io, process}; fn main() { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // Examine our Result. // If there was no problem, print the record. // Otherwise, print the error message and quit the program. match result { Ok(record) => println!("{:?}", record), Err(err) => { println!("error reading CSV from : {}", err); process::exit(1); } } } } csv-1.3.0/examples/tutorial-error-03.rs000064400000000000000000000011621046102023000160160ustar 00000000000000use std::{error::Error, io, process}; fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // Examine our Result. // If there was no problem, print the record. // Otherwise, convert our error to a Box and return it. match result { Err(err) => return Err(From::from(err)), Ok(record) => { println!("{:?}", record); } } } Ok(()) } csv-1.3.0/examples/tutorial-error-04.rs000064400000000000000000000007601046102023000160220ustar 00000000000000use std::{error::Error, io, process}; fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // This is effectively the same code as our `match` in the // previous example. In other words, `?` is syntactic sugar. let record = result?; println!("{:?}", record); } Ok(()) } csv-1.3.0/examples/tutorial-perf-alloc-01.rs000064400000000000000000000010321046102023000167030ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut count = 0; for result in rdr.records() { let record = result?; if &record[0] == "us" && &record[3] == "MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } csv-1.3.0/examples/tutorial-perf-alloc-02.rs000064400000000000000000000010411046102023000167040ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut count = 0; for result in rdr.byte_records() { let record = result?; if &record[0] == b"us" && &record[3] == b"MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } csv-1.3.0/examples/tutorial-perf-alloc-03.rs000064400000000000000000000010701046102023000167070ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut record = csv::ByteRecord::new(); let mut count = 0; while rdr.read_byte_record(&mut record)? { if &record[0] == b"us" && &record[3] == b"MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } csv-1.3.0/examples/tutorial-perf-core-01.rs000064400000000000000000000053651046102023000165560ustar 00000000000000use std::io::{self, Read}; use std::process; use csv_core::{ReadFieldResult, Reader}; fn run(mut data: &[u8]) -> Option { let mut rdr = Reader::new(); // Count the number of records in Massachusetts. let mut count = 0; // Indicates the current field index. Reset to 0 at start of each record. let mut fieldidx = 0; // True when the current record is in the United States. let mut inus = false; // Buffer for field data. Must be big enough to hold the largest field. let mut field = [0; 1024]; loop { // Attempt to incrementally read the next CSV field. let (result, nread, nwrite) = rdr.read_field(data, &mut field); // nread is the number of bytes read from our input. We should never // pass those bytes to read_field again. data = &data[nread..]; // nwrite is the number of bytes written to the output buffer `field`. // The contents of the buffer after this point is unspecified. let field = &field[..nwrite]; match result { // We don't need to handle this case because we read all of the // data up front. If we were reading data incrementally, then this // would be a signal to read more. ReadFieldResult::InputEmpty => {} // If we get this case, then we found a field that contains more // than 1024 bytes. We keep this example simple and just fail. ReadFieldResult::OutputFull => { return None; } // This case happens when we've successfully read a field. If the // field is the last field in a record, then `record_end` is true. ReadFieldResult::Field { record_end } => { if fieldidx == 0 && field == b"us" { inus = true; } else if inus && fieldidx == 3 && field == b"MA" { count += 1; } if record_end { fieldidx = 0; inus = false; } else { fieldidx += 1; } } // This case happens when the CSV reader has successfully exhausted // all input. ReadFieldResult::End => { break; } } } Some(count) } fn main() { // Read the entire contents of stdin up front. let mut data = vec![]; if let Err(err) = io::stdin().read_to_end(&mut data) { println!("{}", err); process::exit(1); } match run(&data) { None => { println!("error: could not count records, buffer too small"); process::exit(1); } Some(count) => { println!("{}", count); } } } csv-1.3.0/examples/tutorial-perf-serde-01.rs000064400000000000000000000015101046102023000167140ustar 00000000000000#![allow(dead_code)] use std::{error::Error, io, process}; use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { country: String, city: String, accent_city: String, region: String, population: Option, latitude: f64, longitude: f64, } fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut count = 0; for result in rdr.deserialize() { let record: Record = result?; if record.country == "us" && record.region == "MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } csv-1.3.0/examples/tutorial-perf-serde-02.rs000064400000000000000000000017241046102023000167240ustar 00000000000000#![allow(dead_code)] use serde::Deserialize; use std::{error::Error, io, process}; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record<'a> { country: &'a str, city: &'a str, accent_city: &'a str, region: &'a str, population: Option, latitude: f64, longitude: f64, } fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut raw_record = csv::StringRecord::new(); let headers = rdr.headers()?.clone(); let mut count = 0; while rdr.read_record(&mut raw_record)? { let record: Record = raw_record.deserialize(Some(&headers))?; if record.country == "us" && record.region == "MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } csv-1.3.0/examples/tutorial-perf-serde-03.rs000064400000000000000000000017431046102023000167260ustar 00000000000000#![allow(dead_code)] use std::{error::Error, io, process}; use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record<'a> { country: &'a [u8], city: &'a [u8], accent_city: &'a [u8], region: &'a [u8], population: Option, latitude: f64, longitude: f64, } fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut raw_record = csv::ByteRecord::new(); let headers = rdr.byte_headers()?.clone(); let mut count = 0; while rdr.read_byte_record(&mut raw_record)? { let record: Record = raw_record.deserialize(Some(&headers))?; if record.country == b"us" && record.region == b"MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } csv-1.3.0/examples/tutorial-pipeline-pop-01.rs000064400000000000000000000042361046102023000172710ustar 00000000000000use std::{env, error::Error, io, process}; use serde::{Deserialize, Serialize}; // Unlike previous examples, we derive both Deserialize and Serialize. This // means we'll be able to automatically deserialize and serialize this type. #[derive(Debug, Deserialize, Serialize)] #[serde(rename_all = "PascalCase")] struct Record { city: String, state: String, population: Option, latitude: f64, longitude: f64, } fn run() -> Result<(), Box> { // Get the query from the positional arguments. // If one doesn't exist or isn't an integer, return an error. let minimum_pop: u64 = match env::args().nth(1) { None => return Err(From::from("expected 1 argument, but got none")), Some(arg) => arg.parse()?, }; // Build CSV readers and writers to stdin and stdout, respectively. // Note that we don't need to write headers explicitly. Since we're // serializing a custom struct, that's done for us automatically. let mut rdr = csv::Reader::from_reader(io::stdin()); let mut wtr = csv::Writer::from_writer(io::stdout()); // Iterate over all the records in `rdr`, and write only records containing // a population that is greater than or equal to `minimum_pop`. for result in rdr.deserialize() { // Remember that when deserializing, we must use a type hint to // indicate which type we want to deserialize our record into. let record: Record = result?; // `map_or` is a combinator on `Option`. It take two parameters: // a value to use when the `Option` is `None` (i.e., the record has // no population count) and a closure that returns another value of // the same type when the `Option` is `Some`. In this case, we test it // against our minimum population count that we got from the command // line. if record.population.map_or(false, |pop| pop >= minimum_pop) { wtr.serialize(record)?; } } // CSV writers use an internal buffer, so we should always flush when done. wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-pipeline-search-01.rs000064400000000000000000000021671046102023000177410ustar 00000000000000use std::{env, error::Error, io, process}; fn run() -> Result<(), Box> { // Get the query from the positional arguments. // If one doesn't exist, return an error. let query = match env::args().nth(1) { None => return Err(From::from("expected 1 argument, but got none")), Some(query) => query, }; // Build CSV readers and writers to stdin and stdout, respectively. let mut rdr = csv::Reader::from_reader(io::stdin()); let mut wtr = csv::Writer::from_writer(io::stdout()); // Before reading our data records, we should write the header record. wtr.write_record(rdr.headers()?)?; // Iterate over all the records in `rdr`, and write only records containing // `query` to `wtr`. for result in rdr.records() { let record = result?; if record.iter().any(|field| field == &query) { wtr.write_record(&record)?; } } // CSV writers use an internal buffer, so we should always flush when done. wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-pipeline-search-02.rs000064400000000000000000000015601046102023000177360ustar 00000000000000use std::{env, error::Error, io, process}; fn run() -> Result<(), Box> { let query = match env::args().nth(1) { None => return Err(From::from("expected 1 argument, but got none")), Some(query) => query, }; let mut rdr = csv::Reader::from_reader(io::stdin()); let mut wtr = csv::Writer::from_writer(io::stdout()); wtr.write_record(rdr.byte_headers()?)?; for result in rdr.byte_records() { let record = result?; // `query` is a `String` while `field` is now a `&[u8]`, so we'll // need to convert `query` to `&[u8]` before doing a comparison. if record.iter().any(|field| field == query.as_bytes()) { wtr.write_record(&record)?; } } wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-01.rs000064400000000000000000000014421046102023000155770ustar 00000000000000use std::{env, error::Error, ffi::OsString, fs::File, process}; fn run() -> Result<(), Box> { let file_path = get_first_arg()?; let file = File::open(file_path)?; let mut rdr = csv::Reader::from_reader(file); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } /// Returns the first positional argument sent to this process. If there are no /// positional arguments, then this returns an error. fn get_first_arg() -> Result> { match env::args_os().nth(1) { None => Err(From::from("expected 1 argument, but got none")), Some(file_path) => Ok(file_path), } } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-delimiter-01.rs000064400000000000000000000010421046102023000175470ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new() .has_headers(false) .delimiter(b';') .double_quote(false) .escape(Some(b'\\')) .flexible(true) .comment(Some(b'#')) .from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-headers-01.rs000064400000000000000000000006201046102023000172050ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new().has_headers(false).from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-headers-02.rs000064400000000000000000000013341046102023000172110ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); { // We nest this call in its own scope because of lifetimes. let headers = rdr.headers()?; println!("{:?}", headers); } for result in rdr.records() { let record = result?; println!("{:?}", record); } // We can ask for the headers at any time. There's no need to nest this // call in its own scope because we never try to borrow the reader again. let headers = rdr.headers()?; println!("{:?}", headers); Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-serde-01.rs000064400000000000000000000020211046102023000166710ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { let record = result?; let city = &record[0]; let state = &record[1]; // Some records are missing population counts, so if we can't // parse a number, treat the population count as missing instead // of returning an error. let pop: Option = record[2].parse().ok(); // Lucky us! Latitudes and longitudes are available for every record. // Therefore, if one couldn't be parsed, return an error. let latitude: f64 = record[3].parse()?; let longitude: f64 = record[4].parse()?; println!( "city: {:?}, state: {:?}, \ pop: {:?}, latitude: {:?}, longitude: {:?}", city, state, pop, latitude, longitude ); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-serde-02.rs000064400000000000000000000013111046102023000166730ustar 00000000000000use std::{error::Error, io, process}; // This introduces a type alias so that we can conveniently reference our // record type. type Record = (String, String, Option, f64, f64); fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); // Instead of creating an iterator with the `records` method, we create // an iterator with the `deserialize` method. for result in rdr.deserialize() { // We must tell Serde what type we want to deserialize into. let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-serde-03.rs000064400000000000000000000010251046102023000166760ustar 00000000000000use std::collections::HashMap; use std::{error::Error, io, process}; // This introduces a type alias so that we can conveniently reference our // record type. type Record = HashMap; fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-serde-04.rs000064400000000000000000000017421046102023000167050ustar 00000000000000#![allow(dead_code)] use std::{error::Error, io, process}; // This lets us write `#[derive(Deserialize)]`. use serde::Deserialize; // We don't need to derive `Debug` (which doesn't require Serde), but it's a // good habit to do it for all your types. // // Notice that the field names in this struct are NOT in the same order as // the fields in the CSV data! #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { latitude: f64, longitude: f64, population: Option, city: String, state: String, } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); // Try this if you don't like each record smushed on one line: // println!("{:#?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-serde-invalid-01.rs000064400000000000000000000011401046102023000203160ustar 00000000000000#![allow(dead_code)] use std::{error::Error, io, process}; use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { latitude: f64, longitude: f64, population: Option, city: String, state: String, } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-read-serde-invalid-02.rs000064400000000000000000000012261046102023000203240ustar 00000000000000#![allow(dead_code)] use std::{error::Error, io, process}; use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { latitude: f64, longitude: f64, #[serde(deserialize_with = "csv::invalid_option")] population: Option, city: String, state: String, } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-setup-01.rs000064400000000000000000000011321046102023000160200ustar 00000000000000// Import the standard library's I/O module so we can read from stdin. use std::io; // The `main` function is where your program starts executing. fn main() { // Create a CSV parser that reads data from stdin. let mut rdr = csv::Reader::from_reader(io::stdin()); // Loop over each record. for result in rdr.records() { // An error may occur, so abort the program in an unfriendly way. // We will make this more friendly later! let record = result.expect("a CSV record"); // Print a debug version of the record. println!("{:?}", record); } } csv-1.3.0/examples/tutorial-write-01.rs000064400000000000000000000017251046102023000160220ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // Since we're writing records manually, we must explicitly write our // header record. A header record is written the same way that other // records are written. wtr.write_record(&[ "City", "State", "Population", "Latitude", "Longitude", ])?; wtr.write_record(&[ "Davidsons Landing", "AK", "", "65.2419444", "-165.2716667", ])?; wtr.write_record(&["Kenai", "AK", "7610", "60.5544444", "-151.2583333"])?; wtr.write_record(&["Oakman", "AL", "", "33.7133333", "-87.3886111"])?; // A CSV writer maintains an internal buffer, so it's important // to flush the buffer when you're done. wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-write-02.rs000064400000000000000000000021021046102023000160110ustar 00000000000000use std::{env, error::Error, ffi::OsString, process}; fn run() -> Result<(), Box> { let file_path = get_first_arg()?; let mut wtr = csv::Writer::from_path(file_path)?; wtr.write_record(&[ "City", "State", "Population", "Latitude", "Longitude", ])?; wtr.write_record(&[ "Davidsons Landing", "AK", "", "65.2419444", "-165.2716667", ])?; wtr.write_record(&["Kenai", "AK", "7610", "60.5544444", "-151.2583333"])?; wtr.write_record(&["Oakman", "AL", "", "33.7133333", "-87.3886111"])?; wtr.flush()?; Ok(()) } /// Returns the first positional argument sent to this process. If there are no /// positional arguments, then this returns an error. fn get_first_arg() -> Result> { match env::args_os().nth(1) { None => Err(From::from("expected 1 argument, but got none")), Some(file_path) => Ok(file_path), } } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-write-delimiter-01.rs000064400000000000000000000014301046102023000177670ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut wtr = csv::WriterBuilder::new() .delimiter(b'\t') .quote_style(csv::QuoteStyle::NonNumeric) .from_writer(io::stdout()); wtr.write_record(&[ "City", "State", "Population", "Latitude", "Longitude", ])?; wtr.write_record(&[ "Davidsons Landing", "AK", "", "65.2419444", "-165.2716667", ])?; wtr.write_record(&["Kenai", "AK", "7610", "60.5544444", "-151.2583333"])?; wtr.write_record(&["Oakman", "AL", "", "33.7133333", "-87.3886111"])?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-write-serde-01.rs000064400000000000000000000021021046102023000171100ustar 00000000000000use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // We still need to write headers manually. wtr.write_record(&[ "City", "State", "Population", "Latitude", "Longitude", ])?; // But now we can write records by providing a normal Rust value. // // Note that the odd `None::` syntax is required because `None` on // its own doesn't have a concrete type, but Serde needs a concrete type // in order to serialize it. That is, `None` has type `Option` but // `None::` has type `Option`. wtr.serialize(( "Davidsons Landing", "AK", None::, 65.2419444, -165.2716667, ))?; wtr.serialize(("Kenai", "AK", Some(7610), 60.5544444, -151.2583333))?; wtr.serialize(("Oakman", "AL", None::, 33.7133333, -87.3886111))?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/examples/tutorial-write-serde-02.rs000064400000000000000000000020731046102023000171200ustar 00000000000000use std::{error::Error, io, process}; use serde::Serialize; // Note that structs can derive both Serialize and Deserialize! #[derive(Debug, Serialize)] #[serde(rename_all = "PascalCase")] struct Record<'a> { city: &'a str, state: &'a str, population: Option, latitude: f64, longitude: f64, } fn run() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); wtr.serialize(Record { city: "Davidsons Landing", state: "AK", population: None, latitude: 65.2419444, longitude: -165.2716667, })?; wtr.serialize(Record { city: "Kenai", state: "AK", population: Some(7610), latitude: 60.5544444, longitude: -151.2583333, })?; wtr.serialize(Record { city: "Oakman", state: "AL", population: None, latitude: 33.7133333, longitude: -87.3886111, })?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } csv-1.3.0/rustfmt.toml000064400000000000000000000000541046102023000130200ustar 00000000000000max_width = 79 use_small_heuristics = "max" csv-1.3.0/src/byte_record.rs000064400000000000000000001023571046102023000140660ustar 00000000000000use std::{ cmp, fmt, iter::FromIterator, ops::{self, Range}, result, }; use serde::de::Deserialize; use crate::{ deserializer::deserialize_byte_record, error::{new_utf8_error, Result, Utf8Error}, string_record::StringRecord, }; /// A single CSV record stored as raw bytes. /// /// A byte record permits reading or writing CSV rows that are not UTF-8. /// In general, you should prefer using a /// [`StringRecord`](struct.StringRecord.html) /// since it is more ergonomic, but a `ByteRecord` is provided in case you need /// it. /// /// If you are using the Serde (de)serialization APIs, then you probably never /// need to interact with a `ByteRecord` or a `StringRecord`. However, there /// are some circumstances in which you might need to use a raw record type /// while still using Serde. For example, if you need to deserialize possibly /// invalid UTF-8 fields, then you'll need to first read your record into a /// `ByteRecord`, and then use `ByteRecord::deserialize` to run Serde. Another /// reason for using the raw record deserialization APIs is if you're using /// Serde to read into borrowed data such as a `&'a str` or a `&'a [u8]`. /// /// Two `ByteRecord`s are compared on the basis of their field data. Any /// position information associated with the records is ignored. #[derive(Clone, Eq)] pub struct ByteRecord(Box); impl PartialEq for ByteRecord { fn eq(&self, other: &ByteRecord) -> bool { if self.len() != other.len() { return false; } self.iter().zip(other.iter()).all(|e| e.0 == e.1) } } impl> PartialEq> for ByteRecord { fn eq(&self, other: &Vec) -> bool { self.iter_eq(other) } } impl<'a, T: AsRef<[u8]>> PartialEq> for &'a ByteRecord { fn eq(&self, other: &Vec) -> bool { self.iter_eq(other) } } impl> PartialEq<[T]> for ByteRecord { fn eq(&self, other: &[T]) -> bool { self.iter_eq(other) } } impl<'a, T: AsRef<[u8]>> PartialEq<[T]> for &'a ByteRecord { fn eq(&self, other: &[T]) -> bool { self.iter_eq(other) } } impl fmt::Debug for ByteRecord { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "ByteRecord(")?; f.debug_list() .entries(self.iter().map(crate::debug::Bytes)) .finish()?; write!(f, ")")?; Ok(()) } } /// The inner portion of a byte record. /// /// We use this memory layout so that moving a `ByteRecord` only requires /// moving a single pointer. The optimization is dubious at best, but does /// seem to result in slightly better numbers in microbenchmarks. Methinks this /// may heavily depend on the underlying allocator. #[derive(Clone, Debug, Eq, PartialEq)] struct ByteRecordInner { /// The position of this byte record. pos: Option, /// All fields in this record, stored contiguously. fields: Vec, /// The number of and location of each field in this record. bounds: Bounds, } impl Default for ByteRecord { #[inline] fn default() -> ByteRecord { ByteRecord::new() } } impl ByteRecord { /// Create a new empty `ByteRecord`. /// /// Note that you may find the `ByteRecord::from` constructor more /// convenient, which is provided by an impl on the `From` trait. /// /// # Example: create an empty record /// /// ``` /// use csv::ByteRecord; /// /// let record = ByteRecord::new(); /// assert_eq!(record.len(), 0); /// ``` /// /// # Example: initialize a record from a `Vec` /// /// ``` /// use csv::ByteRecord; /// /// let record = ByteRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// ``` #[inline] pub fn new() -> ByteRecord { ByteRecord::with_capacity(0, 0) } /// Create a new empty `ByteRecord` with the given capacity settings. /// /// `buffer` refers to the capacity of the buffer used to store the /// actual row contents. `fields` refers to the number of fields one /// might expect to store. #[inline] pub fn with_capacity(buffer: usize, fields: usize) -> ByteRecord { ByteRecord(Box::new(ByteRecordInner { pos: None, fields: vec![0; buffer], bounds: Bounds::with_capacity(fields), })) } /// Deserialize this record. /// /// The `D` type parameter refers to the type that this record should be /// deserialized into. The `'de` lifetime refers to the lifetime of the /// `ByteRecord`. The `'de` lifetime permits deserializing into structs /// that borrow field data from this record. /// /// An optional `headers` parameter permits deserializing into a struct /// based on its field names (corresponding to header values) rather than /// the order in which the fields are defined. /// /// # Example: without headers /// /// This shows how to deserialize a single row into a struct based on the /// order in which fields occur. This example also shows how to borrow /// fields from the `ByteRecord`, which results in zero allocation /// deserialization. /// /// ``` /// use std::error::Error; /// /// use csv::ByteRecord; /// use serde::Deserialize; /// /// #[derive(Deserialize)] /// struct Row<'a> { /// city: &'a str, /// country: &'a str, /// population: u64, /// } /// /// # fn main() { example().unwrap() } /// fn example() -> Result<(), Box> { /// let record = ByteRecord::from(vec![ /// "Boston", "United States", "4628910", /// ]); /// /// let row: Row = record.deserialize(None)?; /// assert_eq!(row.city, "Boston"); /// assert_eq!(row.country, "United States"); /// assert_eq!(row.population, 4628910); /// Ok(()) /// } /// ``` /// /// # Example: with headers /// /// This example is like the previous one, but shows how to deserialize /// into a struct based on the struct's field names. For this to work, /// you must provide a header row. /// /// This example also shows that you can deserialize into owned data /// types (e.g., `String`) instead of borrowed data types (e.g., `&str`). /// /// ``` /// use std::error::Error; /// /// use csv::ByteRecord; /// use serde::Deserialize; /// /// #[derive(Deserialize)] /// struct Row { /// city: String, /// country: String, /// population: u64, /// } /// /// # fn main() { example().unwrap() } /// fn example() -> Result<(), Box> { /// // Notice that the fields are not in the same order /// // as the fields in the struct! /// let header = ByteRecord::from(vec![ /// "country", "city", "population", /// ]); /// let record = ByteRecord::from(vec![ /// "United States", "Boston", "4628910", /// ]); /// /// let row: Row = record.deserialize(Some(&header))?; /// assert_eq!(row.city, "Boston"); /// assert_eq!(row.country, "United States"); /// assert_eq!(row.population, 4628910); /// Ok(()) /// } /// ``` pub fn deserialize<'de, D: Deserialize<'de>>( &'de self, headers: Option<&'de ByteRecord>, ) -> Result { deserialize_byte_record(self, headers) } /// Returns an iterator over all fields in this record. /// /// # Example /// /// This example shows how to iterate over each field in a `ByteRecord`. /// /// ``` /// use csv::ByteRecord; /// /// let record = ByteRecord::from(vec!["a", "b", "c"]); /// for field in record.iter() { /// assert!(field == b"a" || field == b"b" || field == b"c"); /// } /// ``` #[inline] pub fn iter(&self) -> ByteRecordIter { self.into_iter() } /// Return the field at index `i`. /// /// If no field at index `i` exists, then this returns `None`. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let record = ByteRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.get(1), Some(&b"b"[..])); /// assert_eq!(record.get(3), None); /// ``` #[inline] pub fn get(&self, i: usize) -> Option<&[u8]> { self.0.bounds.get(i).map(|range| &self.0.fields[range]) } /// Returns true if and only if this record is empty. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// assert!(ByteRecord::new().is_empty()); /// ``` #[inline] pub fn is_empty(&self) -> bool { self.len() == 0 } /// Returns the number of fields in this record. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let record = ByteRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// ``` #[inline] pub fn len(&self) -> usize { self.0.bounds.len() } /// Truncate this record to `n` fields. /// /// If `n` is greater than the number of fields in this record, then this /// has no effect. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let mut record = ByteRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// record.truncate(1); /// assert_eq!(record.len(), 1); /// assert_eq!(record, vec!["a"]); /// ``` #[inline] pub fn truncate(&mut self, n: usize) { if n <= self.len() { self.0.bounds.len = n; } } /// Clear this record so that it has zero fields. /// /// This is equivalent to calling `truncate(0)`. /// /// Note that it is not necessary to clear the record to reuse it with /// the CSV reader. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let mut record = ByteRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// record.clear(); /// assert_eq!(record.len(), 0); /// ``` #[inline] pub fn clear(&mut self) { self.truncate(0); } /// Trim the fields of this record so that leading and trailing whitespace /// is removed. /// /// This method uses the ASCII definition of whitespace. That is, only /// bytes in the class `[\t\n\v\f\r ]` are trimmed. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let mut record = ByteRecord::from(vec![ /// " ", "\tfoo", "bar ", "b a z", /// ]); /// record.trim(); /// assert_eq!(record, vec!["", "foo", "bar", "b a z"]); /// ``` pub fn trim(&mut self) { let length = self.len(); if length == 0 { return; } // TODO: We could likely do this in place, but for now, we allocate. let mut trimmed = ByteRecord::with_capacity(self.as_slice().len(), self.len()); trimmed.set_position(self.position().cloned()); for field in self.iter() { trimmed.push_field(trim_ascii(field)); } *self = trimmed; } /// Add a new field to this record. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let mut record = ByteRecord::new(); /// record.push_field(b"foo"); /// assert_eq!(&record[0], b"foo"); /// ``` #[inline] pub fn push_field(&mut self, field: &[u8]) { let (s, e) = (self.0.bounds.end(), self.0.bounds.end() + field.len()); while e > self.0.fields.len() { self.expand_fields(); } self.0.fields[s..e].copy_from_slice(field); self.0.bounds.add(e); } /// Return the position of this record, if available. /// /// # Example /// /// ``` /// use std::error::Error; /// /// use csv::{ByteRecord, ReaderBuilder}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut record = ByteRecord::new(); /// let mut rdr = ReaderBuilder::new() /// .has_headers(false) /// .from_reader("a,b,c\nx,y,z".as_bytes()); /// /// assert!(rdr.read_byte_record(&mut record)?); /// { /// let pos = record.position().expect("a record position"); /// assert_eq!(pos.byte(), 0); /// assert_eq!(pos.line(), 1); /// assert_eq!(pos.record(), 0); /// } /// /// assert!(rdr.read_byte_record(&mut record)?); /// { /// let pos = record.position().expect("a record position"); /// assert_eq!(pos.byte(), 6); /// assert_eq!(pos.line(), 2); /// assert_eq!(pos.record(), 1); /// } /// /// // Finish the CSV reader for good measure. /// assert!(!rdr.read_byte_record(&mut record)?); /// Ok(()) /// } /// ``` #[inline] pub fn position(&self) -> Option<&Position> { self.0.pos.as_ref() } /// Set the position of this record. /// /// # Example /// /// ``` /// use csv::{ByteRecord, Position}; /// /// let mut record = ByteRecord::from(vec!["a", "b", "c"]); /// let mut pos = Position::new(); /// pos.set_byte(100); /// pos.set_line(4); /// pos.set_record(2); /// /// record.set_position(Some(pos.clone())); /// assert_eq!(record.position(), Some(&pos)); /// ``` #[inline] pub fn set_position(&mut self, pos: Option) { self.0.pos = pos; } /// Return the start and end position of a field in this record. /// /// If no such field exists at the given index, then return `None`. /// /// The range returned can be used with the slice returned by `as_slice`. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let record = ByteRecord::from(vec!["foo", "quux", "z"]); /// let range = record.range(1).expect("a record range"); /// assert_eq!(&record.as_slice()[range], &b"quux"[..]); /// ``` #[inline] pub fn range(&self, i: usize) -> Option> { self.0.bounds.get(i) } /// Return the entire row as a single byte slice. The slice returned stores /// all fields contiguously. The boundaries of each field can be determined /// via the `range` method. /// /// # Example /// /// ``` /// use csv::ByteRecord; /// /// let record = ByteRecord::from(vec!["foo", "quux", "z"]); /// assert_eq!(record.as_slice(), &b"fooquuxz"[..]); /// ``` #[inline] pub fn as_slice(&self) -> &[u8] { &self.0.fields[..self.0.bounds.end()] } /// Clone this record, but only copy `fields` up to the end of bounds. This /// is useful when one wants to copy a record, but not necessarily any /// excess capacity in that record. #[inline] pub(crate) fn clone_truncated(&self) -> ByteRecord { let mut br = ByteRecord::new(); br.0.pos = self.0.pos.clone(); br.0.bounds = self.0.bounds.clone(); br.0.fields = self.0.fields[..self.0.bounds.end()].to_vec(); br } /// Retrieve the underlying parts of a byte record. #[inline] pub(crate) fn as_parts(&mut self) -> (&mut Vec, &mut Vec) { let inner = &mut *self.0; (&mut inner.fields, &mut inner.bounds.ends) } /// Set the number of fields in the given record record. #[inline] pub(crate) fn set_len(&mut self, len: usize) { self.0.bounds.len = len; } /// Expand the capacity for storing fields. #[inline] pub(crate) fn expand_fields(&mut self) { let new_len = self.0.fields.len().checked_mul(2).unwrap(); self.0.fields.resize(cmp::max(4, new_len), 0); } /// Expand the capacity for storing field ending positions. #[inline] pub(crate) fn expand_ends(&mut self) { self.0.bounds.expand(); } /// Validate the given record as UTF-8. /// /// If it's not UTF-8, return an error. #[inline] pub(crate) fn validate(&self) -> result::Result<(), Utf8Error> { // If the entire buffer is ASCII, then we have nothing to fear. if self.0.fields[..self.0.bounds.end()].is_ascii() { return Ok(()); } // Otherwise, we must check each field individually to ensure that // it's valid UTF-8. for (i, field) in self.iter().enumerate() { if let Err(err) = std::str::from_utf8(field) { return Err(new_utf8_error(i, err.valid_up_to())); } } Ok(()) } /// Compare the given byte record with the iterator of fields for equality. pub(crate) fn iter_eq(&self, other: I) -> bool where I: IntoIterator, T: AsRef<[u8]>, { let mut it_record = self.iter(); let mut it_other = other.into_iter(); loop { match (it_record.next(), it_other.next()) { (None, None) => return true, (None, Some(_)) | (Some(_), None) => return false, (Some(x), Some(y)) => { if x != y.as_ref() { return false; } } } } } } /// A position in CSV data. /// /// A position is used to report errors in CSV data. All positions include the /// byte offset, line number and record index at which the error occurred. /// /// Byte offsets and record indices start at `0`. Line numbers start at `1`. /// /// A CSV reader will automatically assign the position of each record. #[derive(Clone, Debug, Eq, PartialEq)] pub struct Position { byte: u64, line: u64, record: u64, } impl Position { /// Returns a new position initialized to the start value. #[inline] pub fn new() -> Position { Position { byte: 0, line: 1, record: 0 } } /// The byte offset, starting at `0`, of this position. #[inline] pub fn byte(&self) -> u64 { self.byte } /// The line number, starting at `1`, of this position. #[inline] pub fn line(&self) -> u64 { self.line } /// The record index, starting with the first record at `0`. #[inline] pub fn record(&self) -> u64 { self.record } /// Set the byte offset of this position. #[inline] pub fn set_byte(&mut self, byte: u64) -> &mut Position { self.byte = byte; self } /// Set the line number of this position. /// /// If the line number is less than `1`, then this method panics. #[inline] pub fn set_line(&mut self, line: u64) -> &mut Position { assert!(line > 0); self.line = line; self } /// Set the record index of this position. #[inline] pub fn set_record(&mut self, record: u64) -> &mut Position { self.record = record; self } } /// The bounds of fields in a single record. #[derive(Clone, Debug, Eq, PartialEq)] struct Bounds { /// The ending index of each field. ends: Vec, /// The number of fields in this record. /// /// Technically, we could drop this field and maintain an invariant that /// `ends.len()` is always the number of fields, but doing that efficiently /// requires attention to safety. We play it safe at essentially no cost. len: usize, } impl Default for Bounds { #[inline] fn default() -> Bounds { Bounds::with_capacity(0) } } impl Bounds { /// Create a new set of bounds with the given capacity for storing the /// ends of fields. #[inline] fn with_capacity(capacity: usize) -> Bounds { Bounds { ends: vec![0; capacity], len: 0 } } /// Returns the bounds of field `i`. #[inline] fn get(&self, i: usize) -> Option> { if i >= self.len { return None; } let end = match self.ends.get(i) { None => return None, Some(&end) => end, }; let start = match i.checked_sub(1).and_then(|i| self.ends.get(i)) { None => 0, Some(&start) => start, }; Some(ops::Range { start, end }) } /// Returns a slice of ending positions of all fields. #[inline] fn ends(&self) -> &[usize] { &self.ends[..self.len] } /// Return the last position of the last field. /// /// If there are no fields, this returns `0`. #[inline] fn end(&self) -> usize { self.ends().last().map(|&i| i).unwrap_or(0) } /// Returns the number of fields in these bounds. #[inline] fn len(&self) -> usize { self.len } /// Expand the capacity for storing field ending positions. #[inline] fn expand(&mut self) { let new_len = self.ends.len().checked_mul(2).unwrap(); self.ends.resize(cmp::max(4, new_len), 0); } /// Add a new field with the given ending position. #[inline] fn add(&mut self, pos: usize) { if self.len >= self.ends.len() { self.expand(); } self.ends[self.len] = pos; self.len += 1; } } impl ops::Index for ByteRecord { type Output = [u8]; #[inline] fn index(&self, i: usize) -> &[u8] { self.get(i).unwrap() } } impl From for ByteRecord { #[inline] fn from(record: StringRecord) -> ByteRecord { record.into_byte_record() } } impl> From> for ByteRecord { #[inline] fn from(xs: Vec) -> ByteRecord { ByteRecord::from_iter(&xs) } } impl<'a, T: AsRef<[u8]>> From<&'a [T]> for ByteRecord { #[inline] fn from(xs: &'a [T]) -> ByteRecord { ByteRecord::from_iter(xs) } } impl> FromIterator for ByteRecord { #[inline] fn from_iter>(iter: I) -> ByteRecord { let mut record = ByteRecord::new(); record.extend(iter); record } } impl> Extend for ByteRecord { #[inline] fn extend>(&mut self, iter: I) { for x in iter { self.push_field(x.as_ref()); } } } /// A double-ended iterator over the fields in a byte record. /// /// The `'r` lifetime variable refers to the lifetime of the `ByteRecord` that /// is being iterated over. #[derive(Clone)] pub struct ByteRecordIter<'r> { /// The record we are iterating over. r: &'r ByteRecord, /// The starting index of the previous field. (For reverse iteration.) last_start: usize, /// The ending index of the previous field. (For forward iteration.) last_end: usize, /// The index of forward iteration. i_forward: usize, /// The index of reverse iteration. i_reverse: usize, } impl<'r> IntoIterator for &'r ByteRecord { type IntoIter = ByteRecordIter<'r>; type Item = &'r [u8]; #[inline] fn into_iter(self) -> ByteRecordIter<'r> { ByteRecordIter { r: self, last_start: self.as_slice().len(), last_end: 0, i_forward: 0, i_reverse: self.len(), } } } impl<'r> ExactSizeIterator for ByteRecordIter<'r> {} impl<'r> Iterator for ByteRecordIter<'r> { type Item = &'r [u8]; #[inline] fn next(&mut self) -> Option<&'r [u8]> { if self.i_forward == self.i_reverse { None } else { let start = self.last_end; let end = self.r.0.bounds.ends()[self.i_forward]; self.i_forward += 1; self.last_end = end; Some(&self.r.0.fields[start..end]) } } #[inline] fn size_hint(&self) -> (usize, Option) { let x = self.i_reverse - self.i_forward; (x, Some(x)) } #[inline] fn count(self) -> usize { self.len() } } impl<'r> DoubleEndedIterator for ByteRecordIter<'r> { #[inline] fn next_back(&mut self) -> Option<&'r [u8]> { if self.i_forward == self.i_reverse { None } else { self.i_reverse -= 1; let start = self .i_reverse .checked_sub(1) .map(|i| self.r.0.bounds.ends()[i]) .unwrap_or(0); let end = self.last_start; self.last_start = start; Some(&self.r.0.fields[start..end]) } } } fn trim_ascii(bytes: &[u8]) -> &[u8] { trim_ascii_start(trim_ascii_end(bytes)) } fn trim_ascii_start(mut bytes: &[u8]) -> &[u8] { while let [first, rest @ ..] = bytes { if first.is_ascii_whitespace() { bytes = rest; } else { break; } } bytes } fn trim_ascii_end(mut bytes: &[u8]) -> &[u8] { while let [rest @ .., last] = bytes { if last.is_ascii_whitespace() { bytes = rest; } else { break; } } bytes } #[cfg(test)] mod tests { use crate::string_record::StringRecord; use super::ByteRecord; fn b(s: &str) -> &[u8] { s.as_bytes() } #[test] fn record_1() { let mut rec = ByteRecord::new(); rec.push_field(b"foo"); assert_eq!(rec.len(), 1); assert_eq!(rec.get(0), Some(b("foo"))); assert_eq!(rec.get(1), None); assert_eq!(rec.get(2), None); } #[test] fn record_2() { let mut rec = ByteRecord::new(); rec.push_field(b"foo"); rec.push_field(b"quux"); assert_eq!(rec.len(), 2); assert_eq!(rec.get(0), Some(b("foo"))); assert_eq!(rec.get(1), Some(b("quux"))); assert_eq!(rec.get(2), None); assert_eq!(rec.get(3), None); } #[test] fn empty_record() { let rec = ByteRecord::new(); assert_eq!(rec.len(), 0); assert_eq!(rec.get(0), None); assert_eq!(rec.get(1), None); } #[test] fn trim_whitespace_only() { let mut rec = ByteRecord::from(vec![b" \t\n\r\x0c"]); rec.trim(); assert_eq!(rec.get(0), Some(b(""))); } #[test] fn trim_front() { let mut rec = ByteRecord::from(vec![b" abc"]); rec.trim(); assert_eq!(rec.get(0), Some(b("abc"))); let mut rec = ByteRecord::from(vec![b(" abc"), b(" xyz")]); rec.trim(); assert_eq!(rec.get(0), Some(b("abc"))); assert_eq!(rec.get(1), Some(b("xyz"))); } #[test] fn trim_back() { let mut rec = ByteRecord::from(vec![b"abc "]); rec.trim(); assert_eq!(rec.get(0), Some(b("abc"))); let mut rec = ByteRecord::from(vec![b("abc "), b("xyz ")]); rec.trim(); assert_eq!(rec.get(0), Some(b("abc"))); assert_eq!(rec.get(1), Some(b("xyz"))); } #[test] fn trim_both() { let mut rec = ByteRecord::from(vec![b" abc "]); rec.trim(); assert_eq!(rec.get(0), Some(b("abc"))); let mut rec = ByteRecord::from(vec![b(" abc "), b(" xyz ")]); rec.trim(); assert_eq!(rec.get(0), Some(b("abc"))); assert_eq!(rec.get(1), Some(b("xyz"))); } #[test] fn trim_does_not_panic_on_empty_records_1() { let mut rec = ByteRecord::from(vec![b""]); rec.trim(); assert_eq!(rec.get(0), Some(b(""))); } #[test] fn trim_does_not_panic_on_empty_records_2() { let mut rec = ByteRecord::from(vec![b"", b""]); rec.trim(); assert_eq!(rec.get(0), Some(b(""))); assert_eq!(rec.get(1), Some(b(""))); } #[test] fn trim_does_not_panic_on_empty_records_3() { let mut rec = ByteRecord::new(); rec.trim(); assert_eq!(rec.as_slice().len(), 0); } #[test] fn empty_field_1() { let mut rec = ByteRecord::new(); rec.push_field(b""); assert_eq!(rec.len(), 1); assert_eq!(rec.get(0), Some(b(""))); assert_eq!(rec.get(1), None); assert_eq!(rec.get(2), None); } #[test] fn empty_field_2() { let mut rec = ByteRecord::new(); rec.push_field(b""); rec.push_field(b""); assert_eq!(rec.len(), 2); assert_eq!(rec.get(0), Some(b(""))); assert_eq!(rec.get(1), Some(b(""))); assert_eq!(rec.get(2), None); assert_eq!(rec.get(3), None); } #[test] fn empty_surround_1() { let mut rec = ByteRecord::new(); rec.push_field(b"foo"); rec.push_field(b""); rec.push_field(b"quux"); assert_eq!(rec.len(), 3); assert_eq!(rec.get(0), Some(b("foo"))); assert_eq!(rec.get(1), Some(b(""))); assert_eq!(rec.get(2), Some(b("quux"))); assert_eq!(rec.get(3), None); assert_eq!(rec.get(4), None); } #[test] fn empty_surround_2() { let mut rec = ByteRecord::new(); rec.push_field(b"foo"); rec.push_field(b""); rec.push_field(b"quux"); rec.push_field(b""); assert_eq!(rec.len(), 4); assert_eq!(rec.get(0), Some(b("foo"))); assert_eq!(rec.get(1), Some(b(""))); assert_eq!(rec.get(2), Some(b("quux"))); assert_eq!(rec.get(3), Some(b(""))); assert_eq!(rec.get(4), None); assert_eq!(rec.get(5), None); } #[test] fn utf8_error_1() { let mut rec = ByteRecord::new(); rec.push_field(b"foo"); rec.push_field(b"b\xFFar"); let err = StringRecord::from_byte_record(rec).unwrap_err(); assert_eq!(err.utf8_error().field(), 1); assert_eq!(err.utf8_error().valid_up_to(), 1); } #[test] fn utf8_error_2() { let mut rec = ByteRecord::new(); rec.push_field(b"\xFF"); let err = StringRecord::from_byte_record(rec).unwrap_err(); assert_eq!(err.utf8_error().field(), 0); assert_eq!(err.utf8_error().valid_up_to(), 0); } #[test] fn utf8_error_3() { let mut rec = ByteRecord::new(); rec.push_field(b"a\xFF"); let err = StringRecord::from_byte_record(rec).unwrap_err(); assert_eq!(err.utf8_error().field(), 0); assert_eq!(err.utf8_error().valid_up_to(), 1); } #[test] fn utf8_error_4() { let mut rec = ByteRecord::new(); rec.push_field(b"a"); rec.push_field(b"b"); rec.push_field(b"c"); rec.push_field(b"d"); rec.push_field(b"xyz\xFF"); let err = StringRecord::from_byte_record(rec).unwrap_err(); assert_eq!(err.utf8_error().field(), 4); assert_eq!(err.utf8_error().valid_up_to(), 3); } #[test] fn utf8_error_5() { let mut rec = ByteRecord::new(); rec.push_field(b"a"); rec.push_field(b"b"); rec.push_field(b"c"); rec.push_field(b"d"); rec.push_field(b"\xFFxyz"); let err = StringRecord::from_byte_record(rec).unwrap_err(); assert_eq!(err.utf8_error().field(), 4); assert_eq!(err.utf8_error().valid_up_to(), 0); } // This tests a tricky case where a single field on its own isn't valid // UTF-8, but the concatenation of all fields is. #[test] fn utf8_error_6() { let mut rec = ByteRecord::new(); rec.push_field(b"a\xc9"); rec.push_field(b"\x91b"); let err = StringRecord::from_byte_record(rec).unwrap_err(); assert_eq!(err.utf8_error().field(), 0); assert_eq!(err.utf8_error().valid_up_to(), 1); } // This tests that we can always clear a `ByteRecord` and get a guaranteed // successful conversion to UTF-8. This permits reusing the allocation. #[test] fn utf8_clear_ok() { let mut rec = ByteRecord::new(); rec.push_field(b"\xFF"); assert!(StringRecord::from_byte_record(rec).is_err()); let mut rec = ByteRecord::new(); rec.push_field(b"\xFF"); rec.clear(); assert!(StringRecord::from_byte_record(rec).is_ok()); } #[test] fn iter() { let data = vec!["foo", "bar", "baz", "quux", "wat"]; let rec = ByteRecord::from(&*data); let got: Vec<&str> = rec.iter().map(|x| ::std::str::from_utf8(x).unwrap()).collect(); assert_eq!(data, got); } #[test] fn iter_reverse() { let mut data = vec!["foo", "bar", "baz", "quux", "wat"]; let rec = ByteRecord::from(&*data); let got: Vec<&str> = rec .iter() .rev() .map(|x| ::std::str::from_utf8(x).unwrap()) .collect(); data.reverse(); assert_eq!(data, got); } #[test] fn iter_forward_and_reverse() { let data = vec!["foo", "bar", "baz", "quux", "wat"]; let rec = ByteRecord::from(data); let mut it = rec.iter(); assert_eq!(it.next_back(), Some(b("wat"))); assert_eq!(it.next(), Some(b("foo"))); assert_eq!(it.next(), Some(b("bar"))); assert_eq!(it.next_back(), Some(b("quux"))); assert_eq!(it.next(), Some(b("baz"))); assert_eq!(it.next_back(), None); assert_eq!(it.next(), None); } // Check that record equality respects field boundaries. // // Regression test for #138. #[test] fn eq_field_boundaries() { let test1 = ByteRecord::from(vec!["12", "34"]); let test2 = ByteRecord::from(vec!["123", "4"]); assert_ne!(test1, test2); } // Check that record equality respects number of fields. // // Regression test for #138. #[test] fn eq_record_len() { let test1 = ByteRecord::from(vec!["12", "34", "56"]); let test2 = ByteRecord::from(vec!["12", "34"]); assert_ne!(test1, test2); } } csv-1.3.0/src/cookbook.rs000064400000000000000000000156071046102023000133740ustar 00000000000000/*! A cookbook of examples for CSV reading and writing. # List of examples This is a list of examples that follow. Each of them can be found in the `examples` directory of the [`rust-csv`](https://github.com/BurntSushi/rust-csv) repository. For **reading** CSV: 1. [Basic](#reading-basic) 2. [With Serde](#reading-with-serde) 3. [Setting a different delimiter](#reading-setting-a-different-delimiter) 4. [Without headers](#reading-without-headers) For **writing** CSV: 5. [Basic](#writing-basic) 6. [With Serde](#writing-with-serde) Please [submit a pull request](https://github.com/BurntSushi/rust-csv/pulls) if you're interested in adding an example to this list! # Reading: basic This example shows how to read CSV data from stdin and print each record to stdout. ```no_run # //cookbook-read-basic.rs use std::{error::Error, io, process}; fn example() -> Result<(), Box> { // Build the CSV reader and iterate over each record. let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // The iterator yields Result, so we check the // error here.. let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-basic < examples/data/smallpop.csv ``` # Reading: with Serde This is like the previous example, except it shows how to deserialize each record into a struct type that you define. For more examples and details on how Serde deserialization works, see the [`Reader::deserialize`](../struct.Reader.html#method.deserialize) method. ```no_run # //cookbook-read-serde.rs # #![allow(dead_code)] use std::{error::Error, io, process}; use serde::Deserialize; // By default, struct field names are deserialized based on the position of // a corresponding field in the CSV data's header record. #[derive(Debug, Deserialize)] struct Record { city: String, region: String, country: String, population: Option, } fn example() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { // Notice that we need to provide a type hint for automatic // deserialization. let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-serde < examples/data/smallpop.csv ``` # Reading: setting a different delimiter This example shows how to read CSV data from stdin where fields are separated by `:` instead of `,`. ```no_run # //cookbook-read-colon.rs use std::{error::Error, io, process}; fn example() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new() .delimiter(b':') .from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-colon < examples/data/smallpop-colon.csv ``` # Reading: without headers The CSV reader in this crate assumes that CSV data has a header record by default, but the setting can be toggled. When enabled, the first record in CSV data in interpreted as the header record and is skipped. When disabled, the first record is not skipped. This example shows how to disable that setting. ```no_run # //cookbook-read-no-headers.rs use std::{error::Error, io, process}; fn example() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new() .has_headers(false) .from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-no-headers < examples/data/smallpop-no-headers.csv ``` # Writing: basic This example shows how to write CSV data to stdout. ```no_run # //cookbook-write-basic.rs use std::{error::Error, io, process}; fn example() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // When writing records without Serde, the header record is written just // like any other record. wtr.write_record(&["city", "region", "country", "population"])?; wtr.write_record(&["Southborough", "MA", "United States", "9686"])?; wtr.write_record(&["Northbridge", "MA", "United States", "14061"])?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-write-basic > /tmp/simplepop.csv ``` # Writing: with Serde This example shows how to write CSV data to stdout with Serde. Namely, we represent each record using a custom struct that we define. In this example, headers are written automatically. ```no_run # //cookbook-write-serde.rs use std::{error::Error, io, process}; use serde::Serialize; #[derive(Debug, Serialize)] struct Record { city: String, region: String, country: String, population: Option, } fn example() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // When writing records with Serde using structs, the header row is written // automatically. wtr.serialize(Record { city: "Southborough".to_string(), region: "MA".to_string(), country: "United States".to_string(), population: Some(9686), })?; wtr.serialize(Record { city: "Northbridge".to_string(), region: "MA".to_string(), country: "United States".to_string(), population: Some(14061), })?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-write-serde > /tmp/simplepop.csv ``` */ csv-1.3.0/src/debug.rs000064400000000000000000000051251046102023000126460ustar 00000000000000/// A type that provides a human readable debug impl for arbitrary bytes. /// /// This generally works best when the bytes are presumed to be mostly UTF-8, /// but will work for anything. /// /// N.B. This is copied nearly verbatim from regex-automata. Sigh. pub(crate) struct Bytes<'a>(pub(crate) &'a [u8]); impl<'a> core::fmt::Debug for Bytes<'a> { fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { write!(f, "\"")?; // This is a sad re-implementation of a similar impl found in bstr. let mut bytes = self.0; while let Some(result) = utf8_decode(bytes) { let ch = match result { Ok(ch) => ch, Err(byte) => { write!(f, r"\x{:02x}", byte)?; bytes = &bytes[1..]; continue; } }; bytes = &bytes[ch.len_utf8()..]; match ch { '\0' => write!(f, "\\0")?, // ASCII control characters except \0, \n, \r, \t '\x01'..='\x08' | '\x0b' | '\x0c' | '\x0e'..='\x19' | '\x7f' => { write!(f, "\\x{:02x}", u32::from(ch))?; } '\n' | '\r' | '\t' | _ => { write!(f, "{}", ch.escape_debug())?; } } } write!(f, "\"")?; Ok(()) } } /// Decodes the next UTF-8 encoded codepoint from the given byte slice. /// /// If no valid encoding of a codepoint exists at the beginning of the given /// byte slice, then the first byte is returned instead. /// /// This returns `None` if and only if `bytes` is empty. pub(crate) fn utf8_decode(bytes: &[u8]) -> Option> { fn len(byte: u8) -> Option { if byte <= 0x7F { return Some(1); } else if byte & 0b1100_0000 == 0b1000_0000 { return None; } else if byte <= 0b1101_1111 { Some(2) } else if byte <= 0b1110_1111 { Some(3) } else if byte <= 0b1111_0111 { Some(4) } else { None } } if bytes.is_empty() { return None; } let len = match len(bytes[0]) { None => return Some(Err(bytes[0])), Some(len) if len > bytes.len() => return Some(Err(bytes[0])), Some(1) => return Some(Ok(char::from(bytes[0]))), Some(len) => len, }; match core::str::from_utf8(&bytes[..len]) { Ok(s) => Some(Ok(s.chars().next().unwrap())), Err(_) => Some(Err(bytes[0])), } } csv-1.3.0/src/deserializer.rs000064400000000000000000001040721046102023000142430ustar 00000000000000use std::{error::Error as StdError, fmt, iter, num, str}; use serde::{ de::value::BorrowedBytesDeserializer, de::{ Deserialize, DeserializeSeed, Deserializer, EnumAccess, Error as SerdeError, IntoDeserializer, MapAccess, SeqAccess, Unexpected, VariantAccess, Visitor, }, serde_if_integer128, }; use crate::{ byte_record::{ByteRecord, ByteRecordIter}, error::{Error, ErrorKind}, string_record::{StringRecord, StringRecordIter}, }; use self::DeserializeErrorKind as DEK; pub fn deserialize_string_record<'de, D: Deserialize<'de>>( record: &'de StringRecord, headers: Option<&'de StringRecord>, ) -> Result { let mut deser = DeRecordWrap(DeStringRecord { it: record.iter().peekable(), headers: headers.map(|r| r.iter()), field: 0, }); D::deserialize(&mut deser).map_err(|err| { Error::new(ErrorKind::Deserialize { pos: record.position().map(Clone::clone), err, }) }) } pub fn deserialize_byte_record<'de, D: Deserialize<'de>>( record: &'de ByteRecord, headers: Option<&'de ByteRecord>, ) -> Result { let mut deser = DeRecordWrap(DeByteRecord { it: record.iter().peekable(), headers: headers.map(|r| r.iter()), field: 0, }); D::deserialize(&mut deser).map_err(|err| { Error::new(ErrorKind::Deserialize { pos: record.position().map(Clone::clone), err, }) }) } /// An over-engineered internal trait that permits writing a single Serde /// deserializer that works on both ByteRecord and StringRecord. /// /// We *could* implement a single deserializer on `ByteRecord` and simply /// convert `StringRecord`s to `ByteRecord`s, but then the implementation /// would be required to redo UTF-8 validation checks in certain places. /// /// How does this work? We create a new `DeRecordWrap` type that wraps /// either a `StringRecord` or a `ByteRecord`. We then implement /// `DeRecord` for `DeRecordWrap` and `DeRecordWrap`. /// Finally, we impl `serde::Deserialize` for `DeRecordWrap` where /// `T: DeRecord`. That is, the `DeRecord` type corresponds to the differences /// between deserializing into a `ByteRecord` and deserializing into a /// `StringRecord`. /// /// The lifetime `'r` refers to the lifetime of the underlying record. trait DeRecord<'r> { /// Returns true if and only if this deserialize has access to headers. fn has_headers(&self) -> bool; /// Extracts the next string header value from the underlying record. fn next_header(&mut self) -> Result, DeserializeError>; /// Extracts the next raw byte header value from the underlying record. fn next_header_bytes( &mut self, ) -> Result, DeserializeError>; /// Extracts the next string field from the underlying record. fn next_field(&mut self) -> Result<&'r str, DeserializeError>; /// Extracts the next raw byte field from the underlying record. fn next_field_bytes(&mut self) -> Result<&'r [u8], DeserializeError>; /// Peeks at the next field from the underlying record. fn peek_field(&mut self) -> Option<&'r [u8]>; /// Returns an error corresponding to the most recently extracted field. fn error(&self, kind: DeserializeErrorKind) -> DeserializeError; /// Infer the type of the next field and deserialize it. fn infer_deserialize<'de, V: Visitor<'de>>( &mut self, visitor: V, ) -> Result; } struct DeRecordWrap(T); impl<'r, T: DeRecord<'r>> DeRecord<'r> for DeRecordWrap { #[inline] fn has_headers(&self) -> bool { self.0.has_headers() } #[inline] fn next_header(&mut self) -> Result, DeserializeError> { self.0.next_header() } #[inline] fn next_header_bytes( &mut self, ) -> Result, DeserializeError> { self.0.next_header_bytes() } #[inline] fn next_field(&mut self) -> Result<&'r str, DeserializeError> { self.0.next_field() } #[inline] fn next_field_bytes(&mut self) -> Result<&'r [u8], DeserializeError> { self.0.next_field_bytes() } #[inline] fn peek_field(&mut self) -> Option<&'r [u8]> { self.0.peek_field() } #[inline] fn error(&self, kind: DeserializeErrorKind) -> DeserializeError { self.0.error(kind) } #[inline] fn infer_deserialize<'de, V: Visitor<'de>>( &mut self, visitor: V, ) -> Result { self.0.infer_deserialize(visitor) } } struct DeStringRecord<'r> { it: iter::Peekable>, headers: Option>, field: u64, } impl<'r> DeRecord<'r> for DeStringRecord<'r> { #[inline] fn has_headers(&self) -> bool { self.headers.is_some() } #[inline] fn next_header(&mut self) -> Result, DeserializeError> { Ok(self.headers.as_mut().and_then(|it| it.next())) } #[inline] fn next_header_bytes( &mut self, ) -> Result, DeserializeError> { Ok(self.next_header()?.map(|s| s.as_bytes())) } #[inline] fn next_field(&mut self) -> Result<&'r str, DeserializeError> { match self.it.next() { Some(field) => { self.field += 1; Ok(field) } None => Err(DeserializeError { field: None, kind: DEK::UnexpectedEndOfRow, }), } } #[inline] fn next_field_bytes(&mut self) -> Result<&'r [u8], DeserializeError> { self.next_field().map(|s| s.as_bytes()) } #[inline] fn peek_field(&mut self) -> Option<&'r [u8]> { self.it.peek().map(|s| s.as_bytes()) } fn error(&self, kind: DeserializeErrorKind) -> DeserializeError { DeserializeError { field: Some(self.field.saturating_sub(1)), kind } } fn infer_deserialize<'de, V: Visitor<'de>>( &mut self, visitor: V, ) -> Result { let x = self.next_field()?; if x == "true" { return visitor.visit_bool(true); } else if x == "false" { return visitor.visit_bool(false); } else if let Some(n) = try_positive_integer64(x) { return visitor.visit_u64(n); } else if let Some(n) = try_negative_integer64(x) { return visitor.visit_i64(n); } serde_if_integer128! { if let Some(n) = try_positive_integer128(x) { return visitor.visit_u128(n); } else if let Some(n) = try_negative_integer128(x) { return visitor.visit_i128(n); } } if let Some(n) = try_float(x) { visitor.visit_f64(n) } else { visitor.visit_str(x) } } } struct DeByteRecord<'r> { it: iter::Peekable>, headers: Option>, field: u64, } impl<'r> DeRecord<'r> for DeByteRecord<'r> { #[inline] fn has_headers(&self) -> bool { self.headers.is_some() } #[inline] fn next_header(&mut self) -> Result, DeserializeError> { match self.next_header_bytes() { Ok(Some(field)) => Ok(Some( str::from_utf8(field) .map_err(|err| self.error(DEK::InvalidUtf8(err)))?, )), Ok(None) => Ok(None), Err(err) => Err(err), } } #[inline] fn next_header_bytes( &mut self, ) -> Result, DeserializeError> { Ok(self.headers.as_mut().and_then(|it| it.next())) } #[inline] fn next_field(&mut self) -> Result<&'r str, DeserializeError> { self.next_field_bytes().and_then(|field| { str::from_utf8(field) .map_err(|err| self.error(DEK::InvalidUtf8(err))) }) } #[inline] fn next_field_bytes(&mut self) -> Result<&'r [u8], DeserializeError> { match self.it.next() { Some(field) => { self.field += 1; Ok(field) } None => Err(DeserializeError { field: None, kind: DEK::UnexpectedEndOfRow, }), } } #[inline] fn peek_field(&mut self) -> Option<&'r [u8]> { self.it.peek().map(|s| *s) } fn error(&self, kind: DeserializeErrorKind) -> DeserializeError { DeserializeError { field: Some(self.field.saturating_sub(1)), kind } } fn infer_deserialize<'de, V: Visitor<'de>>( &mut self, visitor: V, ) -> Result { let x = self.next_field_bytes()?; if x == b"true" { return visitor.visit_bool(true); } else if x == b"false" { return visitor.visit_bool(false); } else if let Some(n) = try_positive_integer64_bytes(x) { return visitor.visit_u64(n); } else if let Some(n) = try_negative_integer64_bytes(x) { return visitor.visit_i64(n); } serde_if_integer128! { if let Some(n) = try_positive_integer128_bytes(x) { return visitor.visit_u128(n); } else if let Some(n) = try_negative_integer128_bytes(x) { return visitor.visit_i128(n); } } if let Some(n) = try_float_bytes(x) { visitor.visit_f64(n) } else if let Ok(s) = str::from_utf8(x) { visitor.visit_str(s) } else { visitor.visit_bytes(x) } } } macro_rules! deserialize_int { ($method:ident, $visit:ident, $inttype:ty) => { fn $method>( self, visitor: V, ) -> Result { let field = self.next_field()?; let num = if field.starts_with("0x") { <$inttype>::from_str_radix(&field[2..], 16) } else { field.parse() }; visitor.$visit(num.map_err(|err| self.error(DEK::ParseInt(err)))?) } }; } impl<'a, 'de: 'a, T: DeRecord<'de>> Deserializer<'de> for &'a mut DeRecordWrap { type Error = DeserializeError; fn deserialize_any>( self, visitor: V, ) -> Result { self.infer_deserialize(visitor) } fn deserialize_bool>( self, visitor: V, ) -> Result { visitor.visit_bool( self.next_field()? .parse() .map_err(|err| self.error(DEK::ParseBool(err)))?, ) } deserialize_int!(deserialize_u8, visit_u8, u8); deserialize_int!(deserialize_u16, visit_u16, u16); deserialize_int!(deserialize_u32, visit_u32, u32); deserialize_int!(deserialize_u64, visit_u64, u64); serde_if_integer128! { deserialize_int!(deserialize_u128, visit_u128, u128); } deserialize_int!(deserialize_i8, visit_i8, i8); deserialize_int!(deserialize_i16, visit_i16, i16); deserialize_int!(deserialize_i32, visit_i32, i32); deserialize_int!(deserialize_i64, visit_i64, i64); serde_if_integer128! { deserialize_int!(deserialize_i128, visit_i128, i128); } fn deserialize_f32>( self, visitor: V, ) -> Result { visitor.visit_f32( self.next_field()? .parse() .map_err(|err| self.error(DEK::ParseFloat(err)))?, ) } fn deserialize_f64>( self, visitor: V, ) -> Result { visitor.visit_f64( self.next_field()? .parse() .map_err(|err| self.error(DEK::ParseFloat(err)))?, ) } fn deserialize_char>( self, visitor: V, ) -> Result { let field = self.next_field()?; let len = field.chars().count(); if len != 1 { return Err(self.error(DEK::Message(format!( "expected single character but got {} characters in '{}'", len, field )))); } visitor.visit_char(field.chars().next().unwrap()) } fn deserialize_str>( self, visitor: V, ) -> Result { self.next_field().and_then(|f| visitor.visit_borrowed_str(f)) } fn deserialize_string>( self, visitor: V, ) -> Result { self.next_field().and_then(|f| visitor.visit_str(f.into())) } fn deserialize_bytes>( self, visitor: V, ) -> Result { self.next_field_bytes().and_then(|f| visitor.visit_borrowed_bytes(f)) } fn deserialize_byte_buf>( self, visitor: V, ) -> Result { self.next_field_bytes() .and_then(|f| visitor.visit_byte_buf(f.to_vec())) } fn deserialize_option>( self, visitor: V, ) -> Result { match self.peek_field() { None => visitor.visit_none(), Some(f) if f.is_empty() => { self.next_field().expect("empty field"); visitor.visit_none() } Some(_) => visitor.visit_some(self), } } fn deserialize_unit>( self, visitor: V, ) -> Result { visitor.visit_unit() } fn deserialize_unit_struct>( self, _name: &'static str, visitor: V, ) -> Result { visitor.visit_unit() } fn deserialize_newtype_struct>( self, _name: &'static str, visitor: V, ) -> Result { visitor.visit_newtype_struct(self) } fn deserialize_seq>( self, visitor: V, ) -> Result { visitor.visit_seq(self) } fn deserialize_tuple>( self, _len: usize, visitor: V, ) -> Result { visitor.visit_seq(self) } fn deserialize_tuple_struct>( self, _name: &'static str, _len: usize, visitor: V, ) -> Result { visitor.visit_seq(self) } fn deserialize_map>( self, visitor: V, ) -> Result { if !self.has_headers() { visitor.visit_seq(self) } else { visitor.visit_map(self) } } fn deserialize_struct>( self, _name: &'static str, _fields: &'static [&'static str], visitor: V, ) -> Result { if !self.has_headers() { visitor.visit_seq(self) } else { visitor.visit_map(self) } } fn deserialize_identifier>( self, _visitor: V, ) -> Result { Err(self.error(DEK::Unsupported("deserialize_identifier".into()))) } fn deserialize_enum>( self, _name: &'static str, _variants: &'static [&'static str], visitor: V, ) -> Result { visitor.visit_enum(self) } fn deserialize_ignored_any>( self, visitor: V, ) -> Result { // Read and drop the next field. // This code is reached, e.g., when trying to deserialize a header // that doesn't exist in the destination struct. let _ = self.next_field_bytes()?; visitor.visit_unit() } } impl<'a, 'de: 'a, T: DeRecord<'de>> EnumAccess<'de> for &'a mut DeRecordWrap { type Error = DeserializeError; type Variant = Self; fn variant_seed>( self, seed: V, ) -> Result<(V::Value, Self::Variant), Self::Error> { let variant_name = self.next_field()?; seed.deserialize(variant_name.into_deserializer()).map(|v| (v, self)) } } impl<'a, 'de: 'a, T: DeRecord<'de>> VariantAccess<'de> for &'a mut DeRecordWrap { type Error = DeserializeError; fn unit_variant(self) -> Result<(), Self::Error> { Ok(()) } fn newtype_variant_seed>( self, _seed: U, ) -> Result { let unexp = Unexpected::UnitVariant; Err(DeserializeError::invalid_type(unexp, &"newtype variant")) } fn tuple_variant>( self, _len: usize, _visitor: V, ) -> Result { let unexp = Unexpected::UnitVariant; Err(DeserializeError::invalid_type(unexp, &"tuple variant")) } fn struct_variant>( self, _fields: &'static [&'static str], _visitor: V, ) -> Result { let unexp = Unexpected::UnitVariant; Err(DeserializeError::invalid_type(unexp, &"struct variant")) } } impl<'a, 'de: 'a, T: DeRecord<'de>> SeqAccess<'de> for &'a mut DeRecordWrap { type Error = DeserializeError; fn next_element_seed>( &mut self, seed: U, ) -> Result, Self::Error> { if self.peek_field().is_none() { Ok(None) } else { seed.deserialize(&mut **self).map(Some) } } } impl<'a, 'de: 'a, T: DeRecord<'de>> MapAccess<'de> for &'a mut DeRecordWrap { type Error = DeserializeError; fn next_key_seed>( &mut self, seed: K, ) -> Result, Self::Error> { assert!(self.has_headers()); let field = match self.next_header_bytes()? { None => return Ok(None), Some(field) => field, }; seed.deserialize(BorrowedBytesDeserializer::new(field)).map(Some) } fn next_value_seed>( &mut self, seed: K, ) -> Result { seed.deserialize(&mut **self) } } /// An Serde deserialization error. #[derive(Clone, Debug, Eq, PartialEq)] pub struct DeserializeError { field: Option, kind: DeserializeErrorKind, } /// The type of a Serde deserialization error. #[derive(Clone, Debug, Eq, PartialEq)] pub enum DeserializeErrorKind { /// A generic Serde deserialization error. Message(String), /// A generic Serde unsupported error. Unsupported(String), /// This error occurs when a Rust type expects to decode another field /// from a row, but no more fields exist. UnexpectedEndOfRow, /// This error occurs when UTF-8 validation on a field fails. UTF-8 /// validation is only performed when the Rust type requires it (e.g., /// a `String` or `&str` type). InvalidUtf8(str::Utf8Error), /// This error occurs when a boolean value fails to parse. ParseBool(str::ParseBoolError), /// This error occurs when an integer value fails to parse. ParseInt(num::ParseIntError), /// This error occurs when a float value fails to parse. ParseFloat(num::ParseFloatError), } impl SerdeError for DeserializeError { fn custom(msg: T) -> DeserializeError { DeserializeError { field: None, kind: DEK::Message(msg.to_string()) } } } impl StdError for DeserializeError { fn description(&self) -> &str { self.kind.description() } } impl fmt::Display for DeserializeError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { if let Some(field) = self.field { write!(f, "field {}: {}", field, self.kind) } else { write!(f, "{}", self.kind) } } } impl fmt::Display for DeserializeErrorKind { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { use self::DeserializeErrorKind::*; match *self { Message(ref msg) => write!(f, "{}", msg), Unsupported(ref which) => { write!(f, "unsupported deserializer method: {}", which) } UnexpectedEndOfRow => write!(f, "{}", self.description()), InvalidUtf8(ref err) => err.fmt(f), ParseBool(ref err) => err.fmt(f), ParseInt(ref err) => err.fmt(f), ParseFloat(ref err) => err.fmt(f), } } } impl DeserializeError { /// Return the field index (starting at 0) of this error, if available. pub fn field(&self) -> Option { self.field } /// Return the underlying error kind. pub fn kind(&self) -> &DeserializeErrorKind { &self.kind } } impl DeserializeErrorKind { #[allow(deprecated)] fn description(&self) -> &str { use self::DeserializeErrorKind::*; match *self { Message(_) => "deserialization error", Unsupported(_) => "unsupported deserializer method", UnexpectedEndOfRow => "expected field, but got end of row", InvalidUtf8(ref err) => err.description(), ParseBool(ref err) => err.description(), ParseInt(ref err) => err.description(), ParseFloat(ref err) => err.description(), } } } serde_if_integer128! { fn try_positive_integer128(s: &str) -> Option { s.parse().ok() } fn try_negative_integer128(s: &str) -> Option { s.parse().ok() } } fn try_positive_integer64(s: &str) -> Option { s.parse().ok() } fn try_negative_integer64(s: &str) -> Option { s.parse().ok() } fn try_float(s: &str) -> Option { s.parse().ok() } fn try_positive_integer64_bytes(s: &[u8]) -> Option { str::from_utf8(s).ok().and_then(|s| s.parse().ok()) } fn try_negative_integer64_bytes(s: &[u8]) -> Option { str::from_utf8(s).ok().and_then(|s| s.parse().ok()) } serde_if_integer128! { fn try_positive_integer128_bytes(s: &[u8]) -> Option { str::from_utf8(s).ok().and_then(|s| s.parse().ok()) } fn try_negative_integer128_bytes(s: &[u8]) -> Option { str::from_utf8(s).ok().and_then(|s| s.parse().ok()) } } fn try_float_bytes(s: &[u8]) -> Option { str::from_utf8(s).ok().and_then(|s| s.parse().ok()) } #[cfg(test)] mod tests { use std::collections::HashMap; use { bstr::BString, serde::{de::DeserializeOwned, serde_if_integer128, Deserialize}, }; use crate::{ byte_record::ByteRecord, error::Error, string_record::StringRecord, }; use super::{deserialize_byte_record, deserialize_string_record}; fn de(fields: &[&str]) -> Result { let record = StringRecord::from(fields); deserialize_string_record(&record, None) } fn de_headers( headers: &[&str], fields: &[&str], ) -> Result { let headers = StringRecord::from(headers); let record = StringRecord::from(fields); deserialize_string_record(&record, Some(&headers)) } fn b<'a, T: AsRef<[u8]> + ?Sized>(bytes: &'a T) -> &'a [u8] { bytes.as_ref() } #[test] fn with_header() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { z: f64, y: i32, x: String, } let got: Foo = de_headers(&["x", "y", "z"], &["hi", "42", "1.3"]).unwrap(); assert_eq!(got, Foo { x: "hi".into(), y: 42, z: 1.3 }); } #[test] fn with_header_unknown() { #[derive(Deserialize, Debug, PartialEq)] #[serde(deny_unknown_fields)] struct Foo { z: f64, y: i32, x: String, } assert!(de_headers::( &["a", "x", "y", "z"], &["foo", "hi", "42", "1.3"], ) .is_err()); } #[test] fn with_header_missing() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { z: f64, y: i32, x: String, } assert!(de_headers::(&["y", "z"], &["42", "1.3"],).is_err()); } #[test] fn with_header_missing_ok() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { z: f64, y: i32, x: Option, } let got: Foo = de_headers(&["y", "z"], &["42", "1.3"]).unwrap(); assert_eq!(got, Foo { x: None, y: 42, z: 1.3 }); } #[test] fn with_header_no_fields() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { z: f64, y: i32, x: Option, } let got = de_headers::(&["y", "z"], &[]); assert!(got.is_err()); } #[test] fn with_header_empty() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { z: f64, y: i32, x: Option, } let got = de_headers::(&[], &[]); assert!(got.is_err()); } #[test] fn with_header_empty_ok() { #[derive(Deserialize, Debug, PartialEq)] struct Foo; #[derive(Deserialize, Debug, PartialEq)] struct Bar {} let got = de_headers::(&[], &[]); assert_eq!(got.unwrap(), Foo); let got = de_headers::(&[], &[]); assert_eq!(got.unwrap(), Bar {}); let got = de_headers::<()>(&[], &[]); assert_eq!(got.unwrap(), ()); } #[test] fn without_header() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { z: f64, y: i32, x: String, } let got: Foo = de(&["1.3", "42", "hi"]).unwrap(); assert_eq!(got, Foo { x: "hi".into(), y: 42, z: 1.3 }); } #[test] fn no_fields() { assert!(de::(&[]).is_err()); } #[test] fn one_field() { let got: i32 = de(&["42"]).unwrap(); assert_eq!(got, 42); } serde_if_integer128! { #[test] fn one_field_128() { let got: i128 = de(&["2010223372036854775808"]).unwrap(); assert_eq!(got, 2010223372036854775808); } } #[test] fn two_fields() { let got: (i32, bool) = de(&["42", "true"]).unwrap(); assert_eq!(got, (42, true)); #[derive(Deserialize, Debug, PartialEq)] struct Foo(i32, bool); let got: Foo = de(&["42", "true"]).unwrap(); assert_eq!(got, Foo(42, true)); } #[test] fn two_fields_too_many() { let got: (i32, bool) = de(&["42", "true", "z", "z"]).unwrap(); assert_eq!(got, (42, true)); } #[test] fn two_fields_too_few() { assert!(de::<(i32, bool)>(&["42"]).is_err()); } #[test] fn one_char() { let got: char = de(&["a"]).unwrap(); assert_eq!(got, 'a'); } #[test] fn no_chars() { assert!(de::(&[""]).is_err()); } #[test] fn too_many_chars() { assert!(de::(&["ab"]).is_err()); } #[test] fn simple_seq() { let got: Vec = de(&["1", "5", "10"]).unwrap(); assert_eq!(got, vec![1, 5, 10]); } #[test] fn simple_hex_seq() { let got: Vec = de(&["0x7F", "0xA9", "0x10"]).unwrap(); assert_eq!(got, vec![0x7F, 0xA9, 0x10]); } #[test] fn mixed_hex_seq() { let got: Vec = de(&["0x7F", "0xA9", "10"]).unwrap(); assert_eq!(got, vec![0x7F, 0xA9, 10]); } #[test] fn bad_hex_seq() { assert!(de::>(&["7F", "0xA9", "10"]).is_err()); } #[test] fn seq_in_struct() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { xs: Vec, } let got: Foo = de(&["1", "5", "10"]).unwrap(); assert_eq!(got, Foo { xs: vec![1, 5, 10] }); } #[test] fn seq_in_struct_tail() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { label: String, xs: Vec, } let got: Foo = de(&["foo", "1", "5", "10"]).unwrap(); assert_eq!(got, Foo { label: "foo".into(), xs: vec![1, 5, 10] }); } #[test] fn map_headers() { let got: HashMap = de_headers(&["a", "b", "c"], &["1", "5", "10"]).unwrap(); assert_eq!(got.len(), 3); assert_eq!(got["a"], 1); assert_eq!(got["b"], 5); assert_eq!(got["c"], 10); } #[test] fn map_no_headers() { let got = de::>(&["1", "5", "10"]); assert!(got.is_err()); } #[test] fn bytes() { let got: Vec = de::(&["foobar"]).unwrap().into(); assert_eq!(got, b"foobar".to_vec()); } #[test] fn adjacent_fixed_arrays() { let got: ([u32; 2], [u32; 2]) = de(&["1", "5", "10", "15"]).unwrap(); assert_eq!(got, ([1, 5], [10, 15])); } #[test] fn enum_label_simple_tagged() { #[derive(Deserialize, Debug, PartialEq)] struct Row { label: Label, x: f64, } #[derive(Deserialize, Debug, PartialEq)] #[serde(rename_all = "snake_case")] enum Label { Foo, Bar, Baz, } let got: Row = de_headers(&["label", "x"], &["bar", "5"]).unwrap(); assert_eq!(got, Row { label: Label::Bar, x: 5.0 }); } #[test] fn enum_untagged() { #[derive(Deserialize, Debug, PartialEq)] struct Row { x: Boolish, y: Boolish, z: Boolish, } #[derive(Deserialize, Debug, PartialEq)] #[serde(rename_all = "snake_case")] #[serde(untagged)] enum Boolish { Bool(bool), Number(i64), String(String), } let got: Row = de_headers(&["x", "y", "z"], &["true", "null", "1"]).unwrap(); assert_eq!( got, Row { x: Boolish::Bool(true), y: Boolish::String("null".into()), z: Boolish::Number(1), } ); } #[test] fn option_empty_field() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { a: Option, b: String, c: Option, } let got: Foo = de_headers(&["a", "b", "c"], &["", "foo", "5"]).unwrap(); assert_eq!(got, Foo { a: None, b: "foo".into(), c: Some(5) }); } #[test] fn option_invalid_field() { #[derive(Deserialize, Debug, PartialEq)] struct Foo { #[serde(deserialize_with = "crate::invalid_option")] a: Option, #[serde(deserialize_with = "crate::invalid_option")] b: Option, #[serde(deserialize_with = "crate::invalid_option")] c: Option, } let got: Foo = de_headers(&["a", "b", "c"], &["xyz", "", "5"]).unwrap(); assert_eq!(got, Foo { a: None, b: None, c: Some(5) }); } #[test] fn borrowed() { #[derive(Deserialize, Debug, PartialEq)] struct Foo<'a, 'c> { a: &'a str, b: i32, c: &'c str, } let headers = StringRecord::from(vec!["a", "b", "c"]); let record = StringRecord::from(vec!["foo", "5", "bar"]); let got: Foo = deserialize_string_record(&record, Some(&headers)).unwrap(); assert_eq!(got, Foo { a: "foo", b: 5, c: "bar" }); } #[test] fn borrowed_map() { use std::collections::HashMap; let headers = StringRecord::from(vec!["a", "b", "c"]); let record = StringRecord::from(vec!["aardvark", "bee", "cat"]); let got: HashMap<&str, &str> = deserialize_string_record(&record, Some(&headers)).unwrap(); let expected: HashMap<&str, &str> = headers.iter().zip(&record).collect(); assert_eq!(got, expected); } #[test] fn borrowed_map_bytes() { use std::collections::HashMap; let headers = ByteRecord::from(vec![b"a", b"\xFF", b"c"]); let record = ByteRecord::from(vec!["aardvark", "bee", "cat"]); let got: HashMap<&[u8], &[u8]> = deserialize_byte_record(&record, Some(&headers)).unwrap(); let expected: HashMap<&[u8], &[u8]> = headers.iter().zip(&record).collect(); assert_eq!(got, expected); } #[test] fn flatten() { #[derive(Deserialize, Debug, PartialEq)] struct Input { x: f64, y: f64, } #[derive(Deserialize, Debug, PartialEq)] struct Properties { prop1: f64, prop2: f64, } #[derive(Deserialize, Debug, PartialEq)] struct Row { #[serde(flatten)] input: Input, #[serde(flatten)] properties: Properties, } let header = StringRecord::from(vec!["x", "y", "prop1", "prop2"]); let record = StringRecord::from(vec!["1", "2", "3", "4"]); let got: Row = record.deserialize(Some(&header)).unwrap(); assert_eq!( got, Row { input: Input { x: 1.0, y: 2.0 }, properties: Properties { prop1: 3.0, prop2: 4.0 }, } ); } #[test] fn partially_invalid_utf8() { #[derive(Debug, Deserialize, PartialEq)] struct Row { h1: String, h2: BString, h3: String, } let headers = ByteRecord::from(vec![b"h1", b"h2", b"h3"]); let record = ByteRecord::from(vec![b(b"baz"), b(b"foo\xFFbar"), b(b"quux")]); let got: Row = deserialize_byte_record(&record, Some(&headers)).unwrap(); assert_eq!( got, Row { h1: "baz".to_string(), h2: BString::from(b"foo\xFFbar".to_vec()), h3: "quux".to_string(), } ); } } csv-1.3.0/src/error.rs000064400000000000000000000250361046102023000127140ustar 00000000000000use std::{error::Error as StdError, fmt, io, result}; use crate::{ byte_record::{ByteRecord, Position}, deserializer::DeserializeError, }; /// A type alias for `Result`. pub type Result = result::Result; /// An error that can occur when processing CSV data. /// /// This error can happen when writing or reading CSV data. /// /// There are some important scenarios where an error is impossible to occur. /// For example, if a CSV reader is used on an in-memory buffer with the /// `flexible` option enabled and one is reading records as raw byte strings, /// then no error can occur. #[derive(Debug)] pub struct Error(Box); impl Error { /// A crate private constructor for `Error`. pub(crate) fn new(kind: ErrorKind) -> Error { Error(Box::new(kind)) } /// Return the specific type of this error. pub fn kind(&self) -> &ErrorKind { &self.0 } /// Unwrap this error into its underlying type. pub fn into_kind(self) -> ErrorKind { *self.0 } /// Returns true if this is an I/O error. /// /// If this is true, the underlying `ErrorKind` is guaranteed to be /// `ErrorKind::Io`. pub fn is_io_error(&self) -> bool { match *self.0 { ErrorKind::Io(_) => true, _ => false, } } /// Return the position for this error, if one exists. /// /// This is a convenience function that permits callers to easily access /// the position on an error without doing case analysis on `ErrorKind`. pub fn position(&self) -> Option<&Position> { self.0.position() } } /// The specific type of an error. #[derive(Debug)] pub enum ErrorKind { /// An I/O error that occurred while reading CSV data. Io(io::Error), /// A UTF-8 decoding error that occured while reading CSV data into Rust /// `String`s. Utf8 { /// The position of the record in which this error occurred, if /// available. pos: Option, /// The corresponding UTF-8 error. err: Utf8Error, }, /// This error occurs when two records with an unequal number of fields /// are found. This error only occurs when the `flexible` option in a /// CSV reader/writer is disabled. UnequalLengths { /// The position of the first record with an unequal number of fields /// to the previous record, if available. pos: Option, /// The expected number of fields in a record. This is the number of /// fields in the record read prior to the record indicated by /// `pos`. expected_len: u64, /// The number of fields in the bad record. len: u64, }, /// This error occurs when either the `byte_headers` or `headers` methods /// are called on a CSV reader that was asked to `seek` before it parsed /// the first record. Seek, /// An error of this kind occurs only when using the Serde serializer. Serialize(String), /// An error of this kind occurs only when performing automatic /// deserialization with serde. Deserialize { /// The position of this error, if available. pos: Option, /// The deserialization error. err: DeserializeError, }, /// Hints that destructuring should not be exhaustive. /// /// This enum may grow additional variants, so this makes sure clients /// don't count on exhaustive matching. (Otherwise, adding a new variant /// could break existing code.) #[doc(hidden)] __Nonexhaustive, } impl ErrorKind { /// Return the position for this error, if one exists. /// /// This is a convenience function that permits callers to easily access /// the position on an error without doing case analysis on `ErrorKind`. pub fn position(&self) -> Option<&Position> { match *self { ErrorKind::Utf8 { ref pos, .. } => pos.as_ref(), ErrorKind::UnequalLengths { ref pos, .. } => pos.as_ref(), ErrorKind::Deserialize { ref pos, .. } => pos.as_ref(), _ => None, } } } impl From for Error { fn from(err: io::Error) -> Error { Error::new(ErrorKind::Io(err)) } } impl From for io::Error { fn from(err: Error) -> io::Error { io::Error::new(io::ErrorKind::Other, err) } } impl StdError for Error {} impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match *self.0 { ErrorKind::Io(ref err) => err.fmt(f), ErrorKind::Utf8 { pos: None, ref err } => { write!(f, "CSV parse error: field {}: {}", err.field(), err) } ErrorKind::Utf8 { pos: Some(ref pos), ref err } => write!( f, "CSV parse error: record {} \ (line {}, field: {}, byte: {}): {}", pos.record(), pos.line(), err.field(), pos.byte(), err ), ErrorKind::UnequalLengths { pos: None, expected_len, len } => { write!( f, "CSV error: \ found record with {} fields, but the previous record \ has {} fields", len, expected_len ) } ErrorKind::UnequalLengths { pos: Some(ref pos), expected_len, len, } => write!( f, "CSV error: record {} (line: {}, byte: {}): \ found record with {} fields, but the previous record \ has {} fields", pos.record(), pos.line(), pos.byte(), len, expected_len ), ErrorKind::Seek => write!( f, "CSV error: cannot access headers of CSV data \ when the parser was seeked before the first record \ could be read" ), ErrorKind::Serialize(ref err) => { write!(f, "CSV write error: {}", err) } ErrorKind::Deserialize { pos: None, ref err } => { write!(f, "CSV deserialize error: {}", err) } ErrorKind::Deserialize { pos: Some(ref pos), ref err } => write!( f, "CSV deserialize error: record {} \ (line: {}, byte: {}): {}", pos.record(), pos.line(), pos.byte(), err ), _ => unreachable!(), } } } /// A UTF-8 validation error during record conversion. /// /// This occurs when attempting to convert a `ByteRecord` into a /// `StringRecord`. #[derive(Clone, Debug, Eq, PartialEq)] pub struct FromUtf8Error { record: ByteRecord, err: Utf8Error, } impl FromUtf8Error { /// Create a new FromUtf8Error. pub(crate) fn new(record: ByteRecord, err: Utf8Error) -> FromUtf8Error { FromUtf8Error { record, err } } /// Access the underlying `ByteRecord` that failed UTF-8 validation. pub fn into_byte_record(self) -> ByteRecord { self.record } /// Access the underlying UTF-8 validation error. pub fn utf8_error(&self) -> &Utf8Error { &self.err } } impl fmt::Display for FromUtf8Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.err.fmt(f) } } impl StdError for FromUtf8Error { fn source(&self) -> Option<&(dyn StdError + 'static)> { Some(&self.err) } } /// A UTF-8 validation error. /// /// This occurs when attempting to convert a `ByteRecord` into a /// `StringRecord`. /// /// The error includes the index of the field that failed validation, and the /// last byte at which valid UTF-8 was verified. #[derive(Clone, Debug, Eq, PartialEq)] pub struct Utf8Error { /// The field index of a byte record in which UTF-8 validation failed. field: usize, /// The index into the given field up to which valid UTF-8 was verified. valid_up_to: usize, } /// Create a new UTF-8 error. pub fn new_utf8_error(field: usize, valid_up_to: usize) -> Utf8Error { Utf8Error { field, valid_up_to } } impl Utf8Error { /// The field index of a byte record in which UTF-8 validation failed. pub fn field(&self) -> usize { self.field } /// The index into the given field up to which valid UTF-8 was verified. pub fn valid_up_to(&self) -> usize { self.valid_up_to } } impl StdError for Utf8Error {} impl fmt::Display for Utf8Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!( f, "invalid utf-8: invalid UTF-8 in field {} near byte index {}", self.field, self.valid_up_to ) } } /// `IntoInnerError` occurs when consuming a `Writer` fails. /// /// Consuming the `Writer` causes a flush to happen. If the flush fails, then /// this error is returned, which contains both the original `Writer` and /// the error that occurred. /// /// The type parameter `W` is the unconsumed writer. pub struct IntoInnerError { wtr: W, err: io::Error, } impl IntoInnerError { /// Creates a new `IntoInnerError`. /// /// (This is a visibility hack. It's public in this module, but not in the /// crate.) pub(crate) fn new(wtr: W, err: io::Error) -> IntoInnerError { IntoInnerError { wtr, err } } /// Returns the error which caused the call to `into_inner` to fail. /// /// This error was returned when attempting to flush the internal buffer. pub fn error(&self) -> &io::Error { &self.err } /// Consumes the [`IntoInnerError`] and returns the error which caused the /// call to [`Writer::into_inner`](crate::Writer::into_inner) to fail. /// /// Unlike [`IntoInnerError::error`], this can be used to obtain ownership /// of the underlying error. pub fn into_error(self) -> io::Error { self.err } /// Returns the underlying writer which generated the error. /// /// The returned value can be used for error recovery, such as /// re-inspecting the buffer. pub fn into_inner(self) -> W { self.wtr } } impl StdError for IntoInnerError {} impl fmt::Display for IntoInnerError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.err.fmt(f) } } impl fmt::Debug for IntoInnerError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.err.fmt(f) } } csv-1.3.0/src/lib.rs000064400000000000000000000241341046102023000123270ustar 00000000000000/*! The `csv` crate provides a fast and flexible CSV reader and writer, with support for Serde. The [tutorial](tutorial/index.html) is a good place to start if you're new to Rust. The [cookbook](cookbook/index.html) will give you a variety of complete Rust programs that do CSV reading and writing. # Brief overview **If you're new to Rust**, you might find the [tutorial](tutorial/index.html) to be a good place to start. The primary types in this crate are [`Reader`](struct.Reader.html) and [`Writer`](struct.Writer.html), for reading and writing CSV data respectively. Correspondingly, to support CSV data with custom field or record delimiters (among many other things), you should use either a [`ReaderBuilder`](struct.ReaderBuilder.html) or a [`WriterBuilder`](struct.WriterBuilder.html), depending on whether you're reading or writing CSV data. Unless you're using Serde, the standard CSV record types are [`StringRecord`](struct.StringRecord.html) and [`ByteRecord`](struct.ByteRecord.html). `StringRecord` should be used when you know your data to be valid UTF-8. For data that may be invalid UTF-8, `ByteRecord` is suitable. Finally, the set of errors is described by the [`Error`](struct.Error.html) type. The rest of the types in this crate mostly correspond to more detailed errors, position information, configuration knobs or iterator types. # Setup Run `cargo add csv` to add the latest version of the `csv` crate to your Cargo.toml. If you want to use Serde's custom derive functionality on your custom structs, then run `cargo add serde --features derive` to add the `serde` crate with its `derive` feature enabled to your `Cargo.toml`. # Example This example shows how to read CSV data from stdin and print each record to stdout. There are more examples in the [cookbook](cookbook/index.html). ```no_run use std::{error::Error, io, process}; fn example() -> Result<(), Box> { // Build the CSV reader and iterate over each record. let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // The iterator yields Result, so we check the // error here. let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-basic < examples/data/smallpop.csv ``` # Example with Serde This example shows how to read CSV data from stdin into your own custom struct. By default, the member names of the struct are matched with the values in the header record of your CSV data. ```no_run use std::{error::Error, io, process}; #[derive(Debug, serde::Deserialize)] struct Record { city: String, region: String, country: String, population: Option, } fn example() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { // Notice that we need to provide a type hint for automatic // deserialization. let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } } ``` The above example can be run like so: ```ignore $ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-serde < examples/data/smallpop.csv ``` */ #![deny(missing_docs)] use std::result; use serde::{Deserialize, Deserializer}; pub use crate::{ byte_record::{ByteRecord, ByteRecordIter, Position}, deserializer::{DeserializeError, DeserializeErrorKind}, error::{ Error, ErrorKind, FromUtf8Error, IntoInnerError, Result, Utf8Error, }, reader::{ ByteRecordsIntoIter, ByteRecordsIter, DeserializeRecordsIntoIter, DeserializeRecordsIter, Reader, ReaderBuilder, StringRecordsIntoIter, StringRecordsIter, }, string_record::{StringRecord, StringRecordIter}, writer::{Writer, WriterBuilder}, }; mod byte_record; pub mod cookbook; mod debug; mod deserializer; mod error; mod reader; mod serializer; mod string_record; pub mod tutorial; mod writer; /// The quoting style to use when writing CSV data. #[derive(Clone, Copy, Debug)] pub enum QuoteStyle { /// This puts quotes around every field. Always. Always, /// This puts quotes around fields only when necessary. /// /// They are necessary when fields contain a quote, delimiter or record /// terminator. Quotes are also necessary when writing an empty record /// (which is indistinguishable from a record with one empty field). /// /// This is the default. Necessary, /// This puts quotes around all fields that are non-numeric. Namely, when /// writing a field that does not parse as a valid float or integer, then /// quotes will be used even if they aren't strictly necessary. NonNumeric, /// This *never* writes quotes, even if it would produce invalid CSV data. Never, /// Hints that destructuring should not be exhaustive. /// /// This enum may grow additional variants, so this makes sure clients /// don't count on exhaustive matching. (Otherwise, adding a new variant /// could break existing code.) #[doc(hidden)] __Nonexhaustive, } impl QuoteStyle { fn to_core(self) -> csv_core::QuoteStyle { match self { QuoteStyle::Always => csv_core::QuoteStyle::Always, QuoteStyle::Necessary => csv_core::QuoteStyle::Necessary, QuoteStyle::NonNumeric => csv_core::QuoteStyle::NonNumeric, QuoteStyle::Never => csv_core::QuoteStyle::Never, _ => unreachable!(), } } } impl Default for QuoteStyle { fn default() -> QuoteStyle { QuoteStyle::Necessary } } /// A record terminator. /// /// Use this to specify the record terminator while parsing CSV. The default is /// CRLF, which treats `\r`, `\n` or `\r\n` as a single record terminator. #[derive(Clone, Copy, Debug)] pub enum Terminator { /// Parses `\r`, `\n` or `\r\n` as a single record terminator. CRLF, /// Parses the byte given as a record terminator. Any(u8), /// Hints that destructuring should not be exhaustive. /// /// This enum may grow additional variants, so this makes sure clients /// don't count on exhaustive matching. (Otherwise, adding a new variant /// could break existing code.) #[doc(hidden)] __Nonexhaustive, } impl Terminator { /// Convert this to the csv_core type of the same name. fn to_core(self) -> csv_core::Terminator { match self { Terminator::CRLF => csv_core::Terminator::CRLF, Terminator::Any(b) => csv_core::Terminator::Any(b), _ => unreachable!(), } } } impl Default for Terminator { fn default() -> Terminator { Terminator::CRLF } } /// The whitespace preservation behaviour when reading CSV data. #[derive(Clone, Copy, Debug, PartialEq)] pub enum Trim { /// Preserves fields and headers. This is the default. None, /// Trim whitespace from headers. Headers, /// Trim whitespace from fields, but not headers. Fields, /// Trim whitespace from fields and headers. All, /// Hints that destructuring should not be exhaustive. /// /// This enum may grow additional variants, so this makes sure clients /// don't count on exhaustive matching. (Otherwise, adding a new variant /// could break existing code.) #[doc(hidden)] __Nonexhaustive, } impl Trim { fn should_trim_fields(&self) -> bool { self == &Trim::Fields || self == &Trim::All } fn should_trim_headers(&self) -> bool { self == &Trim::Headers || self == &Trim::All } } impl Default for Trim { fn default() -> Trim { Trim::None } } /// A custom Serde deserializer for possibly invalid `Option` fields. /// /// When deserializing CSV data, it is sometimes desirable to simply ignore /// fields with invalid data. For example, there might be a field that is /// usually a number, but will occasionally contain garbage data that causes /// number parsing to fail. /// /// You might be inclined to use, say, `Option` for fields such at this. /// By default, however, `Option` will either capture *empty* fields with /// `None` or valid numeric fields with `Some(the_number)`. If the field is /// non-empty and not a valid number, then deserialization will return an error /// instead of using `None`. /// /// This function allows you to override this default behavior. Namely, if /// `Option` is deserialized with non-empty but invalid data, then the value /// will be `None` and the error will be ignored. /// /// # Example /// /// This example shows how to parse CSV records with numerical data, even if /// some numerical data is absent or invalid. Without the /// `serde(deserialize_with = "...")` annotations, this example would return /// an error. /// /// ``` /// use std::error::Error; /// /// #[derive(Debug, serde::Deserialize, Eq, PartialEq)] /// struct Row { /// #[serde(deserialize_with = "csv::invalid_option")] /// a: Option, /// #[serde(deserialize_with = "csv::invalid_option")] /// b: Option, /// #[serde(deserialize_with = "csv::invalid_option")] /// c: Option, /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// a,b,c /// 5,\"\",xyz /// "; /// let mut rdr = csv::Reader::from_reader(data.as_bytes()); /// if let Some(result) = rdr.deserialize().next() { /// let record: Row = result?; /// assert_eq!(record, Row { a: Some(5), b: None, c: None }); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn invalid_option<'de, D, T>(de: D) -> result::Result, D::Error> where D: Deserializer<'de>, Option: Deserialize<'de>, { Option::::deserialize(de).or_else(|_| Ok(None)) } csv-1.3.0/src/reader.rs000064400000000000000000002570611046102023000130320ustar 00000000000000use std::{ fs::File, io::{self, BufRead, Seek}, marker::PhantomData, path::Path, result, }; use { csv_core::{Reader as CoreReader, ReaderBuilder as CoreReaderBuilder}, serde::de::DeserializeOwned, }; use crate::{ byte_record::{ByteRecord, Position}, error::{Error, ErrorKind, Result, Utf8Error}, string_record::StringRecord, {Terminator, Trim}, }; /// Builds a CSV reader with various configuration knobs. /// /// This builder can be used to tweak the field delimiter, record terminator /// and more. Once a CSV `Reader` is built, its configuration cannot be /// changed. #[derive(Debug)] pub struct ReaderBuilder { capacity: usize, flexible: bool, has_headers: bool, trim: Trim, /// The underlying CSV parser builder. /// /// We explicitly put this on the heap because CoreReaderBuilder embeds an /// entire DFA transition table, which along with other things, tallies up /// to almost 500 bytes on the stack. builder: Box, } impl Default for ReaderBuilder { fn default() -> ReaderBuilder { ReaderBuilder { capacity: 8 * (1 << 10), flexible: false, has_headers: true, trim: Trim::default(), builder: Box::new(CoreReaderBuilder::default()), } } } impl ReaderBuilder { /// Create a new builder for configuring CSV parsing. /// /// To convert a builder into a reader, call one of the methods starting /// with `from_`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::{ReaderBuilder, StringRecord}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// Concord,United States,42695 /// "; /// let mut rdr = ReaderBuilder::new().from_reader(data.as_bytes()); /// /// let records = rdr /// .records() /// .collect::, csv::Error>>()?; /// assert_eq!(records, vec![ /// vec!["Boston", "United States", "4628910"], /// vec!["Concord", "United States", "42695"], /// ]); /// Ok(()) /// } /// ``` pub fn new() -> ReaderBuilder { ReaderBuilder::default() } /// Build a CSV parser from this configuration that reads data from the /// given file path. /// /// If there was a problem opening the file at the given path, then this /// returns the corresponding error. /// /// # Example /// /// ```no_run /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut rdr = ReaderBuilder::new().from_path("foo.csv")?; /// for result in rdr.records() { /// let record = result?; /// println!("{:?}", record); /// } /// Ok(()) /// } /// ``` pub fn from_path>(&self, path: P) -> Result> { Ok(Reader::new(self, File::open(path)?)) } /// Build a CSV parser from this configuration that reads data from `rdr`. /// /// Note that the CSV reader is buffered automatically, so you should not /// wrap `rdr` in a buffered reader like `io::BufReader`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// Concord,United States,42695 /// "; /// let mut rdr = ReaderBuilder::new().from_reader(data.as_bytes()); /// for result in rdr.records() { /// let record = result?; /// println!("{:?}", record); /// } /// Ok(()) /// } /// ``` pub fn from_reader(&self, rdr: R) -> Reader { Reader::new(self, rdr) } /// The field delimiter to use when parsing CSV. /// /// The default is `b','`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city;country;pop /// Boston;United States;4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .delimiter(b';') /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn delimiter(&mut self, delimiter: u8) -> &mut ReaderBuilder { self.builder.delimiter(delimiter); self } /// Whether to treat the first row as a special header row. /// /// By default, the first row is treated as a special header row, which /// means the header is never returned by any of the record reading methods /// or iterators. When this is disabled (`yes` set to `false`), the first /// row is not treated specially. /// /// Note that the `headers` and `byte_headers` methods are unaffected by /// whether this is set. Those methods always return the first record. /// /// # Example /// /// This example shows what happens when `has_headers` is disabled. /// Namely, the first row is treated just like any other row. /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .has_headers(false) /// .from_reader(data.as_bytes()); /// let mut iter = rdr.records(); /// /// // Read the first record. /// if let Some(result) = iter.next() { /// let record = result?; /// assert_eq!(record, vec!["city", "country", "pop"]); /// } else { /// return Err(From::from( /// "expected at least two records but got none")); /// } /// /// // Read the second record. /// if let Some(result) = iter.next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// } else { /// return Err(From::from( /// "expected at least two records but got one")) /// } /// Ok(()) /// } /// ``` pub fn has_headers(&mut self, yes: bool) -> &mut ReaderBuilder { self.has_headers = yes; self } /// Whether the number of fields in records is allowed to change or not. /// /// When disabled (which is the default), parsing CSV data will return an /// error if a record is found with a number of fields different from the /// number of fields in a previous record. /// /// When enabled, this error checking is turned off. /// /// # Example: flexible records enabled /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// // Notice that the first row is missing the population count. /// let data = "\ /// city,country,pop /// Boston,United States /// "; /// let mut rdr = ReaderBuilder::new() /// .flexible(true) /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` /// /// # Example: flexible records disabled /// /// This shows the error that appears when records of unequal length /// are found and flexible records have been disabled (which is the /// default). /// /// ``` /// use std::error::Error; /// use csv::{ErrorKind, ReaderBuilder}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// // Notice that the first row is missing the population count. /// let data = "\ /// city,country,pop /// Boston,United States /// "; /// let mut rdr = ReaderBuilder::new() /// .flexible(false) /// .from_reader(data.as_bytes()); /// /// if let Some(Err(err)) = rdr.records().next() { /// match *err.kind() { /// ErrorKind::UnequalLengths { expected_len, len, .. } => { /// // The header row has 3 fields... /// assert_eq!(expected_len, 3); /// // ... but the first row has only 2 fields. /// assert_eq!(len, 2); /// Ok(()) /// } /// ref wrong => { /// Err(From::from(format!( /// "expected UnequalLengths error but got {:?}", /// wrong))) /// } /// } /// } else { /// Err(From::from( /// "expected at least one errored record but got none")) /// } /// } /// ``` pub fn flexible(&mut self, yes: bool) -> &mut ReaderBuilder { self.flexible = yes; self } /// Whether fields are trimmed of leading and trailing whitespace or not. /// /// By default, no trimming is performed. This method permits one to /// override that behavior and choose one of the following options: /// /// 1. `Trim::Headers` trims only header values. /// 2. `Trim::Fields` trims only non-header or "field" values. /// 3. `Trim::All` trims both header and non-header values. /// /// A value is only interpreted as a header value if this CSV reader is /// configured to read a header record (which is the default). /// /// When reading string records, characters meeting the definition of /// Unicode whitespace are trimmed. When reading byte records, characters /// meeting the definition of ASCII whitespace are trimmed. ASCII /// whitespace characters correspond to the set `[\t\n\v\f\r ]`. /// /// # Example /// /// This example shows what happens when all values are trimmed. /// /// ``` /// use std::error::Error; /// use csv::{ReaderBuilder, StringRecord, Trim}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city , country , pop /// Boston,\" /// United States\",4628910 /// Concord, United States ,42695 /// "; /// let mut rdr = ReaderBuilder::new() /// .trim(Trim::All) /// .from_reader(data.as_bytes()); /// let records = rdr /// .records() /// .collect::, csv::Error>>()?; /// assert_eq!(records, vec![ /// vec!["Boston", "United States", "4628910"], /// vec!["Concord", "United States", "42695"], /// ]); /// Ok(()) /// } /// ``` pub fn trim(&mut self, trim: Trim) -> &mut ReaderBuilder { self.trim = trim; self } /// The record terminator to use when parsing CSV. /// /// A record terminator can be any single byte. The default is a special /// value, `Terminator::CRLF`, which treats any occurrence of `\r`, `\n` /// or `\r\n` as a single record terminator. /// /// # Example: `$` as a record terminator /// /// ``` /// use std::error::Error; /// use csv::{ReaderBuilder, Terminator}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "city,country,pop$Boston,United States,4628910"; /// let mut rdr = ReaderBuilder::new() /// .terminator(Terminator::Any(b'$')) /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn terminator(&mut self, term: Terminator) -> &mut ReaderBuilder { self.builder.terminator(term.to_core()); self } /// The quote character to use when parsing CSV. /// /// The default is `b'"'`. /// /// # Example: single quotes instead of double quotes /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,'United States',4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .quote(b'\'') /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn quote(&mut self, quote: u8) -> &mut ReaderBuilder { self.builder.quote(quote); self } /// The escape character to use when parsing CSV. /// /// In some variants of CSV, quotes are escaped using a special escape /// character like `\` (instead of escaping quotes by doubling them). /// /// By default, recognizing these idiosyncratic escapes is disabled. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,\"The \\\"United\\\" States\",4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .escape(Some(b'\\')) /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec![ /// "Boston", "The \"United\" States", "4628910", /// ]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn escape(&mut self, escape: Option) -> &mut ReaderBuilder { self.builder.escape(escape); self } /// Enable double quote escapes. /// /// This is enabled by default, but it may be disabled. When disabled, /// doubled quotes are not interpreted as escapes. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,\"The \"\"United\"\" States\",4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .double_quote(false) /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec![ /// "Boston", "The \"United\"\" States\"", "4628910", /// ]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn double_quote(&mut self, yes: bool) -> &mut ReaderBuilder { self.builder.double_quote(yes); self } /// Enable or disable quoting. /// /// This is enabled by default, but it may be disabled. When disabled, /// quotes are not treated specially. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,\"The United States,4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .quoting(false) /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec![ /// "Boston", "\"The United States", "4628910", /// ]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn quoting(&mut self, yes: bool) -> &mut ReaderBuilder { self.builder.quoting(yes); self } /// The comment character to use when parsing CSV. /// /// If the start of a record begins with the byte given here, then that /// line is ignored by the CSV parser. /// /// This is disabled by default. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// #Concord,United States,42695 /// Boston,United States,4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .comment(Some(b'#')) /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn comment(&mut self, comment: Option) -> &mut ReaderBuilder { self.builder.comment(comment); self } /// A convenience method for specifying a configuration to read ASCII /// delimited text. /// /// This sets the delimiter and record terminator to the ASCII unit /// separator (`\x1F`) and record separator (`\x1E`), respectively. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city\x1Fcountry\x1Fpop\x1EBoston\x1FUnited States\x1F4628910"; /// let mut rdr = ReaderBuilder::new() /// .ascii() /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn ascii(&mut self) -> &mut ReaderBuilder { self.builder.ascii(); self } /// Set the capacity (in bytes) of the buffer used in the CSV reader. /// This defaults to a reasonable setting. pub fn buffer_capacity(&mut self, capacity: usize) -> &mut ReaderBuilder { self.capacity = capacity; self } /// Enable or disable the NFA for parsing CSV. /// /// This is intended to be a debug option. The NFA is always slower than /// the DFA. #[doc(hidden)] pub fn nfa(&mut self, yes: bool) -> &mut ReaderBuilder { self.builder.nfa(yes); self } } /// A already configured CSV reader. /// /// A CSV reader takes as input CSV data and transforms that into standard Rust /// values. The most flexible way to read CSV data is as a sequence of records, /// where a record is a sequence of fields and each field is a string. However, /// a reader can also deserialize CSV data into Rust types like `i64` or /// `(String, f64, f64, f64)` or even a custom struct automatically using /// Serde. /// /// # Configuration /// /// A CSV reader has a couple convenient constructor methods like `from_path` /// and `from_reader`. However, if you want to configure the CSV reader to use /// a different delimiter or quote character (among many other things), then /// you should use a [`ReaderBuilder`](struct.ReaderBuilder.html) to construct /// a `Reader`. For example, to change the field delimiter: /// /// ``` /// use std::error::Error; /// use csv::ReaderBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city;country;pop /// Boston;United States;4628910 /// "; /// let mut rdr = ReaderBuilder::new() /// .delimiter(b';') /// .from_reader(data.as_bytes()); /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` /// /// # Error handling /// /// In general, CSV *parsing* does not ever return an error. That is, there is /// no such thing as malformed CSV data. Instead, this reader will prioritize /// finding a parse over rejecting CSV data that it does not understand. This /// choice was inspired by other popular CSV parsers, but also because it is /// pragmatic. CSV data varies wildly, so even if the CSV data is malformed, /// it might still be possible to work with the data. In the land of CSV, there /// is no "right" or "wrong," only "right" and "less right." /// /// With that said, a number of errors can occur while reading CSV data: /// /// * By default, all records in CSV data must have the same number of fields. /// If a record is found with a different number of fields than a prior /// record, then an error is returned. This behavior can be disabled by /// enabling flexible parsing via the `flexible` method on /// [`ReaderBuilder`](struct.ReaderBuilder.html). /// * When reading CSV data from a resource (like a file), it is possible for /// reading from the underlying resource to fail. This will return an error. /// For subsequent calls to the `Reader` after encountering a such error /// (unless `seek` is used), it will behave as if end of file had been /// reached, in order to avoid running into infinite loops when still /// attempting to read the next record when one has errored. /// * When reading CSV data into `String` or `&str` fields (e.g., via a /// [`StringRecord`](struct.StringRecord.html)), UTF-8 is strictly /// enforced. If CSV data is invalid UTF-8, then an error is returned. If /// you want to read invalid UTF-8, then you should use the byte oriented /// APIs such as [`ByteRecord`](struct.ByteRecord.html). If you need explicit /// support for another encoding entirely, then you'll need to use another /// crate to transcode your CSV data to UTF-8 before parsing it. /// * When using Serde to deserialize CSV data into Rust types, it is possible /// for a number of additional errors to occur. For example, deserializing /// a field `xyz` into an `i32` field will result in an error. /// /// For more details on the precise semantics of errors, see the /// [`Error`](enum.Error.html) type. #[derive(Debug)] pub struct Reader { /// The underlying CSV parser. /// /// We explicitly put this on the heap because CoreReader embeds an entire /// DFA transition table, which along with other things, tallies up to /// almost 500 bytes on the stack. core: Box, /// The underlying reader. rdr: io::BufReader, /// Various state tracking. /// /// There is more state embedded in the `CoreReader`. state: ReaderState, } #[derive(Debug)] struct ReaderState { /// When set, this contains the first row of any parsed CSV data. /// /// This is always populated, regardless of whether `has_headers` is set. headers: Option, /// When set, the first row of parsed CSV data is excluded from things /// that read records, like iterators and `read_record`. has_headers: bool, /// When set, there is no restriction on the length of records. When not /// set, every record must have the same number of fields, or else an error /// is reported. flexible: bool, trim: Trim, /// The number of fields in the first record parsed. first_field_count: Option, /// The current position of the parser. /// /// Note that this position is only observable by callers at the start /// of a record. More granular positions are not supported. cur_pos: Position, /// Whether the first record has been read or not. first: bool, /// Whether the reader has been seeked or not. seeked: bool, /// Whether EOF of the underlying reader has been reached or not. /// /// IO errors on the underlying reader will be considered as an EOF for /// subsequent read attempts, as it would be incorrect to keep on trying /// to read when the underlying reader has broken. /// /// For clarity, having the best `Debug` impl and in case they need to be /// treated differently at some point, we store whether the `EOF` is /// considered because an actual EOF happened, or because we encoundered /// an IO error. /// This has no additional runtime cost. eof: ReaderEofState, } /// Whether EOF of the underlying reader has been reached or not. /// /// IO errors on the underlying reader will be considered as an EOF for /// subsequent read attempts, as it would be incorrect to keep on trying /// to read when the underlying reader has broken. /// /// For clarity, having the best `Debug` impl and in case they need to be /// treated differently at some point, we store whether the `EOF` is /// considered because an actual EOF happened, or because we encoundered /// an IO error #[derive(Debug, Clone, Copy, PartialEq, Eq)] enum ReaderEofState { NotEof, Eof, IOError, } /// Headers encapsulates any data associated with the headers of CSV data. /// /// The headers always correspond to the first row. #[derive(Debug)] struct Headers { /// The header, as raw bytes. byte_record: ByteRecord, /// The header, as valid UTF-8 (or a UTF-8 error). string_record: result::Result, } impl Reader> { /// Create a new CSV parser with a default configuration for the given /// file path. /// /// To customize CSV parsing, use a `ReaderBuilder`. /// /// # Example /// /// ```no_run /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut rdr = Reader::from_path("foo.csv")?; /// for result in rdr.records() { /// let record = result?; /// println!("{:?}", record); /// } /// Ok(()) /// } /// ``` pub fn from_path>(path: P) -> Result> { ReaderBuilder::new().from_path(path) } } impl Reader { /// Create a new CSV reader given a builder and a source of underlying /// bytes. fn new(builder: &ReaderBuilder, rdr: R) -> Reader { Reader { core: Box::new(builder.builder.build()), rdr: io::BufReader::with_capacity(builder.capacity, rdr), state: ReaderState { headers: None, has_headers: builder.has_headers, flexible: builder.flexible, trim: builder.trim, first_field_count: None, cur_pos: Position::new(), first: false, seeked: false, eof: ReaderEofState::NotEof, }, } } /// Create a new CSV parser with a default configuration for the given /// reader. /// /// To customize CSV parsing, use a `ReaderBuilder`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// Concord,United States,42695 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// for result in rdr.records() { /// let record = result?; /// println!("{:?}", record); /// } /// Ok(()) /// } /// ``` pub fn from_reader(rdr: R) -> Reader { ReaderBuilder::new().from_reader(rdr) } /// Returns a borrowed iterator over deserialized records. /// /// Each item yielded by this iterator is a `Result`. /// Therefore, in order to access the record, callers must handle the /// possibility of error (typically with `try!` or `?`). /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this does not include the first record. Additionally, /// if `has_headers` is enabled, then deserializing into a struct will /// automatically align the values in each row to the fields of a struct /// based on the header row. /// /// # Example /// /// This shows how to deserialize CSV data into normal Rust structs. The /// fields of the header row are used to match up the values in each row /// to the fields of the struct. /// /// ``` /// use std::error::Error; /// /// #[derive(Debug, serde::Deserialize, Eq, PartialEq)] /// struct Row { /// city: String, /// country: String, /// #[serde(rename = "popcount")] /// population: u64, /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,popcount /// Boston,United States,4628910 /// "; /// let mut rdr = csv::Reader::from_reader(data.as_bytes()); /// let mut iter = rdr.deserialize(); /// /// if let Some(result) = iter.next() { /// let record: Row = result?; /// assert_eq!(record, Row { /// city: "Boston".to_string(), /// country: "United States".to_string(), /// population: 4628910, /// }); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` /// /// # Rules /// /// For the most part, any Rust type that maps straight-forwardly to a CSV /// record is supported. This includes maps, structs, tuples and tuple /// structs. Other Rust types, such as `Vec`s, arrays, and enums have /// a more complicated story. In general, when working with CSV data, one /// should avoid *nested sequences* as much as possible. /// /// Maps, structs, tuples and tuple structs map to CSV records in a simple /// way. Tuples and tuple structs decode their fields in the order that /// they are defined. Structs will do the same only if `has_headers` has /// been disabled using [`ReaderBuilder`](struct.ReaderBuilder.html), /// otherwise, structs and maps are deserialized based on the fields /// defined in the header row. (If there is no header row, then /// deserializing into a map will result in an error.) /// /// Nested sequences are supported in a limited capacity. Namely, they /// are flattened. As a result, it's often useful to use a `Vec` to capture /// a "tail" of fields in a record: /// /// ``` /// use std::error::Error; /// /// #[derive(Debug, serde::Deserialize, Eq, PartialEq)] /// struct Row { /// label: String, /// values: Vec, /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "foo,1,2,3"; /// let mut rdr = csv::ReaderBuilder::new() /// .has_headers(false) /// .from_reader(data.as_bytes()); /// let mut iter = rdr.deserialize(); /// /// if let Some(result) = iter.next() { /// let record: Row = result?; /// assert_eq!(record, Row { /// label: "foo".to_string(), /// values: vec![1, 2, 3], /// }); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` /// /// In the above example, adding another field to the `Row` struct after /// the `values` field will result in a deserialization error. This is /// because the deserializer doesn't know when to stop reading fields /// into the `values` vector, so it will consume the rest of the fields in /// the record leaving none left over for the additional field. /// /// Finally, simple enums in Rust can be deserialized as well. Namely, /// enums must either be variants with no arguments or variants with a /// single argument. Variants with no arguments are deserialized based on /// which variant name the field matches. Variants with a single argument /// are deserialized based on which variant can store the data. The latter /// is only supported when using "untagged" enum deserialization. The /// following example shows both forms in action: /// /// ``` /// use std::error::Error; /// /// #[derive(Debug, serde::Deserialize, PartialEq)] /// struct Row { /// label: Label, /// value: Number, /// } /// /// #[derive(Debug, serde::Deserialize, PartialEq)] /// #[serde(rename_all = "lowercase")] /// enum Label { /// Celsius, /// Fahrenheit, /// } /// /// #[derive(Debug, serde::Deserialize, PartialEq)] /// #[serde(untagged)] /// enum Number { /// Integer(i64), /// Float(f64), /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// label,value /// celsius,22.2222 /// fahrenheit,72 /// "; /// let mut rdr = csv::Reader::from_reader(data.as_bytes()); /// let mut iter = rdr.deserialize(); /// /// // Read the first record. /// if let Some(result) = iter.next() { /// let record: Row = result?; /// assert_eq!(record, Row { /// label: Label::Celsius, /// value: Number::Float(22.2222), /// }); /// } else { /// return Err(From::from( /// "expected at least two records but got none")); /// } /// /// // Read the second record. /// if let Some(result) = iter.next() { /// let record: Row = result?; /// assert_eq!(record, Row { /// label: Label::Fahrenheit, /// value: Number::Integer(72), /// }); /// Ok(()) /// } else { /// Err(From::from( /// "expected at least two records but got only one")) /// } /// } /// ``` pub fn deserialize(&mut self) -> DeserializeRecordsIter where D: DeserializeOwned, { DeserializeRecordsIter::new(self) } /// Returns an owned iterator over deserialized records. /// /// Each item yielded by this iterator is a `Result`. /// Therefore, in order to access the record, callers must handle the /// possibility of error (typically with `try!` or `?`). /// /// This is mostly useful when you want to return a CSV iterator or store /// it somewhere. /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this does not include the first record. Additionally, /// if `has_headers` is enabled, then deserializing into a struct will /// automatically align the values in each row to the fields of a struct /// based on the header row. /// /// For more detailed deserialization rules, see the documentation on the /// `deserialize` method. /// /// # Example /// /// ``` /// use std::error::Error; /// /// #[derive(Debug, serde::Deserialize, Eq, PartialEq)] /// struct Row { /// city: String, /// country: String, /// #[serde(rename = "popcount")] /// population: u64, /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,popcount /// Boston,United States,4628910 /// "; /// let rdr = csv::Reader::from_reader(data.as_bytes()); /// let mut iter = rdr.into_deserialize(); /// /// if let Some(result) = iter.next() { /// let record: Row = result?; /// assert_eq!(record, Row { /// city: "Boston".to_string(), /// country: "United States".to_string(), /// population: 4628910, /// }); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn into_deserialize(self) -> DeserializeRecordsIntoIter where D: DeserializeOwned, { DeserializeRecordsIntoIter::new(self) } /// Returns a borrowed iterator over all records as strings. /// /// Each item yielded by this iterator is a `Result`. /// Therefore, in order to access the record, callers must handle the /// possibility of error (typically with `try!` or `?`). /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this does not include the first record. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// let mut iter = rdr.records(); /// /// if let Some(result) = iter.next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn records(&mut self) -> StringRecordsIter { StringRecordsIter::new(self) } /// Returns an owned iterator over all records as strings. /// /// Each item yielded by this iterator is a `Result`. /// Therefore, in order to access the record, callers must handle the /// possibility of error (typically with `try!` or `?`). /// /// This is mostly useful when you want to return a CSV iterator or store /// it somewhere. /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this does not include the first record. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let rdr = Reader::from_reader(data.as_bytes()); /// let mut iter = rdr.into_records(); /// /// if let Some(result) = iter.next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn into_records(self) -> StringRecordsIntoIter { StringRecordsIntoIter::new(self) } /// Returns a borrowed iterator over all records as raw bytes. /// /// Each item yielded by this iterator is a `Result`. /// Therefore, in order to access the record, callers must handle the /// possibility of error (typically with `try!` or `?`). /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this does not include the first record. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// let mut iter = rdr.byte_records(); /// /// if let Some(result) = iter.next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn byte_records(&mut self) -> ByteRecordsIter { ByteRecordsIter::new(self) } /// Returns an owned iterator over all records as raw bytes. /// /// Each item yielded by this iterator is a `Result`. /// Therefore, in order to access the record, callers must handle the /// possibility of error (typically with `try!` or `?`). /// /// This is mostly useful when you want to return a CSV iterator or store /// it somewhere. /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this does not include the first record. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let rdr = Reader::from_reader(data.as_bytes()); /// let mut iter = rdr.into_byte_records(); /// /// if let Some(result) = iter.next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn into_byte_records(self) -> ByteRecordsIntoIter { ByteRecordsIntoIter::new(self) } /// Returns a reference to the first row read by this parser. /// /// If no row has been read yet, then this will force parsing of the first /// row. /// /// If there was a problem parsing the row or if it wasn't valid UTF-8, /// then this returns an error. /// /// If the underlying reader emits EOF before any data, then this returns /// an empty record. /// /// Note that this method may be used regardless of whether `has_headers` /// was enabled (but it is enabled by default). /// /// # Example /// /// This example shows how to get the header row of CSV data. Notice that /// the header row does not appear as a record in the iterator! /// /// ``` /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// /// // We can read the headers before iterating. /// { /// // `headers` borrows from the reader, so we put this in its /// // own scope. That way, the borrow ends before we try iterating /// // below. Alternatively, we could clone the headers. /// let headers = rdr.headers()?; /// assert_eq!(headers, vec!["city", "country", "pop"]); /// } /// /// if let Some(result) = rdr.records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// } else { /// return Err(From::from( /// "expected at least one record but got none")) /// } /// /// // We can also read the headers after iterating. /// let headers = rdr.headers()?; /// assert_eq!(headers, vec!["city", "country", "pop"]); /// Ok(()) /// } /// ``` pub fn headers(&mut self) -> Result<&StringRecord> { if self.state.headers.is_none() { let mut record = ByteRecord::new(); self.read_byte_record_impl(&mut record)?; self.set_headers_impl(Err(record)); } let headers = self.state.headers.as_ref().unwrap(); match headers.string_record { Ok(ref record) => Ok(record), Err(ref err) => Err(Error::new(ErrorKind::Utf8 { pos: headers.byte_record.position().map(Clone::clone), err: err.clone(), })), } } /// Returns a reference to the first row read by this parser as raw bytes. /// /// If no row has been read yet, then this will force parsing of the first /// row. /// /// If there was a problem parsing the row then this returns an error. /// /// If the underlying reader emits EOF before any data, then this returns /// an empty record. /// /// Note that this method may be used regardless of whether `has_headers` /// was enabled (but it is enabled by default). /// /// # Example /// /// This example shows how to get the header row of CSV data. Notice that /// the header row does not appear as a record in the iterator! /// /// ``` /// use std::error::Error; /// use csv::Reader; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// /// // We can read the headers before iterating. /// { /// // `headers` borrows from the reader, so we put this in its /// // own scope. That way, the borrow ends before we try iterating /// // below. Alternatively, we could clone the headers. /// let headers = rdr.byte_headers()?; /// assert_eq!(headers, vec!["city", "country", "pop"]); /// } /// /// if let Some(result) = rdr.byte_records().next() { /// let record = result?; /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// } else { /// return Err(From::from( /// "expected at least one record but got none")) /// } /// /// // We can also read the headers after iterating. /// let headers = rdr.byte_headers()?; /// assert_eq!(headers, vec!["city", "country", "pop"]); /// Ok(()) /// } /// ``` pub fn byte_headers(&mut self) -> Result<&ByteRecord> { if self.state.headers.is_none() { let mut record = ByteRecord::new(); self.read_byte_record_impl(&mut record)?; self.set_headers_impl(Err(record)); } Ok(&self.state.headers.as_ref().unwrap().byte_record) } /// Set the headers of this CSV parser manually. /// /// This overrides any other setting (including `set_byte_headers`). Any /// automatic detection of headers is disabled. This may be called at any /// time. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::{Reader, StringRecord}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// /// assert_eq!(rdr.headers()?, vec!["city", "country", "pop"]); /// rdr.set_headers(StringRecord::from(vec!["a", "b", "c"])); /// assert_eq!(rdr.headers()?, vec!["a", "b", "c"]); /// /// Ok(()) /// } /// ``` pub fn set_headers(&mut self, headers: StringRecord) { self.set_headers_impl(Ok(headers)); } /// Set the headers of this CSV parser manually as raw bytes. /// /// This overrides any other setting (including `set_headers`). Any /// automatic detection of headers is disabled. This may be called at any /// time. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::{Reader, ByteRecord}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// /// assert_eq!(rdr.byte_headers()?, vec!["city", "country", "pop"]); /// rdr.set_byte_headers(ByteRecord::from(vec!["a", "b", "c"])); /// assert_eq!(rdr.byte_headers()?, vec!["a", "b", "c"]); /// /// Ok(()) /// } /// ``` pub fn set_byte_headers(&mut self, headers: ByteRecord) { self.set_headers_impl(Err(headers)); } fn set_headers_impl( &mut self, headers: result::Result, ) { // If we have string headers, then get byte headers. But if we have // byte headers, then get the string headers (or a UTF-8 error). let (mut str_headers, mut byte_headers) = match headers { Ok(string) => { let bytes = string.clone().into_byte_record(); (Ok(string), bytes) } Err(bytes) => { match StringRecord::from_byte_record(bytes.clone()) { Ok(str_headers) => (Ok(str_headers), bytes), Err(err) => (Err(err.utf8_error().clone()), bytes), } } }; if self.state.trim.should_trim_headers() { if let Ok(ref mut str_headers) = str_headers.as_mut() { str_headers.trim(); } byte_headers.trim(); } self.state.headers = Some(Headers { byte_record: byte_headers, string_record: str_headers, }); } /// Read a single row into the given record. Returns false when no more /// records could be read. /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this will never read the first record. /// /// This method is useful when you want to read records as fast as /// as possible. It's less ergonomic than an iterator, but it permits the /// caller to reuse the `StringRecord` allocation, which usually results /// in higher throughput. /// /// Records read via this method are guaranteed to have a position set /// on them, even if the reader is at EOF or if an error is returned. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::{Reader, StringRecord}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// let mut record = StringRecord::new(); /// /// if rdr.read_record(&mut record)? { /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn read_record(&mut self, record: &mut StringRecord) -> Result { let result = record.read(self); // We need to trim again because trimming string records includes // Unicode whitespace. (ByteRecord trimming only includes ASCII // whitespace.) if self.state.trim.should_trim_fields() { record.trim(); } result } /// Read a single row into the given byte record. Returns false when no /// more records could be read. /// /// If `has_headers` was enabled via a `ReaderBuilder` (which is the /// default), then this will never read the first record. /// /// This method is useful when you want to read records as fast as /// as possible. It's less ergonomic than an iterator, but it permits the /// caller to reuse the `ByteRecord` allocation, which usually results /// in higher throughput. /// /// Records read via this method are guaranteed to have a position set /// on them, even if the reader is at EOF or if an error is returned. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::{ByteRecord, Reader}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,pop /// Boston,United States,4628910 /// "; /// let mut rdr = Reader::from_reader(data.as_bytes()); /// let mut record = ByteRecord::new(); /// /// if rdr.read_byte_record(&mut record)? { /// assert_eq!(record, vec!["Boston", "United States", "4628910"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn read_byte_record( &mut self, record: &mut ByteRecord, ) -> Result { if !self.state.seeked && !self.state.has_headers && !self.state.first { // If the caller indicated "no headers" and we haven't yielded the // first record yet, then we should yield our header row if we have // one. if let Some(ref headers) = self.state.headers { self.state.first = true; record.clone_from(&headers.byte_record); if self.state.trim.should_trim_fields() { record.trim(); } return Ok(!record.is_empty()); } } let ok = self.read_byte_record_impl(record)?; self.state.first = true; if !self.state.seeked && self.state.headers.is_none() { self.set_headers_impl(Err(record.clone())); // If the end user indicated that we have headers, then we should // never return the first row. Instead, we should attempt to // read and return the next one. if self.state.has_headers { let result = self.read_byte_record_impl(record); if self.state.trim.should_trim_fields() { record.trim(); } return result; } } else if self.state.trim.should_trim_fields() { record.trim(); } Ok(ok) } /// Read a byte record from the underlying CSV reader, without accounting /// for headers. #[inline(always)] fn read_byte_record_impl( &mut self, record: &mut ByteRecord, ) -> Result { use csv_core::ReadRecordResult::*; record.clear(); record.set_position(Some(self.state.cur_pos.clone())); if self.state.eof != ReaderEofState::NotEof { return Ok(false); } let (mut outlen, mut endlen) = (0, 0); loop { let (res, nin, nout, nend) = { let input_res = self.rdr.fill_buf(); if input_res.is_err() { self.state.eof = ReaderEofState::IOError; } let input = input_res?; let (fields, ends) = record.as_parts(); self.core.read_record( input, &mut fields[outlen..], &mut ends[endlen..], ) }; self.rdr.consume(nin); let byte = self.state.cur_pos.byte(); self.state .cur_pos .set_byte(byte + nin as u64) .set_line(self.core.line()); outlen += nout; endlen += nend; match res { InputEmpty => continue, OutputFull => { record.expand_fields(); continue; } OutputEndsFull => { record.expand_ends(); continue; } Record => { record.set_len(endlen); self.state.add_record(record)?; return Ok(true); } End => { self.state.eof = ReaderEofState::Eof; return Ok(false); } } } } /// Return the current position of this CSV reader. /// /// The byte offset in the position returned can be used to `seek` this /// reader. In particular, seeking to a position returned here on the same /// data will result in parsing the same subsequent record. /// /// # Example: reading the position /// /// ``` /// use std::{error::Error, io}; /// use csv::{Reader, Position}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,popcount /// Boston,United States,4628910 /// Concord,United States,42695 /// "; /// let rdr = Reader::from_reader(io::Cursor::new(data)); /// let mut iter = rdr.into_records(); /// let mut pos = Position::new(); /// loop { /// // Read the position immediately before each record. /// let next_pos = iter.reader().position().clone(); /// if iter.next().is_none() { /// break; /// } /// pos = next_pos; /// } /// /// // `pos` should now be the position immediately before the last /// // record. /// assert_eq!(pos.byte(), 51); /// assert_eq!(pos.line(), 3); /// assert_eq!(pos.record(), 2); /// Ok(()) /// } /// ``` pub fn position(&self) -> &Position { &self.state.cur_pos } /// Returns true if and only if this reader has been exhausted. /// /// When this returns true, no more records can be read from this reader /// (unless it has been seeked to another position). /// /// # Example /// /// ``` /// use std::{error::Error, io}; /// use csv::{Reader, Position}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,popcount /// Boston,United States,4628910 /// Concord,United States,42695 /// "; /// let mut rdr = Reader::from_reader(io::Cursor::new(data)); /// assert!(!rdr.is_done()); /// for result in rdr.records() { /// let _ = result?; /// } /// assert!(rdr.is_done()); /// Ok(()) /// } /// ``` pub fn is_done(&self) -> bool { self.state.eof != ReaderEofState::NotEof } /// Returns true if and only if this reader has been configured to /// interpret the first record as a header record. pub fn has_headers(&self) -> bool { self.state.has_headers } /// Returns a reference to the underlying reader. pub fn get_ref(&self) -> &R { self.rdr.get_ref() } /// Returns a mutable reference to the underlying reader. pub fn get_mut(&mut self) -> &mut R { self.rdr.get_mut() } /// Unwraps this CSV reader, returning the underlying reader. /// /// Note that any leftover data inside this reader's internal buffer is /// lost. pub fn into_inner(self) -> R { self.rdr.into_inner() } } impl Reader { /// Seeks the underlying reader to the position given. /// /// This comes with a few caveats: /// /// * Any internal buffer associated with this reader is cleared. /// * If the given position does not correspond to a position immediately /// before the start of a record, then the behavior of this reader is /// unspecified. /// * Any special logic that skips the first record in the CSV reader /// when reading or iterating over records is disabled. /// /// If the given position has a byte offset equivalent to the current /// position, then no seeking is performed. /// /// If the header row has not already been read, then this will attempt /// to read the header row before seeking. Therefore, it is possible that /// this returns an error associated with reading CSV data. /// /// Note that seeking is performed based only on the byte offset in the /// given position. Namely, the record or line numbers in the position may /// be incorrect, but this will cause any future position generated by /// this CSV reader to be similarly incorrect. /// /// # Example: seek to parse a record twice /// /// ``` /// use std::{error::Error, io}; /// use csv::{Reader, Position}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let data = "\ /// city,country,popcount /// Boston,United States,4628910 /// Concord,United States,42695 /// "; /// let rdr = Reader::from_reader(io::Cursor::new(data)); /// let mut iter = rdr.into_records(); /// let mut pos = Position::new(); /// loop { /// // Read the position immediately before each record. /// let next_pos = iter.reader().position().clone(); /// if iter.next().is_none() { /// break; /// } /// pos = next_pos; /// } /// /// // Now seek the reader back to `pos`. This will let us read the /// // last record again. /// iter.reader_mut().seek(pos)?; /// let mut iter = iter.into_reader().into_records(); /// if let Some(result) = iter.next() { /// let record = result?; /// assert_eq!(record, vec!["Concord", "United States", "42695"]); /// Ok(()) /// } else { /// Err(From::from("expected at least one record but got none")) /// } /// } /// ``` pub fn seek(&mut self, pos: Position) -> Result<()> { self.byte_headers()?; self.state.seeked = true; if pos.byte() == self.state.cur_pos.byte() { return Ok(()); } self.rdr.seek(io::SeekFrom::Start(pos.byte()))?; self.core.reset(); self.core.set_line(pos.line()); self.state.cur_pos = pos; self.state.eof = ReaderEofState::NotEof; Ok(()) } /// This is like `seek`, but provides direct control over how the seeking /// operation is performed via `io::SeekFrom`. /// /// The `pos` position given *should* correspond the position indicated /// by `seek_from`, but there is no requirement. If the `pos` position /// given is incorrect, then the position information returned by this /// reader will be similarly incorrect. /// /// If the header row has not already been read, then this will attempt /// to read the header row before seeking. Therefore, it is possible that /// this returns an error associated with reading CSV data. /// /// Unlike `seek`, this will always cause an actual seek to be performed. pub fn seek_raw( &mut self, seek_from: io::SeekFrom, pos: Position, ) -> Result<()> { self.byte_headers()?; self.state.seeked = true; self.rdr.seek(seek_from)?; self.core.reset(); self.core.set_line(pos.line()); self.state.cur_pos = pos; self.state.eof = ReaderEofState::NotEof; Ok(()) } } impl ReaderState { #[inline(always)] fn add_record(&mut self, record: &ByteRecord) -> Result<()> { let i = self.cur_pos.record(); self.cur_pos.set_record(i.checked_add(1).unwrap()); if !self.flexible { match self.first_field_count { None => self.first_field_count = Some(record.len() as u64), Some(expected) => { if record.len() as u64 != expected { return Err(Error::new(ErrorKind::UnequalLengths { pos: record.position().map(Clone::clone), expected_len: expected, len: record.len() as u64, })); } } } } Ok(()) } } /// An owned iterator over deserialized records. /// /// The type parameter `R` refers to the underlying `io::Read` type, and `D` /// refers to the type that this iterator will deserialize a record into. pub struct DeserializeRecordsIntoIter { rdr: Reader, rec: StringRecord, headers: Option, _priv: PhantomData, } impl DeserializeRecordsIntoIter { fn new(mut rdr: Reader) -> DeserializeRecordsIntoIter { let headers = if !rdr.state.has_headers { None } else { rdr.headers().ok().map(Clone::clone) }; DeserializeRecordsIntoIter { rdr, rec: StringRecord::new(), headers, _priv: PhantomData, } } /// Return a reference to the underlying CSV reader. pub fn reader(&self) -> &Reader { &self.rdr } /// Return a mutable reference to the underlying CSV reader. pub fn reader_mut(&mut self) -> &mut Reader { &mut self.rdr } /// Drop this iterator and return the underlying CSV reader. pub fn into_reader(self) -> Reader { self.rdr } } impl Iterator for DeserializeRecordsIntoIter { type Item = Result; fn next(&mut self) -> Option> { match self.rdr.read_record(&mut self.rec) { Err(err) => Some(Err(err)), Ok(false) => None, Ok(true) => Some(self.rec.deserialize(self.headers.as_ref())), } } } /// A borrowed iterator over deserialized records. /// /// The lifetime parameter `'r` refers to the lifetime of the underlying /// CSV `Reader`. The type parameter `R` refers to the underlying `io::Read` /// type, and `D` refers to the type that this iterator will deserialize a /// record into. pub struct DeserializeRecordsIter<'r, R: 'r, D> { rdr: &'r mut Reader, rec: StringRecord, headers: Option, _priv: PhantomData, } impl<'r, R: io::Read, D: DeserializeOwned> DeserializeRecordsIter<'r, R, D> { fn new(rdr: &'r mut Reader) -> DeserializeRecordsIter<'r, R, D> { let headers = if !rdr.state.has_headers { None } else { rdr.headers().ok().map(Clone::clone) }; DeserializeRecordsIter { rdr, rec: StringRecord::new(), headers, _priv: PhantomData, } } /// Return a reference to the underlying CSV reader. pub fn reader(&self) -> &Reader { &self.rdr } /// Return a mutable reference to the underlying CSV reader. pub fn reader_mut(&mut self) -> &mut Reader { &mut self.rdr } } impl<'r, R: io::Read, D: DeserializeOwned> Iterator for DeserializeRecordsIter<'r, R, D> { type Item = Result; fn next(&mut self) -> Option> { match self.rdr.read_record(&mut self.rec) { Err(err) => Some(Err(err)), Ok(false) => None, Ok(true) => Some(self.rec.deserialize(self.headers.as_ref())), } } } /// An owned iterator over records as strings. pub struct StringRecordsIntoIter { rdr: Reader, rec: StringRecord, } impl StringRecordsIntoIter { fn new(rdr: Reader) -> StringRecordsIntoIter { StringRecordsIntoIter { rdr, rec: StringRecord::new() } } /// Return a reference to the underlying CSV reader. pub fn reader(&self) -> &Reader { &self.rdr } /// Return a mutable reference to the underlying CSV reader. pub fn reader_mut(&mut self) -> &mut Reader { &mut self.rdr } /// Drop this iterator and return the underlying CSV reader. pub fn into_reader(self) -> Reader { self.rdr } } impl Iterator for StringRecordsIntoIter { type Item = Result; fn next(&mut self) -> Option> { match self.rdr.read_record(&mut self.rec) { Err(err) => Some(Err(err)), Ok(true) => Some(Ok(self.rec.clone_truncated())), Ok(false) => None, } } } /// A borrowed iterator over records as strings. /// /// The lifetime parameter `'r` refers to the lifetime of the underlying /// CSV `Reader`. pub struct StringRecordsIter<'r, R: 'r> { rdr: &'r mut Reader, rec: StringRecord, } impl<'r, R: io::Read> StringRecordsIter<'r, R> { fn new(rdr: &'r mut Reader) -> StringRecordsIter<'r, R> { StringRecordsIter { rdr, rec: StringRecord::new() } } /// Return a reference to the underlying CSV reader. pub fn reader(&self) -> &Reader { &self.rdr } /// Return a mutable reference to the underlying CSV reader. pub fn reader_mut(&mut self) -> &mut Reader { &mut self.rdr } } impl<'r, R: io::Read> Iterator for StringRecordsIter<'r, R> { type Item = Result; fn next(&mut self) -> Option> { match self.rdr.read_record(&mut self.rec) { Err(err) => Some(Err(err)), Ok(true) => Some(Ok(self.rec.clone_truncated())), Ok(false) => None, } } } /// An owned iterator over records as raw bytes. pub struct ByteRecordsIntoIter { rdr: Reader, rec: ByteRecord, } impl ByteRecordsIntoIter { fn new(rdr: Reader) -> ByteRecordsIntoIter { ByteRecordsIntoIter { rdr, rec: ByteRecord::new() } } /// Return a reference to the underlying CSV reader. pub fn reader(&self) -> &Reader { &self.rdr } /// Return a mutable reference to the underlying CSV reader. pub fn reader_mut(&mut self) -> &mut Reader { &mut self.rdr } /// Drop this iterator and return the underlying CSV reader. pub fn into_reader(self) -> Reader { self.rdr } } impl Iterator for ByteRecordsIntoIter { type Item = Result; fn next(&mut self) -> Option> { match self.rdr.read_byte_record(&mut self.rec) { Err(err) => Some(Err(err)), Ok(true) => Some(Ok(self.rec.clone_truncated())), Ok(false) => None, } } } /// A borrowed iterator over records as raw bytes. /// /// The lifetime parameter `'r` refers to the lifetime of the underlying /// CSV `Reader`. pub struct ByteRecordsIter<'r, R: 'r> { rdr: &'r mut Reader, rec: ByteRecord, } impl<'r, R: io::Read> ByteRecordsIter<'r, R> { fn new(rdr: &'r mut Reader) -> ByteRecordsIter<'r, R> { ByteRecordsIter { rdr, rec: ByteRecord::new() } } /// Return a reference to the underlying CSV reader. pub fn reader(&self) -> &Reader { &self.rdr } /// Return a mutable reference to the underlying CSV reader. pub fn reader_mut(&mut self) -> &mut Reader { &mut self.rdr } } impl<'r, R: io::Read> Iterator for ByteRecordsIter<'r, R> { type Item = Result; fn next(&mut self) -> Option> { match self.rdr.read_byte_record(&mut self.rec) { Err(err) => Some(Err(err)), Ok(true) => Some(Ok(self.rec.clone_truncated())), Ok(false) => None, } } } #[cfg(test)] mod tests { use std::io; use crate::{ byte_record::ByteRecord, error::ErrorKind, string_record::StringRecord, }; use super::{Position, ReaderBuilder, Trim}; fn b(s: &str) -> &[u8] { s.as_bytes() } fn s(b: &[u8]) -> &str { ::std::str::from_utf8(b).unwrap() } fn newpos(byte: u64, line: u64, record: u64) -> Position { let mut p = Position::new(); p.set_byte(byte).set_line(line).set_record(record); p } #[test] fn read_byte_record() { let data = b("foo,\"b,ar\",baz\nabc,mno,xyz"); let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); let mut rec = ByteRecord::new(); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("foo", s(&rec[0])); assert_eq!("b,ar", s(&rec[1])); assert_eq!("baz", s(&rec[2])); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("abc", s(&rec[0])); assert_eq!("mno", s(&rec[1])); assert_eq!("xyz", s(&rec[2])); assert!(!rdr.read_byte_record(&mut rec).unwrap()); } #[test] fn read_trimmed_records_and_headers() { let data = b("foo, bar,\tbaz\n 1, 2, 3\n1\t,\t,3\t\t"); let mut rdr = ReaderBuilder::new() .has_headers(true) .trim(Trim::All) .from_reader(data); let mut rec = ByteRecord::new(); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!("1", s(&rec[0])); assert_eq!("2", s(&rec[1])); assert_eq!("3", s(&rec[2])); let mut rec = StringRecord::new(); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!("1", &rec[0]); assert_eq!("", &rec[1]); assert_eq!("3", &rec[2]); { let headers = rdr.headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!("foo", &headers[0]); assert_eq!("bar", &headers[1]); assert_eq!("baz", &headers[2]); } } #[test] fn read_trimmed_header() { let data = b("foo, bar,\tbaz\n 1, 2, 3\n1\t,\t,3\t\t"); let mut rdr = ReaderBuilder::new() .has_headers(true) .trim(Trim::Headers) .from_reader(data); let mut rec = ByteRecord::new(); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(" 1", s(&rec[0])); assert_eq!(" 2", s(&rec[1])); assert_eq!(" 3", s(&rec[2])); { let headers = rdr.headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!("foo", &headers[0]); assert_eq!("bar", &headers[1]); assert_eq!("baz", &headers[2]); } } #[test] fn read_trimed_header_invalid_utf8() { let data = &b"foo, b\xFFar,\tbaz\na,b,c\nd,e,f"[..]; let mut rdr = ReaderBuilder::new() .has_headers(true) .trim(Trim::Headers) .from_reader(data); let mut rec = StringRecord::new(); // force the headers to be read let _ = rdr.read_record(&mut rec); // Check the byte headers are trimmed { let headers = rdr.byte_headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!(b"foo", &headers[0]); assert_eq!(b"b\xFFar", &headers[1]); assert_eq!(b"baz", &headers[2]); } match *rdr.headers().unwrap_err().kind() { ErrorKind::Utf8 { pos: Some(ref pos), ref err } => { assert_eq!(pos, &newpos(0, 1, 0)); assert_eq!(err.field(), 1); assert_eq!(err.valid_up_to(), 3); } ref err => panic!("match failed, got {:?}", err), } } #[test] fn read_trimmed_records() { let data = b("foo, bar,\tbaz\n 1, 2, 3\n1\t,\t,3\t\t"); let mut rdr = ReaderBuilder::new() .has_headers(true) .trim(Trim::Fields) .from_reader(data); let mut rec = ByteRecord::new(); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!("1", s(&rec[0])); assert_eq!("2", s(&rec[1])); assert_eq!("3", s(&rec[2])); { let headers = rdr.headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!("foo", &headers[0]); assert_eq!(" bar", &headers[1]); assert_eq!("\tbaz", &headers[2]); } } #[test] fn read_record_unequal_fails() { let data = b("foo\nbar,baz"); let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); let mut rec = ByteRecord::new(); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(1, rec.len()); assert_eq!("foo", s(&rec[0])); match rdr.read_byte_record(&mut rec) { Err(err) => match *err.kind() { ErrorKind::UnequalLengths { expected_len: 1, ref pos, len: 2, } => { assert_eq!(pos, &Some(newpos(4, 2, 1))); } ref wrong => panic!("match failed, got {:?}", wrong), }, wrong => panic!("match failed, got {:?}", wrong), } } #[test] fn read_record_unequal_ok() { let data = b("foo\nbar,baz"); let mut rdr = ReaderBuilder::new() .has_headers(false) .flexible(true) .from_reader(data); let mut rec = ByteRecord::new(); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(1, rec.len()); assert_eq!("foo", s(&rec[0])); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(2, rec.len()); assert_eq!("bar", s(&rec[0])); assert_eq!("baz", s(&rec[1])); assert!(!rdr.read_byte_record(&mut rec).unwrap()); } // This tests that even if we get a CSV error, we can continue reading // if we want. #[test] fn read_record_unequal_continue() { let data = b("foo\nbar,baz\nquux"); let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); let mut rec = ByteRecord::new(); assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(1, rec.len()); assert_eq!("foo", s(&rec[0])); match rdr.read_byte_record(&mut rec) { Err(err) => match err.kind() { &ErrorKind::UnequalLengths { expected_len: 1, ref pos, len: 2, } => { assert_eq!(pos, &Some(newpos(4, 2, 1))); } wrong => panic!("match failed, got {:?}", wrong), }, wrong => panic!("match failed, got {:?}", wrong), } assert!(rdr.read_byte_record(&mut rec).unwrap()); assert_eq!(1, rec.len()); assert_eq!("quux", s(&rec[0])); assert!(!rdr.read_byte_record(&mut rec).unwrap()); } #[test] fn read_record_headers() { let data = b("foo,bar,baz\na,b,c\nd,e,f"); let mut rdr = ReaderBuilder::new().has_headers(true).from_reader(data); let mut rec = StringRecord::new(); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("a", &rec[0]); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("d", &rec[0]); assert!(!rdr.read_record(&mut rec).unwrap()); { let headers = rdr.byte_headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!(b"foo", &headers[0]); assert_eq!(b"bar", &headers[1]); assert_eq!(b"baz", &headers[2]); } { let headers = rdr.headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!("foo", &headers[0]); assert_eq!("bar", &headers[1]); assert_eq!("baz", &headers[2]); } } #[test] fn read_record_headers_invalid_utf8() { let data = &b"foo,b\xFFar,baz\na,b,c\nd,e,f"[..]; let mut rdr = ReaderBuilder::new().has_headers(true).from_reader(data); let mut rec = StringRecord::new(); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("a", &rec[0]); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("d", &rec[0]); assert!(!rdr.read_record(&mut rec).unwrap()); // Check that we can read the headers as raw bytes, but that // if we read them as strings, we get an appropriate UTF-8 error. { let headers = rdr.byte_headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!(b"foo", &headers[0]); assert_eq!(b"b\xFFar", &headers[1]); assert_eq!(b"baz", &headers[2]); } match *rdr.headers().unwrap_err().kind() { ErrorKind::Utf8 { pos: Some(ref pos), ref err } => { assert_eq!(pos, &newpos(0, 1, 0)); assert_eq!(err.field(), 1); assert_eq!(err.valid_up_to(), 1); } ref err => panic!("match failed, got {:?}", err), } } #[test] fn read_record_no_headers_before() { let data = b("foo,bar,baz\na,b,c\nd,e,f"); let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); let mut rec = StringRecord::new(); { let headers = rdr.headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!("foo", &headers[0]); assert_eq!("bar", &headers[1]); assert_eq!("baz", &headers[2]); } assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("foo", &rec[0]); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("a", &rec[0]); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("d", &rec[0]); assert!(!rdr.read_record(&mut rec).unwrap()); } #[test] fn read_record_no_headers_after() { let data = b("foo,bar,baz\na,b,c\nd,e,f"); let mut rdr = ReaderBuilder::new().has_headers(false).from_reader(data); let mut rec = StringRecord::new(); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("foo", &rec[0]); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("a", &rec[0]); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("d", &rec[0]); assert!(!rdr.read_record(&mut rec).unwrap()); let headers = rdr.headers().unwrap(); assert_eq!(3, headers.len()); assert_eq!("foo", &headers[0]); assert_eq!("bar", &headers[1]); assert_eq!("baz", &headers[2]); } #[test] fn seek() { let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i"); let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data)); rdr.seek(newpos(18, 3, 2)).unwrap(); let mut rec = StringRecord::new(); assert_eq!(18, rdr.position().byte()); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("d", &rec[0]); assert_eq!(24, rdr.position().byte()); assert_eq!(4, rdr.position().line()); assert_eq!(3, rdr.position().record()); assert!(rdr.read_record(&mut rec).unwrap()); assert_eq!(3, rec.len()); assert_eq!("g", &rec[0]); assert!(!rdr.read_record(&mut rec).unwrap()); } // Test that we can read headers after seeking even if the headers weren't // explicit read before seeking. #[test] fn seek_headers_after() { let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i"); let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data)); rdr.seek(newpos(18, 3, 2)).unwrap(); assert_eq!(rdr.headers().unwrap(), vec!["foo", "bar", "baz"]); } // Test that we can read headers after seeking if the headers were read // before seeking. #[test] fn seek_headers_before_after() { let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i"); let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data)); let headers = rdr.headers().unwrap().clone(); rdr.seek(newpos(18, 3, 2)).unwrap(); assert_eq!(&headers, rdr.headers().unwrap()); } // Test that even if we didn't read headers before seeking, if we seek to // the current byte offset, then no seeking is done and therefore we can // still read headers after seeking. #[test] fn seek_headers_no_actual_seek() { let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i"); let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data)); rdr.seek(Position::new()).unwrap(); assert_eq!("foo", &rdr.headers().unwrap()[0]); } // Test that position info is reported correctly in absence of headers. #[test] fn positions_no_headers() { let mut rdr = ReaderBuilder::new() .has_headers(false) .from_reader("a,b,c\nx,y,z".as_bytes()) .into_records(); let pos = rdr.next().unwrap().unwrap().position().unwrap().clone(); assert_eq!(pos.byte(), 0); assert_eq!(pos.line(), 1); assert_eq!(pos.record(), 0); let pos = rdr.next().unwrap().unwrap().position().unwrap().clone(); assert_eq!(pos.byte(), 6); assert_eq!(pos.line(), 2); assert_eq!(pos.record(), 1); } // Test that position info is reported correctly with headers. #[test] fn positions_headers() { let mut rdr = ReaderBuilder::new() .has_headers(true) .from_reader("a,b,c\nx,y,z".as_bytes()) .into_records(); let pos = rdr.next().unwrap().unwrap().position().unwrap().clone(); assert_eq!(pos.byte(), 6); assert_eq!(pos.line(), 2); assert_eq!(pos.record(), 1); } // Test that reading headers on empty data yields an empty record. #[test] fn headers_on_empty_data() { let mut rdr = ReaderBuilder::new().from_reader("".as_bytes()); let r = rdr.byte_headers().unwrap(); assert_eq!(r.len(), 0); } // Test that reading the first record on empty data works. #[test] fn no_headers_on_empty_data() { let mut rdr = ReaderBuilder::new().has_headers(false).from_reader("".as_bytes()); assert_eq!(rdr.records().count(), 0); } // Test that reading the first record on empty data works, even if // we've tried to read headers before hand. #[test] fn no_headers_on_empty_data_after_headers() { let mut rdr = ReaderBuilder::new().has_headers(false).from_reader("".as_bytes()); assert_eq!(rdr.headers().unwrap().len(), 0); assert_eq!(rdr.records().count(), 0); } } csv-1.3.0/src/serializer.rs000064400000000000000000001106731046102023000137360ustar 00000000000000use std::{fmt, io, mem}; use { itoa, ryu, serde::{ ser::{ Error as SerdeError, Serialize, SerializeMap, SerializeSeq, SerializeStruct, SerializeStructVariant, SerializeTuple, SerializeTupleStruct, SerializeTupleVariant, Serializer, }, serde_if_integer128, }, }; use crate::{ error::{Error, ErrorKind}, writer::Writer, }; /// Serialize the given value to the given writer, and return an error if /// anything went wrong. pub fn serialize( wtr: &mut Writer, value: S, ) -> Result<(), Error> { value.serialize(&mut SeRecord { wtr }) } struct SeRecord<'w, W: 'w + io::Write> { wtr: &'w mut Writer, } impl<'a, 'w, W: io::Write> Serializer for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; type SerializeSeq = Self; type SerializeTuple = Self; type SerializeTupleStruct = Self; type SerializeTupleVariant = Self; type SerializeMap = Self; type SerializeStruct = Self; type SerializeStructVariant = Self; fn serialize_bool(self, v: bool) -> Result { if v { self.wtr.write_field("true") } else { self.wtr.write_field("false") } } fn serialize_i8(self, v: i8) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_i16(self, v: i16) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_i32(self, v: i32) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_i64(self, v: i64) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } serde_if_integer128! { fn serialize_i128(self, v: i128) -> Result { self.collect_str(&v) } } fn serialize_u8(self, v: u8) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_u16(self, v: u16) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_u32(self, v: u32) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_u64(self, v: u64) -> Result { let mut buffer = itoa::Buffer::new(); self.wtr.write_field(buffer.format(v)) } serde_if_integer128! { fn serialize_u128(self, v: u128) -> Result { self.collect_str(&v) } } fn serialize_f32(self, v: f32) -> Result { let mut buffer = ryu::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_f64(self, v: f64) -> Result { let mut buffer = ryu::Buffer::new(); self.wtr.write_field(buffer.format(v)) } fn serialize_char(self, v: char) -> Result { self.wtr.write_field(v.encode_utf8(&mut [0; 4])) } fn serialize_str(self, value: &str) -> Result { self.wtr.write_field(value) } fn serialize_bytes(self, value: &[u8]) -> Result { self.wtr.write_field(value) } fn serialize_none(self) -> Result { self.wtr.write_field(&[]) } fn serialize_some( self, value: &T, ) -> Result { value.serialize(self) } fn serialize_unit(self) -> Result { None::<()>.serialize(self) } fn serialize_unit_struct( self, name: &'static str, ) -> Result { self.wtr.write_field(name) } fn serialize_unit_variant( self, _name: &'static str, _variant_index: u32, variant: &'static str, ) -> Result { self.wtr.write_field(variant) } fn serialize_newtype_struct( self, _name: &'static str, value: &T, ) -> Result { value.serialize(self) } fn serialize_newtype_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, value: &T, ) -> Result { value.serialize(self) } fn serialize_seq( self, _len: Option, ) -> Result { Ok(self) } fn serialize_tuple( self, _len: usize, ) -> Result { Ok(self) } fn serialize_tuple_struct( self, _name: &'static str, _len: usize, ) -> Result { Ok(self) } fn serialize_tuple_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize, ) -> Result { Err(Error::custom("serializing enum tuple variants is not supported")) } fn serialize_map( self, _len: Option, ) -> Result { // The right behavior for serializing maps isn't clear. Err(Error::custom( "serializing maps is not supported, \ if you have a use case, please file an issue at \ https://github.com/BurntSushi/rust-csv", )) } fn serialize_struct( self, _name: &'static str, _len: usize, ) -> Result { Ok(self) } fn serialize_struct_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize, ) -> Result { Err(Error::custom("serializing enum struct variants is not supported")) } } impl<'a, 'w, W: io::Write> SerializeSeq for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; fn serialize_element( &mut self, value: &T, ) -> Result<(), Self::Error> { value.serialize(&mut **self) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeTuple for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; fn serialize_element( &mut self, value: &T, ) -> Result<(), Self::Error> { value.serialize(&mut **self) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeTupleStruct for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, value: &T, ) -> Result<(), Self::Error> { value.serialize(&mut **self) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeTupleVariant for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, _value: &T, ) -> Result<(), Self::Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl<'a, 'w, W: io::Write> SerializeMap for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; fn serialize_key( &mut self, _key: &T, ) -> Result<(), Self::Error> { unreachable!() } fn serialize_value( &mut self, _value: &T, ) -> Result<(), Self::Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl<'a, 'w, W: io::Write> SerializeStruct for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, _key: &'static str, value: &T, ) -> Result<(), Self::Error> { value.serialize(&mut **self) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeStructVariant for &'a mut SeRecord<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, _key: &'static str, _value: &T, ) -> Result<(), Self::Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl SerdeError for Error { fn custom(msg: T) -> Error { Error::new(ErrorKind::Serialize(msg.to_string())) } } fn error_scalar_outside_struct(name: T) -> Error { Error::custom(format!( "cannot serialize {} scalar outside struct \ when writing headers from structs", name )) } fn error_container_inside_struct(name: T) -> Error { Error::custom(format!( "cannot serialize {} container inside struct \ when writing headers from structs", name )) } /// Write header names corresponding to the field names of the value (if the /// value has field names). /// /// If the type to be serialized has field names (e.g. it's a struct), then /// header names are written, and the `Ok` return value is `true`. /// /// If the type to be serialized doesn't have field names, then nothing is /// written, and the `Ok` return value is `false`. pub fn serialize_header( wtr: &mut Writer, value: S, ) -> Result { let mut ser = SeHeader::new(wtr); value.serialize(&mut ser).map(|_| ser.wrote_header()) } /// State machine for `SeHeader`. /// /// This is a diagram of the transitions in the state machine. Note that only /// some serialization events cause a state transition, and only for certain /// states. For example, encountering a scalar causes a transition if the state /// is `Write` or `EncounteredStructField`, but not if the state is /// `ErrorIfWrite(err)` or `InStructField`. /// /// ```text /// +-----+ /// |Write| /// +-----+ /// | /// /------------------+------------------\ /// | | | /// encounter finish encounter /// scalar | struct field /// | | | /// v v v /// +-----------------+ Ok(()) +-------------+ /// |ErrorIfWrite(err)| |InStructField|<--------\ /// +-----------------+ +-------------+ | /// | | | /// /------+------\ /-----------------+ | /// | | | | | /// encounter finish encounter finish encounter /// struct field | container field struct field /// | | | | | /// v v v v | /// Err(err) Ok(()) Err(_) +----------------------+ | /// |EncounteredStructField| | /// +----------------------+ | /// | | /// /----------+----------------/ /// | | /// encounter finish /// scalar | /// | | /// v v /// Err(_) Ok(()) /// ``` enum HeaderState { /// Start here. Headers need to be written if the type has field names. Write, /// The serializer still has not encountered a struct field. If one is /// encountered (headers need to be written), return the enclosed error. ErrorIfWrite(Error), /// The serializer encountered one or more struct fields (and wrote their /// names). EncounteredStructField, /// The serializer is currently in a struct field value. InStructField, } struct SeHeader<'w, W: 'w + io::Write> { wtr: &'w mut Writer, state: HeaderState, } impl<'w, W: io::Write> SeHeader<'w, W> { fn new(wtr: &'w mut Writer) -> Self { SeHeader { wtr, state: HeaderState::Write } } fn wrote_header(&self) -> bool { use self::HeaderState::*; match self.state { Write | ErrorIfWrite(_) => false, EncounteredStructField | InStructField => true, } } fn handle_scalar( &mut self, name: T, ) -> Result<(), Error> { use self::HeaderState::*; match self.state { Write => { self.state = ErrorIfWrite(error_scalar_outside_struct(name)); Ok(()) } ErrorIfWrite(_) | InStructField => Ok(()), EncounteredStructField => Err(error_scalar_outside_struct(name)), } } fn handle_container( &mut self, name: T, ) -> Result<&mut Self, Error> { if let HeaderState::InStructField = self.state { Err(error_container_inside_struct(name)) } else { Ok(self) } } } impl<'a, 'w, W: io::Write> Serializer for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; type SerializeSeq = Self; type SerializeTuple = Self; type SerializeTupleStruct = Self; type SerializeTupleVariant = Self; type SerializeMap = Self; type SerializeStruct = Self; type SerializeStructVariant = Self; fn serialize_bool(self, v: bool) -> Result { self.handle_scalar(v) } fn serialize_i8(self, v: i8) -> Result { self.handle_scalar(v) } fn serialize_i16(self, v: i16) -> Result { self.handle_scalar(v) } fn serialize_i32(self, v: i32) -> Result { self.handle_scalar(v) } fn serialize_i64(self, v: i64) -> Result { self.handle_scalar(v) } serde_if_integer128! { fn serialize_i128(self, v: i128) -> Result { self.handle_scalar(v) } } fn serialize_u8(self, v: u8) -> Result { self.handle_scalar(v) } fn serialize_u16(self, v: u16) -> Result { self.handle_scalar(v) } fn serialize_u32(self, v: u32) -> Result { self.handle_scalar(v) } fn serialize_u64(self, v: u64) -> Result { self.handle_scalar(v) } serde_if_integer128! { fn serialize_u128(self, v: u128) -> Result { self.handle_scalar(v) } } fn serialize_f32(self, v: f32) -> Result { self.handle_scalar(v) } fn serialize_f64(self, v: f64) -> Result { self.handle_scalar(v) } fn serialize_char(self, v: char) -> Result { self.handle_scalar(v) } fn serialize_str(self, value: &str) -> Result { self.handle_scalar(value) } fn serialize_bytes(self, _value: &[u8]) -> Result { self.handle_scalar("&[u8]") } fn serialize_none(self) -> Result { self.handle_scalar("None") } fn serialize_some( self, _value: &T, ) -> Result { self.handle_scalar("Some(_)") } fn serialize_unit(self) -> Result { self.handle_scalar("()") } fn serialize_unit_struct( self, name: &'static str, ) -> Result { self.handle_scalar(name) } fn serialize_unit_variant( self, name: &'static str, _variant_index: u32, variant: &'static str, ) -> Result { self.handle_scalar(format!("{}::{}", name, variant)) } fn serialize_newtype_struct( self, name: &'static str, _value: &T, ) -> Result { self.handle_scalar(format!("{}(_)", name)) } fn serialize_newtype_variant( self, name: &'static str, _variant_index: u32, variant: &'static str, _value: &T, ) -> Result { self.handle_scalar(format!("{}::{}(_)", name, variant)) } fn serialize_seq( self, _len: Option, ) -> Result { self.handle_container("sequence") } fn serialize_tuple( self, _len: usize, ) -> Result { self.handle_container("tuple") } fn serialize_tuple_struct( self, name: &'static str, _len: usize, ) -> Result { self.handle_container(name) } fn serialize_tuple_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize, ) -> Result { Err(Error::custom("serializing enum tuple variants is not supported")) } fn serialize_map( self, _len: Option, ) -> Result { // The right behavior for serializing maps isn't clear. Err(Error::custom( "serializing maps is not supported, \ if you have a use case, please file an issue at \ https://github.com/BurntSushi/rust-csv", )) } fn serialize_struct( self, name: &'static str, _len: usize, ) -> Result { self.handle_container(name) } fn serialize_struct_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize, ) -> Result { Err(Error::custom("serializing enum struct variants is not supported")) } } impl<'a, 'w, W: io::Write> SerializeSeq for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; fn serialize_element( &mut self, value: &T, ) -> Result<(), Self::Error> { value.serialize(&mut **self) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeTuple for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; fn serialize_element( &mut self, value: &T, ) -> Result<(), Self::Error> { value.serialize(&mut **self) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeTupleStruct for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, value: &T, ) -> Result<(), Self::Error> { value.serialize(&mut **self) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeTupleVariant for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, _value: &T, ) -> Result<(), Self::Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl<'a, 'w, W: io::Write> SerializeMap for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; fn serialize_key( &mut self, _key: &T, ) -> Result<(), Self::Error> { unreachable!() } fn serialize_value( &mut self, _value: &T, ) -> Result<(), Self::Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl<'a, 'w, W: io::Write> SerializeStruct for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, key: &'static str, value: &T, ) -> Result<(), Self::Error> { // Grab old state and update state to `EncounteredStructField`. let old_state = mem::replace(&mut self.state, HeaderState::EncounteredStructField); if let HeaderState::ErrorIfWrite(err) = old_state { return Err(err); } self.wtr.write_field(key)?; // Check that there aren't any containers in the value. self.state = HeaderState::InStructField; value.serialize(&mut **self)?; self.state = HeaderState::EncounteredStructField; Ok(()) } fn end(self) -> Result { Ok(()) } } impl<'a, 'w, W: io::Write> SerializeStructVariant for &'a mut SeHeader<'w, W> { type Ok = (); type Error = Error; fn serialize_field( &mut self, _key: &'static str, _value: &T, ) -> Result<(), Self::Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } #[cfg(test)] mod tests { use { bstr::ByteSlice, serde::{serde_if_integer128, Serialize}, }; use crate::{ error::{Error, ErrorKind}, writer::Writer, }; use super::{SeHeader, SeRecord}; fn serialize(s: S) -> String { let mut wtr = Writer::from_writer(vec![]); s.serialize(&mut SeRecord { wtr: &mut wtr }).unwrap(); wtr.write_record(None::<&[u8]>).unwrap(); String::from_utf8(wtr.into_inner().unwrap()).unwrap() } /// Serialize using `SeHeader`. Returns whether a header was written and /// the output of the writer. fn serialize_header(s: S) -> (bool, String) { let mut wtr = Writer::from_writer(vec![]); let wrote = { let mut ser = SeHeader::new(&mut wtr); s.serialize(&mut ser).unwrap(); ser.wrote_header() }; (wrote, String::from_utf8(wtr.into_inner().unwrap()).unwrap()) } fn serialize_err(s: S) -> Error { let mut wtr = Writer::from_writer(vec![]); s.serialize(&mut SeRecord { wtr: &mut wtr }).unwrap_err() } fn serialize_header_err(s: S) -> Error { let mut wtr = Writer::from_writer(vec![]); s.serialize(&mut SeHeader::new(&mut wtr)).unwrap_err() } #[test] fn bool() { let got = serialize(true); assert_eq!(got, "true\n"); let (wrote, got) = serialize_header(true); assert!(!wrote); assert_eq!(got, ""); } #[test] fn integer() { let got = serialize(12345); assert_eq!(got, "12345\n"); let (wrote, got) = serialize_header(12345); assert!(!wrote); assert_eq!(got, ""); } serde_if_integer128! { #[test] fn integer_u128() { let got = serialize(i128::max_value() as u128 + 1); assert_eq!(got, "170141183460469231731687303715884105728\n"); let (wrote, got) = serialize_header(12345); assert!(!wrote); assert_eq!(got, ""); } #[test] fn integer_i128() { let got = serialize(i128::max_value()); assert_eq!(got, "170141183460469231731687303715884105727\n"); let (wrote, got) = serialize_header(12345); assert!(!wrote); assert_eq!(got, ""); } } #[test] fn float() { let got = serialize(1.23); assert_eq!(got, "1.23\n"); let (wrote, got) = serialize_header(1.23); assert!(!wrote); assert_eq!(got, ""); } #[test] fn float_nan() { let got = serialize(::std::f64::NAN); assert_eq!(got, "NaN\n"); let (wrote, got) = serialize_header(::std::f64::NAN); assert!(!wrote); assert_eq!(got, ""); } #[test] fn char() { let got = serialize('☃'); assert_eq!(got, "☃\n"); let (wrote, got) = serialize_header('☃'); assert!(!wrote); assert_eq!(got, ""); } #[test] fn str() { let got = serialize("how\nare\n\"you\"?"); assert_eq!(got, "\"how\nare\n\"\"you\"\"?\"\n"); let (wrote, got) = serialize_header("how\nare\n\"you\"?"); assert!(!wrote); assert_eq!(got, ""); } #[test] fn bytes() { let got = serialize(b"how\nare\n\"you\"?".as_bstr()); assert_eq!(got, "\"how\nare\n\"\"you\"\"?\"\n"); let (wrote, got) = serialize_header(&b"how\nare\n\"you\"?"[..]); assert!(!wrote); assert_eq!(got, ""); } #[test] fn option() { let got = serialize(None::<()>); assert_eq!(got, "\"\"\n"); let (wrote, got) = serialize_header(None::<()>); assert!(!wrote); assert_eq!(got, ""); let got = serialize(Some(5)); assert_eq!(got, "5\n"); let (wrote, got) = serialize_header(Some(5)); assert!(!wrote); assert_eq!(got, ""); } #[test] fn unit() { let got = serialize(()); assert_eq!(got, "\"\"\n"); let (wrote, got) = serialize_header(()); assert!(!wrote); assert_eq!(got, ""); let got = serialize((5, ())); assert_eq!(got, "5,\n"); let (wrote, got) = serialize_header(()); assert!(!wrote); assert_eq!(got, ""); } #[test] fn struct_unit() { #[derive(Serialize)] struct Foo; let got = serialize(Foo); assert_eq!(got, "Foo\n"); let (wrote, got) = serialize_header(Foo); assert!(!wrote); assert_eq!(got, ""); } #[test] fn struct_newtype() { #[derive(Serialize)] struct Foo(f64); let got = serialize(Foo(1.5)); assert_eq!(got, "1.5\n"); let (wrote, got) = serialize_header(Foo(1.5)); assert!(!wrote); assert_eq!(got, ""); } #[test] fn enum_units() { #[derive(Serialize)] enum Wat { Foo, Bar, Baz, } let got = serialize(Wat::Foo); assert_eq!(got, "Foo\n"); let (wrote, got) = serialize_header(Wat::Foo); assert!(!wrote); assert_eq!(got, ""); let got = serialize(Wat::Bar); assert_eq!(got, "Bar\n"); let (wrote, got) = serialize_header(Wat::Bar); assert!(!wrote); assert_eq!(got, ""); let got = serialize(Wat::Baz); assert_eq!(got, "Baz\n"); let (wrote, got) = serialize_header(Wat::Baz); assert!(!wrote); assert_eq!(got, ""); } #[test] fn enum_newtypes() { #[derive(Serialize)] enum Wat { Foo(i32), Bar(f32), Baz(bool), } let got = serialize(Wat::Foo(5)); assert_eq!(got, "5\n"); let (wrote, got) = serialize_header(Wat::Foo(5)); assert!(!wrote); assert_eq!(got, ""); let got = serialize(Wat::Bar(1.5)); assert_eq!(got, "1.5\n"); let (wrote, got) = serialize_header(Wat::Bar(1.5)); assert!(!wrote); assert_eq!(got, ""); let got = serialize(Wat::Baz(true)); assert_eq!(got, "true\n"); let (wrote, got) = serialize_header(Wat::Baz(true)); assert!(!wrote); assert_eq!(got, ""); } #[test] fn seq() { let got = serialize(vec![1, 2, 3]); assert_eq!(got, "1,2,3\n"); let (wrote, got) = serialize_header(vec![1, 2, 3]); assert!(!wrote); assert_eq!(got, ""); } #[test] fn tuple() { let row = (true, 1.5, "hi"); let got = serialize(row.clone()); assert_eq!(got, "true,1.5,hi\n"); let (wrote, got) = serialize_header(row.clone()); assert!(!wrote); assert_eq!(got, ""); let row = (true, 1.5, vec![1, 2, 3]); let got = serialize(row.clone()); assert_eq!(got, "true,1.5,1,2,3\n"); let (wrote, got) = serialize_header(row.clone()); assert!(!wrote); assert_eq!(got, ""); } #[test] fn tuple_struct() { #[derive(Clone, Serialize)] struct Foo(bool, i32, String); let row = Foo(false, 42, "hi".to_string()); let got = serialize(row.clone()); assert_eq!(got, "false,42,hi\n"); let (wrote, got) = serialize_header(row.clone()); assert!(!wrote); assert_eq!(got, ""); } #[test] fn tuple_variant() { #[derive(Clone, Serialize)] enum Foo { X(bool, i32, String), } let row = Foo::X(false, 42, "hi".to_string()); let err = serialize_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } let err = serialize_header_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } } #[test] fn enum_struct_variant() { #[derive(Clone, Serialize)] enum Foo { X { a: bool, b: i32, c: String }, } let row = Foo::X { a: false, b: 1, c: "hi".into() }; let err = serialize_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } let err = serialize_header_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } } #[test] fn struct_no_headers() { #[derive(Serialize)] struct Foo { x: bool, y: i32, z: String, } let got = serialize(Foo { x: true, y: 5, z: "hi".into() }); assert_eq!(got, "true,5,hi\n"); } serde_if_integer128! { #[test] fn struct_no_headers_128() { #[derive(Serialize)] struct Foo { x: i128, y: u128, } let got = serialize(Foo { x: i128::max_value(), y: u128::max_value() }); assert_eq!( got, "170141183460469231731687303715884105727,\ 340282366920938463463374607431768211455\n" ); } } #[test] fn struct_headers() { #[derive(Clone, Serialize)] struct Foo { x: bool, y: i32, z: String, } let row = Foo { x: true, y: 5, z: "hi".into() }; let (wrote, got) = serialize_header(row.clone()); assert!(wrote); assert_eq!(got, "x,y,z"); let got = serialize(row.clone()); assert_eq!(got, "true,5,hi\n"); } #[test] fn struct_headers_nested() { #[derive(Clone, Serialize)] struct Foo { label: String, nest: Nested, } #[derive(Clone, Serialize)] struct Nested { label2: String, value: i32, } let row = Foo { label: "foo".into(), nest: Nested { label2: "bar".into(), value: 5 }, }; let got = serialize(row.clone()); assert_eq!(got, "foo,bar,5\n"); let err = serialize_header_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } } #[test] fn struct_headers_nested_seq() { #[derive(Clone, Serialize)] struct Foo { label: String, values: Vec, } let row = Foo { label: "foo".into(), values: vec![1, 2, 3] }; let got = serialize(row.clone()); assert_eq!(got, "foo,1,2,3\n"); let err = serialize_header_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } } #[test] fn struct_headers_inside_tuple() { #[derive(Clone, Serialize)] struct Foo { label: String, num: f64, } #[derive(Clone, Serialize)] struct Bar { label2: bool, value: i32, empty: (), } let row = ( Foo { label: "hi".to_string(), num: 5.0 }, Bar { label2: true, value: 3, empty: () }, Foo { label: "baz".to_string(), num: 2.3 }, ); let got = serialize(row.clone()); assert_eq!(got, "hi,5.0,true,3,,baz,2.3\n"); let (wrote, got) = serialize_header(row.clone()); assert!(wrote); assert_eq!(got, "label,num,label2,value,empty,label,num"); } #[test] fn struct_headers_inside_tuple_scalar_before() { #[derive(Clone, Serialize)] struct Foo { label: String, num: f64, } let row = (3.14, Foo { label: "hi".to_string(), num: 5.0 }); let got = serialize(row.clone()); assert_eq!(got, "3.14,hi,5.0\n"); let err = serialize_header_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } } #[test] fn struct_headers_inside_tuple_scalar_after() { #[derive(Clone, Serialize)] struct Foo { label: String, num: f64, } let row = (Foo { label: "hi".to_string(), num: 5.0 }, 3.14); let got = serialize(row.clone()); assert_eq!(got, "hi,5.0,3.14\n"); let err = serialize_header_err(row.clone()); match *err.kind() { ErrorKind::Serialize(_) => {} ref x => panic!("expected ErrorKind::Serialize but got '{:?}'", x), } } #[test] fn struct_headers_inside_seq() { #[derive(Clone, Serialize)] struct Foo { label: String, num: f64, } let row = vec![ Foo { label: "hi".to_string(), num: 5.0 }, Foo { label: "baz".to_string(), num: 2.3 }, ]; let got = serialize(row.clone()); assert_eq!(got, "hi,5.0,baz,2.3\n"); let (wrote, got) = serialize_header(row.clone()); assert!(wrote); assert_eq!(got, "label,num,label,num"); } #[test] fn struct_headers_inside_nested_tuple_seq() { #[derive(Clone, Serialize)] struct Foo { label: String, num: f64, } #[derive(Clone, Serialize)] struct Bar { label2: Baz, value: i32, empty: (), } #[derive(Clone, Serialize)] struct Baz(bool); let row = ( ( Foo { label: "hi".to_string(), num: 5.0 }, Bar { label2: Baz(true), value: 3, empty: () }, ), vec![(Foo { label: "baz".to_string(), num: 2.3 },)], ); let got = serialize(row.clone()); assert_eq!(got, "hi,5.0,true,3,,baz,2.3\n"); let (wrote, got) = serialize_header(row.clone()); assert!(wrote); assert_eq!(got, "label,num,label2,value,empty,label,num"); } } csv-1.3.0/src/string_record.rs000064400000000000000000000620601046102023000144250ustar 00000000000000use std::{ fmt, io, iter::FromIterator, ops::{self, Range}, result, str, }; use serde::de::Deserialize; use crate::{ byte_record::{ByteRecord, ByteRecordIter, Position}, deserializer::deserialize_string_record, error::{Error, ErrorKind, FromUtf8Error, Result}, reader::Reader, }; /// A single CSV record stored as valid UTF-8 bytes. /// /// A string record permits reading or writing CSV rows that are valid UTF-8. /// If string records are used to read CSV data that is not valid UTF-8, then /// the CSV reader will return an invalid UTF-8 error. If you do need to read /// possibly invalid UTF-8 data, then you should prefer using a /// [`ByteRecord`](struct.ByteRecord.html), /// since it makes no assumptions about UTF-8. /// /// If you are using the Serde (de)serialization APIs, then you probably never /// need to interact with a `ByteRecord` or a `StringRecord`. However, there /// are some circumstances in which you might need to use a raw record type /// while still using Serde. For example, if you need to deserialize possibly /// invalid UTF-8 fields, then you'll need to first read your record into a /// `ByteRecord`, and then use `ByteRecord::deserialize` to run Serde. Another /// reason for using the raw record deserialization APIs is if you're using /// Serde to read into borrowed data such as a `&'a str` or a `&'a [u8]`. /// /// Two `StringRecord`s are compared on the basis of their field data. Any /// position information associated with the records is ignored. #[derive(Clone, Eq)] pub struct StringRecord(ByteRecord); impl PartialEq for StringRecord { fn eq(&self, other: &StringRecord) -> bool { self.0.iter_eq(&other.0) } } impl> PartialEq> for StringRecord { fn eq(&self, other: &Vec) -> bool { self.0.iter_eq(other) } } impl<'a, T: AsRef<[u8]>> PartialEq> for &'a StringRecord { fn eq(&self, other: &Vec) -> bool { self.0.iter_eq(other) } } impl> PartialEq<[T]> for StringRecord { fn eq(&self, other: &[T]) -> bool { self.0.iter_eq(other) } } impl<'a, T: AsRef<[u8]>> PartialEq<[T]> for &'a StringRecord { fn eq(&self, other: &[T]) -> bool { self.0.iter_eq(other) } } impl fmt::Debug for StringRecord { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { let fields: Vec<&str> = self.iter().collect(); write!(f, "StringRecord({:?})", fields) } } impl Default for StringRecord { #[inline] fn default() -> StringRecord { StringRecord::new() } } impl StringRecord { /// Create a new empty `StringRecord`. /// /// Note that you may find the `StringRecord::from` constructor more /// convenient, which is provided by an impl on the `From` trait. /// /// # Example: create an empty record /// /// ``` /// use csv::StringRecord; /// /// let record = StringRecord::new(); /// assert_eq!(record.len(), 0); /// ``` /// /// # Example: initialize a record from a `Vec` /// /// ``` /// use csv::StringRecord; /// /// let record = StringRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// ``` #[inline] pub fn new() -> StringRecord { StringRecord(ByteRecord::new()) } /// Create a new empty `StringRecord` with the given capacity. /// /// `buffer` refers to the capacity of the buffer used to store the /// actual row contents. `fields` refers to the number of fields one /// might expect to store. #[inline] pub fn with_capacity(buffer: usize, fields: usize) -> StringRecord { StringRecord(ByteRecord::with_capacity(buffer, fields)) } /// Create a new `StringRecord` from a `ByteRecord`. /// /// Note that this does UTF-8 validation. If the given `ByteRecord` does /// not contain valid UTF-8, then this returns an error. The error includes /// the UTF-8 error and the original `ByteRecord`. /// /// # Example: valid UTF-8 /// /// ``` /// use std::error::Error; /// use csv::{ByteRecord, StringRecord}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let byte_record = ByteRecord::from(vec!["a", "b", "c"]); /// let str_record = StringRecord::from_byte_record(byte_record)?; /// assert_eq!(str_record.len(), 3); /// Ok(()) /// } /// ``` /// /// # Example: invalid UTF-8 /// /// ``` /// use csv::{ByteRecord, StringRecord}; /// /// let byte_record = ByteRecord::from(vec![ /// &b"quux"[..], &b"foo\xFFbar"[..], &b"c"[..], /// ]); /// let err = StringRecord::from_byte_record(byte_record).unwrap_err(); /// assert_eq!(err.utf8_error().field(), 1); /// assert_eq!(err.utf8_error().valid_up_to(), 3); /// ``` #[inline] pub fn from_byte_record( record: ByteRecord, ) -> result::Result { match record.validate() { Ok(()) => Ok(StringRecord(record)), Err(err) => Err(FromUtf8Error::new(record, err)), } } /// Lossily create a new `StringRecord` from a `ByteRecord`. /// /// This is like `StringRecord::from_byte_record`, except all invalid UTF-8 /// sequences are replaced with the `U+FFFD REPLACEMENT CHARACTER`, which /// looks like this: �. /// /// # Example: valid UTF-8 /// /// ``` /// use csv::{ByteRecord, StringRecord}; /// /// let byte_record = ByteRecord::from(vec!["a", "b", "c"]); /// let str_record = StringRecord::from_byte_record_lossy(byte_record); /// assert_eq!(str_record.len(), 3); /// ``` /// /// # Example: invalid UTF-8 /// /// ``` /// use csv::{ByteRecord, StringRecord}; /// /// let byte_record = ByteRecord::from(vec![ /// &b"quux"[..], &b"foo\xFFbar"[..], &b"c"[..], /// ]); /// let str_record = StringRecord::from_byte_record_lossy(byte_record); /// assert_eq!(&str_record[0], "quux"); /// assert_eq!(&str_record[1], "foo�bar"); /// assert_eq!(&str_record[2], "c"); /// ``` #[inline] pub fn from_byte_record_lossy(record: ByteRecord) -> StringRecord { // If the record is valid UTF-8, then take the easy path. if let Ok(()) = record.validate() { return StringRecord(record); } // TODO: We can be faster here. Not sure if it's worth it. let mut str_record = StringRecord::with_capacity(record.as_slice().len(), record.len()); for field in &record { str_record.push_field(&String::from_utf8_lossy(field)); } str_record } /// Deserialize this record. /// /// The `D` type parameter refers to the type that this record should be /// deserialized into. The `'de` lifetime refers to the lifetime of the /// `StringRecord`. The `'de` lifetime permits deserializing into structs /// that borrow field data from this record. /// /// An optional `headers` parameter permits deserializing into a struct /// based on its field names (corresponding to header values) rather than /// the order in which the fields are defined. /// /// # Example: without headers /// /// This shows how to deserialize a single row into a struct based on the /// order in which fields occur. This example also shows how to borrow /// fields from the `StringRecord`, which results in zero allocation /// deserialization. /// /// ``` /// use std::error::Error; /// /// use csv::StringRecord; /// /// #[derive(serde::Deserialize)] /// struct Row<'a> { /// city: &'a str, /// country: &'a str, /// population: u64, /// } /// /// # fn main() { example().unwrap() } /// fn example() -> Result<(), Box> { /// let record = StringRecord::from(vec![ /// "Boston", "United States", "4628910", /// ]); /// /// let row: Row = record.deserialize(None)?; /// assert_eq!(row.city, "Boston"); /// assert_eq!(row.country, "United States"); /// assert_eq!(row.population, 4628910); /// Ok(()) /// } /// ``` /// /// # Example: with headers /// /// This example is like the previous one, but shows how to deserialize /// into a struct based on the struct's field names. For this to work, /// you must provide a header row. /// /// This example also shows that you can deserialize into owned data /// types (e.g., `String`) instead of borrowed data types (e.g., `&str`). /// /// ``` /// use std::error::Error; /// /// use csv::StringRecord; /// /// #[derive(serde::Deserialize)] /// struct Row { /// city: String, /// country: String, /// population: u64, /// } /// /// # fn main() { example().unwrap() } /// fn example() -> Result<(), Box> { /// // Notice that the fields are not in the same order /// // as the fields in the struct! /// let header = StringRecord::from(vec![ /// "country", "city", "population", /// ]); /// let record = StringRecord::from(vec![ /// "United States", "Boston", "4628910", /// ]); /// /// let row: Row = record.deserialize(Some(&header))?; /// assert_eq!(row.city, "Boston"); /// assert_eq!(row.country, "United States"); /// assert_eq!(row.population, 4628910); /// Ok(()) /// } /// ``` pub fn deserialize<'de, D: Deserialize<'de>>( &'de self, headers: Option<&'de StringRecord>, ) -> Result { deserialize_string_record(self, headers) } /// Returns an iterator over all fields in this record. /// /// # Example /// /// This example shows how to iterate over each field in a `StringRecord`. /// /// ``` /// use csv::StringRecord; /// /// let record = StringRecord::from(vec!["a", "b", "c"]); /// for field in record.iter() { /// assert!(field == "a" || field == "b" || field == "c"); /// } /// ``` #[inline] pub fn iter(&self) -> StringRecordIter { self.into_iter() } /// Return the field at index `i`. /// /// If no field at index `i` exists, then this returns `None`. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let record = StringRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.get(1), Some("b")); /// assert_eq!(record.get(3), None); /// ``` #[inline] pub fn get(&self, i: usize) -> Option<&str> { self.0.get(i).map(|bytes| { debug_assert!(str::from_utf8(bytes).is_ok()); // This is safe because we guarantee that all string records // have a valid UTF-8 buffer. It's also safe because we // individually check each field for valid UTF-8. unsafe { str::from_utf8_unchecked(bytes) } }) } /// Returns true if and only if this record is empty. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// assert!(StringRecord::new().is_empty()); /// ``` #[inline] pub fn is_empty(&self) -> bool { self.len() == 0 } /// Returns the number of fields in this record. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let record = StringRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// ``` #[inline] pub fn len(&self) -> usize { self.0.len() } /// Truncate this record to `n` fields. /// /// If `n` is greater than the number of fields in this record, then this /// has no effect. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let mut record = StringRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// record.truncate(1); /// assert_eq!(record.len(), 1); /// assert_eq!(record, vec!["a"]); /// ``` #[inline] pub fn truncate(&mut self, n: usize) { self.0.truncate(n); } /// Clear this record so that it has zero fields. /// /// Note that it is not necessary to clear the record to reuse it with /// the CSV reader. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let mut record = StringRecord::from(vec!["a", "b", "c"]); /// assert_eq!(record.len(), 3); /// record.clear(); /// assert_eq!(record.len(), 0); /// ``` #[inline] pub fn clear(&mut self) { self.0.clear(); } /// Trim the fields of this record so that leading and trailing whitespace /// is removed. /// /// This method uses the Unicode definition of whitespace. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let mut record = StringRecord::from(vec![ /// " ", "\u{3000}\tfoo ", "bar ", "b a z", /// ]); /// record.trim(); /// assert_eq!(record, vec!["", "foo", "bar", "b a z"]); /// ``` pub fn trim(&mut self) { let length = self.len(); if length == 0 { return; } // TODO: We could likely do this in place, but for now, we allocate. let mut trimmed = StringRecord::with_capacity(self.as_slice().len(), self.len()); trimmed.set_position(self.position().cloned()); for field in &*self { trimmed.push_field(field.trim()); } *self = trimmed; } /// Add a new field to this record. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let mut record = StringRecord::new(); /// record.push_field("foo"); /// assert_eq!(&record[0], "foo"); /// ``` #[inline] pub fn push_field(&mut self, field: &str) { self.0.push_field(field.as_bytes()); } /// Return the position of this record, if available. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::{StringRecord, ReaderBuilder}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut record = StringRecord::new(); /// let mut rdr = ReaderBuilder::new() /// .has_headers(false) /// .from_reader("a,b,c\nx,y,z".as_bytes()); /// /// assert!(rdr.read_record(&mut record)?); /// { /// let pos = record.position().expect("a record position"); /// assert_eq!(pos.byte(), 0); /// assert_eq!(pos.line(), 1); /// assert_eq!(pos.record(), 0); /// } /// /// assert!(rdr.read_record(&mut record)?); /// { /// let pos = record.position().expect("a record position"); /// assert_eq!(pos.byte(), 6); /// assert_eq!(pos.line(), 2); /// assert_eq!(pos.record(), 1); /// } /// /// // Finish the CSV reader for good measure. /// assert!(!rdr.read_record(&mut record)?); /// Ok(()) /// } /// ``` #[inline] pub fn position(&self) -> Option<&Position> { self.0.position() } /// Set the position of this record. /// /// # Example /// /// ``` /// use csv::{StringRecord, Position}; /// /// let mut record = StringRecord::from(vec!["a", "b", "c"]); /// let mut pos = Position::new(); /// pos.set_byte(100); /// pos.set_line(4); /// pos.set_record(2); /// /// record.set_position(Some(pos.clone())); /// assert_eq!(record.position(), Some(&pos)); /// ``` #[inline] pub fn set_position(&mut self, pos: Option) { self.0.set_position(pos); } /// Return the start and end position of a field in this record. /// /// If no such field exists at the given index, then return `None`. /// /// The range returned can be used with the slice returned by `as_slice`. /// Namely, the range returned is guaranteed to start and end at valid /// UTF-8 sequence boundaries. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let record = StringRecord::from(vec!["foo", "quux", "z"]); /// let range = record.range(1).expect("a record range"); /// assert_eq!(&record.as_slice()[range], "quux"); /// ``` #[inline] pub fn range(&self, i: usize) -> Option> { self.0.range(i) } /// Return the entire row as a single string slice. The slice returned /// stores all fields contiguously. The boundaries of each field can be /// determined via the `range` method. /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let record = StringRecord::from(vec!["foo", "quux", "z"]); /// assert_eq!(record.as_slice(), "fooquuxz"); /// ``` #[inline] pub fn as_slice(&self) -> &str { debug_assert!(str::from_utf8(self.0.as_slice()).is_ok()); // This is safe because we guarantee that each field is valid UTF-8. // If each field is valid UTF-8, then the entire buffer (up to the end // of the last field) must also be valid UTF-8. unsafe { str::from_utf8_unchecked(self.0.as_slice()) } } /// Return a reference to this record's raw /// [`ByteRecord`](struct.ByteRecord.html). /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let str_record = StringRecord::from(vec!["a", "b", "c"]); /// let byte_record = str_record.as_byte_record(); /// assert_eq!(&byte_record[2], b"c"); /// ``` #[inline] pub fn as_byte_record(&self) -> &ByteRecord { &self.0 } /// Convert this `StringRecord` into a /// [`ByteRecord`](struct.ByteRecord.html). /// /// # Example /// /// ``` /// use csv::StringRecord; /// /// let str_record = StringRecord::from(vec!["a", "b", "c"]); /// let byte_record = str_record.into_byte_record(); /// assert_eq!(&byte_record[2], b"c"); /// ``` /// /// Note that this can also be achieved using the `From` impl: /// /// ``` /// use csv::{ByteRecord, StringRecord}; /// /// // Using ByteRecord::from... /// let str_record = StringRecord::from(vec!["a", "b", "c"]); /// assert_eq!(ByteRecord::from(str_record).len(), 3); /// /// // Using StringRecord::into... /// let str_record = StringRecord::from(vec!["a", "b", "c"]); /// let byte_record: ByteRecord = str_record.into(); /// assert_eq!(byte_record.len(), 3); /// ``` #[inline] pub fn into_byte_record(self) -> ByteRecord { self.0 } /// Clone this record, but only copy `fields` up to the end of bounds. This /// is useful when one wants to copy a record, but not necessarily any /// excess capacity in that record. #[inline] pub(crate) fn clone_truncated(&self) -> StringRecord { StringRecord(self.0.clone_truncated()) } /// A safe function for reading CSV data into a `StringRecord`. /// /// This relies on the internal representation of `StringRecord`. #[inline(always)] pub(crate) fn read( &mut self, rdr: &mut Reader, ) -> Result { // SAFETY: This code is critical to upholding the safety of other code // blocks in this module. Namely, after calling `read_byte_record`, // it is possible for `record` to contain invalid UTF-8. We check for // this in the `validate` method, and if it does have invalid UTF-8, we // clear the record. (It is bad for `record` to contain invalid UTF-8 // because other accessor methods, like `get`, assume that every field // is valid UTF-8.) let pos = rdr.position().clone(); let read_res = rdr.read_byte_record(&mut self.0); let utf8_res = match self.0.validate() { Ok(()) => Ok(()), Err(err) => { // If this record isn't valid UTF-8, then completely wipe it. self.0.clear(); Err(err) } }; match (read_res, utf8_res) { (Err(err), _) => Err(err), (Ok(_), Err(err)) => { Err(Error::new(ErrorKind::Utf8 { pos: Some(pos), err })) } (Ok(eof), Ok(())) => Ok(eof), } } } impl ops::Index for StringRecord { type Output = str; #[inline] fn index(&self, i: usize) -> &str { self.get(i).unwrap() } } impl> From> for StringRecord { #[inline] fn from(xs: Vec) -> StringRecord { StringRecord::from_iter(xs.into_iter()) } } impl<'a, T: AsRef> From<&'a [T]> for StringRecord { #[inline] fn from(xs: &'a [T]) -> StringRecord { StringRecord::from_iter(xs) } } impl> FromIterator for StringRecord { #[inline] fn from_iter>(iter: I) -> StringRecord { let mut record = StringRecord::new(); record.extend(iter); record } } impl> Extend for StringRecord { #[inline] fn extend>(&mut self, iter: I) { for x in iter { self.push_field(x.as_ref()); } } } impl<'a> IntoIterator for &'a StringRecord { type IntoIter = StringRecordIter<'a>; type Item = &'a str; #[inline] fn into_iter(self) -> StringRecordIter<'a> { StringRecordIter(self.0.iter()) } } /// An iterator over the fields in a string record. /// /// The `'r` lifetime variable refers to the lifetime of the `StringRecord` /// that is being iterated over. #[derive(Clone)] pub struct StringRecordIter<'r>(ByteRecordIter<'r>); impl<'r> Iterator for StringRecordIter<'r> { type Item = &'r str; #[inline] fn next(&mut self) -> Option<&'r str> { self.0.next().map(|bytes| { debug_assert!(str::from_utf8(bytes).is_ok()); // See StringRecord::get for safety argument. unsafe { str::from_utf8_unchecked(bytes) } }) } #[inline] fn size_hint(&self) -> (usize, Option) { self.0.size_hint() } #[inline] fn count(self) -> usize { self.0.len() } } impl<'r> DoubleEndedIterator for StringRecordIter<'r> { #[inline] fn next_back(&mut self) -> Option<&'r str> { self.0.next_back().map(|bytes| { debug_assert!(str::from_utf8(bytes).is_ok()); // See StringRecord::get for safety argument. unsafe { str::from_utf8_unchecked(bytes) } }) } } #[cfg(test)] mod tests { use crate::string_record::StringRecord; #[test] fn trim_front() { let mut rec = StringRecord::from(vec![" abc"]); rec.trim(); assert_eq!(rec.get(0), Some("abc")); let mut rec = StringRecord::from(vec![" abc", " xyz"]); rec.trim(); assert_eq!(rec.get(0), Some("abc")); assert_eq!(rec.get(1), Some("xyz")); } #[test] fn trim_back() { let mut rec = StringRecord::from(vec!["abc "]); rec.trim(); assert_eq!(rec.get(0), Some("abc")); let mut rec = StringRecord::from(vec!["abc ", "xyz "]); rec.trim(); assert_eq!(rec.get(0), Some("abc")); assert_eq!(rec.get(1), Some("xyz")); } #[test] fn trim_both() { let mut rec = StringRecord::from(vec![" abc "]); rec.trim(); assert_eq!(rec.get(0), Some("abc")); let mut rec = StringRecord::from(vec![" abc ", " xyz "]); rec.trim(); assert_eq!(rec.get(0), Some("abc")); assert_eq!(rec.get(1), Some("xyz")); } #[test] fn trim_does_not_panic_on_empty_records_1() { let mut rec = StringRecord::from(vec![""]); rec.trim(); assert_eq!(rec.get(0), Some("")); } #[test] fn trim_does_not_panic_on_empty_records_2() { let mut rec = StringRecord::from(vec!["", ""]); rec.trim(); assert_eq!(rec.get(0), Some("")); assert_eq!(rec.get(1), Some("")); } #[test] fn trim_does_not_panic_on_empty_records_3() { let mut rec = StringRecord::new(); rec.trim(); assert_eq!(rec.as_slice().len(), 0); } #[test] fn trim_whitespace_only() { let mut rec = StringRecord::from(vec![ "\u{0009}\u{000A}\u{000B}\u{000C}\u{000D}\u{0020}\u{0085}\u{00A0}\u{1680}\u{2000}\u{2001}\u{2002}\u{2003}\u{2004}\u{2005}\u{2006}\u{2007}\u{2008}\u{2009}\u{200A}\u{2028}\u{2029}\u{202F}\u{205F}\u{3000}", ]); rec.trim(); assert_eq!(rec.get(0), Some("")); } // Check that record equality respects field boundaries. // // Regression test for #138. #[test] fn eq_field_boundaries() { let test1 = StringRecord::from(vec!["12", "34"]); let test2 = StringRecord::from(vec!["123", "4"]); assert_ne!(test1, test2); } // Check that record equality respects number of fields. // // Regression test for #138. #[test] fn eq_record_len() { let test1 = StringRecord::from(vec!["12", "34", "56"]); let test2 = StringRecord::from(vec!["12", "34"]); assert_ne!(test1, test2); } } csv-1.3.0/src/tutorial.rs000064400000000000000000002474021046102023000134310ustar 00000000000000/*! A tutorial for handling CSV data in Rust. This tutorial will cover basic CSV reading and writing, automatic (de)serialization with Serde, CSV transformations and performance. This tutorial is targeted at beginner Rust programmers. Experienced Rust programmers may find this tutorial to be too verbose, but skimming may be useful. There is also a [cookbook](../cookbook/index.html) of examples for those that prefer more information density. For an introduction to Rust, please see the [official book](https://doc.rust-lang.org/book/second-edition/). If you haven't written any Rust code yet but have written code in another language, then this tutorial might be accessible to you without needing to read the book first. # Table of contents 1. [Setup](#setup) 1. [Basic error handling](#basic-error-handling) * [Switch to recoverable errors](#switch-to-recoverable-errors) 1. [Reading CSV](#reading-csv) * [Reading headers](#reading-headers) * [Delimiters, quotes and variable length records](#delimiters-quotes-and-variable-length-records) * [Reading with Serde](#reading-with-serde) * [Handling invalid data with Serde](#handling-invalid-data-with-serde) 1. [Writing CSV](#writing-csv) * [Writing tab separated values](#writing-tab-separated-values) * [Writing with Serde](#writing-with-serde) 1. [Pipelining](#pipelining) * [Filter by search](#filter-by-search) * [Filter by population count](#filter-by-population-count) 1. [Performance](#performance) * [Amortizing allocations](#amortizing-allocations) * [Serde and zero allocation](#serde-and-zero-allocation) * [CSV parsing without the standard library](#csv-parsing-without-the-standard-library) 1. [Closing thoughts](#closing-thoughts) # Setup In this section, we'll get you setup with a simple program that reads CSV data and prints a "debug" version of each record. This assumes that you have the [Rust toolchain installed](https://www.rust-lang.org/install.html), which includes both Rust and Cargo. We'll start by creating a new Cargo project: ```text $ cargo new --bin csvtutor $ cd csvtutor ``` Once inside `csvtutor`, open `Cargo.toml` in your favorite text editor and add `csv = "1.1"` to your `[dependencies]` section. At this point, your `Cargo.toml` should look something like this: ```text [package] name = "csvtutor" version = "0.1.0" authors = ["Your Name"] [dependencies] csv = "1.1" ``` Next, let's build your project. Since you added the `csv` crate as a dependency, Cargo will automatically download it and compile it for you. To build your project, use Cargo: ```text $ cargo build ``` This will produce a new binary, `csvtutor`, in your `target/debug` directory. It won't do much at this point, but you can run it: ```text $ ./target/debug/csvtutor Hello, world! ``` Let's make our program do something useful. Our program will read CSV data on stdin and print debug output for each record on stdout. To write this program, open `src/main.rs` in your favorite text editor and replace its contents with this: ```no_run //tutorial-setup-01.rs // Import the standard library's I/O module so we can read from stdin. use std::io; // The `main` function is where your program starts executing. fn main() { // Create a CSV parser that reads data from stdin. let mut rdr = csv::Reader::from_reader(io::stdin()); // Loop over each record. for result in rdr.records() { // An error may occur, so abort the program in an unfriendly way. // We will make this more friendly later! let record = result.expect("a CSV record"); // Print a debug version of the record. println!("{:?}", record); } } ``` Don't worry too much about what this code means; we'll dissect it in the next section. For now, try rebuilding your project: ```text $ cargo build ``` Assuming that succeeds, let's try running our program. But first, we will need some CSV data to play with! For that, we will use a random selection of 100 US cities, along with their population size and geographical coordinates. (We will use this same CSV data throughout the entire tutorial.) To get the data, download it from github: ```text $ curl -LO 'https://raw.githubusercontent.com/BurntSushi/rust-csv/master/examples/data/uspop.csv' ``` And now finally, run your program on `uspop.csv`: ```text $ ./target/debug/csvtutor < uspop.csv StringRecord(["Davidsons Landing", "AK", "", "65.2419444", "-165.2716667"]) StringRecord(["Kenai", "AK", "7610", "60.5544444", "-151.2583333"]) StringRecord(["Oakman", "AL", "", "33.7133333", "-87.3886111"]) # ... and much more ``` # Basic error handling Since reading CSV data can result in errors, error handling is pervasive throughout the examples in this tutorial. Therefore, we're going to spend a little bit of time going over basic error handling, and in particular, fix our previous example to show errors in a more friendly way. **If you're already comfortable with things like `Result` and `try!`/`?` in Rust, then you can safely skip this section.** Note that [The Rust Programming Language Book](https://doc.rust-lang.org/book/second-edition/) contains an [introduction to general error handling](https://doc.rust-lang.org/book/second-edition/ch09-00-error-handling.html). For a deeper dive, see [my blog post on error handling in Rust](http://blog.burntsushi.net/rust-error-handling/). The blog post is especially important if you plan on building Rust libraries. With that out of the way, error handling in Rust comes in two different forms: unrecoverable errors and recoverable errors. Unrecoverable errors generally correspond to things like bugs in your program, which might occur when an invariant or contract is broken. At that point, the state of your program is unpredictable, and there's typically little recourse other than *panicking*. In Rust, a panic is similar to simply aborting your program, but it will unwind the stack and clean up resources before your program exits. On the other hand, recoverable errors generally correspond to predictable errors. A non-existent file or invalid CSV data are examples of recoverable errors. In Rust, recoverable errors are handled via `Result`. A `Result` represents the state of a computation that has either succeeded or failed. It is defined like so: ``` enum Result { Ok(T), Err(E), } ``` That is, a `Result` either contains a value of type `T` when the computation succeeds, or it contains a value of type `E` when the computation fails. The relationship between unrecoverable errors and recoverable errors is important. In particular, it is **strongly discouraged** to treat recoverable errors as if they were unrecoverable. For example, panicking when a file could not be found, or if some CSV data is invalid, is considered bad practice. Instead, predictable errors should be handled using Rust's `Result` type. With our new found knowledge, let's re-examine our previous example and dissect its error handling. ```no_run //tutorial-error-01.rs use std::io; fn main() { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { let record = result.expect("a CSV record"); println!("{:?}", record); } } ``` There are two places where an error can occur in this program. The first is if there was a problem reading a record from stdin. The second is if there is a problem writing to stdout. In general, we will ignore the latter problem in this tutorial, although robust command line applications should probably try to handle it (e.g., when a broken pipe occurs). The former however is worth looking into in more detail. For example, if a user of this program provides invalid CSV data, then the program will panic: ```text $ cat invalid header1,header2 foo,bar quux,baz,foobar $ ./target/debug/csvtutor < invalid StringRecord(["foo", "bar"]) thread 'main' panicked at 'a CSV record: Error(UnequalLengths { pos: Some(Position { byte: 24, line: 3, record: 2 }), expected_len: 2, len: 3 })', src/main.rs:13:29 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ``` What happened here? First and foremost, we should talk about why the CSV data is invalid. The CSV data consists of three records: a header and two data records. The header and first data record have two fields, but the second data record has three fields. By default, the csv crate will treat inconsistent record lengths as an error. (This behavior can be toggled using the [`ReaderBuilder::flexible`](../struct.ReaderBuilder.html#method.flexible) config knob.) This explains why the first data record is printed in this example, since it has the same number of fields as the header record. That is, we don't actually hit an error until we parse the second data record. (Note that the CSV reader automatically interprets the first record as a header. This can be toggled with the [`ReaderBuilder::has_headers`](../struct.ReaderBuilder.html#method.has_headers) config knob.) So what actually causes the panic to happen in our program? That would be the first line in our loop: ```ignore for result in rdr.records() { let record = result.expect("a CSV record"); // this panics println!("{:?}", record); } ``` The key thing to understand here is that `rdr.records()` returns an iterator that yields `Result` values. That is, instead of yielding records, it yields a `Result` that contains either a record or an error. The `expect` method, which is defined on `Result`, *unwraps* the success value inside the `Result`. Since the `Result` might contain an error instead, `expect` will *panic* when it does contain an error. It might help to look at the implementation of `expect`: ```ignore use std::fmt; // This says, "for all types T and E, where E can be turned into a human // readable debug message, define the `expect` method." impl Result { fn expect(self, msg: &str) -> T { match self { Ok(t) => t, Err(e) => panic!("{}: {:?}", msg, e), } } } ``` Since this causes a panic if the CSV data is invalid, and invalid CSV data is a perfectly predictable error, we've turned what should be a *recoverable* error into an *unrecoverable* error. We did this because it is expedient to use unrecoverable errors. Since this is bad practice, we will endeavor to avoid unrecoverable errors throughout the rest of the tutorial. ## Switch to recoverable errors We'll convert our unrecoverable error to a recoverable error in 3 steps. First, let's get rid of the panic and print an error message manually: ```no_run //tutorial-error-02.rs use std::{io, process}; fn main() { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // Examine our Result. // If there was no problem, print the record. // Otherwise, print the error message and quit the program. match result { Ok(record) => println!("{:?}", record), Err(err) => { println!("error reading CSV from : {}", err); process::exit(1); } } } } ``` If we run our program again, we'll still see an error message, but it is no longer a panic message: ```text $ cat invalid header1,header2 foo,bar quux,baz,foobar $ ./target/debug/csvtutor < invalid StringRecord { position: Some(Position { byte: 16, line: 2, record: 1 }), fields: ["foo", "bar"] } error reading CSV from : CSV error: record 2 (line: 3, byte: 24): found record with 3 fields, but the previous record has 2 fields ``` The second step for moving to recoverable errors is to put our CSV record loop into a separate function. This function then has the option of *returning* an error, which our `main` function can then inspect and decide what to do with. ```no_run //tutorial-error-03.rs use std::{error::Error, io, process}; fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // Examine our Result. // If there was no problem, print the record. // Otherwise, convert our error to a Box and return it. match result { Err(err) => return Err(From::from(err)), Ok(record) => { println!("{:?}", record); } } } Ok(()) } ``` Our new function, `run`, has a return type of `Result<(), Box>`. In simple terms, this says that `run` either returns nothing when successful, or if an error occurred, it returns a `Box`, which stands for "any kind of error." A `Box` is hard to inspect if we cared about the specific error that occurred. But for our purposes, all we need to do is gracefully print an error message and exit the program. The third and final step is to replace our explicit `match` expression with a special Rust language feature: the question mark. ```no_run //tutorial-error-04.rs use std::{error::Error, io, process}; fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // This is effectively the same code as our `match` in the // previous example. In other words, `?` is syntactic sugar. let record = result?; println!("{:?}", record); } Ok(()) } ``` This last step shows how we can use the `?` to automatically forward errors to our caller without having to do explicit case analysis with `match` ourselves. We will use the `?` heavily throughout this tutorial, and it's important to note that it can **only be used in functions that return `Result`.** We'll end this section with a word of caution: using `Box` as our error type is the minimally acceptable thing we can do here. Namely, while it allows our program to gracefully handle errors, it makes it hard for callers to inspect the specific error condition that occurred. However, since this is a tutorial on writing command line programs that do CSV parsing, we will consider ourselves satisfied. If you'd like to know more, or are interested in writing a library that handles CSV data, then you should check out my [blog post on error handling](http://blog.burntsushi.net/rust-error-handling/). With all that said, if all you're doing is writing a one-off program to do CSV transformations, then using methods like `expect` and panicking when an error occurs is a perfectly reasonable thing to do. Nevertheless, this tutorial will endeavor to show idiomatic code. # Reading CSV Now that we've got you setup and covered basic error handling, it's time to do what we came here to do: handle CSV data. We've already seen how to read CSV data from `stdin`, but this section will cover how to read CSV data from files and how to configure our CSV reader to data formatted with different delimiters and quoting strategies. First up, let's adapt the example we've been working with to accept a file path argument instead of stdin. ```no_run //tutorial-read-01.rs use std::{ env, error::Error, ffi::OsString, fs::File, process, }; fn run() -> Result<(), Box> { let file_path = get_first_arg()?; let file = File::open(file_path)?; let mut rdr = csv::Reader::from_reader(file); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } /// Returns the first positional argument sent to this process. If there are no /// positional arguments, then this returns an error. fn get_first_arg() -> Result> { match env::args_os().nth(1) { None => Err(From::from("expected 1 argument, but got none")), Some(file_path) => Ok(file_path), } } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } ``` If you replace the contents of your `src/main.rs` file with the above code, then you should be able to rebuild your project and try it out: ```text $ cargo build $ ./target/debug/csvtutor uspop.csv StringRecord(["Davidsons Landing", "AK", "", "65.2419444", "-165.2716667"]) StringRecord(["Kenai", "AK", "7610", "60.5544444", "-151.2583333"]) StringRecord(["Oakman", "AL", "", "33.7133333", "-87.3886111"]) # ... and much more ``` This example contains two new pieces of code: 1. Code for querying the positional arguments of your program. We put this code into its own function called `get_first_arg`. Our program expects a file path in the first position (which is indexed at `1`; the argument at index `0` is the executable name), so if one doesn't exist, then `get_first_arg` returns an error. 2. Code for opening a file. In `run`, we open a file using `File::open`. If there was a problem opening the file, we forward the error to the caller of `run` (which is `main` in this program). Note that we do *not* wrap the `File` in a buffer. The CSV reader does buffering internally, so there's no need for the caller to do it. Now is a good time to introduce an alternate CSV reader constructor, which makes it slightly more convenient to open CSV data from a file. That is, instead of: ```ignore let file_path = get_first_arg()?; let file = File::open(file_path)?; let mut rdr = csv::Reader::from_reader(file); ``` you can use: ```ignore let file_path = get_first_arg()?; let mut rdr = csv::Reader::from_path(file_path)?; ``` `csv::Reader::from_path` will open the file for you and return an error if the file could not be opened. ## Reading headers If you had a chance to look at the data inside `uspop.csv`, you would notice that there is a header record that looks like this: ```text City,State,Population,Latitude,Longitude ``` Now, if you look back at the output of the commands you've run so far, you'll notice that the header record is never printed. Why is that? By default, the CSV reader will interpret the first record in CSV data as a header, which is typically distinct from the actual data in the records that follow. Therefore, the header record is always skipped whenever you try to read or iterate over the records in CSV data. The CSV reader does not try to be smart about the header record and does **not** employ any heuristics for automatically detecting whether the first record is a header or not. Instead, if you don't want to treat the first record as a header, you'll need to tell the CSV reader that there are no headers. To configure a CSV reader to do this, we'll need to use a [`ReaderBuilder`](../struct.ReaderBuilder.html) to build a CSV reader with our desired configuration. Here's an example that does just that. (Note that we've moved back to reading from `stdin`, since it produces terser examples.) ```no_run //tutorial-read-headers-01.rs # use std::{error::Error, io, process}; # fn run() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new() .has_headers(false) .from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` If you compile and run this program with our `uspop.csv` data, then you'll see that the header record is now printed: ```text $ cargo build $ ./target/debug/csvtutor < uspop.csv StringRecord(["City", "State", "Population", "Latitude", "Longitude"]) StringRecord(["Davidsons Landing", "AK", "", "65.2419444", "-165.2716667"]) StringRecord(["Kenai", "AK", "7610", "60.5544444", "-151.2583333"]) StringRecord(["Oakman", "AL", "", "33.7133333", "-87.3886111"]) ``` If you ever need to access the header record directly, then you can use the [`Reader::header`](../struct.Reader.html#method.headers) method like so: ```no_run //tutorial-read-headers-02.rs # use std::{error::Error, io, process}; # fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); { // We nest this call in its own scope because of lifetimes. let headers = rdr.headers()?; println!("{:?}", headers); } for result in rdr.records() { let record = result?; println!("{:?}", record); } // We can ask for the headers at any time. There's no need to nest this // call in its own scope because we never try to borrow the reader again. let headers = rdr.headers()?; println!("{:?}", headers); Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` One interesting thing to note in this example is that we put the call to `rdr.headers()` in its own scope. We do this because `rdr.headers()` returns a *borrow* of the reader's internal header state. The nested scope in this code allows the borrow to end before we try to iterate over the records. If we didn't nest the call to `rdr.headers()` in its own scope, then the code wouldn't compile because we cannot borrow the reader's headers at the same time that we try to borrow the reader to iterate over its records. Another way of solving this problem is to *clone* the header record: ```ignore let headers = rdr.headers()?.clone(); ``` This converts it from a borrow of the CSV reader to a new owned value. This makes the code a bit easier to read, but at the cost of copying the header record into a new allocation. ## Delimiters, quotes and variable length records In this section we'll temporarily depart from our `uspop.csv` data set and show how to read some CSV data that is a little less clean. This CSV data uses `;` as a delimiter, escapes quotes with `\"` (instead of `""`) and has records of varying length. Here's the data, which contains a list of WWE wrestlers and the year they started, if it's known: ```text $ cat strange.csv "\"Hacksaw\" Jim Duggan";1987 "Bret \"Hit Man\" Hart";1984 # We're not sure when Rafael started, so omit the year. Rafael Halperin "\"Big Cat\" Ernie Ladd";1964 "\"Macho Man\" Randy Savage";1985 "Jake \"The Snake\" Roberts";1986 ``` To read this CSV data, we'll want to do the following: 1. Disable headers, since this data has none. 2. Change the delimiter from `,` to `;`. 3. Change the quote strategy from doubled (e.g., `""`) to escaped (e.g., `\"`). 4. Permit flexible length records, since some omit the year. 5. Ignore lines beginning with a `#`. All of this (and more!) can be configured with a [`ReaderBuilder`](../struct.ReaderBuilder.html), as seen in the following example: ```no_run //tutorial-read-delimiter-01.rs # use std::{error::Error, io, process}; # fn run() -> Result<(), Box> { let mut rdr = csv::ReaderBuilder::new() .has_headers(false) .delimiter(b';') .double_quote(false) .escape(Some(b'\\')) .flexible(true) .comment(Some(b'#')) .from_reader(io::stdin()); for result in rdr.records() { let record = result?; println!("{:?}", record); } Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` Now re-compile your project and try running the program on `strange.csv`: ```text $ cargo build $ ./target/debug/csvtutor < strange.csv StringRecord(["\"Hacksaw\" Jim Duggan", "1987"]) StringRecord(["Bret \"Hit Man\" Hart", "1984"]) StringRecord(["Rafael Halperin"]) StringRecord(["\"Big Cat\" Ernie Ladd", "1964"]) StringRecord(["\"Macho Man\" Randy Savage", "1985"]) StringRecord(["Jake \"The Snake\" Roberts", "1986"]) ``` You should feel encouraged to play around with the settings. Some interesting things you might try: 1. If you remove the `escape` setting, notice that no CSV errors are reported. Instead, records are still parsed. This is a feature of the CSV parser. Even though it gets the data slightly wrong, it still provides a parse that you might be able to work with. This is a useful property given the messiness of real world CSV data. 2. If you remove the `delimiter` setting, parsing still succeeds, although every record has exactly one field. 3. If you remove the `flexible` setting, the reader will print the first two records (since they both have the same number of fields), but will return a parse error on the third record, since it has only one field. This covers most of the things you might want to configure on your CSV reader, although there are a few other knobs. For example, you can change the record terminator from a new line to any other character. (By default, the terminator is `CRLF`, which treats each of `\r\n`, `\r` and `\n` as single record terminators.) For more details, see the documentation and examples for each of the methods on [`ReaderBuilder`](../struct.ReaderBuilder.html). ## Reading with Serde One of the most convenient features of this crate is its support for [Serde](https://serde.rs/). Serde is a framework for automatically serializing and deserializing data into Rust types. In simpler terms, that means instead of iterating over records as an array of string fields, we can iterate over records of a specific type of our choosing. For example, let's take a look at some data from our `uspop.csv` file: ```text City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 ``` While some of these fields make sense as strings (`City`, `State`), other fields look more like numbers. For example, `Population` looks like it contains integers while `Latitude` and `Longitude` appear to contain decimals. If we wanted to convert these fields to their "proper" types, then we need to do a lot of manual work. This next example shows how. ```no_run //tutorial-read-serde-01.rs # use std::{error::Error, io, process}; # fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { let record = result?; let city = &record[0]; let state = &record[1]; // Some records are missing population counts, so if we can't // parse a number, treat the population count as missing instead // of returning an error. let pop: Option = record[2].parse().ok(); // Lucky us! Latitudes and longitudes are available for every record. // Therefore, if one couldn't be parsed, return an error. let latitude: f64 = record[3].parse()?; let longitude: f64 = record[4].parse()?; println!( "city: {:?}, state: {:?}, \ pop: {:?}, latitude: {:?}, longitude: {:?}", city, state, pop, latitude, longitude); } Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` The problem here is that we need to parse each individual field manually, which can be labor intensive and repetitive. Serde, however, makes this process automatic. For example, we can ask to deserialize every record into a tuple type: `(String, String, Option, f64, f64)`. ```no_run //tutorial-read-serde-02.rs # use std::{error::Error, io, process}; # // This introduces a type alias so that we can conveniently reference our // record type. type Record = (String, String, Option, f64, f64); fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); // Instead of creating an iterator with the `records` method, we create // an iterator with the `deserialize` method. for result in rdr.deserialize() { // We must tell Serde what type we want to deserialize into. let record: Record = result?; println!("{:?}", record); } Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` Running this code should show similar output as previous examples: ```text $ cargo build $ ./target/debug/csvtutor < uspop.csv ("Davidsons Landing", "AK", None, 65.2419444, -165.2716667) ("Kenai", "AK", Some(7610), 60.5544444, -151.2583333) ("Oakman", "AL", None, 33.7133333, -87.3886111) # ... and much more ``` One of the downsides of using Serde this way is that the type you use must match the order of fields as they appear in each record. This can be a pain if your CSV data has a header record, since you might tend to think about each field as a value of a particular named field rather than as a numbered field. One way we might achieve this is to deserialize our record into a map type like [`HashMap`](https://doc.rust-lang.org/std/collections/struct.HashMap.html) or [`BTreeMap`](https://doc.rust-lang.org/std/collections/struct.BTreeMap.html). The next example shows how, and in particular, notice that the only thing that changed from the last example is the definition of the `Record` type alias and a new `use` statement that imports `HashMap` from the standard library: ```no_run //tutorial-read-serde-03.rs use std::collections::HashMap; # use std::{error::Error, io, process}; // This introduces a type alias so that we can conveniently reference our // record type. type Record = HashMap; fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); } Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` Running this program shows similar results as before, but each record is printed as a map: ```text $ cargo build $ ./target/debug/csvtutor < uspop.csv {"City": "Davidsons Landing", "Latitude": "65.2419444", "State": "AK", "Population": "", "Longitude": "-165.2716667"} {"City": "Kenai", "Population": "7610", "State": "AK", "Longitude": "-151.2583333", "Latitude": "60.5544444"} {"State": "AL", "City": "Oakman", "Longitude": "-87.3886111", "Population": "", "Latitude": "33.7133333"} ``` This method works especially well if you need to read CSV data with header records, but whose exact structure isn't known until your program runs. However, in our case, we know the structure of the data in `uspop.csv`. In particular, with the `HashMap` approach, we've lost the specific types we had for each field in the previous example when we deserialized each record into a `(String, String, Option, f64, f64)`. Is there a way to identify fields by their corresponding header name *and* assign each field its own unique type? The answer is yes, but we'll need to bring in Serde's `derive` feature first. You can do that by adding this to the `[dependencies]` section of your `Cargo.toml` file: ```text serde = { version = "1", features = ["derive"] } ``` With these crates added to our project, we can now define our own custom struct that represents our record. We then ask Serde to automatically write the glue code required to populate our struct from a CSV record. The next example shows how. Don't miss the new Serde imports! ```no_run //tutorial-read-serde-04.rs # #![allow(dead_code)] # use std::{error::Error, io, process}; // This lets us write `#[derive(Deserialize)]`. use serde::Deserialize; // We don't need to derive `Debug` (which doesn't require Serde), but it's a // good habit to do it for all your types. // // Notice that the field names in this struct are NOT in the same order as // the fields in the CSV data! #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { latitude: f64, longitude: f64, population: Option, city: String, state: String, } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); // Try this if you don't like each record smushed on one line: // println!("{:#?}", record); } Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } ``` Compile and run this program to see similar output as before: ```text $ cargo build $ ./target/debug/csvtutor < uspop.csv Record { latitude: 65.2419444, longitude: -165.2716667, population: None, city: "Davidsons Landing", state: "AK" } Record { latitude: 60.5544444, longitude: -151.2583333, population: Some(7610), city: "Kenai", state: "AK" } Record { latitude: 33.7133333, longitude: -87.3886111, population: None, city: "Oakman", state: "AL" } ``` Once again, we didn't need to change our `run` function at all: we're still iterating over records using the `deserialize` iterator that we started with in the beginning of this section. The only thing that changed in this example was the definition of the `Record` type and a new `use` statement. Our `Record` type is now a custom struct that we defined instead of a type alias, and as a result, Serde doesn't know how to deserialize it by default. However, a special compiler plugin provided by Serde is available, which will read your struct definition at compile time and generate code that will deserialize a CSV record into a `Record` value. To see what happens if you leave out the automatic derive, change `#[derive(Debug, Deserialize)]` to `#[derive(Debug)]`. One other thing worth mentioning in this example is the use of `#[serde(rename_all = "PascalCase")]`. This directive helps Serde map your struct's field names to the header names in the CSV data. If you recall, our header record is: ```text City,State,Population,Latitude,Longitude ``` Notice that each name is capitalized, but the fields in our struct are not. The `#[serde(rename_all = "PascalCase")]` directive fixes that by interpreting each field in `PascalCase`, where the first letter of the field is capitalized. If we didn't tell Serde about the name remapping, then the program will quit with an error: ```text $ ./target/debug/csvtutor < uspop.csv CSV deserialize error: record 1 (line: 2, byte: 41): missing field `latitude` ``` We could have fixed this through other means. For example, we could have used capital letters in our field names: ```ignore #[derive(Debug, Deserialize)] struct Record { Latitude: f64, Longitude: f64, Population: Option, City: String, State: String, } ``` However, this violates Rust naming style. (In fact, the Rust compiler will even warn you that the names do not follow convention!) Another way to fix this is to ask Serde to rename each field individually. This is useful when there is no consistent name mapping from fields to header names: ```ignore #[derive(Debug, Deserialize)] struct Record { #[serde(rename = "Latitude")] latitude: f64, #[serde(rename = "Longitude")] longitude: f64, #[serde(rename = "Population")] population: Option, #[serde(rename = "City")] city: String, #[serde(rename = "State")] state: String, } ``` To read more about renaming fields and about other Serde directives, please consult the [Serde documentation on attributes](https://serde.rs/attributes.html). ## Handling invalid data with Serde In this section we will see a brief example of how to deal with data that isn't clean. To do this exercise, we'll work with a slightly tweaked version of the US population data we've been using throughout this tutorial. This version of the data is slightly messier than what we've been using. You can get it like so: ```text $ curl -LO 'https://raw.githubusercontent.com/BurntSushi/rust-csv/master/examples/data/uspop-null.csv' ``` Let's start by running our program from the previous section: ```no_run //tutorial-read-serde-invalid-01.rs # #![allow(dead_code)] # use std::{error::Error, io, process}; # # use serde::Deserialize; # #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { latitude: f64, longitude: f64, population: Option, city: String, state: String, } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); } Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` Compile and run it on our messier data: ```text $ cargo build $ ./target/debug/csvtutor < uspop-null.csv Record { latitude: 65.2419444, longitude: -165.2716667, population: None, city: "Davidsons Landing", state: "AK" } Record { latitude: 60.5544444, longitude: -151.2583333, population: Some(7610), city: "Kenai", state: "AK" } Record { latitude: 33.7133333, longitude: -87.3886111, population: None, city: "Oakman", state: "AL" } # ... more records CSV deserialize error: record 42 (line: 43, byte: 1710): field 2: invalid digit found in string ``` Oops! What happened? The program printed several records, but stopped when it tripped over a deserialization problem. The error message says that it found an invalid digit in the field at index `2` (which is the `Population` field) on line 43. What does line 43 look like? ```text $ head -n 43 uspop-null.csv | tail -n1 Flint Springs,KY,NULL,37.3433333,-86.7136111 ``` Ah! The third field (index `2`) is supposed to either be empty or contain a population count. However, in this data, it seems that `NULL` sometimes appears as a value, presumably to indicate that there is no count available. The problem with our current program is that it fails to read this record because it doesn't know how to deserialize a `NULL` string into an `Option`. That is, a `Option` either corresponds to an empty field or an integer. To fix this, we tell Serde to convert any deserialization errors on this field to a `None` value, as shown in this next example: ```no_run //tutorial-read-serde-invalid-02.rs # #![allow(dead_code)] # use std::{error::Error, io, process}; # # use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { latitude: f64, longitude: f64, #[serde(deserialize_with = "csv::invalid_option")] population: Option, city: String, state: String, } fn run() -> Result<(), Box> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { let record: Record = result?; println!("{:?}", record); } Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` If you compile and run this example, then it should run to completion just like the other examples: ```text $ cargo build $ ./target/debug/csvtutor < uspop-null.csv Record { latitude: 65.2419444, longitude: -165.2716667, population: None, city: "Davidsons Landing", state: "AK" } Record { latitude: 60.5544444, longitude: -151.2583333, population: Some(7610), city: "Kenai", state: "AK" } Record { latitude: 33.7133333, longitude: -87.3886111, population: None, city: "Oakman", state: "AL" } # ... and more ``` The only change in this example was adding this attribute to the `population` field in our `Record` type: ```ignore #[serde(deserialize_with = "csv::invalid_option")] ``` The [`invalid_option`](../fn.invalid_option.html) function is a generic helper function that does one very simple thing: when applied to `Option` fields, it will convert any deserialization error into a `None` value. This is useful when you need to work with messy CSV data. # Writing CSV In this section we'll show a few examples that write CSV data. Writing CSV data tends to be a bit more straight-forward than reading CSV data, since you get to control the output format. Let's start with the most basic example: writing a few CSV records to `stdout`. ```no_run //tutorial-write-01.rs use std::{error::Error, io, process}; fn run() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // Since we're writing records manually, we must explicitly write our // header record. A header record is written the same way that other // records are written. wtr.write_record(&["City", "State", "Population", "Latitude", "Longitude"])?; wtr.write_record(&["Davidsons Landing", "AK", "", "65.2419444", "-165.2716667"])?; wtr.write_record(&["Kenai", "AK", "7610", "60.5544444", "-151.2583333"])?; wtr.write_record(&["Oakman", "AL", "", "33.7133333", "-87.3886111"])?; // A CSV writer maintains an internal buffer, so it's important // to flush the buffer when you're done. wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } ``` Compiling and running this example results in CSV data being printed: ```text $ cargo build $ ./target/debug/csvtutor City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 Oakman,AL,,33.7133333,-87.3886111 ``` Before moving on, it's worth taking a closer look at the `write_record` method. In this example, it looks rather simple, but if you're new to Rust then its type signature might look a little daunting: ```ignore pub fn write_record(&mut self, record: I) -> csv::Result<()> where I: IntoIterator, T: AsRef<[u8]> { // implementation elided } ``` To understand the type signature, we can break it down piece by piece. 1. The method takes two parameters: `self` and `record`. 2. `self` is a special parameter that corresponds to the `Writer` itself. 3. `record` is the CSV record we'd like to write. Its type is `I`, which is a generic type. 4. In the method's `where` clause, the `I` type is constrained by the `IntoIterator` bound. What that means is that `I` must satisfy the `IntoIterator` trait. If you look at the documentation of the [`IntoIterator` trait](https://doc.rust-lang.org/std/iter/trait.IntoIterator.html), then we can see that it describes types that can build iterators. In this case, we want an iterator that yields *another* generic type `T`, where `T` is the type of each field we want to write. 5. `T` also appears in the method's `where` clause, but its constraint is the `AsRef<[u8]>` bound. The `AsRef` trait is a way to describe zero cost conversions between types in Rust. In this case, the `[u8]` in `AsRef<[u8]>` means that we want to be able to *borrow* a slice of bytes from `T`. The CSV writer will take these bytes and write them as a single field. The `AsRef<[u8]>` bound is useful because types like `String`, `&str`, `Vec` and `&[u8]` all satisfy it. 6. Finally, the method returns a `csv::Result<()>`, which is short-hand for `Result<(), csv::Error>`. That means `write_record` either returns nothing on success or returns a `csv::Error` on failure. Now, let's apply our new found understanding of the type signature of `write_record`. If you recall, in our previous example, we used it like so: ```ignore wtr.write_record(&["field 1", "field 2", "etc"])?; ``` So how do the types match up? Well, the type of each of our fields in this code is `&'static str` (which is the type of a string literal in Rust). Since we put them in a slice literal, the type of our parameter is `&'static [&'static str]`, or more succinctly written as `&[&str]` without the lifetime annotations. Since slices satisfy the `IntoIterator` bound and strings satisfy the `AsRef<[u8]>` bound, this ends up being a legal call. Here are a few more examples of ways you can call `write_record`: ```no_run # use csv; # let mut wtr = csv::Writer::from_writer(vec![]); // A slice of byte strings. wtr.write_record(&[b"a", b"b", b"c"]); // A vector. wtr.write_record(vec!["a", "b", "c"]); // A string record. wtr.write_record(&csv::StringRecord::from(vec!["a", "b", "c"])); // A byte record. wtr.write_record(&csv::ByteRecord::from(vec!["a", "b", "c"])); ``` Finally, the example above can be easily adapted to write to a file instead of `stdout`: ```no_run //tutorial-write-02.rs use std::{ env, error::Error, ffi::OsString, process, }; fn run() -> Result<(), Box> { let file_path = get_first_arg()?; let mut wtr = csv::Writer::from_path(file_path)?; wtr.write_record(&["City", "State", "Population", "Latitude", "Longitude"])?; wtr.write_record(&["Davidsons Landing", "AK", "", "65.2419444", "-165.2716667"])?; wtr.write_record(&["Kenai", "AK", "7610", "60.5544444", "-151.2583333"])?; wtr.write_record(&["Oakman", "AL", "", "33.7133333", "-87.3886111"])?; wtr.flush()?; Ok(()) } /// Returns the first positional argument sent to this process. If there are no /// positional arguments, then this returns an error. fn get_first_arg() -> Result> { match env::args_os().nth(1) { None => Err(From::from("expected 1 argument, but got none")), Some(file_path) => Ok(file_path), } } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } ``` ## Writing tab separated values In the previous section, we saw how to write some simple CSV data to `stdout` that looked like this: ```text City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 Oakman,AL,,33.7133333,-87.3886111 ``` You might wonder to yourself: what's the point of using a CSV writer if the data is so simple? Well, the benefit of a CSV writer is that it can handle all types of data without sacrificing the integrity of your data. That is, it knows when to quote fields that contain special CSV characters (like commas or new lines) or escape literal quotes that appear in your data. The CSV writer can also be easily configured to use different delimiters or quoting strategies. In this section, we'll take a look a look at how to tweak some of the settings on a CSV writer. In particular, we'll write TSV ("tab separated values") instead of CSV, and we'll ask the CSV writer to quote all non-numeric fields. Here's an example: ```no_run //tutorial-write-delimiter-01.rs # use std::{error::Error, io, process}; # fn run() -> Result<(), Box> { let mut wtr = csv::WriterBuilder::new() .delimiter(b'\t') .quote_style(csv::QuoteStyle::NonNumeric) .from_writer(io::stdout()); wtr.write_record(&["City", "State", "Population", "Latitude", "Longitude"])?; wtr.write_record(&["Davidsons Landing", "AK", "", "65.2419444", "-165.2716667"])?; wtr.write_record(&["Kenai", "AK", "7610", "60.5544444", "-151.2583333"])?; wtr.write_record(&["Oakman", "AL", "", "33.7133333", "-87.3886111"])?; wtr.flush()?; Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` Compiling and running this example gives: ```text $ cargo build $ ./target/debug/csvtutor "City" "State" "Population" "Latitude" "Longitude" "Davidsons Landing" "AK" "" 65.2419444 -165.2716667 "Kenai" "AK" 7610 60.5544444 -151.2583333 "Oakman" "AL" "" 33.7133333 -87.3886111 ``` In this example, we used a new type [`QuoteStyle`](../enum.QuoteStyle.html). The `QuoteStyle` type represents the different quoting strategies available to you. The default is to add quotes to fields only when necessary. This probably works for most use cases, but you can also ask for quotes to always be put around fields, to never be put around fields or to always be put around non-numeric fields. ## Writing with Serde Just like the CSV reader supports automatic deserialization into Rust types with Serde, the CSV writer supports automatic serialization from Rust types into CSV records using Serde. In this section, we'll learn how to use it. As with reading, let's start by seeing how we can serialize a Rust tuple. ```no_run //tutorial-write-serde-01.rs # use std::{error::Error, io, process}; # fn run() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); // We still need to write headers manually. wtr.write_record(&["City", "State", "Population", "Latitude", "Longitude"])?; // But now we can write records by providing a normal Rust value. // // Note that the odd `None::` syntax is required because `None` on // its own doesn't have a concrete type, but Serde needs a concrete type // in order to serialize it. That is, `None` has type `Option` but // `None::` has type `Option`. wtr.serialize(("Davidsons Landing", "AK", None::, 65.2419444, -165.2716667))?; wtr.serialize(("Kenai", "AK", Some(7610), 60.5544444, -151.2583333))?; wtr.serialize(("Oakman", "AL", None::, 33.7133333, -87.3886111))?; wtr.flush()?; Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` Compiling and running this program gives the expected output: ```text $ cargo build $ ./target/debug/csvtutor City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 Oakman,AL,,33.7133333,-87.3886111 ``` The key thing to note in the above example is the use of `serialize` instead of `write_record` to write our data. In particular, `write_record` is used when writing a simple record that contains string-like data only. On the other hand, `serialize` is used when your data consists of more complex values like numbers, floats or optional values. Of course, you could always convert the complex values to strings and then use `write_record`, but Serde can do it for you automatically. As with reading, we can also serialize custom structs as CSV records. As a bonus, the fields in a struct will automatically be written as a header record! To write custom structs as CSV records, we'll need to make use of Serde's automatic `derive` feature again. As in the [previous section on reading with Serde](#reading-with-serde), we'll need to add a couple crates to our `[dependencies]` section in our `Cargo.toml` (if they aren't already there): ```text serde = { version = "1", features = ["derive"] } ``` And we'll also need to add a new `use` statement to our code, for Serde, as shown in the example: ```no_run //tutorial-write-serde-02.rs use std::{error::Error, io, process}; use serde::Serialize; // Note that structs can derive both Serialize and Deserialize! #[derive(Debug, Serialize)] #[serde(rename_all = "PascalCase")] struct Record<'a> { city: &'a str, state: &'a str, population: Option, latitude: f64, longitude: f64, } fn run() -> Result<(), Box> { let mut wtr = csv::Writer::from_writer(io::stdout()); wtr.serialize(Record { city: "Davidsons Landing", state: "AK", population: None, latitude: 65.2419444, longitude: -165.2716667, })?; wtr.serialize(Record { city: "Kenai", state: "AK", population: Some(7610), latitude: 60.5544444, longitude: -151.2583333, })?; wtr.serialize(Record { city: "Oakman", state: "AL", population: None, latitude: 33.7133333, longitude: -87.3886111, })?; wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } ``` Compiling and running this example has the same output as last time, even though we didn't explicitly write a header record: ```text $ cargo build $ ./target/debug/csvtutor City,State,Population,Latitude,Longitude Davidsons Landing,AK,,65.2419444,-165.2716667 Kenai,AK,7610,60.5544444,-151.2583333 Oakman,AL,,33.7133333,-87.3886111 ``` In this case, the `serialize` method noticed that we were writing a struct with field names. When this happens, `serialize` will automatically write a header record (only if no other records have been written) that consists of the fields in the struct in the order in which they are defined. Note that this behavior can be disabled with the [`WriterBuilder::has_headers`](../struct.WriterBuilder.html#method.has_headers) method. It's also worth pointing out the use of a *lifetime parameter* in our `Record` struct: ```ignore struct Record<'a> { city: &'a str, state: &'a str, population: Option, latitude: f64, longitude: f64, } ``` The `'a` lifetime parameter corresponds to the lifetime of the `city` and `state` string slices. This says that the `Record` struct contains *borrowed* data. We could have written our struct without borrowing any data, and therefore, without any lifetime parameters: ```ignore struct Record { city: String, state: String, population: Option, latitude: f64, longitude: f64, } ``` However, since we had to replace our borrowed `&str` types with owned `String` types, we're now forced to allocate a new `String` value for both of `city` and `state` for every record that we write. There's no intrinsic problem with doing that, but it might be a bit wasteful. For more examples and more details on the rules for serialization, please see the [`Writer::serialize`](../struct.Writer.html#method.serialize) method. # Pipelining In this section, we're going to cover a few examples that demonstrate programs that take CSV data as input, and produce possibly transformed or filtered CSV data as output. This shows how to write a complete program that efficiently reads and writes CSV data. Rust is well positioned to perform this task, since you'll get great performance with the convenience of a high level CSV library. ## Filter by search The first example of CSV pipelining we'll look at is a simple filter. It takes as input some CSV data on stdin and a single string query as its only positional argument, and it will produce as output CSV data that only contains rows with a field that matches the query. ```no_run //tutorial-pipeline-search-01.rs use std::{env, error::Error, io, process}; fn run() -> Result<(), Box> { // Get the query from the positional arguments. // If one doesn't exist, return an error. let query = match env::args().nth(1) { None => return Err(From::from("expected 1 argument, but got none")), Some(query) => query, }; // Build CSV readers and writers to stdin and stdout, respectively. let mut rdr = csv::Reader::from_reader(io::stdin()); let mut wtr = csv::Writer::from_writer(io::stdout()); // Before reading our data records, we should write the header record. wtr.write_record(rdr.headers()?)?; // Iterate over all the records in `rdr`, and write only records containing // `query` to `wtr`. for result in rdr.records() { let record = result?; if record.iter().any(|field| field == &query) { wtr.write_record(&record)?; } } // CSV writers use an internal buffer, so we should always flush when done. wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } ``` If we compile and run this program with a query of `MA` on `uspop.csv`, we'll see that only one record matches: ```text $ cargo build $ ./csvtutor MA < uspop.csv City,State,Population,Latitude,Longitude Reading,MA,23441,42.5255556,-71.0958333 ``` This example doesn't actually introduce anything new. It merely combines what you've already learned about CSV readers and writers from previous sections. Let's add a twist to this example. In the real world, you're often faced with messy CSV data that might not be encoded correctly. One example you might come across is CSV data encoded in [Latin-1](https://en.wikipedia.org/wiki/ISO/IEC_8859-1). Unfortunately, for the examples we've seen so far, our CSV reader assumes that all of the data is UTF-8. Since all of the data we've worked on has been ASCII---which is a subset of both Latin-1 and UTF-8---we haven't had any problems. But let's introduce a slightly tweaked version of our `uspop.csv` file that contains an encoding of a Latin-1 character that is invalid UTF-8. You can get the data like so: ```text $ curl -LO 'https://raw.githubusercontent.com/BurntSushi/rust-csv/master/examples/data/uspop-latin1.csv' ``` Even though I've already given away the problem, let's see what happen when we try to run our previous example on this new data: ```text $ ./csvtutor MA < uspop-latin1.csv City,State,Population,Latitude,Longitude CSV parse error: record 3 (line 4, field: 0, byte: 125): invalid utf-8: invalid UTF-8 in field 0 near byte index 0 ``` The error message tells us exactly what's wrong. Let's take a look at line 4 to see what we're dealing with: ```text $ head -n4 uspop-latin1.csv | tail -n1 Õakman,AL,,33.7133333,-87.3886111 ``` In this case, the very first character is the Latin-1 `Õ`, which is encoded as the byte `0xD5`, which is in turn invalid UTF-8. So what do we do now that our CSV parser has choked on our data? You have two choices. The first is to go in and fix up your CSV data so that it's valid UTF-8. This is probably a good idea anyway, and tools like `iconv` can help with the task of transcoding. But if you can't or don't want to do that, then you can instead read CSV data in a way that is mostly encoding agnostic (so long as ASCII is still a valid subset). The trick is to use *byte records* instead of *string records*. Thus far, we haven't actually talked much about the type of a record in this library, but now is a good time to introduce them. There are two of them, [`StringRecord`](../struct.StringRecord.html) and [`ByteRecord`](../struct.ByteRecord.html). Each them represent a single record in CSV data, where a record is a sequence of an arbitrary number of fields. The only difference between `StringRecord` and `ByteRecord` is that `StringRecord` is guaranteed to be valid UTF-8, where as `ByteRecord` contains arbitrary bytes. Armed with that knowledge, we can now begin to understand why we saw an error when we ran the last example on data that wasn't UTF-8. Namely, when we call `records`, we get back an iterator of `StringRecord`. Since `StringRecord` is guaranteed to be valid UTF-8, trying to build a `StringRecord` with invalid UTF-8 will result in the error that we see. All we need to do to make our example work is to switch from a `StringRecord` to a `ByteRecord`. This means using `byte_records` to create our iterator instead of `records`, and similarly using `byte_headers` instead of `headers` if we think our header data might contain invalid UTF-8 as well. Here's the change: ```no_run //tutorial-pipeline-search-02.rs # use std::{env, error::Error, io, process}; # fn run() -> Result<(), Box> { let query = match env::args().nth(1) { None => return Err(From::from("expected 1 argument, but got none")), Some(query) => query, }; let mut rdr = csv::Reader::from_reader(io::stdin()); let mut wtr = csv::Writer::from_writer(io::stdout()); wtr.write_record(rdr.byte_headers()?)?; for result in rdr.byte_records() { let record = result?; // `query` is a `String` while `field` is now a `&[u8]`, so we'll // need to convert `query` to `&[u8]` before doing a comparison. if record.iter().any(|field| field == query.as_bytes()) { wtr.write_record(&record)?; } } wtr.flush()?; Ok(()) } # # fn main() { # if let Err(err) = run() { # println!("{}", err); # process::exit(1); # } # } ``` Compiling and running this now yields the same results as our first example, but this time it works on data that isn't valid UTF-8. ```text $ cargo build $ ./csvtutor MA < uspop-latin1.csv City,State,Population,Latitude,Longitude Reading,MA,23441,42.5255556,-71.0958333 ``` ## Filter by population count In this section, we will show another example program that both reads and writes CSV data, but instead of dealing with arbitrary records, we will use Serde to deserialize and serialize records with specific types. For this program, we'd like to be able to filter records in our population data by population count. Specifically, we'd like to see which records meet a certain population threshold. In addition to using a simple inequality, we must also account for records that have a missing population count. This is where types like `Option` come in handy, because the compiler will force us to consider the case when the population count is missing. Since we're using Serde in this example, don't forget to add the Serde dependencies to your `Cargo.toml` in your `[dependencies]` section if they aren't already there: ```text serde = { version = "1", features = ["derive"] } ``` Now here's the code: ```no_run //tutorial-pipeline-pop-01.rs # use std::{env, error::Error, io, process}; use serde::{Deserialize, Serialize}; // Unlike previous examples, we derive both Deserialize and Serialize. This // means we'll be able to automatically deserialize and serialize this type. #[derive(Debug, Deserialize, Serialize)] #[serde(rename_all = "PascalCase")] struct Record { city: String, state: String, population: Option, latitude: f64, longitude: f64, } fn run() -> Result<(), Box> { // Get the query from the positional arguments. // If one doesn't exist or isn't an integer, return an error. let minimum_pop: u64 = match env::args().nth(1) { None => return Err(From::from("expected 1 argument, but got none")), Some(arg) => arg.parse()?, }; // Build CSV readers and writers to stdin and stdout, respectively. // Note that we don't need to write headers explicitly. Since we're // serializing a custom struct, that's done for us automatically. let mut rdr = csv::Reader::from_reader(io::stdin()); let mut wtr = csv::Writer::from_writer(io::stdout()); // Iterate over all the records in `rdr`, and write only records containing // a population that is greater than or equal to `minimum_pop`. for result in rdr.deserialize() { // Remember that when deserializing, we must use a type hint to // indicate which type we want to deserialize our record into. let record: Record = result?; // `map_or` is a combinator on `Option`. It take two parameters: // a value to use when the `Option` is `None` (i.e., the record has // no population count) and a closure that returns another value of // the same type when the `Option` is `Some`. In this case, we test it // against our minimum population count that we got from the command // line. if record.population.map_or(false, |pop| pop >= minimum_pop) { wtr.serialize(record)?; } } // CSV writers use an internal buffer, so we should always flush when done. wtr.flush()?; Ok(()) } fn main() { if let Err(err) = run() { println!("{}", err); process::exit(1); } } ``` If we compile and run our program with a minimum threshold of `100000`, we should see three matching records. Notice that the headers were added even though we never explicitly wrote them! ```text $ cargo build $ ./target/debug/csvtutor 100000 < uspop.csv City,State,Population,Latitude,Longitude Fontana,CA,169160,34.0922222,-117.4341667 Bridgeport,CT,139090,41.1669444,-73.2052778 Indianapolis,IN,773283,39.7683333,-86.1580556 ``` # Performance In this section, we'll go over how to squeeze the most juice out of our CSV reader. As it happens, most of the APIs we've seen so far were designed with high level convenience in mind, and that often comes with some costs. For the most part, those costs revolve around unnecessary allocations. Therefore, most of the section will show how to do CSV parsing with as little allocation as possible. There are two critical preliminaries we must cover. Firstly, when you care about performance, you should compile your code with `cargo build --release` instead of `cargo build`. The `--release` flag instructs the compiler to spend more time optimizing your code. When compiling with the `--release` flag, you'll find your compiled program at `target/release/csvtutor` instead of `target/debug/csvtutor`. Throughout this tutorial, we've used `cargo build` because our dataset was small and we weren't focused on speed. The downside of `cargo build --release` is that it will take longer than `cargo build`. Secondly, the dataset we've used throughout this tutorial only has 100 records. We'd have to try really hard to cause our program to run slowly on 100 records, even when we compile without the `--release` flag. Therefore, in order to actually witness a performance difference, we need a bigger dataset. To get such a dataset, we'll use the original source of `uspop.csv`. **Warning: the download is 41MB compressed and decompresses to 145MB.** ```text $ curl -LO http://burntsushi.net/stuff/worldcitiespop.csv.gz $ gunzip worldcitiespop.csv.gz $ wc worldcitiespop.csv 3173959 5681543 151492068 worldcitiespop.csv $ md5sum worldcitiespop.csv 6198bd180b6d6586626ecbf044c1cca5 worldcitiespop.csv ``` Finally, it's worth pointing out that this section is not attempting to present a rigorous set of benchmarks. We will stay away from rigorous analysis and instead rely a bit more on wall clock times and intuition. ## Amortizing allocations In order to measure performance, we must be careful about what it is we're measuring. We must also be careful to not change the thing we're measuring as we make improvements to the code. For this reason, we will focus on measuring how long it takes to count the number of records corresponding to city population counts in Massachusetts. This represents a very small amount of work that requires us to visit every record, and therefore represents a decent way to measure how long it takes to do CSV parsing. Before diving into our first optimization, let's start with a baseline by adapting a previous example to count the number of records in `worldcitiespop.csv`: ```no_run //tutorial-perf-alloc-01.rs use std::{error::Error, io, process}; fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut count = 0; for result in rdr.records() { let record = result?; if &record[0] == "us" && &record[3] == "MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } ``` Now let's compile and run it and see what kind of timing we get. Don't forget to compile with the `--release` flag. (For grins, try compiling without the `--release` flag and see how long it takes to run the program!) ```text $ cargo build --release $ time ./target/release/csvtutor < worldcitiespop.csv 2176 real 0m0.645s user 0m0.627s sys 0m0.017s ``` All right, so what's the first thing we can do to make this faster? This section promised to speed things up by amortizing allocation, but we can do something even simpler first: iterate over [`ByteRecord`](../struct.ByteRecord.html)s instead of [`StringRecord`](../struct.StringRecord.html)s. If you recall from a previous section, a `StringRecord` is guaranteed to be valid UTF-8, and therefore must validate that its contents is actually UTF-8. (If validation fails, then the CSV reader will return an error.) If we remove that validation from our program, then we can realize a nice speed boost as shown in the next example: ```no_run //tutorial-perf-alloc-02.rs # use std::{error::Error, io, process}; # fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut count = 0; for result in rdr.byte_records() { let record = result?; if &record[0] == b"us" && &record[3] == b"MA" { count += 1; } } Ok(count) } # # fn main() { # match run() { # Ok(count) => { # println!("{}", count); # } # Err(err) => { # println!("{}", err); # process::exit(1); # } # } # } ``` And now compile and run: ```text $ cargo build --release $ time ./target/release/csvtutor < worldcitiespop.csv 2176 real 0m0.429s user 0m0.403s sys 0m0.023s ``` Our program is now approximately 30% faster, all because we removed UTF-8 validation. But was it actually okay to remove UTF-8 validation? What have we lost? In this case, it is perfectly acceptable to drop UTF-8 validation and use `ByteRecord` instead because all we're doing with the data in the record is comparing two of its fields to raw bytes: ```ignore if &record[0] == b"us" && &record[3] == b"MA" { count += 1; } ``` In particular, it doesn't matter whether `record` is valid UTF-8 or not, since we're checking for equality on the raw bytes themselves. UTF-8 validation via `StringRecord` is useful because it provides access to fields as `&str` types, where as `ByteRecord` provides fields as `&[u8]` types. `&str` is the type of a borrowed string in Rust, which provides convenient access to string APIs like substring search. Strings are also frequently used in other areas, so they tend to be a useful thing to have. Therefore, sticking with `StringRecord` is a good default, but if you need the extra speed and can deal with arbitrary bytes, then switching to `ByteRecord` might be a good idea. Moving on, let's try to get another speed boost by amortizing allocation. Amortizing allocation is the technique that creates an allocation once (or very rarely), and then attempts to reuse it instead of creating additional allocations. In the case of the previous examples, we used iterators created by the `records` and `byte_records` methods on a CSV reader. These iterators allocate a new record for every item that it yields, which in turn corresponds to a new allocation. It does this because iterators cannot yield items that borrow from the iterator itself, and because creating new allocations tends to be a lot more convenient. If we're willing to forgo use of iterators, then we can amortize allocations by creating a *single* `ByteRecord` and asking the CSV reader to read into it. We do this by using the [`Reader::read_byte_record`](../struct.Reader.html#method.read_byte_record) method. ```no_run //tutorial-perf-alloc-03.rs # use std::{error::Error, io, process}; # fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut record = csv::ByteRecord::new(); let mut count = 0; while rdr.read_byte_record(&mut record)? { if &record[0] == b"us" && &record[3] == b"MA" { count += 1; } } Ok(count) } # # fn main() { # match run() { # Ok(count) => { # println!("{}", count); # } # Err(err) => { # println!("{}", err); # process::exit(1); # } # } # } ``` Compile and run: ```text $ cargo build --release $ time ./target/release/csvtutor < worldcitiespop.csv 2176 real 0m0.308s user 0m0.283s sys 0m0.023s ``` Woohoo! This represents *another* 30% boost over the previous example, which is a 50% boost over the first example. Let's dissect this code by taking a look at the type signature of the `read_byte_record` method: ```ignore fn read_byte_record(&mut self, record: &mut ByteRecord) -> csv::Result; ``` This method takes as input a CSV reader (the `self` parameter) and a *mutable borrow* of a `ByteRecord`, and returns a `csv::Result`. (The `csv::Result` is equivalent to `Result`.) The return value is `true` if and only if a record was read. When it's `false`, that means the reader has exhausted its input. This method works by copying the contents of the next record into the provided `ByteRecord`. Since the same `ByteRecord` is used to read every record, it will already have space allocated for data. When `read_byte_record` runs, it will overwrite the contents that were there with the new record, which means that it can reuse the space that was allocated. Thus, we have *amortized allocation*. An exercise you might consider doing is to use a `StringRecord` instead of a `ByteRecord`, and therefore [`Reader::read_record`](../struct.Reader.html#method.read_record) instead of `read_byte_record`. This will give you easy access to Rust strings at the cost of UTF-8 validation but *without* the cost of allocating a new `StringRecord` for every record. ## Serde and zero allocation In this section, we are going to briefly examine how we use Serde and what we can do to speed it up. The key optimization we'll want to make is to---you guessed it---amortize allocation. As with the previous section, let's start with a simple baseline based off an example using Serde in a previous section: ```no_run //tutorial-perf-serde-01.rs # #![allow(dead_code)] use std::{error::Error, io, process}; use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record { country: String, city: String, accent_city: String, region: String, population: Option, latitude: f64, longitude: f64, } fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut count = 0; for result in rdr.deserialize() { let record: Record = result?; if record.country == "us" && record.region == "MA" { count += 1; } } Ok(count) } fn main() { match run() { Ok(count) => { println!("{}", count); } Err(err) => { println!("{}", err); process::exit(1); } } } ``` Now compile and run this program: ```text $ cargo build --release $ ./target/release/csvtutor < worldcitiespop.csv 2176 real 0m1.381s user 0m1.367s sys 0m0.013s ``` The first thing you might notice is that this is quite a bit slower than our programs in the previous section. This is because deserializing each record has a certain amount of overhead to it. In particular, some of the fields need to be parsed as integers or floating point numbers, which isn't free. However, there is hope yet, because we can speed up this program! Our first attempt to speed up the program will be to amortize allocation. Doing this with Serde is a bit trickier than before, because we need to change our `Record` type and use the manual deserialization API. Let's see what that looks like: ```no_run //tutorial-perf-serde-02.rs # #![allow(dead_code)] # use std::{error::Error, io, process}; # use serde::Deserialize; # #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record<'a> { country: &'a str, city: &'a str, accent_city: &'a str, region: &'a str, population: Option, latitude: f64, longitude: f64, } fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut raw_record = csv::StringRecord::new(); let headers = rdr.headers()?.clone(); let mut count = 0; while rdr.read_record(&mut raw_record)? { let record: Record = raw_record.deserialize(Some(&headers))?; if record.country == "us" && record.region == "MA" { count += 1; } } Ok(count) } # # fn main() { # match run() { # Ok(count) => { # println!("{}", count); # } # Err(err) => { # println!("{}", err); # process::exit(1); # } # } # } ``` Compile and run: ```text $ cargo build --release $ ./target/release/csvtutor < worldcitiespop.csv 2176 real 0m1.055s user 0m1.040s sys 0m0.013s ``` This corresponds to an approximately 24% increase in performance. To achieve this, we had to make two important changes. The first was to make our `Record` type contain `&str` fields instead of `String` fields. If you recall from a previous section, `&str` is a *borrowed* string where a `String` is an *owned* string. A borrowed string points to a already existing allocation where as a `String` always implies a new allocation. In this case, our `&str` is borrowing from the CSV record itself. The second change we had to make was to stop using the [`Reader::deserialize`](../struct.Reader.html#method.deserialize) iterator, and instead deserialize our record into a `StringRecord` explicitly and then use the [`StringRecord::deserialize`](../struct.StringRecord.html#method.deserialize) method to deserialize a single record. The second change is a bit tricky, because in order for it to work, our `Record` type needs to borrow from the data inside the `StringRecord`. That means that our `Record` value cannot outlive the `StringRecord` that it was created from. Since we overwrite the same `StringRecord` on each iteration (in order to amortize allocation), that means our `Record` value must evaporate before the next iteration of the loop. Indeed, the compiler will enforce this! There is one more optimization we can make: remove UTF-8 validation. In general, this means using `&[u8]` instead of `&str` and `ByteRecord` instead of `StringRecord`: ```no_run //tutorial-perf-serde-03.rs # #![allow(dead_code)] # use std::{error::Error, io, process}; # # use serde::Deserialize; # #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] struct Record<'a> { country: &'a [u8], city: &'a [u8], accent_city: &'a [u8], region: &'a [u8], population: Option, latitude: f64, longitude: f64, } fn run() -> Result> { let mut rdr = csv::Reader::from_reader(io::stdin()); let mut raw_record = csv::ByteRecord::new(); let headers = rdr.byte_headers()?.clone(); let mut count = 0; while rdr.read_byte_record(&mut raw_record)? { let record: Record = raw_record.deserialize(Some(&headers))?; if record.country == b"us" && record.region == b"MA" { count += 1; } } Ok(count) } # # fn main() { # match run() { # Ok(count) => { # println!("{}", count); # } # Err(err) => { # println!("{}", err); # process::exit(1); # } # } # } ``` Compile and run: ```text $ cargo build --release $ ./target/release/csvtutor < worldcitiespop.csv 2176 real 0m0.873s user 0m0.850s sys 0m0.023s ``` This corresponds to a 17% increase over the previous example and a 37% increase over the first example. In sum, Serde parsing is still quite fast, but will generally not be the fastest way to parse CSV since it necessarily needs to do more work. ## CSV parsing without the standard library In this section, we will explore a niche use case: parsing CSV without the standard library. While the `csv` crate itself requires the standard library, the underlying parser is actually part of the [`csv-core`](https://docs.rs/csv-core) crate, which does not depend on the standard library. The downside of not depending on the standard library is that CSV parsing becomes a lot more inconvenient. The `csv-core` crate is structured similarly to the `csv` crate. There is a [`Reader`](../../csv_core/struct.Reader.html) and a [`Writer`](../../csv_core/struct.Writer.html), as well as corresponding builders [`ReaderBuilder`](../../csv_core/struct.ReaderBuilder.html) and [`WriterBuilder`](../../csv_core/struct.WriterBuilder.html). The `csv-core` crate has no record types or iterators. Instead, CSV data can either be read one field at a time or one record at a time. In this section, we'll focus on reading a field at a time since it is simpler, but it is generally faster to read a record at a time since it does more work per function call. In keeping with this section on performance, let's write a program using only `csv-core` that counts the number of records in the state of Massachusetts. (Note that we unfortunately use the standard library in this example even though `csv-core` doesn't technically require it. We do this for convenient access to I/O, which would be harder without the standard library.) ```no_run //tutorial-perf-core-01.rs use std::io::{self, Read}; use std::process; use csv_core::{Reader, ReadFieldResult}; fn run(mut data: &[u8]) -> Option { let mut rdr = Reader::new(); // Count the number of records in Massachusetts. let mut count = 0; // Indicates the current field index. Reset to 0 at start of each record. let mut fieldidx = 0; // True when the current record is in the United States. let mut inus = false; // Buffer for field data. Must be big enough to hold the largest field. let mut field = [0; 1024]; loop { // Attempt to incrementally read the next CSV field. let (result, nread, nwrite) = rdr.read_field(data, &mut field); // nread is the number of bytes read from our input. We should never // pass those bytes to read_field again. data = &data[nread..]; // nwrite is the number of bytes written to the output buffer `field`. // The contents of the buffer after this point is unspecified. let field = &field[..nwrite]; match result { // We don't need to handle this case because we read all of the // data up front. If we were reading data incrementally, then this // would be a signal to read more. ReadFieldResult::InputEmpty => {} // If we get this case, then we found a field that contains more // than 1024 bytes. We keep this example simple and just fail. ReadFieldResult::OutputFull => { return None; } // This case happens when we've successfully read a field. If the // field is the last field in a record, then `record_end` is true. ReadFieldResult::Field { record_end } => { if fieldidx == 0 && field == b"us" { inus = true; } else if inus && fieldidx == 3 && field == b"MA" { count += 1; } if record_end { fieldidx = 0; inus = false; } else { fieldidx += 1; } } // This case happens when the CSV reader has successfully exhausted // all input. ReadFieldResult::End => { break; } } } Some(count) } fn main() { // Read the entire contents of stdin up front. let mut data = vec![]; if let Err(err) = io::stdin().read_to_end(&mut data) { println!("{}", err); process::exit(1); } match run(&data) { None => { println!("error: could not count records, buffer too small"); process::exit(1); } Some(count) => { println!("{}", count); } } } ``` And compile and run it: ```text $ cargo build --release $ time ./target/release/csvtutor < worldcitiespop.csv 2176 real 0m0.572s user 0m0.513s sys 0m0.057s ``` This isn't as fast as some of our previous examples where we used the `csv` crate to read into a `StringRecord` or a `ByteRecord`. This is mostly because this example reads a field at a time, which incurs more overhead than reading a record at a time. To fix this, you would want to use the [`Reader::read_record`](../../csv_core/struct.Reader.html#method.read_record) method instead, which is defined on `csv_core::Reader`. The other thing to notice here is that the example is considerably longer than the other examples. This is because we need to do more book keeping to keep track of which field we're reading and how much data we've already fed to the reader. There are basically two reasons to use the `csv_core` crate: 1. If you're in an environment where the standard library is not usable. 2. If you wanted to build your own csv-like library, you could build it on top of `csv-core`. # Closing thoughts Congratulations on making it to the end! It seems incredible that one could write so many words on something as basic as CSV parsing. I wanted this guide to be accessible not only to Rust beginners, but to inexperienced programmers as well. My hope is that the large number of examples will help push you in the right direction. With that said, here are a few more things you might want to look at: * The [API documentation for the `csv` crate](../index.html) documents all facets of the library, and is itself littered with even more examples. * The [`csv-index` crate](https://docs.rs/csv-index) provides data structures that can index CSV data that are amenable to writing to disk. (This library is still a work in progress.) * The [`xsv` command line tool](https://github.com/BurntSushi/xsv) is a high performance CSV swiss army knife. It can slice, select, search, sort, join, concatenate, index, format and compute statistics on arbitrary CSV data. Give it a try! */ csv-1.3.0/src/writer.rs000064400000000000000000001371221046102023000130770ustar 00000000000000use std::{fs::File, io, path::Path, result}; use { csv_core::{ self, WriteResult, Writer as CoreWriter, WriterBuilder as CoreWriterBuilder, }, serde::Serialize, }; use crate::{ byte_record::ByteRecord, error::{Error, ErrorKind, IntoInnerError, Result}, serializer::{serialize, serialize_header}, {QuoteStyle, Terminator}, }; /// Builds a CSV writer with various configuration knobs. /// /// This builder can be used to tweak the field delimiter, record terminator /// and more. Once a CSV `Writer` is built, its configuration cannot be /// changed. #[derive(Debug)] pub struct WriterBuilder { builder: CoreWriterBuilder, capacity: usize, flexible: bool, has_headers: bool, } impl Default for WriterBuilder { fn default() -> WriterBuilder { WriterBuilder { builder: CoreWriterBuilder::default(), capacity: 8 * (1 << 10), flexible: false, has_headers: true, } } } impl WriterBuilder { /// Create a new builder for configuring CSV writing. /// /// To convert a builder into a writer, call one of the methods starting /// with `from_`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new().from_writer(vec![]); /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b,c\nx,y,z\n"); /// Ok(()) /// } /// ``` pub fn new() -> WriterBuilder { WriterBuilder::default() } /// Build a CSV writer from this configuration that writes data to the /// given file path. The file is truncated if it already exists. /// /// If there was a problem opening the file at the given path, then this /// returns the corresponding error. /// /// # Example /// /// ```no_run /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new().from_path("foo.csv")?; /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// wtr.flush()?; /// Ok(()) /// } /// ``` pub fn from_path>(&self, path: P) -> Result> { Ok(Writer::new(self, File::create(path)?)) } /// Build a CSV writer from this configuration that writes data to `wtr`. /// /// Note that the CSV writer is buffered automatically, so you should not /// wrap `wtr` in a buffered writer like `io::BufWriter`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new().from_writer(vec![]); /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b,c\nx,y,z\n"); /// Ok(()) /// } /// ``` pub fn from_writer(&self, wtr: W) -> Writer { Writer::new(self, wtr) } /// The field delimiter to use when writing CSV. /// /// The default is `b','`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .delimiter(b';') /// .from_writer(vec![]); /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a;b;c\nx;y;z\n"); /// Ok(()) /// } /// ``` pub fn delimiter(&mut self, delimiter: u8) -> &mut WriterBuilder { self.builder.delimiter(delimiter); self } /// Whether to write a header row before writing any other row. /// /// When this is enabled and the `serialize` method is used to write data /// with something that contains field names (i.e., a struct), then a /// header row is written containing the field names before any other row /// is written. /// /// This option has no effect when using other methods to write rows. That /// is, if you don't use `serialize`, then you must write your header row /// explicitly if you want a header row. /// /// This is enabled by default. /// /// # Example: with headers /// /// This shows how the header will be automatically written from the field /// names of a struct. /// /// ``` /// use std::error::Error; /// /// use csv::WriterBuilder; /// /// #[derive(serde::Serialize)] /// struct Row<'a> { /// city: &'a str, /// country: &'a str, /// // Serde allows us to name our headers exactly, /// // even if they don't match our struct field names. /// #[serde(rename = "popcount")] /// population: u64, /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new().from_writer(vec![]); /// wtr.serialize(Row { /// city: "Boston", /// country: "United States", /// population: 4628910, /// })?; /// wtr.serialize(Row { /// city: "Concord", /// country: "United States", /// population: 42695, /// })?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "\ /// city,country,popcount /// Boston,United States,4628910 /// Concord,United States,42695 /// "); /// Ok(()) /// } /// ``` /// /// # Example: without headers /// /// This shows that serializing things that aren't structs (in this case, /// a tuple struct) won't result in a header row being written. This means /// you usually don't need to set `has_headers(false)` unless you /// explicitly want to both write custom headers and serialize structs. /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new().from_writer(vec![]); /// wtr.serialize(("Boston", "United States", 4628910))?; /// wtr.serialize(("Concord", "United States", 42695))?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "\ /// Boston,United States,4628910 /// Concord,United States,42695 /// "); /// Ok(()) /// } /// ``` pub fn has_headers(&mut self, yes: bool) -> &mut WriterBuilder { self.has_headers = yes; self } /// Whether the number of fields in records is allowed to change or not. /// /// When disabled (which is the default), writing CSV data will return an /// error if a record is written with a number of fields different from the /// number of fields written in a previous record. /// /// When enabled, this error checking is turned off. /// /// # Example: writing flexible records /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .flexible(true) /// .from_writer(vec![]); /// wtr.write_record(&["a", "b"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b\nx,y,z\n"); /// Ok(()) /// } /// ``` /// /// # Example: error when `flexible` is disabled /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .flexible(false) /// .from_writer(vec![]); /// wtr.write_record(&["a", "b"])?; /// let err = wtr.write_record(&["x", "y", "z"]).unwrap_err(); /// match *err.kind() { /// csv::ErrorKind::UnequalLengths { expected_len, len, .. } => { /// assert_eq!(expected_len, 2); /// assert_eq!(len, 3); /// } /// ref wrong => { /// panic!("expected UnequalLengths but got {:?}", wrong); /// } /// } /// Ok(()) /// } /// ``` pub fn flexible(&mut self, yes: bool) -> &mut WriterBuilder { self.flexible = yes; self } /// The record terminator to use when writing CSV. /// /// A record terminator can be any single byte. The default is `\n`. /// /// Note that RFC 4180 specifies that record terminators should be `\r\n`. /// To use `\r\n`, use the special `Terminator::CRLF` value. /// /// # Example: CRLF /// /// This shows how to use RFC 4180 compliant record terminators. /// /// ``` /// use std::error::Error; /// use csv::{Terminator, WriterBuilder}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .terminator(Terminator::CRLF) /// .from_writer(vec![]); /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b,c\r\nx,y,z\r\n"); /// Ok(()) /// } /// ``` pub fn terminator(&mut self, term: Terminator) -> &mut WriterBuilder { self.builder.terminator(term.to_core()); self } /// The quoting style to use when writing CSV. /// /// By default, this is set to `QuoteStyle::Necessary`, which will only /// use quotes when they are necessary to preserve the integrity of data. /// /// Note that unless the quote style is set to `Never`, an empty field is /// quoted if it is the only field in a record. /// /// # Example: non-numeric quoting /// /// This shows how to quote non-numeric fields only. /// /// ``` /// use std::error::Error; /// use csv::{QuoteStyle, WriterBuilder}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .quote_style(QuoteStyle::NonNumeric) /// .from_writer(vec![]); /// wtr.write_record(&["a", "5", "c"])?; /// wtr.write_record(&["3.14", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "\"a\",5,\"c\"\n3.14,\"y\",\"z\"\n"); /// Ok(()) /// } /// ``` /// /// # Example: never quote /// /// This shows how the CSV writer can be made to never write quotes, even /// if it sacrifices the integrity of the data. /// /// ``` /// use std::error::Error; /// use csv::{QuoteStyle, WriterBuilder}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .quote_style(QuoteStyle::Never) /// .from_writer(vec![]); /// wtr.write_record(&["a", "foo\nbar", "c"])?; /// wtr.write_record(&["g\"h\"i", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,foo\nbar,c\ng\"h\"i,y,z\n"); /// Ok(()) /// } /// ``` pub fn quote_style(&mut self, style: QuoteStyle) -> &mut WriterBuilder { self.builder.quote_style(style.to_core()); self } /// The quote character to use when writing CSV. /// /// The default is `b'"'`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .quote(b'\'') /// .from_writer(vec![]); /// wtr.write_record(&["a", "foo\nbar", "c"])?; /// wtr.write_record(&["g'h'i", "y\"y\"y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,'foo\nbar',c\n'g''h''i',y\"y\"y,z\n"); /// Ok(()) /// } /// ``` pub fn quote(&mut self, quote: u8) -> &mut WriterBuilder { self.builder.quote(quote); self } /// Enable double quote escapes. /// /// This is enabled by default, but it may be disabled. When disabled, /// quotes in field data are escaped instead of doubled. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .double_quote(false) /// .from_writer(vec![]); /// wtr.write_record(&["a", "foo\"bar", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,\"foo\\\"bar\",c\nx,y,z\n"); /// Ok(()) /// } /// ``` pub fn double_quote(&mut self, yes: bool) -> &mut WriterBuilder { self.builder.double_quote(yes); self } /// The escape character to use when writing CSV. /// /// In some variants of CSV, quotes are escaped using a special escape /// character like `\` (instead of escaping quotes by doubling them). /// /// By default, writing these idiosyncratic escapes is disabled, and is /// only used when `double_quote` is disabled. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .double_quote(false) /// .escape(b'$') /// .from_writer(vec![]); /// wtr.write_record(&["a", "foo\"bar", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,\"foo$\"bar\",c\nx,y,z\n"); /// Ok(()) /// } /// ``` pub fn escape(&mut self, escape: u8) -> &mut WriterBuilder { self.builder.escape(escape); self } /// The comment character that will be used when later reading the file. /// /// If `quote_style` is set to `QuoteStyle::Necessary`, a field will /// be quoted if the comment character is detected anywhere in the field. /// /// The default value is None. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::WriterBuilder; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = /// WriterBuilder::new().comment(Some(b'#')).from_writer(Vec::new()); /// wtr.write_record(&["# comment", "another"]).unwrap(); /// let buf = wtr.into_inner().unwrap(); /// assert_eq!(String::from_utf8(buf).unwrap(), "\"# comment\",another\n"); /// Ok(()) /// } /// ``` pub fn comment(&mut self, comment: Option) -> &mut WriterBuilder { self.builder.comment(comment); self } /// Set the capacity (in bytes) of the internal buffer used in the CSV /// writer. This defaults to a reasonable setting. pub fn buffer_capacity(&mut self, capacity: usize) -> &mut WriterBuilder { self.capacity = capacity; self } } /// An already configured CSV writer. /// /// A CSV writer takes as input Rust values and writes those values in a valid /// CSV format as output. /// /// While CSV writing is considerably easier than parsing CSV, a proper writer /// will do a number of things for you: /// /// 1. Quote fields when necessary. /// 2. Check that all records have the same number of fields. /// 3. Write records with a single empty field correctly. /// 4. Automatically serialize normal Rust types to CSV records. When that /// type is a struct, a header row is automatically written corresponding /// to the fields of that struct. /// 5. Use buffering intelligently and otherwise avoid allocation. (This means /// that callers should not do their own buffering.) /// /// All of the above can be configured using a /// [`WriterBuilder`](struct.WriterBuilder.html). /// However, a `Writer` has a couple of convenience constructors (`from_path` /// and `from_writer`) that use the default configuration. /// /// Note that the default configuration of a `Writer` uses `\n` for record /// terminators instead of `\r\n` as specified by RFC 4180. Use the /// `terminator` method on `WriterBuilder` to set the terminator to `\r\n` if /// it's desired. #[derive(Debug)] pub struct Writer { core: CoreWriter, wtr: Option, buf: Buffer, state: WriterState, } #[derive(Debug)] struct WriterState { /// Whether the Serde serializer should attempt to write a header row. header: HeaderState, /// Whether inconsistent record lengths are allowed. flexible: bool, /// The number of fields written in the first record. This is compared /// with `fields_written` on all subsequent records to check for /// inconsistent record lengths. first_field_count: Option, /// The number of fields written in this record. This is used to report /// errors for inconsistent record lengths if `flexible` is disabled. fields_written: u64, /// This is set immediately before flushing the buffer and then unset /// immediately after flushing the buffer. This avoids flushing the buffer /// twice if the inner writer panics. panicked: bool, } /// HeaderState encodes a small state machine for handling header writes. #[derive(Debug)] enum HeaderState { /// Indicates that we should attempt to write a header. Write, /// Indicates that writing a header was attempted, and a header was written. DidWrite, /// Indicates that writing a header was attempted, but no headers were /// written or the attempt failed. DidNotWrite, /// This state is used when headers are disabled. It cannot transition /// to any other state. None, } /// A simple internal buffer for buffering writes. /// /// We need this because the `csv_core` APIs want to write into a `&mut [u8]`, /// which is not available with the `std::io::BufWriter` API. #[derive(Debug)] struct Buffer { /// The contents of the buffer. buf: Vec, /// The number of bytes written to the buffer. len: usize, } impl Drop for Writer { fn drop(&mut self) { if self.wtr.is_some() && !self.state.panicked { let _ = self.flush(); } } } impl Writer { /// Build a CSV writer with a default configuration that writes data to the /// given file path. The file is truncated if it already exists. /// /// If there was a problem opening the file at the given path, then this /// returns the corresponding error. /// /// # Example /// /// ```no_run /// use std::error::Error; /// use csv::Writer; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = Writer::from_path("foo.csv")?; /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// wtr.flush()?; /// Ok(()) /// } /// ``` pub fn from_path>(path: P) -> Result> { WriterBuilder::new().from_path(path) } } impl Writer { fn new(builder: &WriterBuilder, wtr: W) -> Writer { let header_state = if builder.has_headers { HeaderState::Write } else { HeaderState::None }; Writer { core: builder.builder.build(), wtr: Some(wtr), buf: Buffer { buf: vec![0; builder.capacity], len: 0 }, state: WriterState { header: header_state, flexible: builder.flexible, first_field_count: None, fields_written: 0, panicked: false, }, } } /// Build a CSV writer with a default configuration that writes data to /// `wtr`. /// /// Note that the CSV writer is buffered automatically, so you should not /// wrap `wtr` in a buffered writer like `io::BufWriter`. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Writer; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = Writer::from_writer(vec![]); /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b,c\nx,y,z\n"); /// Ok(()) /// } /// ``` pub fn from_writer(wtr: W) -> Writer { WriterBuilder::new().from_writer(wtr) } /// Serialize a single record using Serde. /// /// # Example /// /// This shows how to serialize normal Rust structs as CSV records. The /// fields of the struct are used to write a header row automatically. /// (Writing the header row automatically can be disabled by building the /// CSV writer with a [`WriterBuilder`](struct.WriterBuilder.html) and /// calling the `has_headers` method.) /// /// ``` /// use std::error::Error; /// /// use csv::Writer; /// /// #[derive(serde::Serialize)] /// struct Row<'a> { /// city: &'a str, /// country: &'a str, /// // Serde allows us to name our headers exactly, /// // even if they don't match our struct field names. /// #[serde(rename = "popcount")] /// population: u64, /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = Writer::from_writer(vec![]); /// wtr.serialize(Row { /// city: "Boston", /// country: "United States", /// population: 4628910, /// })?; /// wtr.serialize(Row { /// city: "Concord", /// country: "United States", /// population: 42695, /// })?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "\ /// city,country,popcount /// Boston,United States,4628910 /// Concord,United States,42695 /// "); /// Ok(()) /// } /// ``` /// /// # Rules /// /// The behavior of `serialize` is fairly simple: /// /// 1. Nested containers (tuples, `Vec`s, structs, etc.) are always /// flattened (depth-first order). /// /// 2. If `has_headers` is `true` and the type contains field names, then /// a header row is automatically generated. /// /// However, some container types cannot be serialized, and if /// `has_headers` is `true`, there are some additional restrictions on the /// types that can be serialized. See below for details. /// /// For the purpose of this section, Rust types can be divided into three /// categories: scalars, non-struct containers, and structs. /// /// ## Scalars /// /// Single values with no field names are written like the following. Note /// that some of the outputs may be quoted, according to the selected /// quoting style. /// /// | Name | Example Type | Example Value | Output | /// | ---- | ---- | ---- | ---- | /// | boolean | `bool` | `true` | `true` | /// | integers | `i8`, `i16`, `i32`, `i64`, `i128`, `u8`, `u16`, `u32`, `u64`, `u128` | `5` | `5` | /// | floats | `f32`, `f64` | `3.14` | `3.14` | /// | character | `char` | `'☃'` | `☃` | /// | string | `&str` | `"hi"` | `hi` | /// | bytes | `&[u8]` | `b"hi"[..]` | `hi` | /// | option | `Option` | `None` | *empty* | /// | option | | `Some(5)` | `5` | /// | unit | `()` | `()` | *empty* | /// | unit struct | `struct Foo;` | `Foo` | `Foo` | /// | unit enum variant | `enum E { A, B }` | `E::A` | `A` | /// | newtype struct | `struct Foo(u8);` | `Foo(5)` | `5` | /// | newtype enum variant | `enum E { A(u8) }` | `E::A(5)` | `5` | /// /// Note that this table includes simple structs and enums. For example, to /// serialize a field from either an integer or a float type, one can do /// this: /// /// ``` /// use std::error::Error; /// /// use csv::Writer; /// /// #[derive(serde::Serialize)] /// struct Row { /// label: String, /// value: Value, /// } /// /// #[derive(serde::Serialize)] /// enum Value { /// Integer(i64), /// Float(f64), /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = Writer::from_writer(vec![]); /// wtr.serialize(Row { /// label: "foo".to_string(), /// value: Value::Integer(3), /// })?; /// wtr.serialize(Row { /// label: "bar".to_string(), /// value: Value::Float(3.14), /// })?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "\ /// label,value /// foo,3 /// bar,3.14 /// "); /// Ok(()) /// } /// ``` /// /// ## Non-Struct Containers /// /// Nested containers are flattened to their scalar components, with the /// exception of a few types that are not allowed: /// /// | Name | Example Type | Example Value | Output | /// | ---- | ---- | ---- | ---- | /// | sequence | `Vec` | `vec![1, 2, 3]` | `1,2,3` | /// | tuple | `(u8, bool)` | `(5, true)` | `5,true` | /// | tuple struct | `Foo(u8, bool)` | `Foo(5, true)` | `5,true` | /// | tuple enum variant | `enum E { A(u8, bool) }` | `E::A(5, true)` | *error* | /// | struct enum variant | `enum E { V { a: u8, b: bool } }` | `E::V { a: 5, b: true }` | *error* | /// | map | `BTreeMap` | `BTreeMap::new()` | *error* | /// /// ## Structs /// /// Like the other containers, structs are flattened to their scalar /// components: /// /// | Name | Example Type | Example Value | Output | /// | ---- | ---- | ---- | ---- | /// | struct | `struct Foo { a: u8, b: bool }` | `Foo { a: 5, b: true }` | `5,true` | /// /// If `has_headers` is `false`, then there are no additional restrictions; /// types can be nested arbitrarily. For example: /// /// ``` /// use std::error::Error; /// /// use csv::WriterBuilder; /// /// #[derive(serde::Serialize)] /// struct Row { /// label: String, /// values: Vec, /// } /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = WriterBuilder::new() /// .has_headers(false) /// .from_writer(vec![]); /// wtr.serialize(Row { /// label: "foo".to_string(), /// values: vec![1.1234, 2.5678, 3.14], /// })?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "\ /// foo,1.1234,2.5678,3.14 /// "); /// Ok(()) /// } /// ``` /// /// However, if `has_headers` were enabled in the above example, then /// serialization would return an error. Specifically, when `has_headers` is /// `true`, there are two restrictions: /// /// 1. Named field values in structs must be scalars. /// /// 2. All scalars must be named field values in structs. /// /// Other than these two restrictions, types can be nested arbitrarily. /// Here are a few examples: /// /// | Value | Header | Record | /// | ---- | ---- | ---- | /// | `(Foo { x: 5, y: 6 }, Bar { z: true })` | `x,y,z` | `5,6,true` | /// | `vec![Foo { x: 5, y: 6 }, Foo { x: 7, y: 8 }]` | `x,y,x,y` | `5,6,7,8` | /// | `(Foo { x: 5, y: 6 }, vec![Bar { z: Baz(true) }])` | `x,y,z` | `5,6,true` | /// | `Foo { x: 5, y: (6, 7) }` | *error: restriction 1* | `5,6,7` | /// | `(5, Foo { x: 6, y: 7 }` | *error: restriction 2* | `5,6,7` | /// | `(Foo { x: 5, y: 6 }, true)` | *error: restriction 2* | `5,6,true` | pub fn serialize(&mut self, record: S) -> Result<()> { if let HeaderState::Write = self.state.header { let wrote_header = serialize_header(self, &record)?; if wrote_header { self.write_terminator()?; self.state.header = HeaderState::DidWrite; } else { self.state.header = HeaderState::DidNotWrite; }; } serialize(self, &record)?; self.write_terminator()?; Ok(()) } /// Write a single record. /// /// This method accepts something that can be turned into an iterator that /// yields elements that can be represented by a `&[u8]`. /// /// This may be called with an empty iterator, which will cause a record /// terminator to be written. If no fields had been written, then a single /// empty field is written before the terminator. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Writer; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = Writer::from_writer(vec![]); /// wtr.write_record(&["a", "b", "c"])?; /// wtr.write_record(&["x", "y", "z"])?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b,c\nx,y,z\n"); /// Ok(()) /// } /// ``` pub fn write_record(&mut self, record: I) -> Result<()> where I: IntoIterator, T: AsRef<[u8]>, { for field in record.into_iter() { self.write_field_impl(field)?; } self.write_terminator() } /// Write a single `ByteRecord`. /// /// This method accepts a borrowed `ByteRecord` and writes its contents /// to the underlying writer. /// /// This is similar to `write_record` except that it specifically requires /// a `ByteRecord`. This permits the writer to possibly write the record /// more quickly than the more generic `write_record`. /// /// This may be called with an empty record, which will cause a record /// terminator to be written. If no fields had been written, then a single /// empty field is written before the terminator. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::{ByteRecord, Writer}; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = Writer::from_writer(vec![]); /// wtr.write_byte_record(&ByteRecord::from(&["a", "b", "c"][..]))?; /// wtr.write_byte_record(&ByteRecord::from(&["x", "y", "z"][..]))?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b,c\nx,y,z\n"); /// Ok(()) /// } /// ``` #[inline(never)] pub fn write_byte_record(&mut self, record: &ByteRecord) -> Result<()> { if record.as_slice().is_empty() { return self.write_record(record); } // The idea here is to find a fast path for shuffling our record into // our buffer as quickly as possible. We do this because the underlying // "core" CSV writer does a lot of book-keeping to maintain its state // oriented API. // // The fast path occurs when we know our record will fit in whatever // space we have left in our buffer. We can actually quickly compute // the upper bound on the space required: let upper_bound = // The data itself plus the worst case: every byte is a quote. (2 * record.as_slice().len()) // The number of field delimiters. + (record.len().saturating_sub(1)) // The maximum number of quotes inserted around each field. + (2 * record.len()) // The maximum number of bytes for the terminator. + 2; if self.buf.writable().len() < upper_bound { return self.write_record(record); } let mut first = true; for field in record.iter() { if !first { self.buf.writable()[0] = self.core.get_delimiter(); self.buf.written(1); } first = false; if !self.core.should_quote(field) { self.buf.writable()[..field.len()].copy_from_slice(field); self.buf.written(field.len()); } else { self.buf.writable()[0] = self.core.get_quote(); self.buf.written(1); let (res, nin, nout) = csv_core::quote( field, self.buf.writable(), self.core.get_quote(), self.core.get_escape(), self.core.get_double_quote(), ); debug_assert!(res == WriteResult::InputEmpty); debug_assert!(nin == field.len()); self.buf.written(nout); self.buf.writable()[0] = self.core.get_quote(); self.buf.written(1); } } self.state.fields_written = record.len() as u64; self.write_terminator_into_buffer() } /// Write a single field. /// /// One should prefer using `write_record` over this method. It is provided /// for cases where writing a field at a time is more convenient than /// writing a record at a time. /// /// Note that if this API is used, `write_record` should be called with an /// empty iterator to write a record terminator. /// /// # Example /// /// ``` /// use std::error::Error; /// use csv::Writer; /// /// # fn main() { example().unwrap(); } /// fn example() -> Result<(), Box> { /// let mut wtr = Writer::from_writer(vec![]); /// wtr.write_field("a")?; /// wtr.write_field("b")?; /// wtr.write_field("c")?; /// wtr.write_record(None::<&[u8]>)?; /// wtr.write_field("x")?; /// wtr.write_field("y")?; /// wtr.write_field("z")?; /// wtr.write_record(None::<&[u8]>)?; /// /// let data = String::from_utf8(wtr.into_inner()?)?; /// assert_eq!(data, "a,b,c\nx,y,z\n"); /// Ok(()) /// } /// ``` pub fn write_field>(&mut self, field: T) -> Result<()> { self.write_field_impl(field) } /// Implementation of write_field. /// /// This is a separate method so we can force the compiler to inline it /// into write_record. #[inline(always)] fn write_field_impl>(&mut self, field: T) -> Result<()> { if self.state.fields_written > 0 { self.write_delimiter()?; } let mut field = field.as_ref(); loop { let (res, nin, nout) = self.core.field(field, self.buf.writable()); field = &field[nin..]; self.buf.written(nout); match res { WriteResult::InputEmpty => { self.state.fields_written += 1; return Ok(()); } WriteResult::OutputFull => self.flush_buf()?, } } } /// Flush the contents of the internal buffer to the underlying writer. /// /// If there was a problem writing to the underlying writer, then an error /// is returned. /// /// Note that this also flushes the underlying writer. pub fn flush(&mut self) -> io::Result<()> { self.flush_buf()?; self.wtr.as_mut().unwrap().flush()?; Ok(()) } /// Flush the contents of the internal buffer to the underlying writer, /// without flushing the underlying writer. fn flush_buf(&mut self) -> io::Result<()> { self.state.panicked = true; let result = self.wtr.as_mut().unwrap().write_all(self.buf.readable()); self.state.panicked = false; result?; self.buf.clear(); Ok(()) } /// Return a reference to the underlying writer. pub fn get_ref(&self) -> &W { self.wtr.as_ref().unwrap() } /// Flush the contents of the internal buffer and return the underlying /// writer. pub fn into_inner( mut self, ) -> result::Result>> { match self.flush() { Ok(()) => Ok(self.wtr.take().unwrap()), Err(err) => Err(IntoInnerError::new(self, err)), } } /// Write a CSV delimiter. fn write_delimiter(&mut self) -> Result<()> { loop { let (res, nout) = self.core.delimiter(self.buf.writable()); self.buf.written(nout); match res { WriteResult::InputEmpty => return Ok(()), WriteResult::OutputFull => self.flush_buf()?, } } } /// Write a CSV terminator. fn write_terminator(&mut self) -> Result<()> { self.check_field_count()?; loop { let (res, nout) = self.core.terminator(self.buf.writable()); self.buf.written(nout); match res { WriteResult::InputEmpty => { self.state.fields_written = 0; return Ok(()); } WriteResult::OutputFull => self.flush_buf()?, } } } /// Write a CSV terminator that is guaranteed to fit into the current /// buffer. #[inline(never)] fn write_terminator_into_buffer(&mut self) -> Result<()> { self.check_field_count()?; match self.core.get_terminator() { csv_core::Terminator::CRLF => { self.buf.writable()[0] = b'\r'; self.buf.writable()[1] = b'\n'; self.buf.written(2); } csv_core::Terminator::Any(b) => { self.buf.writable()[0] = b; self.buf.written(1); } _ => unreachable!(), } self.state.fields_written = 0; Ok(()) } fn check_field_count(&mut self) -> Result<()> { if !self.state.flexible { match self.state.first_field_count { None => { self.state.first_field_count = Some(self.state.fields_written); } Some(expected) if expected != self.state.fields_written => { return Err(Error::new(ErrorKind::UnequalLengths { pos: None, expected_len: expected, len: self.state.fields_written, })) } Some(_) => {} } } Ok(()) } } impl Buffer { /// Returns a slice of the buffer's current contents. /// /// The slice returned may be empty. #[inline] fn readable(&self) -> &[u8] { &self.buf[..self.len] } /// Returns a mutable slice of the remaining space in this buffer. /// /// The slice returned may be empty. #[inline] fn writable(&mut self) -> &mut [u8] { &mut self.buf[self.len..] } /// Indicates that `n` bytes have been written to this buffer. #[inline] fn written(&mut self, n: usize) { self.len += n; } /// Clear the buffer. #[inline] fn clear(&mut self) { self.len = 0; } } #[cfg(test)] mod tests { use std::io::{self, Write}; use serde::{serde_if_integer128, Serialize}; use crate::{ byte_record::ByteRecord, error::ErrorKind, string_record::StringRecord, }; use super::{Writer, WriterBuilder}; fn wtr_as_string(wtr: Writer>) -> String { String::from_utf8(wtr.into_inner().unwrap()).unwrap() } #[test] fn one_record() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_record(&["a", "b", "c"]).unwrap(); assert_eq!(wtr_as_string(wtr), "a,b,c\n"); } #[test] fn one_string_record() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_record(&StringRecord::from(vec!["a", "b", "c"])).unwrap(); assert_eq!(wtr_as_string(wtr), "a,b,c\n"); } #[test] fn one_byte_record() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_record(&ByteRecord::from(vec!["a", "b", "c"])).unwrap(); assert_eq!(wtr_as_string(wtr), "a,b,c\n"); } #[test] fn raw_one_byte_record() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_byte_record(&ByteRecord::from(vec!["a", "b", "c"])).unwrap(); assert_eq!(wtr_as_string(wtr), "a,b,c\n"); } #[test] fn one_empty_record() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_record(&[""]).unwrap(); assert_eq!(wtr_as_string(wtr), "\"\"\n"); } #[test] fn raw_one_empty_record() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_byte_record(&ByteRecord::from(vec![""])).unwrap(); assert_eq!(wtr_as_string(wtr), "\"\"\n"); } #[test] fn two_empty_records() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_record(&[""]).unwrap(); wtr.write_record(&[""]).unwrap(); assert_eq!(wtr_as_string(wtr), "\"\"\n\"\"\n"); } #[test] fn raw_two_empty_records() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_byte_record(&ByteRecord::from(vec![""])).unwrap(); wtr.write_byte_record(&ByteRecord::from(vec![""])).unwrap(); assert_eq!(wtr_as_string(wtr), "\"\"\n\"\"\n"); } #[test] fn unequal_records_bad() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_record(&ByteRecord::from(vec!["a", "b", "c"])).unwrap(); let err = wtr.write_record(&ByteRecord::from(vec!["a"])).unwrap_err(); match *err.kind() { ErrorKind::UnequalLengths { ref pos, expected_len, len } => { assert!(pos.is_none()); assert_eq!(expected_len, 3); assert_eq!(len, 1); } ref x => { panic!("expected UnequalLengths error, but got '{:?}'", x); } } } #[test] fn raw_unequal_records_bad() { let mut wtr = WriterBuilder::new().from_writer(vec![]); wtr.write_byte_record(&ByteRecord::from(vec!["a", "b", "c"])).unwrap(); let err = wtr.write_byte_record(&ByteRecord::from(vec!["a"])).unwrap_err(); match *err.kind() { ErrorKind::UnequalLengths { ref pos, expected_len, len } => { assert!(pos.is_none()); assert_eq!(expected_len, 3); assert_eq!(len, 1); } ref x => { panic!("expected UnequalLengths error, but got '{:?}'", x); } } } #[test] fn unequal_records_ok() { let mut wtr = WriterBuilder::new().flexible(true).from_writer(vec![]); wtr.write_record(&ByteRecord::from(vec!["a", "b", "c"])).unwrap(); wtr.write_record(&ByteRecord::from(vec!["a"])).unwrap(); assert_eq!(wtr_as_string(wtr), "a,b,c\na\n"); } #[test] fn raw_unequal_records_ok() { let mut wtr = WriterBuilder::new().flexible(true).from_writer(vec![]); wtr.write_byte_record(&ByteRecord::from(vec!["a", "b", "c"])).unwrap(); wtr.write_byte_record(&ByteRecord::from(vec!["a"])).unwrap(); assert_eq!(wtr_as_string(wtr), "a,b,c\na\n"); } #[test] fn full_buffer_should_not_flush_underlying() { struct MarkWriteAndFlush(Vec); impl MarkWriteAndFlush { fn to_str(self) -> String { String::from_utf8(self.0).unwrap() } } impl Write for MarkWriteAndFlush { fn write(&mut self, data: &[u8]) -> io::Result { self.0.write(b">")?; let written = self.0.write(data)?; self.0.write(b"<")?; Ok(written) } fn flush(&mut self) -> io::Result<()> { self.0.write(b"!")?; Ok(()) } } let underlying = MarkWriteAndFlush(vec![]); let mut wtr = WriterBuilder::new().buffer_capacity(4).from_writer(underlying); wtr.write_byte_record(&ByteRecord::from(vec!["a", "b"])).unwrap(); wtr.write_byte_record(&ByteRecord::from(vec!["c", "d"])).unwrap(); wtr.flush().unwrap(); wtr.write_byte_record(&ByteRecord::from(vec!["e", "f"])).unwrap(); let got = wtr.into_inner().unwrap().to_str(); // As the buffer size is 4 we should write each record separately, and // flush when explicitly called and implictly in into_inner. assert_eq!(got, ">a,b\n<>c,d\ne,f\n")); } #[test] fn tutorial_error_03() { let mut cmd = cmd_for_example("tutorial-error-03"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); } #[test] fn tutorial_error_03_errored() { let data = "\ header1,header2 foo,bar quux,baz,foobar "; let mut cmd = cmd_for_example("tutorial-error-03"); let out = cmd_output_with(&mut cmd, data.as_bytes()); assert!(out.stdout_failed().contains("CSV error:")); } #[test] fn tutorial_error_04() { let mut cmd = cmd_for_example("tutorial-error-04"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); } #[test] fn tutorial_error_04_errored() { let data = "\ header1,header2 foo,bar quux,baz,foobar "; let mut cmd = cmd_for_example("tutorial-error-04"); let out = cmd_output_with(&mut cmd, data.as_bytes()); assert!(out.stdout_failed().contains("CSV error:")); } #[test] fn tutorial_read_01() { let mut cmd = cmd_for_example("tutorial-read-01"); cmd.arg(data_dir().join("uspop.csv")); let out = cmd_output(&mut cmd); assert_eq!(out.stdout().lines().count(), 100); } #[test] fn tutorial_read_headers_01() { let mut cmd = cmd_for_example("tutorial-read-headers-01"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 101); } #[test] fn tutorial_read_headers_02() { let mut cmd = cmd_for_example("tutorial-read-headers-02"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 102); } #[test] fn tutorial_read_delimiter_01() { let mut cmd = cmd_for_example("tutorial-read-delimiter-01"); let out = cmd_output_with(&mut cmd, STRANGE.as_bytes()); assert_eq!(out.stdout().lines().count(), 6); } #[test] fn tutorial_read_serde_01() { let mut cmd = cmd_for_example("tutorial-read-serde-01"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); assert!(out.stdout().lines().all(|x| x.contains("pop:"))); } #[test] fn tutorial_read_serde_02() { let mut cmd = cmd_for_example("tutorial-read-serde-02"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); assert!(out.stdout().lines().all(|x| x.starts_with("("))); } #[test] fn tutorial_read_serde_03() { let mut cmd = cmd_for_example("tutorial-read-serde-03"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); assert!(out.stdout().lines().all(|x| x.contains("\"City\":"))); } #[test] fn tutorial_read_serde_04() { let mut cmd = cmd_for_example("tutorial-read-serde-04"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); assert!(out.stdout().lines().all(|x| x.starts_with("Record { latitude:"))); } #[test] fn tutorial_read_serde_05_invalid() { let mut cmd = cmd_for_example("tutorial-read-serde-invalid-01"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); assert!(out.stdout().lines().all(|x| x.starts_with("Record { latitude:"))); } #[test] fn tutorial_read_serde_05_invalid_errored() { let mut cmd = cmd_for_example("tutorial-read-serde-invalid-01"); let out = cmd_output_with(&mut cmd, USPOP_NULL.as_bytes()); assert!(out.stdout_failed().contains("CSV deserialize error:")); } #[test] fn tutorial_read_serde_invalid_06() { let mut cmd = cmd_for_example("tutorial-read-serde-invalid-02"); let out = cmd_output_with(&mut cmd, USPOP_NULL.as_bytes()); assert_eq!(out.stdout().lines().count(), 100); assert!(out.stdout().lines().all(|x| x.starts_with("Record { latitude:"))); } #[test] fn tutorial_write_01() { let mut cmd = cmd_for_example("tutorial-write-01"); let out = cmd_output(&mut cmd); assert_eq!(out.stdout().lines().count(), 4); } #[test] fn tutorial_write_delimiter_01() { let mut cmd = cmd_for_example("tutorial-write-delimiter-01"); let out = cmd_output(&mut cmd); assert_eq!(out.stdout().lines().count(), 4); assert!(out.stdout().lines().all(|x| x.contains('\t'))); } #[test] fn tutorial_write_serde_01() { let mut cmd = cmd_for_example("tutorial-write-serde-01"); let out = cmd_output(&mut cmd); assert_eq!(out.stdout().lines().count(), 4); } #[test] fn tutorial_write_serde_02() { let mut cmd = cmd_for_example("tutorial-write-serde-02"); let out = cmd_output(&mut cmd); assert_eq!(out.stdout().lines().count(), 4); } #[test] fn tutorial_pipeline_search_01() { let mut cmd = cmd_for_example("tutorial-pipeline-search-01"); cmd.arg("MA"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 2); } #[test] fn tutorial_pipeline_search_01_errored() { let mut cmd = cmd_for_example("tutorial-pipeline-search-01"); cmd.arg("MA"); let out = cmd_output_with(&mut cmd, USPOP_LATIN1); assert!(out.stdout_failed().contains("invalid utf-8")); } #[test] fn tutorial_pipeline_search_02() { let mut cmd = cmd_for_example("tutorial-pipeline-search-02"); cmd.arg("MA"); let out = cmd_output_with(&mut cmd, USPOP_LATIN1); assert_eq!(out.stdout().lines().count(), 2); } #[test] fn tutorial_pipeline_pop_01() { let mut cmd = cmd_for_example("tutorial-pipeline-pop-01"); cmd.arg("100000"); let out = cmd_output_with(&mut cmd, USPOP.as_bytes()); assert_eq!(out.stdout().lines().count(), 4); } #[test] fn tutorial_perf_alloc_01() { let mut cmd = cmd_for_example("tutorial-perf-alloc-01"); let out = cmd_output_with(&mut cmd, WORLDPOP.as_bytes()); assert_eq!(out.stdout(), "11\n"); } #[test] fn tutorial_perf_alloc_02() { let mut cmd = cmd_for_example("tutorial-perf-alloc-02"); let out = cmd_output_with(&mut cmd, WORLDPOP.as_bytes()); assert_eq!(out.stdout(), "11\n"); } #[test] fn tutorial_perf_alloc_03() { let mut cmd = cmd_for_example("tutorial-perf-alloc-03"); let out = cmd_output_with(&mut cmd, WORLDPOP.as_bytes()); assert_eq!(out.stdout(), "11\n"); } #[test] fn tutorial_perf_serde_01() { let mut cmd = cmd_for_example("tutorial-perf-serde-01"); let out = cmd_output_with(&mut cmd, WORLDPOP.as_bytes()); assert_eq!(out.stdout(), "11\n"); } #[test] fn tutorial_perf_serde_02() { let mut cmd = cmd_for_example("tutorial-perf-serde-02"); let out = cmd_output_with(&mut cmd, WORLDPOP.as_bytes()); assert_eq!(out.stdout(), "11\n"); } #[test] fn tutorial_perf_serde_03() { let mut cmd = cmd_for_example("tutorial-perf-serde-03"); let out = cmd_output_with(&mut cmd, WORLDPOP.as_bytes()); assert_eq!(out.stdout(), "11\n"); } #[test] fn tutorial_perf_core_01() { let mut cmd = cmd_for_example("tutorial-perf-core-01"); let out = cmd_output_with(&mut cmd, WORLDPOP.as_bytes()); assert_eq!(out.stdout(), "11\n"); } #[test] fn no_infinite_loop_on_io_errors() { struct FailingRead; impl Read for FailingRead { fn read(&mut self, _buf: &mut [u8]) -> io::Result { Err(io::Error::new(io::ErrorKind::Other, "Broken reader")) } } let mut record_results = Reader::from_reader(FailingRead).into_records(); let first_result = record_results.next(); assert!( matches!(&first_result, Some(Err(e)) if matches!(e.kind(), csv::ErrorKind::Io(_))) ); assert!(record_results.next().is_none()); } // Helper functions follow. /// Return the target/debug directory path. fn debug_dir() -> PathBuf { env::current_exe() .expect("test binary path") .parent() .expect("test binary directory") .parent() .expect("example binary directory") .to_path_buf() } /// Return the directory containing the example test binaries. fn example_bin_dir() -> PathBuf { debug_dir().join("examples") } /// Return the repo root directory path. fn repo_dir() -> PathBuf { PathBuf::from(env!("CARGO_MANIFEST_DIR")) } /// Return the directory containing the example data. fn data_dir() -> PathBuf { repo_dir().join("examples").join("data") } /// Return a command ready to execute the given example test binary. /// /// The command's current directory is set to the repo root. fn cmd_for_example(name: &str) -> Command { let mut cmd = Command::new(example_bin_dir().join(name)); cmd.current_dir(repo_dir()); cmd } /// Return the (stdout, stderr) of running the command as a string. /// /// If the command has a non-zero exit code, then this function panics. fn cmd_output(cmd: &mut Command) -> Output { cmd.stdout(process::Stdio::piped()); cmd.stderr(process::Stdio::piped()); let child = cmd.spawn().expect("command spawns successfully"); Output::new(cmd, child) } /// Like cmd_output, but sends the given data as stdin to the given child. fn cmd_output_with(cmd: &mut Command, data: &[u8]) -> Output { cmd.stdin(process::Stdio::piped()); cmd.stdout(process::Stdio::piped()); cmd.stderr(process::Stdio::piped()); let mut child = cmd.spawn().expect("command spawns successfully"); { let stdin = child.stdin.as_mut().expect("failed to get stdin"); stdin.write_all(data).expect("failed to write to stdin"); } Output::new(cmd, child) } struct Output { stdout: String, stderr: String, command: String, status: process::ExitStatus, } impl Output { /// Return the (stdout, stderr) of running the given child as a string. /// /// If the command has a non-zero exit code, then this function panics. fn new(cmd: &mut Command, child: process::Child) -> Output { let out = child.wait_with_output().expect("command runs successfully"); let stdout = String::from_utf8(out.stdout).expect("valid utf-8 (stdout)"); let stderr = String::from_utf8(out.stderr).expect("valid utf-8 (stderr)"); Output { stdout: stdout, stderr: stderr, command: format!("{:?}", cmd), status: out.status, } } fn stdout(&self) -> &str { if !self.status.success() { panic!( "\n\n==== {:?} ====\n\ command failed but expected success!\ \n\ncwd: {}\ \n\nstatus: {}\ \n\nstdout: {}\ \n\nstderr: {}\ \n\n=====\n", self.command, repo_dir().display(), self.status, self.stdout, self.stderr ); } &self.stdout } fn stdout_failed(&self) -> &str { if self.status.success() { panic!( "\n\n==== {:?} ====\n\ command succeeded but expected failure!\ \n\ncwd: {}\ \n\nstatus: {}\ \n\nstdout: {}\ \n\nstderr: {}\ \n\n=====\n", self.command, repo_dir().display(), self.status, self.stdout, self.stderr ); } &self.stdout } fn stderr(&self) -> &str { if self.status.success() { panic!( "\n\n==== {:?} ====\n\ command succeeded but expected failure!\ \n\ncwd: {}\ \n\nstatus: {}\ \n\nstdout: {}\ \n\nstderr: {}\ \n\n=====\n", self.command, repo_dir().display(), self.status, self.stdout, self.stderr ); } &self.stderr } } /// Consume the reader given into a string. fn read_to_string(mut rdr: R) -> String { let mut s = String::new(); rdr.read_to_string(&mut s).unwrap(); s }