diff --git a/06 - Type Ahead/README.md b/06 - Type Ahead/README.md
index 38845b5..93949aa 100644
--- a/06 - Type Ahead/README.md
+++ b/06 - Type Ahead/README.md
@@ -1,68 +1,68 @@
-# 06 Fetch 结合 filter 实现快速匹配古诗
+# 06 Fetch 結合 filter 實現快速匹配古詩
-> 作者:©[缉熙Soyaine](https://github.com/soyaine)
-> 简介:[JavaScript30](https://javascript30.com) 是 [Wes Bos](https://github.com/wesbos) 推出的一个 30 天挑战。项目免费提供了 30 个视频教程、30 个挑战的起始文档和 30 个挑战解决方案源代码。目的是帮助人们用纯 JavaScript 来写东西,不借助框架和库,也不使用编译器和引用。现在你看到的是这系列指南的第 6 篇。完整指南在 [GitHub](https://github.com/soyaine/JavaScript30),喜欢请 Star 哦♪(^∇^*)
+> 作者:©[緝熙Soyaine](https://github.com/soyaine)
+> 簡介:[JavaScript30](https://javascript30.com) 是 [Wes Bos](https://github.com/wesbos) 推出的一個 30 天挑戰。專案免費提供了 30 個視頻教程、30 個挑戰的起始文檔和 30 個挑戰解決方案原始程式碼。目的是説明人們用純 JavaScript 來寫東西,不借助框架和庫,也不使用編譯器和引用。現在你看到的是這系列指南的第 6 篇。完整指南在 [GitHub](https://github.com/soyaine/JavaScript30),喜歡請 Star 哦♪(^∇^*)
-## 实现效果
+## 實現效果
-
+
-在输入框中输入一个词,迅速匹配,展示含有这个词的诗句,诗句的来源 json 数据是加载页面时从网络中异步获得。[在线效果请查看。](http://soyaine.cn/JavaScript30/06%20-%20Type%20Ahead/index-SOYAINE.html)
+在輸入框中輸入一個詞,迅速匹配,展示含有這個詞的詩句,詩句的來源 json 資料是載入頁面時從網路中非同步獲得。[線上效果請查看。](http://soyaine.cn/JavaScript30/06%20-%20Type%20Ahead/index-SOYAINE.html)
-初始文档中提供了 HTML 和 CSS,我们需要补全 JS 代码。这个挑战是 Ajax 的预热练习,在异步方面用到了一些目前还未被完全支持的新特性,但很好用。
+初始文檔中提供了 HTML 和 CSS,我們需要補全 JS 代碼。這個挑戰是 Ajax 的預熱練習,在非同步方面用到了一些目前還未被完全支持的新特性,但很好用。
-原文档中选的内容是英文城市名,我将其换成了唐诗,构造了一个含有 70 多首唐诗的 JSON 数据,访问地址是 [https://gist.githubusercontent.com/soyaine/81399bb2b24ca1bb5313e1985533c640/raw/bdf7df2cbcf70706c4a5e51a7dfb8c933ed78878/TangPoetry.json](https://gist.githubusercontent.com/soyaine/81399bb2b24ca1bb5313e1985533c640/raw/bdf7df2cbcf70706c4a5e51a7dfb8c933ed78878/TangPoetry.json),请自由取用。
+原文檔中選的內容是英文城市名,我將其換成了唐詩,構造了一個含有 70 多首唐詩的 JSON 資料,訪問位址是 [https://gist.githubusercontent.com/soyaine/81399bb2b24ca1bb5313e1985533c640/raw/bdf7df2cbcf70706c4a5e51a7dfb8c933ed78878/TangPoetry.json](https://gist.githubusercontent.com/soyaine/81399bb2b24ca1bb5313e1985533c640/raw/bdf7df2cbcf70706c4a5e51a7dfb8c933ed78878/TangPoetry.json),請自由取用。
## 涉及特性
- Promise
- - `fetch()`
- - `then()`
- - `json()`
+ - `fetch()`
+ - `then()`
+ - `json()`
- Array
- - `filter()`
- - `map()`
- - `push()`
- - `join()`
- - Spread syntax 扩展语句
+ - `filter()`
+ - `map()`
+ - `push()`
+ - `join()`
+ - Spread syntax 擴展語句
- RegExp
- - `match()`
- - `replace()`
-
-## 过程指南
-
-1. 声明一个空数组,用于存放解析 json 后的数据
-2. 运用 `fetch()` 发送 HTTP 请求
- 1. 获取返回的 Promise 对象
- 2. 解析 JSON 数据
- 3. 存入数组
-3. 获取两个主要 HTML 元素(``,`
`),给 `` 添加事件监听(`change`, `keyup`)
-4. 编写匹配输入的函数
- 1. 运用 `filter()` 过滤数组数据
- 2. 创建正则表达式,构造过滤条件
-5. 编写展示匹配结果的函数
- 1. 获取匹配数据
- 2. 替换关键词放入高亮的标签
- 3. 构造 HTML 标签数据
- 4. 将匹配值的 HTML 标签放入 `` 中
-
-## 相关知识
+ - `match()`
+ - `replace()`
+
+## 過程指南
+
+1. 聲明一個空陣列,用於存放解析 json 後的資料
+2. 運用 `fetch()` 發送 HTTP 請求
+ 1. 獲取返回的 Promise 對象
+ 2. 解析 JSON 數據
+ 3. 存入陣列
+3. 獲取兩個主要 HTML 元素(``,``),給 `` 添加事件監聽(`change`, `keyup`)
+4. 編寫匹配輸入的函數
+ 1. 運用 `filter()` 過濾陣列資料
+ 2. 創建規則運算式,構造過濾條件
+5. 編寫展示匹配結果的函數
+ 1. 獲取匹配資料
+ 2. 替換關鍵字放入高亮的標籤
+ 3. 構造 HTML 標籤數據
+ 4. 將匹配值的 HTML 標籤放入 `` 中
+
+## 相關知識
### [Fetch API](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API)
-Fetch API 这个新特性,是 XMLHttpRequest 获取资源新的替代方案,目前还是一个实验中的功能,截至到 2017.01.01 在 MDN 显示的支持情况是:Chrome 42.0、Firefox (Gecko) 39、Opera 29、Chrome for Android 42.0、Android Webview。如何使用可以看[这篇文章](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch)。
+Fetch API 這個新特性,是 XMLHttpRequest 獲取資源新的替代方案,目前還是一個實驗中的功能,截至到 2017.01.01 在 MDN 顯示的支援情況是:Chrome 42.0、Firefox (Gecko) 39、Opera 29、Chrome for Android 42.0、Android Webview。如何使用可以看[這篇文章](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch)。
#### [fetch()](https://developer.mozilla.org/zh-CN/docs/Web/API/GlobalFetch/fetch)
-Fetch API 提供一个全局的方法 `fetch()`,这个方法(至少)需要接受 `资源的路径` 作为参数,返回值是一个 Promise 对象。若请求成功,这个对象包含了(对应 Request 的)Response,但这只是一个 HTTP 响应。
+Fetch API 提供一個全域的方法 `fetch()`,這個方法(至少)需要接受 `資源的路徑` 作為參數,返回值是一個 Promise 物件。若請求成功,這個物件包含了(對應 Request 的)Response,但這只是一個 HTTP 響應。
-语法如下:
+語法如下:
```js
fetch(input, init).then(function(response) { ... });
```
-MDN 中有个[发送基本的 fetch 请求的示例](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch#发起_fetch_请求)如下:
+MDN 中有個[發送基本的 fetch 請求的示例](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch#發起_fetch_請求)如下:
```js
var myImage = document.querySelector('img');
@@ -77,31 +77,31 @@ MDN 中有个[发送基本的 fetch 请求的示例](https://developer.mozilla.o
});
```
-用 ES6 的语法来写就是这样:
+用 ES6 的語法來寫就是這樣:
```js
const myImage = document.querySelector('img');
fetch('flowers.jpg')
.then(response => response.blob())
- .then(myBlob => {
- const objectURL = URL.createObjectURL(myBlob);
- myImage.src = objectURL;
- });
+ .then(myBlob => {
+ const objectURL = URL.createObjectURL(myBlob);
+ myImage.src = objectURL;
+ });
```
-这个示例中使用了 `blob()` 方法来获取图片的内容,这是 Body 类定义的一个方法,除此之外还有可以获取其他内容的方法,可以[在这里看](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch#Body),也可以在 Console 面板中查看:
+這個示例中使用了 `blob()` 方法來獲取圖片的內容,這是 Body 類定義的一個方法,除此之外還有可以獲取其他內容的方法,可以[在這裡看](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch#Body),也可以在 Console 面板中查看:
-
+
-在这个挑战中,我们主要是利用 `.json()`,以使用 JSON 对象来读取 Response 流中的数据,读取之后,Body 的 body.Uesd 属性值会变为已读。另外较为常用的方法还有:`blob()`、`text()`、`arrayBuffer()`、`formData()`。
+在這個挑戰中,我們主要是利用 `.json()`,以使用 JSON 物件來讀取 Response 流中的資料,讀取之後,Body 的 body.Uesd 屬性值會變為已讀。另外較為常用的方法還有:`blob()`、`text()`、`arrayBuffer()`、`formData()`。
-### [ES6 中的数组扩展语法](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator)
+### [ES6 中的陣列擴展語法](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator)
-利用扩展运算符可以[替代 ES5 中的 `push` 方法添加一个数组到另一个数组末尾](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Spread_operator#更好的_push_方法),两种语法的写法如下:
+利用擴展運算子可以[替代 ES5 中的 `push` 方法添加一個陣列到另一個陣列末尾](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Spread_operator#更好的_push_方法),兩種語法的寫法如下:
```js
-// 将arr2中的所有元素添加到arr1中
+// 將arr2中的所有元素添加到arr1中
// ES5
var arr1 = [0, 1, 2];
@@ -114,28 +114,27 @@ var arr2 = [3, 4, 5];
arr1.push(...arr2);
```
-### 此挑战中如何异步获取数据并解析
+### 此挑戰中如何非同步獲取資料並解析
-这一部分用到的语句很简单,但都用了 ES6 的语法,所以不熟悉 ES6 的话需要时间适应一下。
+這一部分用到的語句很簡單,但都用了 ES6 的語法,所以不熟悉 ES6 的話需要時間適應一下。
````js
const endpoint = 'https://raw.githubusercontent.com/soyaine/FE-Practice/f438d3bdf099461f88322b1b1f20c9d58f66f1ec/TangPoetryCut.json';
const poetrys = [];
fetch(endpoint)
- .then(blob => blob.json())
- .then(data => poetrys.push(...data));
+ .then(blob => blob.json())
+ .then(data => poetrys.push(...data));
````
-如果把每条语句分解开来运行,得到的返回结果可以看下面的截图。
+如果把每條語句分解開來運行,得到的返回結果可以看下面的截圖。

-### 正则表达式
-
-获取到了数据之后,如何匹配输入值呢?就要利用正则表达式了。正则表达式的 `match()` 可以执行一个匹配操作,我们再结合 `Array.filter()` 便能筛出整个数组中,满足条件的项,再经过字符串处理即可输出到页面。
+### 規則運算式
-> 这篇我写了很久也写不满意,如果你能读到这里,说明你对实现的效果有兴趣,如果你觉得有什么地方我写得不清楚,或者我遗漏了什么,请告诉我。我一直在思考和调整,用什么样的方式去写会比较容易看懂,万分期待和感恩能有读者反馈 soyaine1@gmail。
+獲取到了資料之後,如何匹配輸入值呢?就要利用規則運算式了。規則運算式的 `match()` 可以執行一個匹配操作,我們再結合 `Array.filter()` 便能篩出整個陣列中,滿足條件的項,再經過字串處理即可輸出到頁面。
+> 這篇我寫了很久也寫不滿意,如果你能讀到這裡,說明你對實現的效果有興趣,如果你覺得有什麼地方我寫得不清楚,或者我遺漏了什麼,請告訴我。我一直在思考和調整,用什麼樣的方式去寫會比較容易看懂,萬分期待和感恩能有讀者回饋 soyaine1@gmail。
-> 创建时间:2016-12-31
-> 最后更新:2017-01-03
\ No newline at end of file
+> 創建時間:2016-12-31
+> 最後更新:2017-01-03
diff --git a/06 - Type Ahead/TangPoetry.json b/06 - Type Ahead/TangPoetry.json
new file mode 100644
index 0000000..4e29a56
--- /dev/null
+++ b/06 - Type Ahead/TangPoetry.json
@@ -0,0 +1,1734 @@
+[
+ {
+ "detail_text": "寥落古行宮,宮花寂寞紅。白頭宮女在,閑坐說玄宗。",
+ "title": "行宮",
+ "detail_translate_text": [
+ "譯文",
+ "空曠冷落的古舊行宮,只有宮花寂寞地豔紅。",
+ "幾個滿頭白髮的宮女,閑坐無事談論唐玄宗。",
+ "注釋",
+ "(1)寥(liáo)落:寂寞冷落。",
+ "(2)行宮:皇帝在京城之外的宮殿。這裡指當時東都洛陽的皇帝行宮上陽宮。",
+ "(3)宮花:行宮裡的花。",
+ "(4)白頭宮女:據白居易《上陽白髮人》,一些宮女天寶末年被“潛配”到上陽宮,在這冷宮裡一閉四十多年,成了白髮宮人。",
+ "(5)說:談論。",
+ "(6)玄宗:指唐玄宗。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "元稹"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 元稹生活在中唐年代,正值唐朝經歷過安史之亂不久,國力的各個方面都在走下坡路之時。該詩就是以小見大地點明了唐朝衰敗的重要原因。"
+ ]
+ },
+ {
+ "detail_text": "白日依山盡,黃河入海流。欲窮千里目,更上一層樓。",
+ "title": "登鸛雀樓",
+ "detail_translate_text": [
+ "譯文",
+ "夕陽依傍著西山慢慢地沉沒, 滔滔黃河朝著東海洶湧奔流。",
+ "若想把千里的風光景物看夠, 那就要登上更高的一層城樓。 ",
+ "注釋",
+ "1.鸛雀樓:舊址在山西永濟縣,樓高三層,前對中條山,下臨黃河。傳說常有鸛雀在此停留,故有此名。",
+ "2.白日:太陽。",
+ "3.依:依傍。",
+ "4.盡:消失。 這句話是說太陽依傍山巒沉落。",
+ "5。欲:想要得到某種東西或達到某種目的的願望,但也有希望、想要的意思。",
+ "6.窮:盡,使達到極點。",
+ "7.千里目:眼界寬闊。",
+ "8.更:替、換。(不是通常理解的“再”的意思)"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ " "
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 該詩是唐代詩人王之渙僅存的六首絕句之一。 作者早年及第,曾任過冀州衡水(今河北衡水)縣的主薄,不久因遭人誣陷而罷官,不到三十歲的王之渙從此過上了訪友漫遊的生活。寫這首詩的時候,王之渙只有三十五歲。"
+ ]
+ },
+ {
+ "detail_text": "三日入廚下,洗手作羹湯。未諳姑食性,先遣小姑嘗。",
+ "title": "新嫁娘詞",
+ "detail_translate_text": [
+ "譯文",
+ "新婚三天來到廚房,洗手親自來作羹湯。",
+ "不知婆婆什麼口味,做好先讓小姑品嘗。",
+ "注釋",
+ "1.三日:古代風俗,新媳婦婚後三日須下廚房做飯菜。",
+ "2.羹:泛指做成濃的菜肴。",
+ "3.“未諳”句:意思是還不熟悉婆婆的口味。諳:熟悉。姑食性:婆婆的口味。",
+ "4.遣:讓。小姑:一作“小娘”。丈夫的妹妹。也稱小姑子。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王建"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "紅豆生南國,春來發幾枝。願君多採擷,此物最相思。",
+ "title": "相思",
+ "detail_translate_text": [
+ "譯文",
+ "鮮紅渾圓的紅豆,生長在陽光明媚的南方,春暖花開的季節,不知又生出多少?",
+ "希望思念的人兒多多採集,小小紅豆引人相思。",
+ "注釋",
+ "⑴相思:題一作“相思子”,又作“江上贈李龜年”。",
+ "⑵紅豆:又名相思子,一種生在江南地區的植物,結出的籽像豌豆而稍扁,呈鮮紅色。",
+ "⑶“春來”句:一作“秋來發故枝”。",
+ "⑷“願君”句:一作“勸君休採擷”。採擷(xié):採摘。",
+ "⑸相思:想念。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王維"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 此詩一作《江上贈李龜年》,可見為懷念友人之作。據載,天寶末年安史之亂時,李龜年流落江南曾演唱此詩,可證此詩為天寶年間所作。"
+ ]
+ },
+ {
+ "detail_text": "君自故鄉來,應知故鄉事。來日綺窗前,寒梅著花未?",
+ "title": "雜詩",
+ "detail_translate_text": [
+ "譯文",
+ "您是剛從我們家鄉來的,一定瞭解家鄉的人情世態。",
+ "請問您來的時候我家雕畫花紋的窗戶前,那一株臘梅花開了沒有?",
+ "注釋",
+ "①來日:來的時候。",
+ "②綺(qǐ)窗:雕畫花紋的窗戶。",
+ "③著花未:開花沒有?著(zhuó)花,開花。未,用於句末,相當於“否”,表疑問。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王維"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "空山不見人,但聞人語響。返景入深林,複照青苔上。",
+ "title": "鹿柴",
+ "detail_translate_text": [
+ "譯文",
+ "空寂的山中不見一個人,只聽到一陣人語聲。",
+ "太陽的一抹餘暉返人深林,又照到林中的青苔上。",
+ "注釋",
+ "鹿柴(zhài):王維",
+ "輞川別墅之一(在今陝西省藍田縣西南)。柴:通“寨”、“砦”,用樹木圍成的柵欄。",
+ "但:只。",
+ "返景(yǐng):同“返影”,太陽將落時通過雲彩反射的陽光。",
+ "複:又。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋二"
+ ],
+ "detail_author": [
+ "王維"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 唐天寶年間,王維在終南山下購置輞川別業。鹿柴是王維在輞川別業的勝景之一。輞川有勝景二十處,王維和他的好友裴迪逐處作詩,編為《輞川集》,這首詩是其中的第五首。"
+ ]
+ },
+ {
+ "detail_text": "獨坐幽篁裡,彈琴複長嘯。深林人不知,明月來相照。",
+ "title": "竹裡館",
+ "detail_translate_text": [
+ "譯文",
+ "獨自閑坐幽靜竹林,時而彈琴時而長嘯。",
+ "密林之中何人知曉我在這裡?只有一輪明月靜靜與我相伴。",
+ "注釋",
+ "⑴竹裡館:輞川別墅勝景之一,房屋周圍有竹林,故名。",
+ "⑵幽篁(huáng):幽深的竹林。",
+ "⑶嘯(xiào):嘬口發出長而清脆的聲音,類似於打口哨。",
+ "⑷深林:指“幽篁”。",
+ "⑸相照:與“獨坐”相應,意思是說,左右無人相伴,唯有明月似解人意,偏來相照。",
+ "⑹長嘯:撮口而呼,這裡指吟詠、歌唱。古代一些超逸之士常用來抒發感情。魏晉名士稱吹口哨為嘯。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王維"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 《竹裡館》當作于王維晚年隱居藍田輞川時期。王維早年信奉佛教,思想超脫,加之仕途坎坷,四十歲以後就過著半官半隱的生活。正如他自己所說:“晚年惟好靜,萬事不關心。”因而常常獨自坐在幽深的竹林之中,彈著古琴以抒寂寞的情懷。詩人是在意興清幽、心靈澄淨的狀態下與竹林、明月本身所具有的清幽澄淨的屬性悠然相會,而命筆成篇的。 "
+ ]
+ },
+ {
+ "detail_text": "山中相送罷,日暮掩柴扉。春草明年綠,王孫歸不歸?",
+ "title": "山中送別",
+ "detail_translate_text": [
+ "譯文",
+ "在深山中送走了好友,夕陽落下把柴門半掩。",
+ "春草到明年催生新綠,朋友啊你能不能回還? ",
+ "注釋",
+ "⑴掩:關閉。柴扉:柴門。",
+ "⑵明年:一作“年年”。",
+ "⑶王孫:貴族的子孫,這裡指送別的友人。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王維"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "綠蟻新醅酒,紅泥小火爐。晚來天欲雪,能飲一杯無?",
+ "title": "問劉十九",
+ "detail_translate_text": [
+ "韻譯",
+ "新釀的米酒,色綠香濃;小小紅泥爐,燒得殷紅。",
+ "天快黑了,大雪將要來。能否共飲一杯?朋友!",
+ "意譯",
+ "我家新釀的米酒還未過濾,酒面上泛起一層綠泡,香氣撲鼻。用紅泥燒製成的燙酒用的小火爐也已準備好了。",
+ "天色陰沉,看樣子晚上即將要下雪,能否留下與我共飲一杯? ",
+ "注釋",
+ "①劉十九:白居易留下的作中,提到劉十九的不多,僅兩首。但提到劉二十八、二十八使君的,就很多了。劉二十八就是劉禹錫。劉十九乃其堂兄劉禹銅,系洛陽一富商,與白居易常有應酬。",
+ "②綠蟻:指浮在新釀的沒有過濾的米酒上的綠色泡沫。醅(pēi):釀造。",
+ "綠蟻新醅酒:酒是新釀的酒。新釀酒未濾清時,酒面浮起酒渣,色微綠,細如蟻,稱為“綠蟻”。",
+ "③雪:下雪,這裡作動詞用。",
+ "④無:表示疑問的語氣詞,相當於“麼”或“嗎”。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "白居易"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "北斗七星高,哥舒夜帶刀。至今窺牧馬,不敢過臨洮。",
+ "title": "哥舒歌",
+ "detail_translate_text": [
+ "譯文",
+ "黑夜裡北斗七星掛得很高;哥舒翰夜帶寶刀勇猛守邊。",
+ "至今吐蕃族的牧馬只敢遠望;他們再不敢南來越過臨洮。",
+ "注釋",
+ "⑴ 窺:竊伺。",
+ "⑵ 臨洮:秦築長城西起於此。",
+ "⑶ 哥舒:指哥舒翰,是唐玄宗的大將,突厥族哥舒部的後裔。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "西鄙人"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "美人卷珠簾,深坐顰蛾眉。但見淚痕濕,不知心恨誰。",
+ "title": "怨情",
+ "detail_translate_text": [
+ "譯文",
+ "美人卷起珠簾,深閨獨坐還皺著蛾眉。",
+ "只見玉顏上淚痕斑斑,不知她心裡究竟恨的是誰。",
+ "注釋",
+ "⑴卷珠簾:意指其捲簾相望。珠簾:珠串的帷簾。",
+ "⑵深坐:長久的坐。顰(pín):皺眉。蛾眉:蠶蛾觸鬚彎而細長,故以稱女子之眉。《",
+ "•碩人》:“螓首蛾眉。”"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋二"
+ ],
+ "detail_author": [
+ "李白"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "向晚意不適,驅車登古原。夕陽無限好,只是近黃昏。",
+ "title": "登樂游原",
+ "detail_appreciation_url": [
+ "/shangxi_8918.aspx",
+ "/shangxi_806.aspx",
+ "/shangxi_807.aspx"
+ ],
+ "detail_translate_text": [
+ "譯文",
+ "傍晚時心情不快,駕著車登上古原。",
+ "夕陽啊無限美好,只不過接近黃昏。",
+ "注釋",
+ "⑴樂游原:在長安(今西安)城南,是唐代長安城內地勢最高地。漢宣帝立樂遊廟,又名樂游苑。登上它可望長安城。樂游原在秦代屬宜春苑的一部分,得名于西漢初年。《漢書•宣帝紀》載,“神爵三年,起樂游苑”。漢宣帝第一個皇后許氏產後死去葬於此,因“苑”與“原”諧音,樂游苑即被傳為“樂游原”。對此《關中記》有記載:“宣帝許後葬長安縣樂遊裡,立廟于曲江池北,曰樂遊廟,因苑(《長安志》誤作葬字)為名。”",
+ "⑵向晚:傍晚。不適:不悅, 不快。",
+ "⑶古原:指樂游原。",
+ "⑷近:快要。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 樂游原是唐代遊覽勝地,直至中晚唐之交,樂游原仍然是京城人遊玩的好去處。同時因為地理位置高便於覽勝,文人墨客也經常來此做詩抒懷。唐代詩人們在樂游原留下了近百首珠璣絕句,歷來為人所稱道,詩人李商隱便是其中之一。 李商隱所處的時代是國運將盡的晚唐,儘管他有抱負,但是無法施展,很不得志。李商隱二十五歲時由令狐楚的兒子令狐綯推舉得中進士,不久令狐楚死,他得到王茂之的器重,王將女兒嫁給了他。因為王茂之是李黨的重要人物,李商隱從此陷入牛李黨爭不能自拔,在官場之中異常失意,這首《樂游原》正是他心境鬱悶的真實寫照。 程夢星《李義山詩集箋注》:“此詩當作於會昌四、五年(844、845)間,時義山去河陽退居太原,往來京師,過樂游原而作是詩,蓋為武宗憂也。武宗英敏特達,略似漢宣,其任德裕為相,克澤潞,取太原,在唐季世可謂有為,故曰‘夕陽無限好’也。而內寵王才人,外築望仙台,封道士劉玄靜為學士,用其術以致身病不復自惜。識者知其不永,故義山憂之,以為‘近黃昏'也。”"
+ ]
+ },
+ {
+ "detail_text": "鳴箏金粟柱,素手玉房前。欲得周郎顧,時時誤拂弦。",
+ "title": "聽箏",
+ "detail_translate_text": [
+ "譯文",
+ "金粟軸的古箏發出優美的聲音,那素手撥箏的美人坐在玉房前。",
+ "想盡了辦法為博取周郎的青睞,你看她故意地時時撥錯了琴弦。",
+ "注釋",
+ "⑴聽箏:彈奏箏曲。",
+ "⑵金粟:古也稱桂為金粟,這裡當是指弦軸之細而精美。",
+ "⑶柱:定弦調音的短軸。",
+ "⑷素手:指彈箏女子纖細潔白的手。",
+ "⑸玉房:指玉制的箏枕。房,箏上架弦的枕。",
+ "⑹周郎:指三國時吳將周瑜。他二十四歲為大將,時人稱其為“周郎”。他精通音樂,聽人奏錯曲時,即使喝得半醉,也會轉過頭看一下奏者。當時人稱:“曲有誤,周郎顧。”",
+ "⑺拂弦:撥動琴弦。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李端"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "嶺外音書斷,經冬複曆春。近鄉情更怯,不敢問來人。",
+ "title": "渡漢江",
+ "detail_translate_text": [
+ "譯文",
+ "流放嶺南與親人斷絕了音信,熬過了冬天又經歷一個新春。",
+ "越走近故鄉心裡就越是膽怯,不敢打聽從家那邊過來的人。",
+ "注釋",
+ "⑴漢江:漢水。長江最大支流,源出陝西,經湖北流入長江。",
+ "⑵嶺外:五嶺以南的廣東省廣大地區,通常稱嶺南。唐代常作罪臣的流放地。書:信。",
+ "⑶來人:渡漢江時遇到的從家鄉來的人。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "宋之問"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 此詩一說作于宋之問神龍二年(706年)途經漢水時。宋之問媚附武則天的男寵張易之,武氏去世後,唐中宗將其貶為瀧州參軍。瀧州在嶺南,唐時,屬於極為邊遠的地區,貶往那裡的官員因不適應當地的自然地理條件和生活習俗,往往不能生還。神龍元年(705年)十月宋之問過嶺,次年春即冒險逃回洛陽,途經漢江(指襄陽附近的一段漢水)時寫下了此詩。 另一說,此詩是李頻由貶所瀧州逃歸洛陽,途經漢江(指襄陽附近的漢水)時所作。"
+ ]
+ },
+ {
+ "detail_text": "功蓋三分國,名成八陣圖。江流石不轉,遺恨失吞吳。",
+ "title": "八陣圖",
+ "detail_translate_text": [
+ "譯文",
+ "三國鼎立你建立了蓋世功績,創八陣圖你成就了永久聲名。",
+ "江水東流推不轉你佈陣石頭,千古遺恨你滅吳失策功未就。",
+ "注釋",
+ "⑴八陣圖:由八種陣勢組成的圖形,用來操練軍隊或作戰。",
+ "⑵蓋:超過。三分國:指三國時魏、蜀、吳三國。",
+ "⑶石不轉:指漲水時,八陣圖的石塊仍然不動。",
+ "⑷失吞吳:是吞吳失策的意思。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "杜甫"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 杜甫在唐代宗大曆元年(766年)夏遷居夔州,夔州有武侯廟,江邊有八陣圖,傳說為三國時諸葛亮在夔州江灘所設。向來景仰諸葛亮的杜甫用了許多筆墨記詠古跡抒發情懷。《八陣圖》便是其中一首。"
+ ]
+ },
+ {
+ "detail_text": "移舟泊煙渚,日暮客愁新。野曠天低樹,江清月近人。",
+ "title": "宿建德江",
+ "detail_translate_text": [
+ "譯文",
+ "把小船停靠在煙霧迷蒙的小洲,日暮時分新愁又湧上客子心頭。",
+ "曠野無邊無際遠天比樹還低沉,江水清清明月來和人相親相近。",
+ "注釋",
+ "⑴建德江:指新安江流經建德(今屬浙江)西部的一段江水。",
+ "⑵移舟:劃動小船。泊:停船靠岸。煙渚(zhǔ):指江中霧氣籠罩的小沙洲。煙:一作“幽”。渚:水中小塊陸地。《爾雅•釋水》:“水中可居者曰洲,小洲曰渚。”",
+ "⑶客:指作者自己。愁:為思鄉而憂思不堪。",
+ "⑷野:原野。曠:空闊遠大。天低樹:天幕低垂,好像和樹木相連。",
+ "⑸月近人:倒映在水中的月亮好像來靠近人。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "孟浩然"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 孟浩然于唐玄宗開元十八年(730年)離鄉赴洛陽,再漫遊吳越,藉以排遣仕途失意的悲憤。《宿建德江》當作于作者漫遊吳越時,與《問舟子》是同一時期的作品。"
+ ]
+ },
+ {
+ "detail_text": "春眠不覺曉,處處聞啼鳥。夜來風雨聲,花落知多少。",
+ "title": "春曉",
+ "detail_translate_text": [
+ "譯文",
+ "春夜酣睡天亮了也不知道,醒來只聽到到處有鳥兒啼叫。",
+ "想起昨夜裡風聲緊雨聲瀟瀟,花兒不知道被打落了多少?",
+ "注釋",
+ "⑴不覺曉:不知不覺天就亮了。曉:早晨,天明,天剛亮的時候。",
+ "⑵聞:聽見。啼鳥:鳥啼,鳥的啼叫聲。",
+ "⑶“夜來”句:一作“欲知昨夜風”。",
+ "⑷“花落”句:一作“花落無多少”。知多少:不知有多少。知:不知,表示推想。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋二"
+ ],
+ "detail_author": [
+ "孟浩然"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "打起黃鶯兒,莫教枝上啼。啼時驚妾夢,不得到遼西。",
+ "title": "春怨",
+ "detail_translate_text": [
+ "譯文",
+ "我敲打樹枝,趕走樹上的黃鶯,不讓它在樹上亂叫。",
+ "它清脆的叫聲,驚醒了我的夢,害得我在夢中不能趕到遼西,與戍守邊關的親人相見。",
+ "注釋",
+ "①遼西:古郡名,在今遼寧省遼河以西地方。",
+ "②妾:女子的自稱。",
+ "③莫:不。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "金昌緒"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "千山鳥飛絕,萬徑人蹤滅。孤舟蓑笠翁,獨釣寒江雪。",
+ "title": "江雪",
+ "detail_translate_text": [
+ "譯文",
+ "所有的山,飛鳥全都斷絕;所有的路,不見人影蹤跡。",
+ "江上孤舟,漁翁披蓑戴笠;獨自垂釣,不怕冰雪侵襲。",
+ "注釋",
+ "絕:無,沒有。",
+ "萬徑:虛指,指千萬條路。",
+ "人蹤:人的腳印。",
+ "孤:孤零零。",
+ "蓑笠(suō lì):蓑衣和斗笠 笠:用竹篾編成的帽子。(“蓑” ,古代用來防雨的衣服;“笠” ,古代用來防雨的帽子。)",
+ "獨:獨自。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "柳宗元"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 唐順宗永貞元年,柳宗元參加了王叔文為首的政治革新運動。由於保守勢力與宦官的聯合反攻,致使革新失敗。因此,柳宗元被貶官到有“南荒”之稱的永州。他在任所名為司馬,實際上是毫無實權而受地方官員監視的“罪犯”。官署裡沒有他的住處,不得不在和尚廟——龍興寺的西廂裡安身。 柳宗元自從被貶到永州之後,精神上受到很大刺激和壓抑,他就借描寫山水景物,借歌詠隱居在山水之間的漁翁,來寄託自己清高而孤傲的情感,抒發自己在政治上失意的鬱悶苦惱。於是,他懷著幽憤的心情,寫下了這首令人傳頌的名詩。"
+ ]
+ },
+ {
+ "detail_text": "懷君屬秋夜,散步詠涼天。空山松子落,幽人應未眠。",
+ "title": "秋夜寄邱員外",
+ "detail_translate_text": [
+ "譯文",
+ "懷念你竟在這深秋的夜晚,散步詠歎多麼寒涼的霜天。",
+ "想此刻空山中正掉落松子,幽居的友人一定還未安眠。 ",
+ "注釋",
+ "⑴丘二十二員外:名丹,蘇州人,曾拜尚書郎,後隱居平山上。一作“邱二十二員外”。",
+ "⑵屬:正值,適逢,恰好。",
+ "⑶幽人:幽居隱逸的人,悠閒的人,此處指丘員外。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "韋應物"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "終南陰嶺秀,積雪浮雲端。林表明霽色,城中增暮寒。",
+ "title": "終南望餘雪",
+ "detail_translate_text": [
+ "譯文",
+ "遙望終南,北山秀麗,皚皚白雪,若浮雲間。",
+ "雪後初晴,林梢之間閃爍著夕陽餘暉,晚時分,長安城內又添了幾分積寒。",
+ "注釋",
+ "⑴終南:山名,在唐京城長安(今陝西西安)南面六十裡處。餘雪:指未融化之雪。《全唐",
+ "》此詩題下有小字注:“有司試此題,詠賦四句即納,或詰之,曰‘意盡’。”",
+ "⑵陰嶺:北面的山嶺,背向太陽,故曰陰。",
+ "⑶林表:林外",
+ ",林梢。霽(jì):雨、雪後天氣轉晴。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "祖詠"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 這是一首應試詩。《唐詩紀事》記載,祖詠年輕時去長安應考,文題是“終南望餘雪”,必須寫出一首六韻十二句的五言長律。祖詠看完後思考了一下,寫出了四句就擱筆了。他感到這四句已經表達完整,若按照考官要求寫成六韻十二句的五言體,則有畫蛇添足的感覺。當考官讓他重寫時,他還是堅持了自己的看法,考官很不高興。結果祖詠未被錄取。"
+ ]
+ },
+ {
+ "detail_text": "故國三千里,深宮二十年。一聲何滿子,雙淚落君前。",
+ "title": "宮詞",
+ "detail_translate_text": [
+ "譯文",
+ "故鄉和親人遠在千里之外,我已被幽閉在這深宮裡二十年了,聽一聲曲子《何滿子》,忍不住掉下眼淚。",
+ "注釋",
+ "①故國:故鄉。",
+ "②何滿子:唐玄宗時著名歌手,據說她因故得罪了皇帝,被推出就刑。就刑前她張口高歌,曲調悲憤,使“蒼天白日黯然失色”。結果皇帝聞之,終因惜其技藝難得而降旨緩刑。因為何滿子出色的技藝,大人元稹、白居易、杜牧等都相繼為之賦詩,其中以張祜的《何滿子》宮詞:“故國三千里,深宮二十年。一聲何滿子,雙淚落君前”最為感人。這首宮詞後來流傳甚廣,其唱來異常悲怨。據說唐武宗時,有一孟才人,因有感于武宗讓其殉情之意,為奄奄一息的武宗唱了一曲《何滿子》,唱畢,竟氣絕身亡。一作“河滿子”,舞曲名。題又作“宮詞”。白居易《何滿子》詩:“世傳滿子是人名,臨就弄時曲始成。一曲四詞歌八疊,從頭便是斷腸聲。”“何滿子”聲調哀婉。《樂府集》引白居易《何滿子》詩的自注說:“何滿子,開元中滄州歌者,臨弄進此曲以贖死,竟不得免。”",
+ "③君:指皇帝。這裡是指唐武宗。據《唐詩紀事》,張祜《宮詞》:“傳入宮禁,武宗疾篤,目孟才人曰:‘吾即不訊,爾何為哉?’指笙囊泣曰:‘請以此就縊。’上憫然。複曰:‘妾嘗藝歌,請對上歌一曲,以泄其憤。’上許。乃歌一聲《何滿子》,氣亟立殞。上令候之,曰:‘脈尚溫而腸已絕。’”後來張祜別有詠《孟才人歎》一絕,詞雲:“偶因歌態詠嬌嚬,傳唱宮中十二春。卻為一聲何滿子,下泉須吊舊才人。” "
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "張祜"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "松下問童子,言師采藥去。只在此山中,雲深不知處。",
+ "title": "尋隱者不遇",
+ "detail_translate_text": [
+ "譯文",
+ "蒼松下,我詢問隱者的童子他的師傅到哪裡去了?",
+ "他說,師傅已經采藥去了。",
+ "還指著高山說,就在這座山中,",
+ "可是林深雲密,我也不知道他到底在哪。 ",
+ "注釋",
+ "①尋:尋訪。",
+ "②隱者:古代指不肯做官而隱居在山野之間的人。",
+ "③不遇:沒有見到。 ",
+ "④童子:小孩。這是指隱者的弟子。 ",
+ "⑤言:回答,說。 ",
+ "⑥雲深:指山上雲霧繚繞。",
+ "⑦處:地方。 "
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "賈島"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "歸山深淺去,須盡丘壑美。莫學武陵人,暫遊桃源裡。",
+ "title": "送崔九",
+ "detail_translate_text": [
+ "譯文",
+ "你若要歸山無論深淺都要去看看;",
+ "山巒溝壑清淨秀美要盡情地賞玩。",
+ "千萬別學陶淵明筆下那個武陵人,",
+ "只在桃花源遊了幾天就匆匆出山。 ",
+ "注釋",
+ "武陵人:指陶潛《桃花源記》的武陵漁人。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "裴迪"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "蒼蒼竹林寺,杳杳鐘聲晚。荷笠帶斜陽,青山獨歸遠。",
+ "title": "送靈澈上人",
+ "detail_translate_text": [
+ "譯文",
+ "青蒼的竹林寺,近晚時傳來深遠的鐘聲。",
+ "背著斗笠披著斜陽,獨回青山漸行漸遠。",
+ "注釋",
+ "⑴靈澈上人:唐代著名僧人,本姓楊,字源澄,會稽(今浙江紹興)人,後為雲門寺僧。上人,對僧人的敬稱。",
+ "⑵蒼蒼:深青色。竹林寺:在現在江蘇丹徒南。",
+ "⑶杳(yǎo)杳:深遠的樣子。",
+ "⑷荷(hè)笠:背著斗笠。荷,背著。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "劉長卿"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "泠泠七弦上,靜聽松風寒。古調雖自愛,今人多不彈。",
+ "title": "聽彈琴",
+ "detail_translate_text": [
+ "譯文",
+ "七弦琴奏出清涼的曲調悠揚起伏,細細傾聽就像那滾滾的松濤聲。",
+ "我雖然很喜愛這首古時的曲調,但在今天人們大多已不去彈奏了。",
+ "注釋",
+ "⑴泠(líng)泠:形容清涼、清淡,也形容聲音清越。絲:一作“弦”。",
+ "⑵松風:以風入松林暗示琴聲淒涼。琴曲中有《風入松》的調名。",
+ "⑶古調:古時的曲調。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "劉長卿"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "孤雲將野鶴,豈向人間住。莫買沃洲山,時人已知處。",
+ "title": "送上人",
+ "detail_translate_text": [
+ "譯文",
+ "孤雲陪伴著野鶴,怎麼能在人間居住。不要買下沃洲山,現在已經有人知道那兒了。",
+ "韻譯",
+ "你是行僧象孤雲和野鶴,怎能在人世間棲居住宿?",
+ "要歸隱請別買沃洲名山,那裡是世人早知的去處。 ",
+ "注釋",
+ "上人:對 僧人的敬稱。",
+ "孤雲、野鶴:都用來比喻方外上人。將:與共。",
+ "沃洲山:在浙江新昌縣東,上有支遁嶺,放鶴峰、養馬坡,相傳為晉代名僧支遁放鶴、養馬之地。時人:指時俗之人。",
+ "將:伴隨。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "劉長卿"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "昨夜裙帶解,今朝蟢子飛。鉛華不可棄,莫是槁砧歸。",
+ "title": "玉台體",
+ "detail_translate_text": [
+ "譯文",
+ "昨晚我裙帶忽然鬆弛解開,早晨又看見蟢子雙雙飛來。",
+ "要趕緊描眉擦粉梳妝打扮,莫非是我的丈夫快要回來。",
+ "注釋",
+ "(1)蟢子:小蜘蛛腳長者,俗稱蟢子。",
+ "(2)鉛華:指脂粉。",
+ "(3)槁砧:丈夫的隱語。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "權德輿"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "寒雨連江夜入吳,平明送客楚山孤。洛陽親友如相問,一片冰心在玉壺。",
+ "title": "芙蓉樓送辛漸",
+ "detail_translate_text": [
+ "譯文",
+ "迷蒙的煙雨,連夜灑遍吳地江天;清晨送走你,孤對楚山離愁無限!",
+ "朋友啊,洛陽親友若是問起我來;就說我依然冰心玉壺,堅守信念!",
+ "注釋",
+ "1.芙蓉樓:原名西北樓,在潤州(今江蘇省鎮江市)西北。登臨可以俯瞰長江,遙望江北。據《元和郡縣誌》卷二十六《江南道•潤州》丹陽:“晉王恭為刺史,改創西南樓名萬歲樓,西北樓名芙蓉樓。”丹陽在今江蘇省西南部,東北濱長江,大運河斜貫,屬鎮江市。辛漸:人的一位朋友。",
+ "2.寒雨:秋冬時節的冷雨。連江:雨水與江面連成一片,形容雨很大。吳:古代國名,這裡泛指江蘇南部、浙江北部一帶。江蘇鎮江一帶為三國時吳國所屬。",
+ "3.平明:天亮的時候。客:指作者的好友辛漸。楚山:楚地的山。這裡的楚也指南京一帶,因為古代吳、楚先後統治過這裡,所以吳、楚可以通稱。孤:獨自,孤單一人。",
+ "4.洛陽:現位於河南省西部、黃河南岸。",
+ "5.冰心,比喻純潔的心。玉壺,道教概念妙真道教義,專指自然無為虛無之心。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王昌齡"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 此詩當作于天寶元年(742年),王昌齡當時為江寧(今江蘇南京)丞。辛漸是王昌齡的朋友,這次擬由潤州渡江,取道揚州,北上洛陽。王昌齡可能陪他從江寧到潤州(今江蘇鎮江),然後在此分手。此詩原題共兩首,第二首說到頭天晚上詩人在芙蓉樓為辛漸餞別,這一首寫的是第二天早晨在江邊離別的情景。"
+ ]
+ },
+ {
+ "detail_text": "閨中少婦不知愁,春日凝妝上翠樓。忽見陌頭楊柳色,悔教夫婿覓封侯。",
+ "title": "閨怨",
+ "detail_translate_text": [
+ "譯文一",
+ "閨中少婦未曾有過相思離別之愁,在明媚的春日,她精心妝飾,登上高樓。忽然看到路邊的楊柳春色,惆悵之情湧上心頭。她後悔當初不該讓丈夫從軍邊塞,建功封侯。",
+ "譯文二",
+ "閨閣中的少婦,從來不知憂愁;",
+ "春來細心打扮,獨自登上翠樓。",
+ "忽見陌頭楊柳新綠,心裡難受;",
+ "呵,悔不該叫夫君去覓取封侯。",
+ "注釋",
+ "1.閨怨:少婦的幽怨。閨,女子臥室,借指女子。一般指少女或少婦。古人“閨怨“之作,一般是寫少女的青春寂寞,或少婦的離別相思之情。以此題材寫的稱“閨怨詩”。",
+ "2.“不知愁“一作“不曾愁“,則詩意大減。",
+ "3. 凝妝:盛妝。",
+ "4.陌頭:路邊。",
+ "5.覓封侯:為求得封侯而從軍。覓,尋求。",
+ "6.悔教:後悔讓"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王昌齡"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "昨夜風開露井桃,未央前殿月輪高。 平陽歌舞新承寵,簾外春寒賜錦袍。",
+ "title": "春宮曲",
+ "detail_translate_text": [
+ "譯文",
+ "昨夜的春風吹開了露井邊的桃花,未央宮前的明月高高地掛在天上。",
+ "平陽公主家的歌女新受武帝寵倖,見簾外略有春寒皇上特把錦袍賜給她。",
+ "注釋",
+ "⑴春宮曲:一作“殿前曲”。",
+ "⑵露井:指沒有井亭覆蓋的井。",
+ "⑶未央:即未央宮,漢宮殿名,漢高祖劉邦所建。也指唐宮。",
+ "⑷平陽歌舞:平陽公主家中的歌女。新承:一作“承新”。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王昌齡"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "獨在異鄉為異客,每逢佳節倍思親。遙知兄弟登高處,遍插茱萸少一人。",
+ "title": "九月九日憶山東兄弟",
+ "detail_translate_text": [
+ "譯文",
+ "獨自遠離家鄉難免總有一點淒涼,每到重陽佳節倍加思念遠方的親人。",
+ "遠遠想到兄弟們身佩茱萸登上高處,也會因為少我一人而生遺憾之情。",
+ "注釋",
+ "⑴九月九日:即重陽節。古以九為陽數,故曰重陽。憶:想念。山東:王維遷居于蒲縣(今山西永濟縣),在函谷關與華山以東,所以稱山東。",
+ "⑵異鄉:他鄉、外鄉。 為異客:作他鄉的客人。",
+ "⑶佳節:美好的節日。",
+ "⑷登高:古有重陽節登高的風俗。",
+ "⑸茱萸(zhūyú):一種香草,即草決明。古時人們認為重陽節插戴茱萸可以避災克邪。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王維"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 此詩原注:“時年十七。”說明這是王維十七時的作品。王維當時獨自一人漂泊在洛陽與長安之間,他是蒲州(今山西永濟)人,蒲州在華山東面,所以稱故鄉的兄弟為山東兄弟。九月九日是重陽節,中國有些地方有登高的習俗。《太平御覽》卷三十二引《風土記》雲:“俗於此日,以茱萸氣烈成熟,尚此日,折萸房以插頭,言辟熱氣而禦初寒。”"
+ ]
+ },
+ {
+ "detail_text": "葡萄美酒夜光杯,欲飲琵琶馬上催。醉臥沙場君莫笑,古來征戰幾人回?",
+ "title": "涼州詞",
+ "detail_translate_text": [
+ "譯文",
+ "酒筵上甘醇的葡萄美酒盛滿在精美的夜光杯之中,歌伎們彈奏起急促歡快的琵琶聲助興催飲,想到即將跨馬奔赴沙場殺敵報國,戰士們個個豪情滿懷。",
+ "今日一定要一醉方休,即使醉倒在戰場上又何妨?此次出征為國效力,本來就打算馬革裹屍,沒有準備活著回來。",
+ "注釋",
+ "1.涼州詞:唐樂府名,屬《近代曲辭》,是《涼州曲》的唱詞,盛唐時流行的一種曲調名。涼州詞:王翰寫有《涼州詞》兩首,慷慨悲壯,廣為流傳。而這首《涼州詞》被明代王世貞推為唐代七絕的壓卷之作。",
+ "2.夜光杯:用白玉製成的酒杯,光可照明,這裡指華貴而精美的酒杯。據《海內十洲記》所載,為周穆王時西胡所獻之寶。",
+ "3.欲:將要。",
+ "4.琵琶:這裡指作戰時用來發出號角的聲音時用的。",
+ "5.催:催人出征;也有人解作鳴奏助興。",
+ "6.沙場:平坦空曠的沙地,古時多指戰場。",
+ "7.君:你。",
+ "8.征戰:打仗。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "王翰"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "淚濕羅巾夢不成,夜深前殿按歌聲。 紅顏未老恩先斷,斜倚薰籠坐到明。",
+ "title": "後宮詞",
+ "detail_translate_text": [
+ "譯文",
+ "淚水濕透了羅巾無法入睡好夢難成,深夜時分聽到前殿傳來按著節拍唱歌的聲音。紅顏尚未老去已經失去了君王的恩寵,斜靠著熏籠一直坐到天明。",
+ "韻譯",
+ "淚水濕透羅巾,好夢卻難做成;",
+ "深夜,前殿傳來有節奏的歌聲。",
+ "紅顏尚未衰減,恩寵卻已斷絕;",
+ "她獨倚著熏籠,一直坐到天明。",
+ "注釋",
+ "1,宮詞:此題又作《後宮詞》。",
+ "2,按歌聲:依照歌聲的韻律打拍子。",
+ "3,紅顏:此指宮宮女。",
+ "4,恩:君恩。",
+ "5,熏籠:覆罩香爐的竹籠。香爐用來熏衣被,為宮中用物。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "白居易"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 詩的主人公是一位不幸的宮女。她一心盼望君王的臨幸而終未盼得,時已深夜,只好上床,已是一層怨悵。寵倖不可得,退而求之好夢;輾轉反側,竟連夢也難成,見出兩層怨悵。夢既不成,索性攬衣推枕,掙扎坐起。正當她愁苦難忍,淚濕羅巾之時,前殿又傳來陣陣笙歌,原來君王正在那邊尋歡作樂,這就有了三層怨悵。倘使人老珠黃,猶可解說; 偏偏她盛鬢堆鴉,紅顏未老,生出四層怨悵。要是君王一直沒有發現她,那也罷了;事實是她曾受過君王的恩寵,而現在這種恩寵卻無端斷絕,見出五層怨悵。夜已深沉,瀕於絕望,但一轉念,猶翼君王在聽歌賞舞之後,會記起她來。於是,斜倚熏籠,濃熏翠袖,以待召幸。不料,一直坐到天明,幻想終歸破滅,見出六層怨悵。一種情思,六層寫來,盡纏綿往復之能事。而全詩卻一氣渾成,如筍破土,苞節雖在而不露; 如繭抽絲,幽怨似縷而不絕。短短四句,細膩地表現了一個失寵宮女複雜矛盾的內心世界。夜來不寐,等候君王臨幸,寫其希望;聽到前殿歌聲,君王正在尋歡作樂,寫其失望;君恩已斷,仍斜倚熏籠坐等,寫其苦望;天色大明,君王未來,寫其絕望。淚濕羅巾,寫宮女的現實;求寵於夢境,寫其幻想;恩斷而仍坐等,寫其癡想;坐到天明仍不見君王,再寫其可悲的現實。全詩由希望轉到失望,由失望轉到苦望,由苦望轉到最後絕望;由現實進入幻想,由幻想進入癡想,由癡想再跌入現實,千回百轉,傾注了詩人對不幸者的深摯同情。"
+ ]
+ },
+ {
+ "detail_text": "寂寂花時閉院門,美人相並立瓊軒。 含情欲說宮中事,鸚鵡前頭不敢言。",
+ "title": "宮中詞",
+ "detail_translate_text": [
+ "韻譯",
+ "百花盛開,宮院卻寂寂地緊閉大門;",
+ "俏麗宮女,相依相並佇立廊下賞春。",
+ "滿懷幽情,都想談談宮中憂愁的事,",
+ "鸚鵡面前,誰也不敢吐露自己苦悶。",
+ "注釋",
+ "瓊軒:對廊台的美稱。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "朱慶餘"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "洞房昨夜停紅燭,待曉堂前拜舅姑。 妝罷低聲問夫婿,畫眉深淺入時無。",
+ "title": "近試上張水部",
+ "detail_translate_text": [
+ "譯文",
+ "洞房裡昨夜花燭徹夜通明,等待拂曉拜公婆討個好評。",
+ "打扮好了輕輕問丈夫一聲:我的眉畫得濃淡可合時興?",
+ "注釋",
+ "⑴張水部:即張籍,曾任水部員外郎。",
+ "⑵洞房:新婚臥室。停紅燭:讓紅燭通宵點著。停:留置。",
+ "⑶舅姑:公婆。",
+ "⑷深淺:濃淡。入時無:是否時髦。這裡借喻文章是否合適。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "朱慶餘"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 此詩為寶曆(唐敬宗年號,825—827)年間朱慶餘參加進士考試前夕所作。唐代士子在參加進士考試前,時興“行卷”,即把自己的詩篇呈給名人,以希求其稱揚和介紹於主持考試的禮部侍郎。朱慶餘此詩投贈的對象,是時任水部郎中的張籍。張籍當時以擅長文學而又樂於提拔後進與韓愈齊名。朱慶餘平日向他行卷,已經得到他的賞識,臨到要考試了,還怕自己的作品不一定符合主考的要求,因此寫下此詩,看看是否投合主考官的心意。此詩便是行卷之作。"
+ ]
+ },
+ {
+ "detail_text": "故園東望路漫漫,雙袖龍鍾淚不幹。 馬上相逢無紙筆,憑君傳語報平安。",
+ "title": "逢入京使",
+ "detail_translate_text": [
+ "譯文",
+ "東望家鄉路程又遠又長,熱淚濕雙袖還不斷流淌。",
+ "在馬上與你相遇無紙筆,請告家人說我平安無恙。",
+ "注釋",
+ "⑴入京使:進京的使者。",
+ "⑵故園:指長安和自己在長安的家。漫漫:形容路途十分遙遠。",
+ "⑶龍鍾:涕淚淋漓的樣子。卞和《退怨之歌》:“空山歔欷淚龍鍾。”這裡是沾濕的意思。",
+ "⑷憑:托,煩,請。傳語:捎口信。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "岑參"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 根據劉開揚《岑參詩集編年箋注•岑參年譜》,此詩作於西元749年(天寶八載)詩人赴安西(今新疆維吾爾自治區庫車縣)上任途中。這是岑參第一次遠赴西域,充安西節度使高仙芝幕府書記。此時詩人34歲,前半生功名不如意,無奈之下,出塞任職。他告別了在長安的妻子,躍馬踏上漫漫征途,西出陽關,奔赴安西。 岑參也不知走了多少天,就在通西域的大路上,他忽地迎面碰見一個老相識。立馬而談,互敘寒溫,知道對方要返京述職,不免有些感傷,同時想到請他捎封家信回長安去安慰家人,報個平安。此詩就描寫了這一情景。"
+ ]
+ },
+ {
+ "detail_text": "故人西辭黃鶴樓,煙花三月下揚州。孤帆遠影碧空盡,唯見長江天際流。",
+ "title": "黃鶴樓送孟浩然之廣陵",
+ "detail_translate_text": [
+ "譯文",
+ "老朋友向我頻頻揮手,告別了黃鶴樓,在這柳絮如煙、繁花似錦的陽春三月去揚州遠遊。",
+ "友人的孤船帆影漸漸地遠去,消失在碧空的盡頭,只看見一線長江,向邈遠的天際奔流。",
+ "注釋",
+ "⑴黃鶴樓:中國著名的名勝古跡,故址在今湖北武漢市武昌蛇山的黃鵠磯上,屬於長江下游地帶,傳說三國時期的費禕於此登仙乘黃鶴而去,故稱黃鶴樓。原樓已毀,現存樓為1985年修葺。孟浩然",
+ ":李白",
+ "的朋友。之:往、到達。廣陵:即揚州。",
+ "⑵故人:老朋友,這裡指孟浩然。其年齡比李白大,在",
+ "壇上享有盛名。李白對他很敬佩,彼此感情深厚,因此稱之為“故人”。辭:辭別。",
+ "⑶煙花:形容柳絮如煙、鮮花似錦的春天景物,指豔麗的春景。下:順流向下而行。",
+ "⑷碧空盡:消失在碧藍的天際。盡:盡頭,消失了。碧空:一作“碧山”。",
+ "⑸唯見:只看見。天際流:流向天邊 天際:天邊,天邊的盡頭。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李白"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 《黃鶴樓送孟浩然之廣陵》是李白出蜀壯遊期間的作品。李白是一位熱愛自然、喜歡交友的詩人,他“一生好入名山遊”,在漫遊和飄泊中走完了自己的一生,足跡遍佈中原內外,留下了許多歌詠自然美、歌頌友情的作品。 唐玄宗開元十五年(727年),李白東遊歸來,至湖北安陸,年已二十七歲。他在安陸住了有十年之久,不過很多時候都是以詩酒會友,在外遊歷,用他自己的話說就是“酒隱安陸,蹉跎十年”。也就是寓居安陸期間,李白結識了長他十二歲的孟浩然。孟浩然對李白非常讚賞,兩人很快成了摯友。開元十八年(730年)三月,李白得知孟浩然要去廣陵(今江蘇揚州),便托人帶信,約孟浩然在江夏(今武漢市武昌區)相會。幾天後,孟浩然乘船東下,李白親自送到江邊。送別時寫下了這首《黃鶴樓送孟浩然之廣陵》。"
+ ]
+ },
+ {
+ "detail_text": "朝辭白帝彩雲間,千里江陵一日還。兩岸猿聲啼不住,輕舟已過萬重山。",
+ "title": "早發白帝城",
+ "detail_translate_text": [
+ "譯文",
+ "清晨,朝霞滿天,我就要踏上歸程。從江上往高處看,可以看見白帝城彩雲繚繞,如在雲間,景色絢麗!千里之遙的江陵,一天之間就已經到達。",
+ "兩岸猿猴的啼聲不斷,回蕩不絕。猿猴的啼聲還回蕩在耳邊時,輕快的小船已駛過連綿不絕的萬重山巒。",
+ "譯文二",
+ "清晨,我告別高入雲霄的白帝城江陵遠在千里,船行只一日時間。",
+ "兩岸猿聲,還在耳邊不停地啼叫不知不覺,輕舟已穿過萬重青山。 ",
+ "注釋",
+ "⑴發:啟程。白帝城:故址在今重慶市奉節縣白帝山上。楊齊賢注:“白帝城,公孫述所築。初,公孫述至魚複,有白龍出井中,自以承漢土運,故稱白帝,改魚複為白帝城。”王琦注:“白帝城,在夔州奉節縣,與巫山相近。所謂彩雲,正指巫山之雲也。”",
+ "⑵朝:早晨。辭:告別。彩雲間:因白帝城在白帝山上,地勢高聳,從山下江中仰望,仿佛聳入雲間。",
+ "⑶江陵:今湖北荊州市。從白帝城到江陵約一千二百里,其間包括七百里三峽。酈道元",
+ "《三峽》:“自三峽七百里中,兩岸連山,略無闕處。重岩疊障,隱天蔽日,自非亭午時分,不見曦月。至於夏水襄陵,沿溯(或泝)阻絕。或王命急宣,有時朝發白帝,暮到江陵,其間千二百時裡,雖乘奔禦風,不以疾也。春冬之時,則素湍綠潭,回清倒影。絕巘(或巚)多生怪柏,懸泉瀑布,飛漱其間。清榮峻茂,良多趣味。每至晴初霜旦,林寒澗肅,常有高猿長嘯,屬引淒異。空穀傳響,哀囀久絕。故漁者歌曰:‘巴東三峽巫峽長,猿鳴三聲淚沾裳。’”還:歸;返回。",
+ "⑷猿:猿猴。啼:鳴、叫。住:停息。",
+ "⑸萬重山:層層疊疊的山,形容有許多。 "
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李白"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 唐肅宗乾元二年(759年)春天,李白因永王李璘案,流放夜郎,取道四川趕赴被貶謫的地方。行至白帝城的時候,忽然收到赦免的消息,驚喜交加,隨即乘舟東下江陵。此詩即回舟抵江陵時所作,所以詩題一作《下江陵》。 前人曾認為這首詩是李白青年出蜀時所作。然而根據“千里江陵一日還”的詩意,李白曾從江陵上三峽,因此,這首詩應當是他返還時所作。"
+ ]
+ },
+ {
+ "detail_text": "回樂峰前沙似雪,受降城外月如霜。不知何處吹蘆管,一夜征人盡望鄉。",
+ "title": "夜上受降城聞笛",
+ "detail_translate_text": [
+ "譯文",
+ "回樂峰前的沙地白得像雪,受降城外的月色有如秋霜。",
+ "不知何處吹起淒涼的蘆管,一夜間征人個個眺望故鄉。",
+ "注釋",
+ "⑴受降城:唐初名將張仁願為了防禦突厥,在黃河以北築受降城,分東、中、西三城,都在今內蒙古自治區境內。另有一種說法是:西元646年(貞觀二十年),唐太宗親臨靈州接受突厥一部的投降,“受降城”之名即由此而來。",
+ "⑵回樂峰:唐代有回樂縣,靈州治所,在今寧夏回族自治區靈武縣西南。回樂峰即當地山峰。一作“回樂烽”:指回樂縣附近的烽火臺。",
+ "⑶城下:一作“城上”,一作“城外”。",
+ "⑷蘆管:笛子。一作“蘆笛”。",
+ "⑸征人:戍邊的將士。盡:全。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李益"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "宣室求賢訪逐臣,賈生才調更無倫。可憐夜半虛前席,不問蒼生問鬼神。",
+ "title": "賈生",
+ "detail_translate_text": [
+ "譯文",
+ "漢文帝在宣室求問被貶謫的賢臣,賈誼的才華和格調更是無可比倫。",
+ "談至深夜漢文帝挪動雙膝靠近他,可惜他不關心百姓只是關心鬼神。",
+ "注釋",
+ "(1)賈生:指賈誼(前200—前168),西漢著名的政論家、文學家,力主改革弊政,提出了許多重要政治主張,但卻遭讒被貶,一生抑鬱不得志。",
+ "(2)宣室:漢代長安城中未央宮前殿的正室。",
+ "(3)逐臣:被放逐之臣,指賈誼曾被貶謫。",
+ "(4)才調:才華氣質。",
+ "(5)可憐:可惜,可歎。",
+ "(6)虛:徒然,空自。",
+ "(7)前席:在坐席上移膝靠近對方。",
+ "(8)蒼生:百姓。",
+ "(9)問鬼神:事見《史記•屈原賈生列傳》。漢文帝接見賈誼,“問鬼神之本。賈生因具道所以然之狀。至夜半,文帝前席。”"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 關於本詩的寫作年代,有兩種說法。其一為馮浩在《玉溪生詩集箋注》中所言,“此蓋至昭州修祀事,故以借慨”,意謂此詩為李商隱在大中二年(848年)正月受桂州刺史鄭亞之命,赴昭州任郡守時所作。因李商隱時為一郡之長,故須主奉祭祀大事,於是借題發揮,創作了本詩。另一說為楊柳提出,認為此詩當于大中二年三、四月間李商隱離開桂林北上後滯留荊巴時期所作。(見《李商隱評傳》) 這首詩的作者李商隱生活在唐王朝日趨衰敗的晚唐時期,他對皇帝昏庸、宦官當權與藩鎮跋扈深為不滿。而且李商隱被捲入了牛李黨爭,屢受排擠,懷才不遇。於是他借吊賈誼來抒發自己的感慨,通過諷刺漢文帝雖能求賢卻又不知賢的行為,反映了晚唐的社會現實——即晚唐帝王也像文帝一般,表似開明,實則昏聵無能。"
+ ]
+ },
+ {
+ "detail_text": "乘興南遊不戒嚴,九重誰省諫書函。 春風舉國裁宮錦,半作障泥半作帆。",
+ "title": "隋宮",
+ "detail_translate_text": [
+ "譯文",
+ "隋煬帝為南游江都不顧安全,",
+ "九重宮中有誰理會勸諫書函。",
+ "春遊中全國裁制的綾羅錦緞,",
+ "一半作禦馬障泥一半作船帆。 ",
+ "注釋",
+ "①.張《箋》編此",
+ "于大中十一年(857),時商隱因柳仲郢推薦,任鹽鐵推官,游江東。隋宮:隋煬帝楊廣",
+ "建造的行宮。《輿地紀勝》:“淮南東路,揚州江都宮,煬帝于江都郡置宮,號江都宮。“《嘉慶一統志》:“江蘇省揚州府古跡:臨江宮在江都縣南二十裡,隋大業七年,煬帝升釣台臨揚子津,大燕百僚,尋建臨江宮於此。顯福宮在甘泉縣東北,隋城外離宮。……江都宮在甘泉縣西七裡,故廣陵城內。中有成象殿,水精殿及流珠堂,皆隋煬帝建。……十宮在甘泉縣北五裡,隋煬帝建。《寰宇記》:十宮在江都縣北五裡,長阜苑內,依林傍澗,高跨岡阜,隨城形置焉。曰歸雁、回流、九裡、松林、楓林、大雷、小雷、春草、九華、光汾。“",
+ "②.乘興句:《晉書•輿服志》:“凡車駕親戎,中外戒嚴。“此言不戒嚴,意謂煬帝驕橫無忌,毫無戒備。",
+ "③.九重:指皇帝居住的深宮。省:明察,懂得。諫書函:給皇帝的諫書。《隋書•煬帝紀》載:隋煬帝巡遊,大臣上表勸諫者皆斬之,遂無人敢諫。大業十四年(618),在行宮裡被其部下宇文化及所殺。",
+ "④.宮錦:供皇家使用的高級錦緞。",
+ "⑤.障泥:馬韉,墊在馬鞍的下麵,兩邊下垂至馬蹬,用來擋泥土。《隋書•食貨志》:“大業元年,造龍舟,鳳榻、黃龍、赤艦、樓船、篾舫……幸江都……舳艫相接,二百餘裡"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "瑤池阿母綺窗開,黃竹歌聲動地哀。 八駿日行三萬里,穆王何事不重來。",
+ "title": "瑤池",
+ "detail_translate_text": [
+ "韻義",
+ "西王母在瑤池上把綺窗打開;",
+ "只聽得黃竹歌聲音動地悲哀。",
+ "八駿神馬的車子日行三萬里;",
+ "周穆王為了何事違約不再來? ",
+ "注釋",
+ "1、瑤池阿母:《穆天子傳》卷三:“天子賓于西王母,天子觴西王母于瑤池之上。西王母為天子謠曰:‘白雲在天,山陵自出。道裡悠遠,山川間之。將子無死,尚能複來。’天子答之曰:‘予歸東土,和治諸夏。萬民平均,吾顧見汝。比及三年,將複而野。’”《武帝內傳》稱王母為“玄都阿母”。",
+ "2、黃竹歌聲:《穆天子傳》卷五:“日中大寒,北風雨雪,有凍人。天子作三章以哀民。”",
+ "3、八駿:傳說周穆王有八匹駿馬,可日行三萬里。《列子》、《穆天子傳》等記載不一。",
+ "4、穆王:西周人,姓姬名滿,傳說他曾周遊天下。",
+ "此詩諷刺求仙之虛妄。首句寫西王母倚窗佇望,候穆王而不至。次句借黃竹歌聲暗示穆王已死。三四句則寫西王母因穆王不來而心生疑問。斥神仙而以神仙(王母)的口氣寫出,句句對比,以見長生之虛妄,求仙之荒誕。《李義山詩集箋注》引程夢星曰:“此追歎武宗之崩也。武宗好仙,又好遊獵,又寵王才人。此詩熔鑄其事而出之,只用穆王一事,足概武宗三端。用思最深,措辭最巧。”"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "雲母屏風燭影深,長河漸落曉星沉。嫦娥應悔偷靈藥,碧海青天夜夜心。",
+ "title": "嫦娥",
+ "detail_translate_text": [
+ "譯文",
+ "透過裝飾著雲母的屏風,燭影漸漸暗淡下去。銀河也在靜靜地消失,晨星沉沒在黎明的曙光裡。",
+ "月宮的嫦娥恐怕後悔偷了後羿的長生不老藥,現在只有那青天碧海夜夜陪伴著她一顆孤獨的心。",
+ "韻譯",
+ "雲母屏風染上一層濃濃的燭影,銀河逐漸斜落啟明星也已下沉。",
+ "嫦娥想必悔恨當初偷吃下靈藥,如今獨處碧海青天而夜夜寒心。",
+ "注釋",
+ "1.嫦娥:古代神話中的月中仙女,江蘇人。《淮南子•覽冥訓》:“羿請不死之藥於西王母,恒娥竊以奔月。”恒又作姮。",
+ "2.雲母屏風:嵌著雲母石的屏風。此言嫦娥在月宮居室中獨處,夜晚,唯燭影和屏風相伴。 ",
+ "3.長河句:銀河逐漸向西傾斜,曉星也將隱沒,又一個孤獨的夜過去了。",
+ "4.碧海:《十洲記》:“扶桑在東海之東岸,岸直,陸行登岸一萬里,東複有碧海,海闊狹浩汗,與東海等,水既不鹹苦,正作碧色。”"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 詩作創作背景,永遠離不開作者本人的政治生活背景:作者終身處於牛李黨爭的夾縫之中,一生很不得志。牛李党爭是在宦官專權的日子裡,唐朝朝廷的官員中反對宦官的大都遭到排擠打擊。依附宦官的又分為兩派——以牛僧孺為首領的牛党和以李德裕為首領的李党,這兩派官員互相傾軋,爭吵不休,從唐憲宗時期(805年)開始,到唐宣宗時期(846年)才結束,鬧了將近40年,歷史上把這次朋黨之爭稱為“牛李黨爭”。牛李黨爭的實質就是太監當權,本詩就是諷刺太監當權的黑暗、諷刺憲宗的皇權旁落。子曰:“邦有道,則仕;邦無道,則可卷而懷之。”《嫦娥》即是“邦無道,則可卷而懷之”這類詩的典型。"
+ ]
+ },
+ {
+ "detail_text": "君問歸期未有期,巴山夜雨漲秋池。 何當共剪西窗燭,卻話巴山夜雨時。",
+ "title": "夜雨寄北",
+ "detail_appreciation_url": [
+ "/shangxi_20297.aspx",
+ "/shangxi_850.aspx",
+ "/shangxi_20296.aspx",
+ "/shangxi_20299.aspx",
+ "/shangxi_20298.aspx"
+ ],
+ "detail_translate_text": [
+ "譯文",
+ "您問歸期,歸期實難說准,巴山連夜暴雨,漲滿秋池。",
+ "何時歸去,共剪西窗燭花,當面訴說,巴山夜雨況味。",
+ "注釋",
+ "1.寄北:寫",
+ "寄給北方的人。詩人當時在巴蜀(現在四川省),他的親友在長安,所以說“寄北”。這首詩表達了詩人對親友的深刻懷念。",
+ "2.君:對對方的尊稱,等於現代漢語中的“您”。",
+ "3.歸期:指回家的日期。",
+ "4.巴山:指大巴山,在陝西南部和四川東北交界處。這裡泛指巴蜀一帶。",
+ "5.秋池:秋天的池塘。",
+ "6.何當:什麼時候。",
+ "7.共:副詞,用在謂語前,表示動作行為是由兩個或幾個施事者共同發生的。可譯為“一起”。",
+ "8.剪西窗燭:剪燭,剪去燃焦的燭芯,使燈光明亮。這裡形容深夜秉燭長談。“西窗話雨”“西窗剪燭”用作成語,所指也不限於夫婦,有時也用以寫朋友間的思念之情。 ",
+ "9.卻話:回頭說,追述。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 這首詩選自《玉溪生詩》卷三,是李商隱留滯巴蜀(今四川省)時寄懷長安親友之作。因為長安在巴蜀之北,故題作《夜雨寄北》。 在南宋洪邁編的《萬首唐人絕句》裡,這首詩的題目為《夜雨寄內》,意思是詩是寄給妻子的。他們認為,李商隱于大中五年(851)七月赴東川節度使柳仲郢梓州幕府,而王氏是在這一年的夏秋之交病故,李商隱過了幾個月才得知妻子的死訊。 現傳李詩各本題作《夜雨寄北》,“北”就是北方的人,可以指妻子,也可以指朋友。有人經過考證認為它作于作者的妻子王氏去世之後,因而不是“寄內”詩,而是寫贈長安友人的。 就詩的內容看,按“寄內”解,便情思委曲,悱惻纏綿;作“寄北”看,便嫌細膩恬淡,未免纖弱。"
+ ]
+ },
+ {
+ "detail_text": "嵩雲秦樹久離居,雙鯉迢迢一紙書。 休問梁園舊賓客,茂陵秋雨病相如。",
+ "title": "寄令狐郎中",
+ "detail_translate_text": [
+ "韻譯",
+ "你是嵩山雲我是秦川樹,長久離居;",
+ "千里迢迢,你寄來一封慰問的書信。",
+ "請別問我這個梁園舊客生活的甘苦;",
+ "我就像茂陵秋雨中多病的司馬相如。",
+ "注解",
+ "⑴嵩:中嶽嵩山,在今河南。",
+ "⑵雙鯉:指書信。",
+ "⑶梁園:梁孝王在梁地大興土木,以睢陽為中心,根據自然景色,修建了一個很大的花園,稱東苑,也叫菟園,後人稱為梁園。",
+ "⑷茂陵:今陝西興平縣東北,以漢武帝陵墓而得名。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "為有雲屏無限嬌,鳳城寒盡怕春宵。 無端嫁得金龜婿,辜負香衾事早朝。",
+ "title": "為有",
+ "detail_translate_text": [
+ "譯文",
+ "雲母屏風後面的美人格外嬌,京城寒冬已過卻怕短暫春宵。",
+ "無端地嫁了個做高官的丈夫,不戀溫暖香衾只想去上早朝。",
+ "注釋",
+ "⑴雲屏:雕飾著雲母圖案的屏風,古代皇家或富貴人家所用。",
+ "⑵鳳城:此指京城。",
+ "⑶無端:沒來由。金龜婿:佩帶金龜(即作官)的丈夫。《新唐書•車服志》:“天授二年,改佩魚皆為龜,其後三品以上龜袋飾以金。” "
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "李商隱"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "岐王宅裡尋常見,崔九堂前幾度聞。 正是江南好風景,落花時節又逢君。",
+ "title": "江南逢李龜年",
+ "detail_translate_text": [
+ "譯文",
+ "當年在岐王宅裡,常常見到你的演出;在崔九堂前,也曾多次欣賞你的藝術。",
+ "沒有想到,在這風景一派大好的江南;正是落花時節,能巧遇你這位老相熟。",
+ "注釋",
+ "1.李龜年:唐朝開元、天寶年間的著名樂師,擅長唱歌。因為受到皇帝唐玄宗的寵倖而紅極一時。“安史之亂”後,李龜年流落江南,賣藝為生。",
+ "2.岐王:唐玄宗李隆基",
+ "的弟弟,名叫李范,以好學愛才著稱,雅善音律。",
+ "3.尋常:經常。",
+ "4.崔九:崔滌,在兄弟中排行第九,中書令崔湜的弟弟。玄宗時,曾任殿中監,出入禁中,得玄宗寵倖。崔姓,是當時一家大姓,以此表明李龜年原來受賞識。",
+ "5.江南:這裡指今湖南省一帶。",
+ "6.落花時節:暮春,通常指陰曆三月。落花的寓意很多,人衰老飄零,社會的凋弊喪亂都在其中。",
+ "7.君:指李龜年。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "杜甫"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "多情卻似總無情,唯覺樽前笑不成。蠟燭有心還惜別,替人垂淚到天明。",
+ "title": "贈別•其二",
+ "detail_translate_text": [
+ "韻譯",
+ "聚首如膠似漆作別卻象無情;",
+ "只覺得酒筵上要笑笑不出聲。",
+ "案頭蠟燭有心它還依依惜別;",
+ "你看它替我們流淚流到天明。 ",
+ "注釋",
+ "多情句:意謂多情者滿腔情緒,一時無法表達,只能無言相對,倒象彼此無情。",
+ "樽:酒杯。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "杜牧"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "繁華事散逐香塵,流水無情草自春。日暮東風怨啼鳥,落花猶似墜樓人。",
+ "title": "金穀園",
+ "detail_translate_text": [
+ "譯文",
+ "繁華往事,已跟香塵一樣飄蕩無存;流水無情,野草卻年年以碧綠迎春。啼鳥悲鳴,傍晚隨著東風聲聲傳來;落花紛紛,恰似那為石崇",
+ "墜樓的綠珠美人。",
+ "注釋",
+ "1、香塵:石崇為教練家中舞妓步法,以沉香屑鋪象牙床上,使她們踐踏,無跡者賜以珍珠。",
+ "2、墜樓人:指石崇愛妾綠珠,曾為石崇墜樓而死。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "杜牧"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "青山隱隱水迢迢,秋盡江南草未凋。二十四橋明月夜,玉人何處教吹簫?",
+ "title": "寄揚州韓綽判官",
+ "detail_translate_text": [
+ "譯文",
+ "青山隱約綠水悠悠長流,江南深秋草木還未凋零。",
+ "明亮月光映照二十四橋,你是否還在聽美人吹簫?",
+ "注釋",
+ "⑴韓綽:事不詳,杜牧另有《哭韓綽》。判官:觀察使、節度使的屬官。時韓綽似任淮南節度使判官。西元833年(唐文宗大和七年)至835年(大和九年),杜牧曾任淮南節度使掌書記,與韓綽是同僚。",
+ "⑵迢迢:指江水悠長遙遠。一作“遙遙”。",
+ "⑶草未凋(diāo):一作“草木凋”。凋:凋謝。",
+ "⑷二十四橋:一說為二十四座橋。北宋沈括《夢溪筆談•補筆談》卷三中對每座橋的方位和名稱一一做了記載。一說有一座橋名叫二十四橋,清李鬥《揚州畫舫錄》卷十五:“廿四橋即吳家磚橋,一名紅藥橋,在熙春台後,……揚州鼓吹詞序雲,是橋因古二十四美人吹簫于此,故名。”",
+ "⑸玉人:貌美之人。這裡指韓綽。一說指揚州歌妓。教:使,令。",
+ "(6)簫:一種樂器。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋二"
+ ],
+ "detail_author": [
+ "杜牧"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 唐文宗大和七年四月到九年初,杜牧曾在淮南節度使(使府在揚州)牛僧孺幕中作過推官和掌書記,和當時在幕任節度判官的韓綽相識。此詩是杜牧離開揚州以後,在江南懷念昔日同僚韓綽判官而作。,具體寫作時間約在大和九年秋或開成元年秋。杜牧在韓綽死後作過《哭韓綽》詩,可見他與韓綽有深厚的友誼。 ",
+ " 此詩是杜牧被任為監察禦史,由淮南節度使幕府回長安供職後所作,具體寫作時間約在唐文宗大和九年(835年)或開成元年(836年)秋。唐文宗大和七年(833年)至大和九年(835年),杜牧曾任淮南節度使掌書記,與韓綽是同僚。 唐代的揚州,是長江中下游繁榮的都會,店肆林立,商賈如雲,酒樓舞榭,比比皆是,“每重城向夕,倡樓之上,常有絳紗燈數萬,輝羅耀列空中,九裡三十步街中,珠翠填咽,邈若仙境”(《太平廣記》卷273引《唐闕文》)。“性疏野放蕩”的杜牧,在這樣的環境中,常出沒于青樓倡家,有不少風流韻事,韓綽在這方面是他同道,所以回到長安後寫詩寄贈。"
+ ]
+ },
+ {
+ "detail_text": "落魄江南載酒行,楚腰纖細掌中輕。十年一覺揚州夢,贏得青樓薄幸名。",
+ "title": "遣懷",
+ "detail_translate_text": [
+ "譯文",
+ "失意潦倒,攜酒漂泊江湖,沉湎于楚靈王喜好的細腰女子和趙飛燕的輕盈舞姿。揚州十年的縱情聲色,好像一場夢,醒悟回頭,卻在青樓女子這中落得一個薄情的名聲。",
+ "注釋",
+ "⑴落魄:仕宦潦倒不得意,飄泊江湖。魄一作拓。楚腰:指細腰美女。《韓非子•二柄》:“楚靈王好細腰,而國中多餓人。”",
+ "⑵掌中輕:漢成帝皇后趙飛燕“體輕,能為掌上舞”(《飛燕外傳》)。",
+ "⑶十年:一作三年。",
+ "⑷青樓:舊指精美華麗的樓房,也指妓院。薄幸:薄情。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "杜牧"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "清時有味是無能,閑愛孤雲靜愛僧。 欲把一麾江海去,樂游原上望昭陵。",
+ "title": "將赴吳興登樂游原一絕",
+ "detail_translate_text": [
+ "譯文",
+ "太平時閒遊有趣卻是無能,閑愛天上孤雲安靜愛山僧。",
+ "我願手持旌麾去吳興上任,樂游原上再望望風雨昭陵。 ",
+ "注釋",
+ "⑴吳興:即今浙江省湖州市。樂游原:在長安城南,地勢高敞,可以眺望,是當時的遊覽勝地。",
+ "⑵“清時”句:意謂當這清平無所作為之時,自己所以有此閒情。 ",
+ "⑶一麾(huī):旌旗。",
+ "⑷昭陵:唐太宗的陵墓。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "杜牧"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "折戟沉沙鐵未銷,自將磨洗認前朝。東風不與周郎便,銅雀春深鎖二喬。",
+ "title": "赤壁",
+ "detail_translate_text": [
+ "譯文",
+ "一支折斷了的鐵戟(古代兵器)沉沒在水底的沙中還沒有銷蝕掉,經過自己又磨又洗髮現這是當年赤壁之戰的遺留之物。",
+ "假如東風不給周瑜以方便,結局恐怕是",
+ "曹操",
+ "取勝,二喬被關進銅雀台了。",
+ "注釋",
+ "⑴折戟:折斷的戟。戟,古代兵器。",
+ "⑵銷:銷蝕。",
+ "⑶將:拿起。",
+ "⑷磨洗:磨光洗淨。",
+ "⑸認前朝:認出戟是東吳破曹時的遺物。",
+ "⑹東風:指三國時期的一個戰役──火燒赤壁。",
+ "⑺周郎:指周瑜,字公瑾,年輕時即有才名,人乎周郎。後任吳軍大都督,曾參與赤壁之戰並為此戰役中的主要人物。",
+ "⑻銅雀:即銅雀台,曹操在今河北省臨漳縣建造的一座樓臺,樓頂裡有大銅雀,臺上住姬妾歌妓,是曹操暮年行樂處。",
+ "⑼二喬:東吳喬公的兩個女兒,一嫁前國主孫策(孫權兄),稱大喬,一嫁軍事統帥周瑜,稱小喬,合稱“二喬”。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "杜牧"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 這首詩是詩人經過赤壁(今湖北省武昌縣西南赤磯山)這個著名的古戰場,有感於三國時代的英雄成敗而寫下的。發生于漢獻帝建安十三年(208年)十月的赤壁之戰,是對三國鼎立的歷史形勢起著決定性作用的一次重大戰役。其結果是孫、劉聯軍擊敗了曹軍,而三十四歲的孫吳軍統帥周瑜,乃是這次戰役中的頭號風雲人物。詩人觀賞了古戰場的遺物,對赤壁之戰發表了獨特的看法,有感而作。"
+ ]
+ },
+ {
+ "detail_text": "煙籠寒水月籠沙,夜泊秦淮近酒家。 商女不知亡國恨,隔江猶唱後庭花。",
+ "title": "泊秦淮",
+ "detail_translate_text": [
+ "譯文",
+ "迷離月色和輕煙籠罩寒水和白沙,夜晚船泊在秦淮靠近岸上的酒家。",
+ "賣唱的歌女不懂什麼叫亡國之恨,隔著江水還高唱著《玉樹後庭花》。",
+ "注釋",
+ "⑴秦淮:即秦淮河,發源于江蘇句容大茅山與溧水東廬山兩山間,經南京流入長江。相傳為秦始皇南巡會稽時開鑿的,用來疏通淮水,故稱秦淮河。歷代均為繁華的遊賞之地。",
+ "⑵煙:煙霧。",
+ "⑶泊:停泊。",
+ "⑷商女:以賣唱為生的歌女。",
+ "⑸後庭花:歌曲《玉樹後庭花》的簡稱。南朝陳皇帝陳叔寶",
+ "(即陳後主)溺於聲色,作此曲與後宮美女尋歡作樂,終致亡國,所以後世把此曲作為亡國之音的代表。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋二"
+ ],
+ "detail_author": [
+ "杜牧"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 唐朝著名詩人杜牧游秦淮,在船上聽見歌女唱《玉樹後庭花》,綺豔輕蕩,男女之間互相唱和,歌聲哀傷,是亡國之音。當年陳後主長期沉迷於這種萎靡的生活,視國政為兒戲,終於丟了江山。陳國雖亡,這種靡靡的音樂卻留傳下來,還在秦淮歌女中傳唱,這使杜牧非常感慨。他的詩說:這些無知歌女連亡國恨都不懂,還唱這種亡國之音!其實這是借題發揮,他譏諷的實際是晚唐政治:群臣們又沉湎於酒色,快步陳後主的後塵了。秦淮一隅,寄至如此深沉的興亡感,足見金陵在當時全國政治中心已經移向長安的情況下,影響仍然很大。 杜牧前期頗為關心政治,對當時百孔千瘡的唐王朝表示憂慮,他看到統治集團的腐朽昏庸,看到藩鎮的擁兵自固,看到邊患的頻繁,深感社會危機四伏,唐王朝前景可悲。這種憂時傷世的思想,促使他寫了好些具有現實意義的詩篇。《泊秦淮》也就是在這種思想基礎上產生的。當他來到當時還是一片繁華的秦淮河上,聽到酒家歌女演唱《後庭花》曲,便感慨萬千,寫下了這首詩。詩中說,金陵歌女“不知亡國恨”,還唱著那《後庭花》曲。其實,這是作者借陳後主(陳叔寶)因追求荒淫享樂終至亡國的歷史,諷刺晚唐那般醉生夢死的統治者不從中汲取教訓,表現了作者對國家命運的無比關懷和深切憂慮。 ",
+ " 杜牧前期頗為關心政治,對當時百孔千瘡的唐王朝表示憂慮,他看到統治集團的腐朽昏庸,看到藩鎮的擁兵自固,看到邊患的頻繁,深感社會危機四伏,唐王朝前景可悲。這種憂時傷世的思想,促使他寫了許多具有現實意義的詩篇。《泊秦淮》也就是在這種思想基礎上產生的。 六朝古都金陵的秦淮河兩岸歷來是達官貴人們享樂游宴的場所,“秦淮”也逐漸成為奢靡生活的代稱。詩人夜泊于此,眼見燈紅酒綠,耳聞淫歌豔曲,觸景生情,又想到唐朝國勢日衰,當權者昏庸荒淫,便感慨萬千,寫下了這首詩:《泊秦淮》。"
+ ]
+ },
+ {
+ "detail_text": "歲歲金河複玉關,朝朝馬策與刀環。 三春白雪歸青塚,萬里黃河繞黑山。",
+ "title": "征人怨",
+ "detail_translate_text": [
+ "譯文",
+ "年年歲歲戍守金河保衛玉關,日日夜夜揮舞馬鞭手握刀環。",
+ "時屆暮春白雪飄飛歸來塞外,萬里奔波渡過黃河繞過黑山。",
+ "注釋",
+ "⑴歲歲:年復一年,年年月月。金河:即黑河,在今呼和浩特市城南。玉關:即甘肅玉門關。",
+ "⑵朝(zhāo)朝:每天,日日夜夜。馬策:馬鞭。刀環:刀柄上的銅環,喻征戰事。",
+ "⑶三春:春季的三個月或暮春,此處指暮春。青塚(zhǒng):西漢時王昭君",
+ "的墳墓,在今內蒙古呼和浩特之南,當時被認為是遠離中原的一處極僻遠荒涼的地方。傳說塞外草白,惟獨昭君墓上草色發青,故稱青塚。",
+ "⑷黑山:一名殺虎山,在今內蒙古呼和浩特市東南。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "柳中庸"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "誰謂傷心畫不成,畫人心逐世人情。 君看六幅南朝事,老木寒雲滿故城。",
+ "title": "金陵圖",
+ "detail_translate_text": [
+ "譯文",
+ "誰說畫不出六朝古都的傷心事,只不過是那些畫家為了迎合當權者的心態而不畫傷心圖而已。",
+ "你看這六幅描摹南朝往事的畫中,枯老的樹木和寒涼的雲朵充滿了整個金陵城。",
+ "注釋",
+ "⑴金陵:古地名,即今江蘇南京及江寧等地,為六朝故都。",
+ "⑵逐:隨,跟隨。《玉篇》:“逐,從也。”這裡可作迎合解。",
+ "⑶老木:枯老的樹木。’"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "韋莊"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "獨憐幽草澗邊生,上有黃鸝深樹鳴。 春潮帶雨晚來急,野渡無人舟自橫。",
+ "title": "滁州西澗",
+ "detail_translate_text": [
+ "譯文",
+ "最是喜愛澗邊生長的幽幽野草,還有那樹叢深處婉轉啼唱的黃鸝。",
+ "春潮不斷上漲,還夾帶著密密細雨。荒野渡口無人,只有一隻小船悠閒地橫在水面。",
+ "注釋",
+ "⑴滁州:在今安徽滁州以西。西澗:在滁州城西,俗名稱上馬河。 ",
+ "⑵獨憐:唯獨喜歡。幽草:幽谷裡的小草。幽,一作“芳”。生:一作“行”。",
+ "⑶深樹:枝葉茂密的樹。深,《才調集》作“遠”。樹,《全唐》注“有本作‘處’”。",
+ "⑷春潮:春天的潮汐。",
+ "⑸野渡:郊野的渡口。橫:指隨意飄浮。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "韋應物"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 一般認為《滁州西澗》這首詩是唐德宗建中二年(781年)韋應物任滁州刺史時所作。他時常獨步郊外,滁州西澗便是他常光顧的地方。作者喜愛西澗清幽的景色,一天遊覽至滁州西澗(在滁州城西郊野),寫下了這首詩情濃郁的小詩。"
+ ]
+ },
+ {
+ "detail_text": "隱隱飛橋隔野煙,石磯西畔問漁船。 桃花盡日隨流水,洞在清溪何處邊。",
+ "title": "桃花溪",
+ "detail_translate_text": [
+ "譯文",
+ "一座高橋隔著雲煙出現,在岩石的西畔詢問漁船。",
+ "桃花整天隨著流水流淌,桃源洞口在清溪的哪邊?",
+ "注釋",
+ "⑴桃花溪:水名,在湖南省桃源縣桃源山下。",
+ "⑵飛橋:高橋。",
+ "⑶石磯:水中積石或水邊突出的岩石、石堆。漁船:源自陶淵明《桃花源記》中語句。",
+ "⑷盡日:整天,整日。",
+ "⑸洞:指《桃花源記》中武陵漁人找到的洞口。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "張旭"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "金陵津渡小山樓,一宿行人自可愁。 潮落夜江斜月裡,兩三星火是瓜州。",
+ "title": "題金陵渡",
+ "detail_translate_text": [
+ "譯文",
+ "夜宿金陵渡口的小山樓,輾轉難眠心中滿懷旅愁。",
+ "斜月朦朧江潮正在下落,對岸星火閃閃便是瓜洲。",
+ "注釋",
+ "⑴金陵渡:渡口名,在今江蘇省鎮江市附近。",
+ "⑵津:渡口。小山樓:渡口附近小樓,作者住宿之處。",
+ "⑶宿:過夜。行人:旅客,指作者自己。可:當。",
+ "⑷斜月:下半夜偏西的月亮。星火:形容遠處三三兩兩像星星一樣閃爍的火光。",
+ "⑸瓜州:在長江北岸,今江蘇省邗江縣南部,與鎮江市隔江相對,向來是長江南北水運的交通要衝。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "張祜"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "禁門宮樹月痕過,媚眼惟看宿鷺窠。斜拔玉釵燈影畔,剔開紅焰救飛蛾。",
+ "title": "贈內人",
+ "detail_translate_text": [
+ "譯文",
+ "月光由宮門移到宮樹梢,媚眼只看那宿鷺的窩巢。",
+ "在燈影旁拔下頭上玉釵,挑開燈焰救出撲火飛蛾。",
+ "注釋",
+ "⑴內人:指宮女。因皇宮又稱大內,故宮女稱內人。",
+ "⑵禁門:宮門。",
+ "⑶宿鷺:指雙棲之鴛鴦。",
+ "⑷紅焰:指燈芯。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "張祜"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "日光斜照集靈台,紅樹花迎曉露開。 昨夜上皇新授籙,太真含笑入簾來。",
+ "title": "集靈台•其一",
+ "detail_author": [
+ "張祜"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "虢國夫人承主恩,平明騎馬入宮門。卻嫌脂粉汙顏色,淡掃峨眉朝至尊。",
+ "title": "集靈台•其二",
+ "detail_author": [
+ "張祜"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "月落烏啼霜滿天,江楓漁火對愁眠。姑蘇城外寒山寺,夜半鐘聲到客船。",
+ "title": "楓橋夜泊",
+ "detail_translate_text": [
+ "譯文",
+ "月亮已落下烏鴉啼叫寒氣滿天, 對著江邊楓樹和漁火憂愁而眠。",
+ "姑蘇城外那寂寞清靜寒山古寺, 半夜裡敲鐘的聲音傳到了客船。",
+ "注釋",
+ "楓橋:在今蘇州市閶門外。",
+ "夜泊:夜間把船停靠在岸邊。",
+ "烏啼:一說為烏鴉啼鳴,一說為烏啼鎮。",
+ "霜滿天:霜,不可能滿天,這個“霜”字應當體會作嚴寒;霜滿天,是空氣極冷的形象語。",
+ "江楓:一般解釋作“江邊楓樹”,江指吳淞江,源自太湖,流經上海,匯入長江,俗稱蘇州河。另外有人認為指“江村橋”和“楓橋”。“楓橋”在吳縣南門(閶闔門)外西郊,本名“封橋”,因張繼此而改為“楓橋”。",
+ "漁火:通常解釋,“魚火”就是漁船上的燈火;也有說法指“漁火”實際上就是一同打漁的夥伴。",
+ "對愁眠:伴愁眠之意,此句把江楓和漁火二詞擬人化。就是後世有不解詩的人,懷疑江楓漁火怎麼能對愁眠,於是附會出一種講法,說愁眠是寒山寺對面的山名。",
+ "姑蘇:蘇州的別稱,因城西南有姑蘇山而得名。",
+ "寒山寺:在楓橋附近,始建于南朝梁代。相傳因唐代僧人寒山、拾得",
+ "曾住此而得名。在今蘇州市西楓橋鎮。本名“妙利普明塔院”,又名楓橋寺;另一種說法,“寒山”乃泛指肅寒之山,非寺名。寺曾經數次重建,現在的寺宇,為太平天國以後新建。寺鐘在第二次世界大戰時,被日本人運走,下落不明。",
+ "夜半鐘聲:當今的佛寺(春節)半夜敲鐘,但當時有半夜敲鐘的習慣,也叫「無常鐘」或「分夜鐘」。宋朝大文豪歐陽修",
+ "曾提出疑問表示:“詩人為了貪求好句,以至於道理說不通,這是作文章的毛病,如張繼詩句“夜半鐘聲到客船”,句子雖好,但那有三更半夜打鐘的道理?”可是經過許多人的實地查訪,才知蘇州和鄰近地區的佛寺,有打半夜鐘的風俗。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "張繼"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "誓掃匈奴不顧身,五千貂錦喪胡塵。可憐無定河邊骨,猶是春閨夢裡人!",
+ "title": "隴西行",
+ "detail_translate_text": [
+ "譯文",
+ "唐軍將士誓死橫掃匈奴奮不顧身,",
+ "五千身穿錦袍的精兵戰死在胡塵。",
+ "真可",
+ "憐呵那無定河邊成堆的白骨,",
+ "還是少婦們夢中相依相伴的丈夫。",
+ "注釋",
+ "①貂錦:這裡指戰士,指裝備精良的精銳之師。",
+ "②無定河:在陝西北部。",
+ "③春閨:這裡指戰死者的妻子。",
+ "④匈奴:指西北邊境部族。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "陳陶"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "近寒食雨草萋萋,著麥苗風柳映堤。等是有家歸未得,杜鵑休向耳邊啼。",
+ "title": "雜詩",
+ "detail_author": [],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "少小離家老大回,鄉音無改鬢毛衰。兒童相見不相識,笑問客從何處來。",
+ "title": "回鄉偶書•其一",
+ "detail_translate_text": [
+ "譯文",
+ "我在年少時離開家鄉,到了遲暮之年才回來。我的鄉音雖未改變,但鬢角的毛髮卻已經疏落。兒童們看見我,沒有一個認識的。他們笑著詢問:這客人是從哪裡來的呀? ",
+ "注釋",
+ "(1)偶書:隨便寫的。偶:說明詩寫作得很偶然,是隨時有所見、有所感就寫下來的。 ",
+ "(2)少小離家:賀知章三十七歲中進士,在此以前就離開家鄉。老大:年紀大了。賀知章回鄉時已年逾八十。",
+ "(3)鄉音:家鄉的口音。無改:沒什麼變化。一作“難改”。鬢毛:額角邊靠近耳朵的頭髮。一作“面毛”。衰(cui):減少,疏落。鬢毛衰:指鬢毛減少,疏落。",
+ "(4)相見:即看見我;相:帶有指代性的副詞。不相識:即不認識我。",
+ "(5)笑問:一本作“卻問”,一本作“借問”。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "賀知章"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ ""
+ ]
+ },
+ {
+ "detail_text": "冰簟銀床夢不成,碧天如水夜雲輕。 雁聲遠過瀟湘去,十二樓中月自明。",
+ "title": "瑤瑟怨",
+ "detail_translate_text": [
+ "譯文",
+ "秋夜床席冰冷夢也難以做成,天空碧藍如水夜雲像沙樣輕。",
+ "雁聲淒厲遠遠地飛過瀟湘去,十二樓中的明月空自放光明。",
+ "注釋",
+ "⑴瑤瑟:玉鑲的華美的瑟。",
+ "⑵冰簟:清涼的竹席。銀床:指灑滿月光的床。",
+ "⑶遠:一作“還”。過:一作“向”。瀟湘:二水名,在今湖南境內。此代指楚地。",
+ "⑷十二樓:原指神仙的居所,此指女子的住所。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "溫庭筠"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "更深月色半人家,北斗闌幹南斗斜。 今夜偏知春氣暖,蟲聲新透綠窗紗。",
+ "title": "月夜",
+ "detail_translate_text": [
+ "譯文",
+ "夜靜更深,月光只照亮了人家房屋的一半,另一半隱藏在黑夜裡。北斗星傾斜了,南斗星也傾斜了。",
+ "今夜才知春天的來臨,因為你聽那被樹葉映綠的窗紗外,唧唧的蟲鳴,頭一遭兒傳到了屋子裡來了。",
+ "注釋",
+ "⑴更深:古時計算時間,一夜分成五更。更深,夜深了。",
+ "⑵月色半人家:月光只照亮了人家房屋的一半,另一半隱藏在黑暗裡。",
+ "⑶北斗:在北方天空排列成鬥形的七顆亮星。",
+ "⑷闌幹:這裡指橫斜的樣子。",
+ "⑸南斗:有星六顆。在北斗星以南,形似鬥,故稱“南斗”。",
+ "⑹偏知:才知,表示出乎意料。",
+ "⑺新:初。新透:第一次透過。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "劉方平"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "紗窗日落漸黃昏,金屋無人見淚痕。 寂寞空庭春欲晚,梨花滿地不開門。",
+ "title": "春怨",
+ "detail_translate_text": [
+ "譯文",
+ "紗窗外的陽光淡去,黃昏漸漸降臨;",
+ "鎖閉華屋,無人看見我悲哀的淚痕。",
+ "庭院空曠寂寞,春天景色行將逝盡;",
+ "梨花飄落滿地,無情無緒把門關緊。",
+ "注釋",
+ "金屋:原指漢武帝少時欲金屋藏阿嬌事。這裡指妃嬪所住的華麗宮室。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "劉方平"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "朱雀橋邊野草花,烏衣巷口夕陽斜。 舊時王謝堂前燕,飛入尋常百姓家。",
+ "title": "烏衣巷",
+ "detail_translate_text": [
+ "翻譯",
+ "朱雀橋邊一些野草開花,烏衣巷口唯有夕陽斜掛。當年王導、謝安簷下的燕子,如今已飛進尋常百姓家中。 ",
+ "注釋",
+ "【朱雀橋】在金陵城外,烏衣巷在橋邊。 在今南京市東南,在文德橋南岸,是三國東吳時的禁軍駐地。由於當時禁軍身著黑色軍服,所以此地俗語稱烏衣巷。在東晉時以王導、謝安兩大家族,都居住在烏衣巷,人稱其子弟為“烏衣郎”。入唐後,烏衣巷淪為廢墟。現為民間工藝品的彙集之地。",
+ "【烏衣】燕子,舊時王謝之家庭多燕子。今江蘇省南京市江甯區,橫跨秦淮河。",
+ "【尋常】平常。",
+ "【王謝】王導、謝安,晉相,世家大族,賢才眾多,皆居巷中,冠蓋簪纓,為六朝(吳、東晉、宋齊梁陳先後建都于建康即今之南京)巨室。至唐時,則皆衰落不知其處。",
+ "【舊時】晉代。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "劉禹錫"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "新妝宜面下朱樓,深鎖春光一院愁。 行到中庭數花朵,蜻蜓飛上玉搔頭。",
+ "title": "春詞",
+ "detail_translate_text": [
+ "譯文",
+ "濃妝豔抹打扮一新下紅樓,深深庭院春光雖好只添愁。",
+ "走到庭中查數新開的花朵,蜻蜓有情飛到了玉簪上頭。",
+ "注釋",
+ "⑴春詞:春怨之詞。“春詞”為白居易原題目。",
+ "⑵宜面:脂粉和臉色很勻稱。一作“粉面”。朱樓:髹以紅漆的樓房,多指富貴女子的居所。",
+ "⑶蜻蜓:暗指頭上之香。玉搔頭:玉簪,可用來搔頭,故稱。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "劉禹錫"
+ ],
+ "detail_dynasty": "唐代"
+ },
+ {
+ "detail_text": "春城無處不飛花,寒食東風禦柳斜。 日暮漢宮傳蠟燭,輕煙散入五侯家。",
+ "title": "寒食",
+ "detail_translate_text": [
+ "譯文",
+ "暮春時節,長安城處處柳絮飛舞、落紅無數,寒食節東風吹拂著皇家花園的柳枝。",
+ "夜色降臨,宮裡忙著傳蠟燭,嫋嫋炊煙散入王侯貴戚的家裡。",
+ "注釋",
+ "①春城:暮春時的長安城。",
+ "②寒食:古代在清明節前兩天的節日,焚火三天,只吃冷食,所以稱寒食。禦柳:御苑之柳,皇城中的柳樹。",
+ "③漢宮:這裡指唐朝皇官。傳蠟燭:寒食節普天下禁火,但權貴寵臣可得到皇帝恩賜而得到燃燭。《唐輦下歲時記》“清明日取榆柳之火以賜近臣”。",
+ "④五侯:漢成帝時封王皇后的五個兄弟王譚、王商、王立、王根、王逢時皆為候,受到特別的恩寵。這裡泛指天子近幸之臣。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "韓翃"
+ ],
+ "detail_dynasty": "唐代",
+ "detail_background_text": [
+ " 寒食是中國古代一個傳統節日,一般在冬至後一百零五天,清明前兩天。古人很重視這個節日,按風俗家家禁火,只吃現成食物,故名寒食。唐代制度,到清明這天,皇帝宣旨取榆柳之火賞賜近臣,以示皇恩。這儀式用意有二:一是標誌著寒食節已結束,可以用火了;二是藉此給臣子官吏們提個醒,讓大家向有功也不受祿的介子推學習,勤政為民。唐代詩人竇叔向有《寒食日恩賜火》詩紀其實:“恩光及小臣,華燭忽驚春。電影隨中使,星輝拂路人。幸因榆柳暖,一照草茅貧。”正可與韓翃這一首詩參照。 中唐以後,幾任昏君都寵倖宦官,以致他們的權勢很大,敗壞朝政,排斥朝官,正直人士對此都極為憤慨。有意見認為此詩正是因此而發。"
+ ]
+ },
+ {
+ "detail_text": "碧闌幹外繡簾垂,猩血屏風畫折枝。 八尺龍鬚方錦褥,已涼天氣未寒時。",
+ "title": "已涼",
+ "detail_translate_text": [
+ "譯文",
+ "翠綠色的欄杆外繡簾兒低垂,猩紅的屏風上畫著草木花卉。",
+ "龍鬚草織成的席子鋪上錦褥,天氣已涼卻還未到寒冷時候。",
+ "注釋",
+ "⑴繡簾:一作“翠簾”。",
+ "⑵猩血:一作“猩色”,猩紅色。屏風:一種用來遮擋和做隔斷的東西。畫折枝:一作“畫柘枝”,指圖繪花卉草木。",
+ "⑶龍鬚:屬燈心草科,莖可織席。這裡指草席。"
+ ],
+ "detail_translate_note_text_title": [
+ "譯文及注釋"
+ ],
+ "detail_author": [
+ "韓偓"
+ ],
+ "detail_dynasty": "唐代"
+ }
+]
\ No newline at end of file
diff --git a/06 - Type Ahead/cities.json b/06 - Type Ahead/cities.json
new file mode 100644
index 0000000..785628f
--- /dev/null
+++ b/06 - Type Ahead/cities.json
@@ -0,0 +1,9002 @@
+[
+ {
+ "city": "New York",
+ "growth_from_2000_to_2013": "4.8%",
+ "latitude": 40.7127837,
+ "longitude": -74.0059413,
+ "population": "8405837",
+ "rank": "1",
+ "state": "New York"
+ },
+ {
+ "city": "Los Angeles",
+ "growth_from_2000_to_2013": "4.8%",
+ "latitude": 34.0522342,
+ "longitude": -118.2436849,
+ "population": "3884307",
+ "rank": "2",
+ "state": "California"
+ },
+ {
+ "city": "Chicago",
+ "growth_from_2000_to_2013": "-6.1%",
+ "latitude": 41.8781136,
+ "longitude": -87.6297982,
+ "population": "2718782",
+ "rank": "3",
+ "state": "Illinois"
+ },
+ {
+ "city": "Houston",
+ "growth_from_2000_to_2013": "11.0%",
+ "latitude": 29.7604267,
+ "longitude": -95.3698028,
+ "population": "2195914",
+ "rank": "4",
+ "state": "Texas"
+ },
+ {
+ "city": "Philadelphia",
+ "growth_from_2000_to_2013": "2.6%",
+ "latitude": 39.9525839,
+ "longitude": -75.1652215,
+ "population": "1553165",
+ "rank": "5",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Phoenix",
+ "growth_from_2000_to_2013": "14.0%",
+ "latitude": 33.4483771,
+ "longitude": -112.0740373,
+ "population": "1513367",
+ "rank": "6",
+ "state": "Arizona"
+ },
+ {
+ "city": "San Antonio",
+ "growth_from_2000_to_2013": "21.0%",
+ "latitude": 29.4241219,
+ "longitude": -98.49362819999999,
+ "population": "1409019",
+ "rank": "7",
+ "state": "Texas"
+ },
+ {
+ "city": "San Diego",
+ "growth_from_2000_to_2013": "10.5%",
+ "latitude": 32.715738,
+ "longitude": -117.1610838,
+ "population": "1355896",
+ "rank": "8",
+ "state": "California"
+ },
+ {
+ "city": "Dallas",
+ "growth_from_2000_to_2013": "5.6%",
+ "latitude": 32.7766642,
+ "longitude": -96.79698789999999,
+ "population": "1257676",
+ "rank": "9",
+ "state": "Texas"
+ },
+ {
+ "city": "San Jose",
+ "growth_from_2000_to_2013": "10.5%",
+ "latitude": 37.3382082,
+ "longitude": -121.8863286,
+ "population": "998537",
+ "rank": "10",
+ "state": "California"
+ },
+ {
+ "city": "Austin",
+ "growth_from_2000_to_2013": "31.7%",
+ "latitude": 30.267153,
+ "longitude": -97.7430608,
+ "population": "885400",
+ "rank": "11",
+ "state": "Texas"
+ },
+ {
+ "city": "Indianapolis",
+ "growth_from_2000_to_2013": "7.8%",
+ "latitude": 39.768403,
+ "longitude": -86.158068,
+ "population": "843393",
+ "rank": "12",
+ "state": "Indiana"
+ },
+ {
+ "city": "Jacksonville",
+ "growth_from_2000_to_2013": "14.3%",
+ "latitude": 30.3321838,
+ "longitude": -81.65565099999999,
+ "population": "842583",
+ "rank": "13",
+ "state": "Florida"
+ },
+ {
+ "city": "San Francisco",
+ "growth_from_2000_to_2013": "7.7%",
+ "latitude": 37.7749295,
+ "longitude": -122.4194155,
+ "population": "837442",
+ "rank": "14",
+ "state": "California"
+ },
+ {
+ "city": "Columbus",
+ "growth_from_2000_to_2013": "14.8%",
+ "latitude": 39.9611755,
+ "longitude": -82.99879419999999,
+ "population": "822553",
+ "rank": "15",
+ "state": "Ohio"
+ },
+ {
+ "city": "Charlotte",
+ "growth_from_2000_to_2013": "39.1%",
+ "latitude": 35.2270869,
+ "longitude": -80.8431267,
+ "population": "792862",
+ "rank": "16",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Fort Worth",
+ "growth_from_2000_to_2013": "45.1%",
+ "latitude": 32.7554883,
+ "longitude": -97.3307658,
+ "population": "792727",
+ "rank": "17",
+ "state": "Texas"
+ },
+ {
+ "city": "Detroit",
+ "growth_from_2000_to_2013": "-27.1%",
+ "latitude": 42.331427,
+ "longitude": -83.0457538,
+ "population": "688701",
+ "rank": "18",
+ "state": "Michigan"
+ },
+ {
+ "city": "El Paso",
+ "growth_from_2000_to_2013": "19.4%",
+ "latitude": 31.7775757,
+ "longitude": -106.4424559,
+ "population": "674433",
+ "rank": "19",
+ "state": "Texas"
+ },
+ {
+ "city": "Memphis",
+ "growth_from_2000_to_2013": "-5.3%",
+ "latitude": 35.1495343,
+ "longitude": -90.0489801,
+ "population": "653450",
+ "rank": "20",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Seattle",
+ "growth_from_2000_to_2013": "15.6%",
+ "latitude": 47.6062095,
+ "longitude": -122.3320708,
+ "population": "652405",
+ "rank": "21",
+ "state": "Washington"
+ },
+ {
+ "city": "Denver",
+ "growth_from_2000_to_2013": "16.7%",
+ "latitude": 39.7392358,
+ "longitude": -104.990251,
+ "population": "649495",
+ "rank": "22",
+ "state": "Colorado"
+ },
+ {
+ "city": "Washington",
+ "growth_from_2000_to_2013": "13.0%",
+ "latitude": 38.9071923,
+ "longitude": -77.0368707,
+ "population": "646449",
+ "rank": "23",
+ "state": "District of Columbia"
+ },
+ {
+ "city": "Boston",
+ "growth_from_2000_to_2013": "9.4%",
+ "latitude": 42.3600825,
+ "longitude": -71.0588801,
+ "population": "645966",
+ "rank": "24",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Nashville-Davidson",
+ "growth_from_2000_to_2013": "16.2%",
+ "latitude": 36.1626638,
+ "longitude": -86.7816016,
+ "population": "634464",
+ "rank": "25",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Baltimore",
+ "growth_from_2000_to_2013": "-4.0%",
+ "latitude": 39.2903848,
+ "longitude": -76.6121893,
+ "population": "622104",
+ "rank": "26",
+ "state": "Maryland"
+ },
+ {
+ "city": "Oklahoma City",
+ "growth_from_2000_to_2013": "20.2%",
+ "latitude": 35.4675602,
+ "longitude": -97.5164276,
+ "population": "610613",
+ "rank": "27",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Louisville/Jefferson County",
+ "growth_from_2000_to_2013": "10.0%",
+ "latitude": 38.2526647,
+ "longitude": -85.7584557,
+ "population": "609893",
+ "rank": "28",
+ "state": "Kentucky"
+ },
+ {
+ "city": "Portland",
+ "growth_from_2000_to_2013": "15.0%",
+ "latitude": 45.5230622,
+ "longitude": -122.6764816,
+ "population": "609456",
+ "rank": "29",
+ "state": "Oregon"
+ },
+ {
+ "city": "Las Vegas",
+ "growth_from_2000_to_2013": "24.5%",
+ "latitude": 36.1699412,
+ "longitude": -115.1398296,
+ "population": "603488",
+ "rank": "30",
+ "state": "Nevada"
+ },
+ {
+ "city": "Milwaukee",
+ "growth_from_2000_to_2013": "0.3%",
+ "latitude": 43.0389025,
+ "longitude": -87.9064736,
+ "population": "599164",
+ "rank": "31",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Albuquerque",
+ "growth_from_2000_to_2013": "23.5%",
+ "latitude": 35.0853336,
+ "longitude": -106.6055534,
+ "population": "556495",
+ "rank": "32",
+ "state": "New Mexico"
+ },
+ {
+ "city": "Tucson",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 32.2217429,
+ "longitude": -110.926479,
+ "population": "526116",
+ "rank": "33",
+ "state": "Arizona"
+ },
+ {
+ "city": "Fresno",
+ "growth_from_2000_to_2013": "18.3%",
+ "latitude": 36.7468422,
+ "longitude": -119.7725868,
+ "population": "509924",
+ "rank": "34",
+ "state": "California"
+ },
+ {
+ "city": "Sacramento",
+ "growth_from_2000_to_2013": "17.2%",
+ "latitude": 38.5815719,
+ "longitude": -121.4943996,
+ "population": "479686",
+ "rank": "35",
+ "state": "California"
+ },
+ {
+ "city": "Long Beach",
+ "growth_from_2000_to_2013": "1.5%",
+ "latitude": 33.7700504,
+ "longitude": -118.1937395,
+ "population": "469428",
+ "rank": "36",
+ "state": "California"
+ },
+ {
+ "city": "Kansas City",
+ "growth_from_2000_to_2013": "5.5%",
+ "latitude": 39.0997265,
+ "longitude": -94.5785667,
+ "population": "467007",
+ "rank": "37",
+ "state": "Missouri"
+ },
+ {
+ "city": "Mesa",
+ "growth_from_2000_to_2013": "13.5%",
+ "latitude": 33.4151843,
+ "longitude": -111.8314724,
+ "population": "457587",
+ "rank": "38",
+ "state": "Arizona"
+ },
+ {
+ "city": "Virginia Beach",
+ "growth_from_2000_to_2013": "5.1%",
+ "latitude": 36.8529263,
+ "longitude": -75.97798499999999,
+ "population": "448479",
+ "rank": "39",
+ "state": "Virginia"
+ },
+ {
+ "city": "Atlanta",
+ "growth_from_2000_to_2013": "6.2%",
+ "latitude": 33.7489954,
+ "longitude": -84.3879824,
+ "population": "447841",
+ "rank": "40",
+ "state": "Georgia"
+ },
+ {
+ "city": "Colorado Springs",
+ "growth_from_2000_to_2013": "21.4%",
+ "latitude": 38.8338816,
+ "longitude": -104.8213634,
+ "population": "439886",
+ "rank": "41",
+ "state": "Colorado"
+ },
+ {
+ "city": "Omaha",
+ "growth_from_2000_to_2013": "5.9%",
+ "latitude": 41.2523634,
+ "longitude": -95.99798829999999,
+ "population": "434353",
+ "rank": "42",
+ "state": "Nebraska"
+ },
+ {
+ "city": "Raleigh",
+ "growth_from_2000_to_2013": "48.7%",
+ "latitude": 35.7795897,
+ "longitude": -78.6381787,
+ "population": "431746",
+ "rank": "43",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Miami",
+ "growth_from_2000_to_2013": "14.9%",
+ "latitude": 25.7616798,
+ "longitude": -80.1917902,
+ "population": "417650",
+ "rank": "44",
+ "state": "Florida"
+ },
+ {
+ "city": "Oakland",
+ "growth_from_2000_to_2013": "1.3%",
+ "latitude": 37.8043637,
+ "longitude": -122.2711137,
+ "population": "406253",
+ "rank": "45",
+ "state": "California"
+ },
+ {
+ "city": "Minneapolis",
+ "growth_from_2000_to_2013": "4.5%",
+ "latitude": 44.977753,
+ "longitude": -93.2650108,
+ "population": "400070",
+ "rank": "46",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Tulsa",
+ "growth_from_2000_to_2013": "1.3%",
+ "latitude": 36.1539816,
+ "longitude": -95.99277500000001,
+ "population": "398121",
+ "rank": "47",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Cleveland",
+ "growth_from_2000_to_2013": "-18.1%",
+ "latitude": 41.49932,
+ "longitude": -81.6943605,
+ "population": "390113",
+ "rank": "48",
+ "state": "Ohio"
+ },
+ {
+ "city": "Wichita",
+ "growth_from_2000_to_2013": "9.7%",
+ "latitude": 37.688889,
+ "longitude": -97.336111,
+ "population": "386552",
+ "rank": "49",
+ "state": "Kansas"
+ },
+ {
+ "city": "Arlington",
+ "growth_from_2000_to_2013": "13.3%",
+ "latitude": 32.735687,
+ "longitude": -97.10806559999999,
+ "population": "379577",
+ "rank": "50",
+ "state": "Texas"
+ },
+ {
+ "city": "New Orleans",
+ "growth_from_2000_to_2013": "-21.6%",
+ "latitude": 29.95106579999999,
+ "longitude": -90.0715323,
+ "population": "378715",
+ "rank": "51",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Bakersfield",
+ "growth_from_2000_to_2013": "48.4%",
+ "latitude": 35.3732921,
+ "longitude": -119.0187125,
+ "population": "363630",
+ "rank": "52",
+ "state": "California"
+ },
+ {
+ "city": "Tampa",
+ "growth_from_2000_to_2013": "16.0%",
+ "latitude": 27.950575,
+ "longitude": -82.4571776,
+ "population": "352957",
+ "rank": "53",
+ "state": "Florida"
+ },
+ {
+ "city": "Honolulu",
+ "growth_from_2000_to_2013": "-6.2%",
+ "latitude": 21.3069444,
+ "longitude": -157.8583333,
+ "population": "347884",
+ "rank": "54",
+ "state": "Hawaii"
+ },
+ {
+ "city": "Aurora",
+ "growth_from_2000_to_2013": "24.4%",
+ "latitude": 39.7294319,
+ "longitude": -104.8319195,
+ "population": "345803",
+ "rank": "55",
+ "state": "Colorado"
+ },
+ {
+ "city": "Anaheim",
+ "growth_from_2000_to_2013": "4.7%",
+ "latitude": 33.8352932,
+ "longitude": -117.9145036,
+ "population": "345012",
+ "rank": "56",
+ "state": "California"
+ },
+ {
+ "city": "Santa Ana",
+ "growth_from_2000_to_2013": "-1.2%",
+ "latitude": 33.7455731,
+ "longitude": -117.8678338,
+ "population": "334227",
+ "rank": "57",
+ "state": "California"
+ },
+ {
+ "city": "St. Louis",
+ "growth_from_2000_to_2013": "-8.2%",
+ "latitude": 38.6270025,
+ "longitude": -90.19940419999999,
+ "population": "318416",
+ "rank": "58",
+ "state": "Missouri"
+ },
+ {
+ "city": "Riverside",
+ "growth_from_2000_to_2013": "22.5%",
+ "latitude": 33.9533487,
+ "longitude": -117.3961564,
+ "population": "316619",
+ "rank": "59",
+ "state": "California"
+ },
+ {
+ "city": "Corpus Christi",
+ "growth_from_2000_to_2013": "14.1%",
+ "latitude": 27.8005828,
+ "longitude": -97.39638099999999,
+ "population": "316381",
+ "rank": "60",
+ "state": "Texas"
+ },
+ {
+ "city": "Lexington-Fayette",
+ "growth_from_2000_to_2013": "18.0%",
+ "latitude": 38.0405837,
+ "longitude": -84.5037164,
+ "population": "308428",
+ "rank": "61",
+ "state": "Kentucky"
+ },
+ {
+ "city": "Pittsburgh",
+ "growth_from_2000_to_2013": "-8.3%",
+ "latitude": 40.44062479999999,
+ "longitude": -79.9958864,
+ "population": "305841",
+ "rank": "62",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Anchorage",
+ "growth_from_2000_to_2013": "15.4%",
+ "latitude": 61.2180556,
+ "longitude": -149.9002778,
+ "population": "300950",
+ "rank": "63",
+ "state": "Alaska"
+ },
+ {
+ "city": "Stockton",
+ "growth_from_2000_to_2013": "21.8%",
+ "latitude": 37.9577016,
+ "longitude": -121.2907796,
+ "population": "298118",
+ "rank": "64",
+ "state": "California"
+ },
+ {
+ "city": "Cincinnati",
+ "growth_from_2000_to_2013": "-10.1%",
+ "latitude": 39.1031182,
+ "longitude": -84.5120196,
+ "population": "297517",
+ "rank": "65",
+ "state": "Ohio"
+ },
+ {
+ "city": "St. Paul",
+ "growth_from_2000_to_2013": "2.8%",
+ "latitude": 44.9537029,
+ "longitude": -93.0899578,
+ "population": "294873",
+ "rank": "66",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Toledo",
+ "growth_from_2000_to_2013": "-10.0%",
+ "latitude": 41.6639383,
+ "longitude": -83.55521200000001,
+ "population": "282313",
+ "rank": "67",
+ "state": "Ohio"
+ },
+ {
+ "city": "Greensboro",
+ "growth_from_2000_to_2013": "22.3%",
+ "latitude": 36.0726354,
+ "longitude": -79.7919754,
+ "population": "279639",
+ "rank": "68",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Newark",
+ "growth_from_2000_to_2013": "2.1%",
+ "latitude": 40.735657,
+ "longitude": -74.1723667,
+ "population": "278427",
+ "rank": "69",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Plano",
+ "growth_from_2000_to_2013": "22.4%",
+ "latitude": 33.0198431,
+ "longitude": -96.6988856,
+ "population": "274409",
+ "rank": "70",
+ "state": "Texas"
+ },
+ {
+ "city": "Henderson",
+ "growth_from_2000_to_2013": "51.0%",
+ "latitude": 36.0395247,
+ "longitude": -114.9817213,
+ "population": "270811",
+ "rank": "71",
+ "state": "Nevada"
+ },
+ {
+ "city": "Lincoln",
+ "growth_from_2000_to_2013": "18.0%",
+ "latitude": 40.8257625,
+ "longitude": -96.6851982,
+ "population": "268738",
+ "rank": "72",
+ "state": "Nebraska"
+ },
+ {
+ "city": "Buffalo",
+ "growth_from_2000_to_2013": "-11.3%",
+ "latitude": 42.88644679999999,
+ "longitude": -78.8783689,
+ "population": "258959",
+ "rank": "73",
+ "state": "New York"
+ },
+ {
+ "city": "Jersey City",
+ "growth_from_2000_to_2013": "7.2%",
+ "latitude": 40.72815749999999,
+ "longitude": -74.0776417,
+ "population": "257342",
+ "rank": "74",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Chula Vista",
+ "growth_from_2000_to_2013": "46.2%",
+ "latitude": 32.6400541,
+ "longitude": -117.0841955,
+ "population": "256780",
+ "rank": "75",
+ "state": "California"
+ },
+ {
+ "city": "Fort Wayne",
+ "growth_from_2000_to_2013": "1.0%",
+ "latitude": 41.079273,
+ "longitude": -85.1393513,
+ "population": "256496",
+ "rank": "76",
+ "state": "Indiana"
+ },
+ {
+ "city": "Orlando",
+ "growth_from_2000_to_2013": "31.2%",
+ "latitude": 28.5383355,
+ "longitude": -81.3792365,
+ "population": "255483",
+ "rank": "77",
+ "state": "Florida"
+ },
+ {
+ "city": "St. Petersburg",
+ "growth_from_2000_to_2013": "0.3%",
+ "latitude": 27.773056,
+ "longitude": -82.64,
+ "population": "249688",
+ "rank": "78",
+ "state": "Florida"
+ },
+ {
+ "city": "Chandler",
+ "growth_from_2000_to_2013": "38.7%",
+ "latitude": 33.3061605,
+ "longitude": -111.8412502,
+ "population": "249146",
+ "rank": "79",
+ "state": "Arizona"
+ },
+ {
+ "city": "Laredo",
+ "growth_from_2000_to_2013": "38.2%",
+ "latitude": 27.5305671,
+ "longitude": -99.48032409999999,
+ "population": "248142",
+ "rank": "80",
+ "state": "Texas"
+ },
+ {
+ "city": "Norfolk",
+ "growth_from_2000_to_2013": "5.0%",
+ "latitude": 36.8507689,
+ "longitude": -76.28587259999999,
+ "population": "246139",
+ "rank": "81",
+ "state": "Virginia"
+ },
+ {
+ "city": "Durham",
+ "growth_from_2000_to_2013": "29.9%",
+ "latitude": 35.9940329,
+ "longitude": -78.898619,
+ "population": "245475",
+ "rank": "82",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Madison",
+ "growth_from_2000_to_2013": "15.8%",
+ "latitude": 43.0730517,
+ "longitude": -89.4012302,
+ "population": "243344",
+ "rank": "83",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Lubbock",
+ "growth_from_2000_to_2013": "19.6%",
+ "latitude": 33.5778631,
+ "longitude": -101.8551665,
+ "population": "239538",
+ "rank": "84",
+ "state": "Texas"
+ },
+ {
+ "city": "Irvine",
+ "growth_from_2000_to_2013": "61.3%",
+ "latitude": 33.6839473,
+ "longitude": -117.7946942,
+ "population": "236716",
+ "rank": "85",
+ "state": "California"
+ },
+ {
+ "city": "Winston-Salem",
+ "growth_from_2000_to_2013": "16.9%",
+ "latitude": 36.09985959999999,
+ "longitude": -80.244216,
+ "population": "236441",
+ "rank": "86",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Glendale",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 33.5386523,
+ "longitude": -112.1859866,
+ "population": "234632",
+ "rank": "87",
+ "state": "Arizona"
+ },
+ {
+ "city": "Garland",
+ "growth_from_2000_to_2013": "8.5%",
+ "latitude": 32.912624,
+ "longitude": -96.63888329999999,
+ "population": "234566",
+ "rank": "88",
+ "state": "Texas"
+ },
+ {
+ "city": "Hialeah",
+ "growth_from_2000_to_2013": "3.2%",
+ "latitude": 25.8575963,
+ "longitude": -80.2781057,
+ "population": "233394",
+ "rank": "89",
+ "state": "Florida"
+ },
+ {
+ "city": "Reno",
+ "growth_from_2000_to_2013": "26.8%",
+ "latitude": 39.5296329,
+ "longitude": -119.8138027,
+ "population": "233294",
+ "rank": "90",
+ "state": "Nevada"
+ },
+ {
+ "city": "Chesapeake",
+ "growth_from_2000_to_2013": "15.1%",
+ "latitude": 36.7682088,
+ "longitude": -76.2874927,
+ "population": "230571",
+ "rank": "91",
+ "state": "Virginia"
+ },
+ {
+ "city": "Gilbert",
+ "growth_from_2000_to_2013": "96.0%",
+ "latitude": 33.3528264,
+ "longitude": -111.789027,
+ "population": "229972",
+ "rank": "92",
+ "state": "Arizona"
+ },
+ {
+ "city": "Baton Rouge",
+ "growth_from_2000_to_2013": "0.4%",
+ "latitude": 30.4582829,
+ "longitude": -91.1403196,
+ "population": "229426",
+ "rank": "93",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Irving",
+ "growth_from_2000_to_2013": "19.1%",
+ "latitude": 32.8140177,
+ "longitude": -96.9488945,
+ "population": "228653",
+ "rank": "94",
+ "state": "Texas"
+ },
+ {
+ "city": "Scottsdale",
+ "growth_from_2000_to_2013": "11.0%",
+ "latitude": 33.4941704,
+ "longitude": -111.9260519,
+ "population": "226918",
+ "rank": "95",
+ "state": "Arizona"
+ },
+ {
+ "city": "North Las Vegas",
+ "growth_from_2000_to_2013": "92.2%",
+ "latitude": 36.1988592,
+ "longitude": -115.1175013,
+ "population": "226877",
+ "rank": "96",
+ "state": "Nevada"
+ },
+ {
+ "city": "Fremont",
+ "growth_from_2000_to_2013": "10.0%",
+ "latitude": 37.5482697,
+ "longitude": -121.9885719,
+ "population": "224922",
+ "rank": "97",
+ "state": "California"
+ },
+ {
+ "city": "Boise City",
+ "growth_from_2000_to_2013": "9.5%",
+ "latitude": 43.6187102,
+ "longitude": -116.2146068,
+ "population": "214237",
+ "rank": "98",
+ "state": "Idaho"
+ },
+ {
+ "city": "Richmond",
+ "growth_from_2000_to_2013": "8.2%",
+ "latitude": 37.5407246,
+ "longitude": -77.4360481,
+ "population": "214114",
+ "rank": "99",
+ "state": "Virginia"
+ },
+ {
+ "city": "San Bernardino",
+ "growth_from_2000_to_2013": "13.0%",
+ "latitude": 34.1083449,
+ "longitude": -117.2897652,
+ "population": "213708",
+ "rank": "100",
+ "state": "California"
+ },
+ {
+ "city": "Birmingham",
+ "growth_from_2000_to_2013": "-12.3%",
+ "latitude": 33.5206608,
+ "longitude": -86.80248999999999,
+ "population": "212113",
+ "rank": "101",
+ "state": "Alabama"
+ },
+ {
+ "city": "Spokane",
+ "growth_from_2000_to_2013": "7.0%",
+ "latitude": 47.6587802,
+ "longitude": -117.4260466,
+ "population": "210721",
+ "rank": "102",
+ "state": "Washington"
+ },
+ {
+ "city": "Rochester",
+ "growth_from_2000_to_2013": "-4.1%",
+ "latitude": 43.16103,
+ "longitude": -77.6109219,
+ "population": "210358",
+ "rank": "103",
+ "state": "New York"
+ },
+ {
+ "city": "Des Moines",
+ "growth_from_2000_to_2013": "3.9%",
+ "latitude": 41.6005448,
+ "longitude": -93.6091064,
+ "population": "207510",
+ "rank": "104",
+ "state": "Iowa"
+ },
+ {
+ "city": "Modesto",
+ "growth_from_2000_to_2013": "7.7%",
+ "latitude": 37.63909719999999,
+ "longitude": -120.9968782,
+ "population": "204933",
+ "rank": "105",
+ "state": "California"
+ },
+ {
+ "city": "Fayetteville",
+ "growth_from_2000_to_2013": "2.4%",
+ "latitude": 35.0526641,
+ "longitude": -78.87835849999999,
+ "population": "204408",
+ "rank": "106",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Tacoma",
+ "growth_from_2000_to_2013": "4.9%",
+ "latitude": 47.2528768,
+ "longitude": -122.4442906,
+ "population": "203446",
+ "rank": "107",
+ "state": "Washington"
+ },
+ {
+ "city": "Oxnard",
+ "growth_from_2000_to_2013": "18.2%",
+ "latitude": 34.1975048,
+ "longitude": -119.1770516,
+ "population": "203007",
+ "rank": "108",
+ "state": "California"
+ },
+ {
+ "city": "Fontana",
+ "growth_from_2000_to_2013": "38.3%",
+ "latitude": 34.0922335,
+ "longitude": -117.435048,
+ "population": "203003",
+ "rank": "109",
+ "state": "California"
+ },
+ {
+ "city": "Columbus",
+ "growth_from_2000_to_2013": "8.7%",
+ "latitude": 32.4609764,
+ "longitude": -84.9877094,
+ "population": "202824",
+ "rank": "110",
+ "state": "Georgia"
+ },
+ {
+ "city": "Montgomery",
+ "growth_from_2000_to_2013": "-0.1%",
+ "latitude": 32.3668052,
+ "longitude": -86.2999689,
+ "population": "201332",
+ "rank": "111",
+ "state": "Alabama"
+ },
+ {
+ "city": "Moreno Valley",
+ "growth_from_2000_to_2013": "40.4%",
+ "latitude": 33.9424658,
+ "longitude": -117.2296717,
+ "population": "201175",
+ "rank": "112",
+ "state": "California"
+ },
+ {
+ "city": "Shreveport",
+ "growth_from_2000_to_2013": "-0.1%",
+ "latitude": 32.5251516,
+ "longitude": -93.7501789,
+ "population": "200327",
+ "rank": "113",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Aurora",
+ "growth_from_2000_to_2013": "38.4%",
+ "latitude": 41.7605849,
+ "longitude": -88.32007150000001,
+ "population": "199963",
+ "rank": "114",
+ "state": "Illinois"
+ },
+ {
+ "city": "Yonkers",
+ "growth_from_2000_to_2013": "1.8%",
+ "latitude": 40.9312099,
+ "longitude": -73.89874689999999,
+ "population": "199766",
+ "rank": "115",
+ "state": "New York"
+ },
+ {
+ "city": "Akron",
+ "growth_from_2000_to_2013": "-8.6%",
+ "latitude": 41.0814447,
+ "longitude": -81.51900529999999,
+ "population": "198100",
+ "rank": "116",
+ "state": "Ohio"
+ },
+ {
+ "city": "Huntington Beach",
+ "growth_from_2000_to_2013": "3.9%",
+ "latitude": 33.660297,
+ "longitude": -117.9992265,
+ "population": "197575",
+ "rank": "117",
+ "state": "California"
+ },
+ {
+ "city": "Little Rock",
+ "growth_from_2000_to_2013": "7.6%",
+ "latitude": 34.7464809,
+ "longitude": -92.28959479999999,
+ "population": "197357",
+ "rank": "118",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Augusta-Richmond County",
+ "growth_from_2000_to_2013": "1.1%",
+ "latitude": 33.4734978,
+ "longitude": -82.0105148,
+ "population": "197350",
+ "rank": "119",
+ "state": "Georgia"
+ },
+ {
+ "city": "Amarillo",
+ "growth_from_2000_to_2013": "12.8%",
+ "latitude": 35.2219971,
+ "longitude": -101.8312969,
+ "population": "196429",
+ "rank": "120",
+ "state": "Texas"
+ },
+ {
+ "city": "Glendale",
+ "growth_from_2000_to_2013": "0.3%",
+ "latitude": 34.1425078,
+ "longitude": -118.255075,
+ "population": "196021",
+ "rank": "121",
+ "state": "California"
+ },
+ {
+ "city": "Mobile",
+ "growth_from_2000_to_2013": "-1.9%",
+ "latitude": 30.6953657,
+ "longitude": -88.0398912,
+ "population": "194899",
+ "rank": "122",
+ "state": "Alabama"
+ },
+ {
+ "city": "Grand Rapids",
+ "growth_from_2000_to_2013": "-2.8%",
+ "latitude": 42.9633599,
+ "longitude": -85.6680863,
+ "population": "192294",
+ "rank": "123",
+ "state": "Michigan"
+ },
+ {
+ "city": "Salt Lake City",
+ "growth_from_2000_to_2013": "5.1%",
+ "latitude": 40.7607793,
+ "longitude": -111.8910474,
+ "population": "191180",
+ "rank": "124",
+ "state": "Utah"
+ },
+ {
+ "city": "Tallahassee",
+ "growth_from_2000_to_2013": "21.8%",
+ "latitude": 30.4382559,
+ "longitude": -84.28073289999999,
+ "population": "186411",
+ "rank": "125",
+ "state": "Florida"
+ },
+ {
+ "city": "Huntsville",
+ "growth_from_2000_to_2013": "16.3%",
+ "latitude": 34.7303688,
+ "longitude": -86.5861037,
+ "population": "186254",
+ "rank": "126",
+ "state": "Alabama"
+ },
+ {
+ "city": "Grand Prairie",
+ "growth_from_2000_to_2013": "43.1%",
+ "latitude": 32.7459645,
+ "longitude": -96.99778459999999,
+ "population": "183372",
+ "rank": "127",
+ "state": "Texas"
+ },
+ {
+ "city": "Knoxville",
+ "growth_from_2000_to_2013": "3.9%",
+ "latitude": 35.9606384,
+ "longitude": -83.9207392,
+ "population": "183270",
+ "rank": "128",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Worcester",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 42.2625932,
+ "longitude": -71.8022934,
+ "population": "182544",
+ "rank": "129",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Newport News",
+ "growth_from_2000_to_2013": "0.9%",
+ "latitude": 37.0870821,
+ "longitude": -76.4730122,
+ "population": "182020",
+ "rank": "130",
+ "state": "Virginia"
+ },
+ {
+ "city": "Brownsville",
+ "growth_from_2000_to_2013": "26.8%",
+ "latitude": 25.9017472,
+ "longitude": -97.4974838,
+ "population": "181860",
+ "rank": "131",
+ "state": "Texas"
+ },
+ {
+ "city": "Overland Park",
+ "growth_from_2000_to_2013": "19.4%",
+ "latitude": 38.9822282,
+ "longitude": -94.6707917,
+ "population": "181260",
+ "rank": "132",
+ "state": "Kansas"
+ },
+ {
+ "city": "Santa Clarita",
+ "growth_from_2000_to_2013": "15.3%",
+ "latitude": 34.3916641,
+ "longitude": -118.542586,
+ "population": "179590",
+ "rank": "133",
+ "state": "California"
+ },
+ {
+ "city": "Providence",
+ "growth_from_2000_to_2013": "2.3%",
+ "latitude": 41.8239891,
+ "longitude": -71.4128343,
+ "population": "177994",
+ "rank": "134",
+ "state": "Rhode Island"
+ },
+ {
+ "city": "Garden Grove",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 33.7739053,
+ "longitude": -117.9414477,
+ "population": "175140",
+ "rank": "135",
+ "state": "California"
+ },
+ {
+ "city": "Chattanooga",
+ "growth_from_2000_to_2013": "10.5%",
+ "latitude": 35.0456297,
+ "longitude": -85.3096801,
+ "population": "173366",
+ "rank": "136",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Oceanside",
+ "growth_from_2000_to_2013": "6.6%",
+ "latitude": 33.1958696,
+ "longitude": -117.3794834,
+ "population": "172794",
+ "rank": "137",
+ "state": "California"
+ },
+ {
+ "city": "Jackson",
+ "growth_from_2000_to_2013": "-6.8%",
+ "latitude": 32.2987573,
+ "longitude": -90.1848103,
+ "population": "172638",
+ "rank": "138",
+ "state": "Mississippi"
+ },
+ {
+ "city": "Fort Lauderdale",
+ "growth_from_2000_to_2013": "0.7%",
+ "latitude": 26.1224386,
+ "longitude": -80.13731740000001,
+ "population": "172389",
+ "rank": "139",
+ "state": "Florida"
+ },
+ {
+ "city": "Santa Rosa",
+ "growth_from_2000_to_2013": "15.2%",
+ "latitude": 38.440429,
+ "longitude": -122.7140548,
+ "population": "171990",
+ "rank": "140",
+ "state": "California"
+ },
+ {
+ "city": "Rancho Cucamonga",
+ "growth_from_2000_to_2013": "32.7%",
+ "latitude": 34.10639889999999,
+ "longitude": -117.5931084,
+ "population": "171386",
+ "rank": "141",
+ "state": "California"
+ },
+ {
+ "city": "Port St. Lucie",
+ "growth_from_2000_to_2013": "91.7%",
+ "latitude": 27.2730492,
+ "longitude": -80.3582261,
+ "population": "171016",
+ "rank": "142",
+ "state": "Florida"
+ },
+ {
+ "city": "Tempe",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 33.4255104,
+ "longitude": -111.9400054,
+ "population": "168228",
+ "rank": "143",
+ "state": "Arizona"
+ },
+ {
+ "city": "Ontario",
+ "growth_from_2000_to_2013": "5.5%",
+ "latitude": 34.0633443,
+ "longitude": -117.6508876,
+ "population": "167500",
+ "rank": "144",
+ "state": "California"
+ },
+ {
+ "city": "Vancouver",
+ "growth_from_2000_to_2013": "14.2%",
+ "latitude": 45.6387281,
+ "longitude": -122.6614861,
+ "population": "167405",
+ "rank": "145",
+ "state": "Washington"
+ },
+ {
+ "city": "Cape Coral",
+ "growth_from_2000_to_2013": "60.4%",
+ "latitude": 26.5628537,
+ "longitude": -81.9495331,
+ "population": "165831",
+ "rank": "146",
+ "state": "Florida"
+ },
+ {
+ "city": "Sioux Falls",
+ "growth_from_2000_to_2013": "31.1%",
+ "latitude": 43.5445959,
+ "longitude": -96.73110340000001,
+ "population": "164676",
+ "rank": "147",
+ "state": "South Dakota"
+ },
+ {
+ "city": "Springfield",
+ "growth_from_2000_to_2013": "7.8%",
+ "latitude": 37.2089572,
+ "longitude": -93.29229889999999,
+ "population": "164122",
+ "rank": "148",
+ "state": "Missouri"
+ },
+ {
+ "city": "Peoria",
+ "growth_from_2000_to_2013": "46.5%",
+ "latitude": 33.5805955,
+ "longitude": -112.2373779,
+ "population": "162592",
+ "rank": "149",
+ "state": "Arizona"
+ },
+ {
+ "city": "Pembroke Pines",
+ "growth_from_2000_to_2013": "17.4%",
+ "latitude": 26.007765,
+ "longitude": -80.2962555,
+ "population": "162329",
+ "rank": "150",
+ "state": "Florida"
+ },
+ {
+ "city": "Elk Grove",
+ "growth_from_2000_to_2013": "97.1%",
+ "latitude": 38.4087993,
+ "longitude": -121.3716178,
+ "population": "161007",
+ "rank": "151",
+ "state": "California"
+ },
+ {
+ "city": "Salem",
+ "growth_from_2000_to_2013": "16.4%",
+ "latitude": 44.9428975,
+ "longitude": -123.0350963,
+ "population": "160614",
+ "rank": "152",
+ "state": "Oregon"
+ },
+ {
+ "city": "Lancaster",
+ "growth_from_2000_to_2013": "33.8%",
+ "latitude": 34.6867846,
+ "longitude": -118.1541632,
+ "population": "159523",
+ "rank": "153",
+ "state": "California"
+ },
+ {
+ "city": "Corona",
+ "growth_from_2000_to_2013": "23.6%",
+ "latitude": 33.8752935,
+ "longitude": -117.5664384,
+ "population": "159503",
+ "rank": "154",
+ "state": "California"
+ },
+ {
+ "city": "Eugene",
+ "growth_from_2000_to_2013": "14.4%",
+ "latitude": 44.0520691,
+ "longitude": -123.0867536,
+ "population": "159190",
+ "rank": "155",
+ "state": "Oregon"
+ },
+ {
+ "city": "Palmdale",
+ "growth_from_2000_to_2013": "33.7%",
+ "latitude": 34.5794343,
+ "longitude": -118.1164613,
+ "population": "157161",
+ "rank": "156",
+ "state": "California"
+ },
+ {
+ "city": "Salinas",
+ "growth_from_2000_to_2013": "8.4%",
+ "latitude": 36.6777372,
+ "longitude": -121.6555013,
+ "population": "155662",
+ "rank": "157",
+ "state": "California"
+ },
+ {
+ "city": "Springfield",
+ "growth_from_2000_to_2013": "1.1%",
+ "latitude": 42.1014831,
+ "longitude": -72.589811,
+ "population": "153703",
+ "rank": "158",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Pasadena",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 29.6910625,
+ "longitude": -95.2091006,
+ "population": "152735",
+ "rank": "159",
+ "state": "Texas"
+ },
+ {
+ "city": "Fort Collins",
+ "growth_from_2000_to_2013": "26.6%",
+ "latitude": 40.5852602,
+ "longitude": -105.084423,
+ "population": "152061",
+ "rank": "160",
+ "state": "Colorado"
+ },
+ {
+ "city": "Hayward",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 37.6688205,
+ "longitude": -122.0807964,
+ "population": "151574",
+ "rank": "161",
+ "state": "California"
+ },
+ {
+ "city": "Pomona",
+ "growth_from_2000_to_2013": "2.1%",
+ "latitude": 34.055103,
+ "longitude": -117.7499909,
+ "population": "151348",
+ "rank": "162",
+ "state": "California"
+ },
+ {
+ "city": "Cary",
+ "growth_from_2000_to_2013": "55.1%",
+ "latitude": 35.79154,
+ "longitude": -78.7811169,
+ "population": "151088",
+ "rank": "163",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Rockford",
+ "growth_from_2000_to_2013": "-1.0%",
+ "latitude": 42.2711311,
+ "longitude": -89.0939952,
+ "population": "150251",
+ "rank": "164",
+ "state": "Illinois"
+ },
+ {
+ "city": "Alexandria",
+ "growth_from_2000_to_2013": "15.0%",
+ "latitude": 38.8048355,
+ "longitude": -77.0469214,
+ "population": "148892",
+ "rank": "165",
+ "state": "Virginia"
+ },
+ {
+ "city": "Escondido",
+ "growth_from_2000_to_2013": "10.7%",
+ "latitude": 33.1192068,
+ "longitude": -117.086421,
+ "population": "148738",
+ "rank": "166",
+ "state": "California"
+ },
+ {
+ "city": "McKinney",
+ "growth_from_2000_to_2013": "165.3%",
+ "latitude": 33.1972465,
+ "longitude": -96.6397822,
+ "population": "148559",
+ "rank": "167",
+ "state": "Texas"
+ },
+ {
+ "city": "Kansas City",
+ "growth_from_2000_to_2013": "1.1%",
+ "latitude": 39.114053,
+ "longitude": -94.6274636,
+ "population": "148483",
+ "rank": "168",
+ "state": "Kansas"
+ },
+ {
+ "city": "Joliet",
+ "growth_from_2000_to_2013": "36.5%",
+ "latitude": 41.525031,
+ "longitude": -88.0817251,
+ "population": "147806",
+ "rank": "169",
+ "state": "Illinois"
+ },
+ {
+ "city": "Sunnyvale",
+ "growth_from_2000_to_2013": "11.9%",
+ "latitude": 37.36883,
+ "longitude": -122.0363496,
+ "population": "147559",
+ "rank": "170",
+ "state": "California"
+ },
+ {
+ "city": "Torrance",
+ "growth_from_2000_to_2013": "6.6%",
+ "latitude": 33.8358492,
+ "longitude": -118.3406288,
+ "population": "147478",
+ "rank": "171",
+ "state": "California"
+ },
+ {
+ "city": "Bridgeport",
+ "growth_from_2000_to_2013": "5.4%",
+ "latitude": 41.1865478,
+ "longitude": -73.19517669999999,
+ "population": "147216",
+ "rank": "172",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Lakewood",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 39.7047095,
+ "longitude": -105.0813734,
+ "population": "147214",
+ "rank": "173",
+ "state": "Colorado"
+ },
+ {
+ "city": "Hollywood",
+ "growth_from_2000_to_2013": "4.8%",
+ "latitude": 26.0112014,
+ "longitude": -80.1494901,
+ "population": "146526",
+ "rank": "174",
+ "state": "Florida"
+ },
+ {
+ "city": "Paterson",
+ "growth_from_2000_to_2013": "-2.2%",
+ "latitude": 40.9167654,
+ "longitude": -74.17181099999999,
+ "population": "145948",
+ "rank": "175",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Naperville",
+ "growth_from_2000_to_2013": "12.0%",
+ "latitude": 41.7508391,
+ "longitude": -88.1535352,
+ "population": "144864",
+ "rank": "176",
+ "state": "Illinois"
+ },
+ {
+ "city": "Syracuse",
+ "growth_from_2000_to_2013": "-0.9%",
+ "latitude": 43.0481221,
+ "longitude": -76.14742439999999,
+ "population": "144669",
+ "rank": "177",
+ "state": "New York"
+ },
+ {
+ "city": "Mesquite",
+ "growth_from_2000_to_2013": "14.7%",
+ "latitude": 32.76679550000001,
+ "longitude": -96.5991593,
+ "population": "143484",
+ "rank": "178",
+ "state": "Texas"
+ },
+ {
+ "city": "Dayton",
+ "growth_from_2000_to_2013": "-13.5%",
+ "latitude": 39.7589478,
+ "longitude": -84.1916069,
+ "population": "143355",
+ "rank": "179",
+ "state": "Ohio"
+ },
+ {
+ "city": "Savannah",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 32.0835407,
+ "longitude": -81.09983419999999,
+ "population": "142772",
+ "rank": "180",
+ "state": "Georgia"
+ },
+ {
+ "city": "Clarksville",
+ "growth_from_2000_to_2013": "36.9%",
+ "latitude": 36.5297706,
+ "longitude": -87.3594528,
+ "population": "142357",
+ "rank": "181",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Orange",
+ "growth_from_2000_to_2013": "7.7%",
+ "latitude": 33.7877944,
+ "longitude": -117.8531119,
+ "population": "139969",
+ "rank": "182",
+ "state": "California"
+ },
+ {
+ "city": "Pasadena",
+ "growth_from_2000_to_2013": "3.8%",
+ "latitude": 34.1477849,
+ "longitude": -118.1445155,
+ "population": "139731",
+ "rank": "183",
+ "state": "California"
+ },
+ {
+ "city": "Fullerton",
+ "growth_from_2000_to_2013": "9.8%",
+ "latitude": 33.8703596,
+ "longitude": -117.9242966,
+ "population": "138981",
+ "rank": "184",
+ "state": "California"
+ },
+ {
+ "city": "Killeen",
+ "growth_from_2000_to_2013": "52.1%",
+ "latitude": 31.1171194,
+ "longitude": -97.72779589999999,
+ "population": "137147",
+ "rank": "185",
+ "state": "Texas"
+ },
+ {
+ "city": "Frisco",
+ "growth_from_2000_to_2013": "287.7%",
+ "latitude": 33.1506744,
+ "longitude": -96.82361159999999,
+ "population": "136791",
+ "rank": "186",
+ "state": "Texas"
+ },
+ {
+ "city": "Hampton",
+ "growth_from_2000_to_2013": "-6.6%",
+ "latitude": 37.0298687,
+ "longitude": -76.34522179999999,
+ "population": "136699",
+ "rank": "187",
+ "state": "Virginia"
+ },
+ {
+ "city": "McAllen",
+ "growth_from_2000_to_2013": "27.6%",
+ "latitude": 26.2034071,
+ "longitude": -98.23001239999999,
+ "population": "136639",
+ "rank": "188",
+ "state": "Texas"
+ },
+ {
+ "city": "Warren",
+ "growth_from_2000_to_2013": "-2.3%",
+ "latitude": 42.5144566,
+ "longitude": -83.01465259999999,
+ "population": "134873",
+ "rank": "189",
+ "state": "Michigan"
+ },
+ {
+ "city": "Bellevue",
+ "growth_from_2000_to_2013": "19.1%",
+ "latitude": 47.610377,
+ "longitude": -122.2006786,
+ "population": "133992",
+ "rank": "190",
+ "state": "Washington"
+ },
+ {
+ "city": "West Valley City",
+ "growth_from_2000_to_2013": "22.2%",
+ "latitude": 40.6916132,
+ "longitude": -112.0010501,
+ "population": "133579",
+ "rank": "191",
+ "state": "Utah"
+ },
+ {
+ "city": "Columbia",
+ "growth_from_2000_to_2013": "11.7%",
+ "latitude": 34.0007104,
+ "longitude": -81.0348144,
+ "population": "133358",
+ "rank": "192",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Olathe",
+ "growth_from_2000_to_2013": "40.4%",
+ "latitude": 38.8813958,
+ "longitude": -94.81912849999999,
+ "population": "131885",
+ "rank": "193",
+ "state": "Kansas"
+ },
+ {
+ "city": "Sterling Heights",
+ "growth_from_2000_to_2013": "5.2%",
+ "latitude": 42.5803122,
+ "longitude": -83.0302033,
+ "population": "131224",
+ "rank": "194",
+ "state": "Michigan"
+ },
+ {
+ "city": "New Haven",
+ "growth_from_2000_to_2013": "5.5%",
+ "latitude": 41.308274,
+ "longitude": -72.9278835,
+ "population": "130660",
+ "rank": "195",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Miramar",
+ "growth_from_2000_to_2013": "74.7%",
+ "latitude": 25.9860762,
+ "longitude": -80.30356019999999,
+ "population": "130288",
+ "rank": "196",
+ "state": "Florida"
+ },
+ {
+ "city": "Waco",
+ "growth_from_2000_to_2013": "12.5%",
+ "latitude": 31.549333,
+ "longitude": -97.1466695,
+ "population": "129030",
+ "rank": "197",
+ "state": "Texas"
+ },
+ {
+ "city": "Thousand Oaks",
+ "growth_from_2000_to_2013": "9.5%",
+ "latitude": 34.1705609,
+ "longitude": -118.8375937,
+ "population": "128731",
+ "rank": "198",
+ "state": "California"
+ },
+ {
+ "city": "Cedar Rapids",
+ "growth_from_2000_to_2013": "5.4%",
+ "latitude": 41.9778795,
+ "longitude": -91.6656232,
+ "population": "128429",
+ "rank": "199",
+ "state": "Iowa"
+ },
+ {
+ "city": "Charleston",
+ "growth_from_2000_to_2013": "29.2%",
+ "latitude": 32.7764749,
+ "longitude": -79.93105120000001,
+ "population": "127999",
+ "rank": "200",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Visalia",
+ "growth_from_2000_to_2013": "33.6%",
+ "latitude": 36.3302284,
+ "longitude": -119.2920585,
+ "population": "127763",
+ "rank": "201",
+ "state": "California"
+ },
+ {
+ "city": "Topeka",
+ "growth_from_2000_to_2013": "3.4%",
+ "latitude": 39.0558235,
+ "longitude": -95.68901849999999,
+ "population": "127679",
+ "rank": "202",
+ "state": "Kansas"
+ },
+ {
+ "city": "Elizabeth",
+ "growth_from_2000_to_2013": "5.5%",
+ "latitude": 40.6639916,
+ "longitude": -74.2107006,
+ "population": "127558",
+ "rank": "203",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Gainesville",
+ "growth_from_2000_to_2013": "12.8%",
+ "latitude": 29.6516344,
+ "longitude": -82.32482619999999,
+ "population": "127488",
+ "rank": "204",
+ "state": "Florida"
+ },
+ {
+ "city": "Thornton",
+ "growth_from_2000_to_2013": "52.9%",
+ "latitude": 39.8680412,
+ "longitude": -104.9719243,
+ "population": "127359",
+ "rank": "205",
+ "state": "Colorado"
+ },
+ {
+ "city": "Roseville",
+ "growth_from_2000_to_2013": "56.2%",
+ "latitude": 38.7521235,
+ "longitude": -121.2880059,
+ "population": "127035",
+ "rank": "206",
+ "state": "California"
+ },
+ {
+ "city": "Carrollton",
+ "growth_from_2000_to_2013": "14.9%",
+ "latitude": 32.9756415,
+ "longitude": -96.8899636,
+ "population": "126700",
+ "rank": "207",
+ "state": "Texas"
+ },
+ {
+ "city": "Coral Springs",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 26.271192,
+ "longitude": -80.2706044,
+ "population": "126604",
+ "rank": "208",
+ "state": "Florida"
+ },
+ {
+ "city": "Stamford",
+ "growth_from_2000_to_2013": "7.6%",
+ "latitude": 41.0534302,
+ "longitude": -73.5387341,
+ "population": "126456",
+ "rank": "209",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Simi Valley",
+ "growth_from_2000_to_2013": "12.6%",
+ "latitude": 34.2694474,
+ "longitude": -118.781482,
+ "population": "126181",
+ "rank": "210",
+ "state": "California"
+ },
+ {
+ "city": "Concord",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 37.9779776,
+ "longitude": -122.0310733,
+ "population": "125880",
+ "rank": "211",
+ "state": "California"
+ },
+ {
+ "city": "Hartford",
+ "growth_from_2000_to_2013": "0.6%",
+ "latitude": 41.76371109999999,
+ "longitude": -72.6850932,
+ "population": "125017",
+ "rank": "212",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Kent",
+ "growth_from_2000_to_2013": "54.3%",
+ "latitude": 47.3809335,
+ "longitude": -122.2348431,
+ "population": "124435",
+ "rank": "213",
+ "state": "Washington"
+ },
+ {
+ "city": "Lafayette",
+ "growth_from_2000_to_2013": "11.0%",
+ "latitude": 30.2240897,
+ "longitude": -92.0198427,
+ "population": "124276",
+ "rank": "214",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Midland",
+ "growth_from_2000_to_2013": "30.4%",
+ "latitude": 31.9973456,
+ "longitude": -102.0779146,
+ "population": "123933",
+ "rank": "215",
+ "state": "Texas"
+ },
+ {
+ "city": "Surprise",
+ "growth_from_2000_to_2013": "281.9%",
+ "latitude": 33.6292337,
+ "longitude": -112.3679279,
+ "population": "123546",
+ "rank": "216",
+ "state": "Arizona"
+ },
+ {
+ "city": "Denton",
+ "growth_from_2000_to_2013": "47.1%",
+ "latitude": 33.2148412,
+ "longitude": -97.13306829999999,
+ "population": "123099",
+ "rank": "217",
+ "state": "Texas"
+ },
+ {
+ "city": "Victorville",
+ "growth_from_2000_to_2013": "87.6%",
+ "latitude": 34.5362184,
+ "longitude": -117.2927641,
+ "population": "121096",
+ "rank": "218",
+ "state": "California"
+ },
+ {
+ "city": "Evansville",
+ "growth_from_2000_to_2013": "-0.8%",
+ "latitude": 37.9715592,
+ "longitude": -87.5710898,
+ "population": "120310",
+ "rank": "219",
+ "state": "Indiana"
+ },
+ {
+ "city": "Santa Clara",
+ "growth_from_2000_to_2013": "17.4%",
+ "latitude": 37.3541079,
+ "longitude": -121.9552356,
+ "population": "120245",
+ "rank": "220",
+ "state": "California"
+ },
+ {
+ "city": "Abilene",
+ "growth_from_2000_to_2013": "3.6%",
+ "latitude": 32.4487364,
+ "longitude": -99.73314390000002,
+ "population": "120099",
+ "rank": "221",
+ "state": "Texas"
+ },
+ {
+ "city": "Athens-Clarke County",
+ "growth_from_2000_to_2013": "19.0%",
+ "latitude": 33.9519347,
+ "longitude": -83.357567,
+ "population": "119980",
+ "rank": "222",
+ "state": "Georgia"
+ },
+ {
+ "city": "Vallejo",
+ "growth_from_2000_to_2013": "1.2%",
+ "latitude": 38.1040864,
+ "longitude": -122.2566367,
+ "population": "118837",
+ "rank": "223",
+ "state": "California"
+ },
+ {
+ "city": "Allentown",
+ "growth_from_2000_to_2013": "11.2%",
+ "latitude": 40.6084305,
+ "longitude": -75.4901833,
+ "population": "118577",
+ "rank": "224",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Norman",
+ "growth_from_2000_to_2013": "22.0%",
+ "latitude": 35.2225668,
+ "longitude": -97.4394777,
+ "population": "118197",
+ "rank": "225",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Beaumont",
+ "growth_from_2000_to_2013": "3.7%",
+ "latitude": 30.080174,
+ "longitude": -94.1265562,
+ "population": "117796",
+ "rank": "226",
+ "state": "Texas"
+ },
+ {
+ "city": "Independence",
+ "growth_from_2000_to_2013": "3.2%",
+ "latitude": 39.0911161,
+ "longitude": -94.41550679999999,
+ "population": "117240",
+ "rank": "227",
+ "state": "Missouri"
+ },
+ {
+ "city": "Murfreesboro",
+ "growth_from_2000_to_2013": "65.1%",
+ "latitude": 35.8456213,
+ "longitude": -86.39027,
+ "population": "117044",
+ "rank": "228",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Ann Arbor",
+ "growth_from_2000_to_2013": "2.0%",
+ "latitude": 42.2808256,
+ "longitude": -83.7430378,
+ "population": "117025",
+ "rank": "229",
+ "state": "Michigan"
+ },
+ {
+ "city": "Springfield",
+ "growth_from_2000_to_2013": "4.2%",
+ "latitude": 39.78172130000001,
+ "longitude": -89.6501481,
+ "population": "117006",
+ "rank": "230",
+ "state": "Illinois"
+ },
+ {
+ "city": "Berkeley",
+ "growth_from_2000_to_2013": "13.3%",
+ "latitude": 37.8715926,
+ "longitude": -122.272747,
+ "population": "116768",
+ "rank": "231",
+ "state": "California"
+ },
+ {
+ "city": "Peoria",
+ "growth_from_2000_to_2013": "3.0%",
+ "latitude": 40.6936488,
+ "longitude": -89.5889864,
+ "population": "116513",
+ "rank": "232",
+ "state": "Illinois"
+ },
+ {
+ "city": "Provo",
+ "growth_from_2000_to_2013": "10.0%",
+ "latitude": 40.2338438,
+ "longitude": -111.6585337,
+ "population": "116288",
+ "rank": "233",
+ "state": "Utah"
+ },
+ {
+ "city": "El Monte",
+ "growth_from_2000_to_2013": "-0.4%",
+ "latitude": 34.0686206,
+ "longitude": -118.0275667,
+ "population": "115708",
+ "rank": "234",
+ "state": "California"
+ },
+ {
+ "city": "Columbia",
+ "growth_from_2000_to_2013": "34.0%",
+ "latitude": 38.9517053,
+ "longitude": -92.3340724,
+ "population": "115276",
+ "rank": "235",
+ "state": "Missouri"
+ },
+ {
+ "city": "Lansing",
+ "growth_from_2000_to_2013": "-4.4%",
+ "latitude": 42.732535,
+ "longitude": -84.5555347,
+ "population": "113972",
+ "rank": "236",
+ "state": "Michigan"
+ },
+ {
+ "city": "Fargo",
+ "growth_from_2000_to_2013": "24.9%",
+ "latitude": 46.8771863,
+ "longitude": -96.7898034,
+ "population": "113658",
+ "rank": "237",
+ "state": "North Dakota"
+ },
+ {
+ "city": "Downey",
+ "growth_from_2000_to_2013": "5.3%",
+ "latitude": 33.9401088,
+ "longitude": -118.1331593,
+ "population": "113242",
+ "rank": "238",
+ "state": "California"
+ },
+ {
+ "city": "Costa Mesa",
+ "growth_from_2000_to_2013": "2.4%",
+ "latitude": 33.6411316,
+ "longitude": -117.9186689,
+ "population": "112174",
+ "rank": "239",
+ "state": "California"
+ },
+ {
+ "city": "Wilmington",
+ "growth_from_2000_to_2013": "24.8%",
+ "latitude": 34.2257255,
+ "longitude": -77.9447102,
+ "population": "112067",
+ "rank": "240",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Arvada",
+ "growth_from_2000_to_2013": "9.2%",
+ "latitude": 39.8027644,
+ "longitude": -105.0874842,
+ "population": "111707",
+ "rank": "241",
+ "state": "Colorado"
+ },
+ {
+ "city": "Inglewood",
+ "growth_from_2000_to_2013": "-1.0%",
+ "latitude": 33.9616801,
+ "longitude": -118.3531311,
+ "population": "111542",
+ "rank": "242",
+ "state": "California"
+ },
+ {
+ "city": "Miami Gardens",
+ "growth_from_2000_to_2013": "10.5%",
+ "latitude": 25.9420377,
+ "longitude": -80.2456045,
+ "population": "111378",
+ "rank": "243",
+ "state": "Florida"
+ },
+ {
+ "city": "Carlsbad",
+ "growth_from_2000_to_2013": "39.7%",
+ "latitude": 33.1580933,
+ "longitude": -117.3505939,
+ "population": "110972",
+ "rank": "244",
+ "state": "California"
+ },
+ {
+ "city": "Westminster",
+ "growth_from_2000_to_2013": "9.4%",
+ "latitude": 39.8366528,
+ "longitude": -105.0372046,
+ "population": "110945",
+ "rank": "245",
+ "state": "Colorado"
+ },
+ {
+ "city": "Rochester",
+ "growth_from_2000_to_2013": "23.9%",
+ "latitude": 44.0121221,
+ "longitude": -92.4801989,
+ "population": "110742",
+ "rank": "246",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Odessa",
+ "growth_from_2000_to_2013": "22.3%",
+ "latitude": 31.8456816,
+ "longitude": -102.3676431,
+ "population": "110720",
+ "rank": "247",
+ "state": "Texas"
+ },
+ {
+ "city": "Manchester",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 42.9956397,
+ "longitude": -71.4547891,
+ "population": "110378",
+ "rank": "248",
+ "state": "New Hampshire"
+ },
+ {
+ "city": "Elgin",
+ "growth_from_2000_to_2013": "16.0%",
+ "latitude": 42.0354084,
+ "longitude": -88.2825668,
+ "population": "110145",
+ "rank": "249",
+ "state": "Illinois"
+ },
+ {
+ "city": "West Jordan",
+ "growth_from_2000_to_2013": "38.4%",
+ "latitude": 40.6096698,
+ "longitude": -111.9391031,
+ "population": "110077",
+ "rank": "250",
+ "state": "Utah"
+ },
+ {
+ "city": "Round Rock",
+ "growth_from_2000_to_2013": "81.0%",
+ "latitude": 30.5082551,
+ "longitude": -97.678896,
+ "population": "109821",
+ "rank": "251",
+ "state": "Texas"
+ },
+ {
+ "city": "Clearwater",
+ "growth_from_2000_to_2013": "0.1%",
+ "latitude": 27.9658533,
+ "longitude": -82.8001026,
+ "population": "109703",
+ "rank": "252",
+ "state": "Florida"
+ },
+ {
+ "city": "Waterbury",
+ "growth_from_2000_to_2013": "2.2%",
+ "latitude": 41.5581525,
+ "longitude": -73.0514965,
+ "population": "109676",
+ "rank": "253",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Gresham",
+ "growth_from_2000_to_2013": "20.7%",
+ "latitude": 45.5001357,
+ "longitude": -122.4302013,
+ "population": "109397",
+ "rank": "254",
+ "state": "Oregon"
+ },
+ {
+ "city": "Fairfield",
+ "growth_from_2000_to_2013": "12.8%",
+ "latitude": 38.24935809999999,
+ "longitude": -122.0399663,
+ "population": "109320",
+ "rank": "255",
+ "state": "California"
+ },
+ {
+ "city": "Billings",
+ "growth_from_2000_to_2013": "18.6%",
+ "latitude": 45.7832856,
+ "longitude": -108.5006904,
+ "population": "109059",
+ "rank": "256",
+ "state": "Montana"
+ },
+ {
+ "city": "Lowell",
+ "growth_from_2000_to_2013": "3.4%",
+ "latitude": 42.6334247,
+ "longitude": -71.31617179999999,
+ "population": "108861",
+ "rank": "257",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "San Buenaventura (Ventura)",
+ "growth_from_2000_to_2013": "7.4%",
+ "latitude": 34.274646,
+ "longitude": -119.2290316,
+ "population": "108817",
+ "rank": "258",
+ "state": "California"
+ },
+ {
+ "city": "Pueblo",
+ "growth_from_2000_to_2013": "5.9%",
+ "latitude": 38.2544472,
+ "longitude": -104.6091409,
+ "population": "108249",
+ "rank": "259",
+ "state": "Colorado"
+ },
+ {
+ "city": "High Point",
+ "growth_from_2000_to_2013": "24.3%",
+ "latitude": 35.9556923,
+ "longitude": -80.0053176,
+ "population": "107741",
+ "rank": "260",
+ "state": "North Carolina"
+ },
+ {
+ "city": "West Covina",
+ "growth_from_2000_to_2013": "2.3%",
+ "latitude": 34.0686208,
+ "longitude": -117.9389526,
+ "population": "107740",
+ "rank": "261",
+ "state": "California"
+ },
+ {
+ "city": "Richmond",
+ "growth_from_2000_to_2013": "7.9%",
+ "latitude": 37.9357576,
+ "longitude": -122.3477486,
+ "population": "107571",
+ "rank": "262",
+ "state": "California"
+ },
+ {
+ "city": "Murrieta",
+ "growth_from_2000_to_2013": "107.4%",
+ "latitude": 33.5539143,
+ "longitude": -117.2139232,
+ "population": "107479",
+ "rank": "263",
+ "state": "California"
+ },
+ {
+ "city": "Cambridge",
+ "growth_from_2000_to_2013": "5.5%",
+ "latitude": 42.3736158,
+ "longitude": -71.10973349999999,
+ "population": "107289",
+ "rank": "264",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Antioch",
+ "growth_from_2000_to_2013": "16.9%",
+ "latitude": 38.0049214,
+ "longitude": -121.805789,
+ "population": "107100",
+ "rank": "265",
+ "state": "California"
+ },
+ {
+ "city": "Temecula",
+ "growth_from_2000_to_2013": "55.4%",
+ "latitude": 33.4936391,
+ "longitude": -117.1483648,
+ "population": "106780",
+ "rank": "266",
+ "state": "California"
+ },
+ {
+ "city": "Norwalk",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 33.9022367,
+ "longitude": -118.081733,
+ "population": "106589",
+ "rank": "267",
+ "state": "California"
+ },
+ {
+ "city": "Centennial",
+ "growth_from_2000_to_2013": "3.5%",
+ "latitude": 39.5807452,
+ "longitude": -104.8771726,
+ "population": "106114",
+ "rank": "268",
+ "state": "Colorado"
+ },
+ {
+ "city": "Everett",
+ "growth_from_2000_to_2013": "9.4%",
+ "latitude": 47.9789848,
+ "longitude": -122.2020794,
+ "population": "105370",
+ "rank": "269",
+ "state": "Washington"
+ },
+ {
+ "city": "Palm Bay",
+ "growth_from_2000_to_2013": "31.7%",
+ "latitude": 28.0344621,
+ "longitude": -80.5886646,
+ "population": "104898",
+ "rank": "270",
+ "state": "Florida"
+ },
+ {
+ "city": "Wichita Falls",
+ "growth_from_2000_to_2013": "0.7%",
+ "latitude": 33.9137085,
+ "longitude": -98.4933873,
+ "population": "104898",
+ "rank": "271",
+ "state": "Texas"
+ },
+ {
+ "city": "Green Bay",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 44.51915899999999,
+ "longitude": -88.019826,
+ "population": "104779",
+ "rank": "272",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Daly City",
+ "growth_from_2000_to_2013": "1.0%",
+ "latitude": 37.6879241,
+ "longitude": -122.4702079,
+ "population": "104739",
+ "rank": "273",
+ "state": "California"
+ },
+ {
+ "city": "Burbank",
+ "growth_from_2000_to_2013": "4.2%",
+ "latitude": 34.1808392,
+ "longitude": -118.3089661,
+ "population": "104709",
+ "rank": "274",
+ "state": "California"
+ },
+ {
+ "city": "Richardson",
+ "growth_from_2000_to_2013": "13.2%",
+ "latitude": 32.9483335,
+ "longitude": -96.7298519,
+ "population": "104475",
+ "rank": "275",
+ "state": "Texas"
+ },
+ {
+ "city": "Pompano Beach",
+ "growth_from_2000_to_2013": "4.0%",
+ "latitude": 26.2378597,
+ "longitude": -80.1247667,
+ "population": "104410",
+ "rank": "276",
+ "state": "Florida"
+ },
+ {
+ "city": "North Charleston",
+ "growth_from_2000_to_2013": "27.4%",
+ "latitude": 32.8546197,
+ "longitude": -79.9748103,
+ "population": "104054",
+ "rank": "277",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Broken Arrow",
+ "growth_from_2000_to_2013": "28.2%",
+ "latitude": 36.060949,
+ "longitude": -95.7974526,
+ "population": "103500",
+ "rank": "278",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Boulder",
+ "growth_from_2000_to_2013": "9.0%",
+ "latitude": 40.0149856,
+ "longitude": -105.2705456,
+ "population": "103166",
+ "rank": "279",
+ "state": "Colorado"
+ },
+ {
+ "city": "West Palm Beach",
+ "growth_from_2000_to_2013": "23.5%",
+ "latitude": 26.7153424,
+ "longitude": -80.0533746,
+ "population": "102436",
+ "rank": "280",
+ "state": "Florida"
+ },
+ {
+ "city": "Santa Maria",
+ "growth_from_2000_to_2013": "30.9%",
+ "latitude": 34.9530337,
+ "longitude": -120.4357191,
+ "population": "102216",
+ "rank": "281",
+ "state": "California"
+ },
+ {
+ "city": "El Cajon",
+ "growth_from_2000_to_2013": "7.4%",
+ "latitude": 32.7947731,
+ "longitude": -116.9625269,
+ "population": "102211",
+ "rank": "282",
+ "state": "California"
+ },
+ {
+ "city": "Davenport",
+ "growth_from_2000_to_2013": "3.9%",
+ "latitude": 41.5236437,
+ "longitude": -90.5776367,
+ "population": "102157",
+ "rank": "283",
+ "state": "Iowa"
+ },
+ {
+ "city": "Rialto",
+ "growth_from_2000_to_2013": "9.8%",
+ "latitude": 34.1064001,
+ "longitude": -117.3703235,
+ "population": "101910",
+ "rank": "284",
+ "state": "California"
+ },
+ {
+ "city": "Las Cruces",
+ "growth_from_2000_to_2013": "37.6%",
+ "latitude": 32.3199396,
+ "longitude": -106.7636538,
+ "population": "101324",
+ "rank": "285",
+ "state": "New Mexico"
+ },
+ {
+ "city": "San Mateo",
+ "growth_from_2000_to_2013": "9.0%",
+ "latitude": 37.5629917,
+ "longitude": -122.3255254,
+ "population": "101128",
+ "rank": "286",
+ "state": "California"
+ },
+ {
+ "city": "Lewisville",
+ "growth_from_2000_to_2013": "28.9%",
+ "latitude": 33.046233,
+ "longitude": -96.994174,
+ "population": "101074",
+ "rank": "287",
+ "state": "Texas"
+ },
+ {
+ "city": "South Bend",
+ "growth_from_2000_to_2013": "-6.8%",
+ "latitude": 41.6763545,
+ "longitude": -86.25198979999999,
+ "population": "100886",
+ "rank": "288",
+ "state": "Indiana"
+ },
+ {
+ "city": "Lakeland",
+ "growth_from_2000_to_2013": "18.3%",
+ "latitude": 28.0394654,
+ "longitude": -81.9498042,
+ "population": "100710",
+ "rank": "289",
+ "state": "Florida"
+ },
+ {
+ "city": "Erie",
+ "growth_from_2000_to_2013": "-2.8%",
+ "latitude": 42.12922409999999,
+ "longitude": -80.085059,
+ "population": "100671",
+ "rank": "290",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Tyler",
+ "growth_from_2000_to_2013": "18.6%",
+ "latitude": 32.3512601,
+ "longitude": -95.30106239999999,
+ "population": "100223",
+ "rank": "291",
+ "state": "Texas"
+ },
+ {
+ "city": "Pearland",
+ "growth_from_2000_to_2013": "117.2%",
+ "latitude": 29.5635666,
+ "longitude": -95.2860474,
+ "population": "100065",
+ "rank": "292",
+ "state": "Texas"
+ },
+ {
+ "city": "College Station",
+ "growth_from_2000_to_2013": "45.2%",
+ "latitude": 30.627977,
+ "longitude": -96.3344068,
+ "population": "100050",
+ "rank": "293",
+ "state": "Texas"
+ },
+ {
+ "city": "Kenosha",
+ "growth_from_2000_to_2013": "9.5%",
+ "latitude": 42.5847425,
+ "longitude": -87.82118539999999,
+ "population": "99889",
+ "rank": "294",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Sandy Springs",
+ "growth_from_2000_to_2013": "17.4%",
+ "latitude": 33.9304352,
+ "longitude": -84.3733147,
+ "population": "99770",
+ "rank": "295",
+ "state": "Georgia"
+ },
+ {
+ "city": "Clovis",
+ "growth_from_2000_to_2013": "42.6%",
+ "latitude": 36.8252277,
+ "longitude": -119.7029194,
+ "population": "99769",
+ "rank": "296",
+ "state": "California"
+ },
+ {
+ "city": "Flint",
+ "growth_from_2000_to_2013": "-20.0%",
+ "latitude": 43.0125274,
+ "longitude": -83.6874562,
+ "population": "99763",
+ "rank": "297",
+ "state": "Michigan"
+ },
+ {
+ "city": "Roanoke",
+ "growth_from_2000_to_2013": "3.8%",
+ "latitude": 37.2709704,
+ "longitude": -79.9414266,
+ "population": "98465",
+ "rank": "298",
+ "state": "Virginia"
+ },
+ {
+ "city": "Albany",
+ "growth_from_2000_to_2013": "4.1%",
+ "latitude": 42.6525793,
+ "longitude": -73.7562317,
+ "population": "98424",
+ "rank": "299",
+ "state": "New York"
+ },
+ {
+ "city": "Jurupa Valley",
+ "growth_from_2000_to_2013": "",
+ "latitude": 33.9971974,
+ "longitude": -117.4854802,
+ "population": "98030",
+ "rank": "300",
+ "state": "California"
+ },
+ {
+ "city": "Compton",
+ "growth_from_2000_to_2013": "4.5%",
+ "latitude": 33.8958492,
+ "longitude": -118.2200712,
+ "population": "97877",
+ "rank": "301",
+ "state": "California"
+ },
+ {
+ "city": "San Angelo",
+ "growth_from_2000_to_2013": "10.2%",
+ "latitude": 31.4637723,
+ "longitude": -100.4370375,
+ "population": "97492",
+ "rank": "302",
+ "state": "Texas"
+ },
+ {
+ "city": "Hillsboro",
+ "growth_from_2000_to_2013": "36.4%",
+ "latitude": 45.5228939,
+ "longitude": -122.989827,
+ "population": "97368",
+ "rank": "303",
+ "state": "Oregon"
+ },
+ {
+ "city": "Lawton",
+ "growth_from_2000_to_2013": "4.9%",
+ "latitude": 34.6035669,
+ "longitude": -98.39592909999999,
+ "population": "97151",
+ "rank": "304",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Renton",
+ "growth_from_2000_to_2013": "88.4%",
+ "latitude": 47.48287759999999,
+ "longitude": -122.2170661,
+ "population": "97003",
+ "rank": "305",
+ "state": "Washington"
+ },
+ {
+ "city": "Vista",
+ "growth_from_2000_to_2013": "7.7%",
+ "latitude": 33.2000368,
+ "longitude": -117.2425355,
+ "population": "96929",
+ "rank": "306",
+ "state": "California"
+ },
+ {
+ "city": "Davie",
+ "growth_from_2000_to_2013": "17.7%",
+ "latitude": 26.0764783,
+ "longitude": -80.25211569999999,
+ "population": "96830",
+ "rank": "307",
+ "state": "Florida"
+ },
+ {
+ "city": "Greeley",
+ "growth_from_2000_to_2013": "23.1%",
+ "latitude": 40.4233142,
+ "longitude": -104.7091322,
+ "population": "96539",
+ "rank": "308",
+ "state": "Colorado"
+ },
+ {
+ "city": "Mission Viejo",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 33.6000232,
+ "longitude": -117.6719953,
+ "population": "96346",
+ "rank": "309",
+ "state": "California"
+ },
+ {
+ "city": "Portsmouth",
+ "growth_from_2000_to_2013": "-4.2%",
+ "latitude": 36.8354258,
+ "longitude": -76.2982742,
+ "population": "96205",
+ "rank": "310",
+ "state": "Virginia"
+ },
+ {
+ "city": "Dearborn",
+ "growth_from_2000_to_2013": "-2.0%",
+ "latitude": 42.3222599,
+ "longitude": -83.17631449999999,
+ "population": "95884",
+ "rank": "311",
+ "state": "Michigan"
+ },
+ {
+ "city": "South Gate",
+ "growth_from_2000_to_2013": "-0.8%",
+ "latitude": 33.954737,
+ "longitude": -118.2120161,
+ "population": "95677",
+ "rank": "312",
+ "state": "California"
+ },
+ {
+ "city": "Tuscaloosa",
+ "growth_from_2000_to_2013": "21.1%",
+ "latitude": 33.2098407,
+ "longitude": -87.56917349999999,
+ "population": "95334",
+ "rank": "313",
+ "state": "Alabama"
+ },
+ {
+ "city": "Livonia",
+ "growth_from_2000_to_2013": "-5.4%",
+ "latitude": 42.36837,
+ "longitude": -83.35270969999999,
+ "population": "95208",
+ "rank": "314",
+ "state": "Michigan"
+ },
+ {
+ "city": "New Bedford",
+ "growth_from_2000_to_2013": "1.2%",
+ "latitude": 41.6362152,
+ "longitude": -70.93420499999999,
+ "population": "95078",
+ "rank": "315",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Vacaville",
+ "growth_from_2000_to_2013": "5.4%",
+ "latitude": 38.3565773,
+ "longitude": -121.9877444,
+ "population": "94275",
+ "rank": "316",
+ "state": "California"
+ },
+ {
+ "city": "Brockton",
+ "growth_from_2000_to_2013": "-0.3%",
+ "latitude": 42.0834335,
+ "longitude": -71.0183787,
+ "population": "94089",
+ "rank": "317",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Roswell",
+ "growth_from_2000_to_2013": "15.2%",
+ "latitude": 34.0232431,
+ "longitude": -84.3615555,
+ "population": "94034",
+ "rank": "318",
+ "state": "Georgia"
+ },
+ {
+ "city": "Beaverton",
+ "growth_from_2000_to_2013": "17.0%",
+ "latitude": 45.48706199999999,
+ "longitude": -122.8037102,
+ "population": "93542",
+ "rank": "319",
+ "state": "Oregon"
+ },
+ {
+ "city": "Quincy",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 42.2528772,
+ "longitude": -71.0022705,
+ "population": "93494",
+ "rank": "320",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Sparks",
+ "growth_from_2000_to_2013": "39.4%",
+ "latitude": 39.5349112,
+ "longitude": -119.7526886,
+ "population": "93282",
+ "rank": "321",
+ "state": "Nevada"
+ },
+ {
+ "city": "Yakima",
+ "growth_from_2000_to_2013": "11.7%",
+ "latitude": 46.6020711,
+ "longitude": -120.5058987,
+ "population": "93257",
+ "rank": "322",
+ "state": "Washington"
+ },
+ {
+ "city": "Lee's Summit",
+ "growth_from_2000_to_2013": "31.2%",
+ "latitude": 38.9108408,
+ "longitude": -94.3821724,
+ "population": "93184",
+ "rank": "323",
+ "state": "Missouri"
+ },
+ {
+ "city": "Federal Way",
+ "growth_from_2000_to_2013": "8.8%",
+ "latitude": 47.3223221,
+ "longitude": -122.3126222,
+ "population": "92734",
+ "rank": "324",
+ "state": "Washington"
+ },
+ {
+ "city": "Carson",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 33.8316745,
+ "longitude": -118.281693,
+ "population": "92599",
+ "rank": "325",
+ "state": "California"
+ },
+ {
+ "city": "Santa Monica",
+ "growth_from_2000_to_2013": "9.6%",
+ "latitude": 34.0194543,
+ "longitude": -118.4911912,
+ "population": "92472",
+ "rank": "326",
+ "state": "California"
+ },
+ {
+ "city": "Hesperia",
+ "growth_from_2000_to_2013": "46.1%",
+ "latitude": 34.4263886,
+ "longitude": -117.3008784,
+ "population": "92147",
+ "rank": "327",
+ "state": "California"
+ },
+ {
+ "city": "Allen",
+ "growth_from_2000_to_2013": "104.0%",
+ "latitude": 33.1031744,
+ "longitude": -96.67055030000002,
+ "population": "92020",
+ "rank": "328",
+ "state": "Texas"
+ },
+ {
+ "city": "Rio Rancho",
+ "growth_from_2000_to_2013": "74.4%",
+ "latitude": 35.2327544,
+ "longitude": -106.6630437,
+ "population": "91956",
+ "rank": "329",
+ "state": "New Mexico"
+ },
+ {
+ "city": "Yuma",
+ "growth_from_2000_to_2013": "16.2%",
+ "latitude": 32.6926512,
+ "longitude": -114.6276916,
+ "population": "91923",
+ "rank": "330",
+ "state": "Arizona"
+ },
+ {
+ "city": "Westminster",
+ "growth_from_2000_to_2013": "3.9%",
+ "latitude": 33.7513419,
+ "longitude": -117.9939921,
+ "population": "91739",
+ "rank": "331",
+ "state": "California"
+ },
+ {
+ "city": "Orem",
+ "growth_from_2000_to_2013": "8.5%",
+ "latitude": 40.2968979,
+ "longitude": -111.6946475,
+ "population": "91648",
+ "rank": "332",
+ "state": "Utah"
+ },
+ {
+ "city": "Lynn",
+ "growth_from_2000_to_2013": "2.6%",
+ "latitude": 42.46676300000001,
+ "longitude": -70.9494938,
+ "population": "91589",
+ "rank": "333",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Redding",
+ "growth_from_2000_to_2013": "11.9%",
+ "latitude": 40.5865396,
+ "longitude": -122.3916754,
+ "population": "91119",
+ "rank": "334",
+ "state": "California"
+ },
+ {
+ "city": "Spokane Valley",
+ "growth_from_2000_to_2013": "12.6%",
+ "latitude": 47.6732281,
+ "longitude": -117.2393748,
+ "population": "91113",
+ "rank": "335",
+ "state": "Washington"
+ },
+ {
+ "city": "Miami Beach",
+ "growth_from_2000_to_2013": "3.3%",
+ "latitude": 25.790654,
+ "longitude": -80.1300455,
+ "population": "91026",
+ "rank": "336",
+ "state": "Florida"
+ },
+ {
+ "city": "League City",
+ "growth_from_2000_to_2013": "98.3%",
+ "latitude": 29.5074538,
+ "longitude": -95.0949303,
+ "population": "90983",
+ "rank": "337",
+ "state": "Texas"
+ },
+ {
+ "city": "Lawrence",
+ "growth_from_2000_to_2013": "12.7%",
+ "latitude": 38.9716689,
+ "longitude": -95.2352501,
+ "population": "90811",
+ "rank": "338",
+ "state": "Kansas"
+ },
+ {
+ "city": "Santa Barbara",
+ "growth_from_2000_to_2013": "0.9%",
+ "latitude": 34.4208305,
+ "longitude": -119.6981901,
+ "population": "90412",
+ "rank": "339",
+ "state": "California"
+ },
+ {
+ "city": "Plantation",
+ "growth_from_2000_to_2013": "8.6%",
+ "latitude": 26.1275862,
+ "longitude": -80.23310359999999,
+ "population": "90268",
+ "rank": "340",
+ "state": "Florida"
+ },
+ {
+ "city": "Sandy",
+ "growth_from_2000_to_2013": "1.3%",
+ "latitude": 40.5649781,
+ "longitude": -111.8389726,
+ "population": "90231",
+ "rank": "341",
+ "state": "Utah"
+ },
+ {
+ "city": "Sunrise",
+ "growth_from_2000_to_2013": "4.6%",
+ "latitude": 26.1669711,
+ "longitude": -80.25659499999999,
+ "population": "90116",
+ "rank": "342",
+ "state": "Florida"
+ },
+ {
+ "city": "Macon",
+ "growth_from_2000_to_2013": "-7.3%",
+ "latitude": 32.8406946,
+ "longitude": -83.6324022,
+ "population": "89981",
+ "rank": "343",
+ "state": "Georgia"
+ },
+ {
+ "city": "Longmont",
+ "growth_from_2000_to_2013": "24.4%",
+ "latitude": 40.1672068,
+ "longitude": -105.1019275,
+ "population": "89919",
+ "rank": "344",
+ "state": "Colorado"
+ },
+ {
+ "city": "Boca Raton",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 26.3683064,
+ "longitude": -80.1289321,
+ "population": "89407",
+ "rank": "345",
+ "state": "Florida"
+ },
+ {
+ "city": "San Marcos",
+ "growth_from_2000_to_2013": "60.0%",
+ "latitude": 33.1433723,
+ "longitude": -117.1661449,
+ "population": "89387",
+ "rank": "346",
+ "state": "California"
+ },
+ {
+ "city": "Greenville",
+ "growth_from_2000_to_2013": "41.9%",
+ "latitude": 35.612661,
+ "longitude": -77.3663538,
+ "population": "89130",
+ "rank": "347",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Waukegan",
+ "growth_from_2000_to_2013": "0.5%",
+ "latitude": 42.3636331,
+ "longitude": -87.84479379999999,
+ "population": "88826",
+ "rank": "348",
+ "state": "Illinois"
+ },
+ {
+ "city": "Fall River",
+ "growth_from_2000_to_2013": "-3.7%",
+ "latitude": 41.7014912,
+ "longitude": -71.1550451,
+ "population": "88697",
+ "rank": "349",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Chico",
+ "growth_from_2000_to_2013": "14.2%",
+ "latitude": 39.7284944,
+ "longitude": -121.8374777,
+ "population": "88077",
+ "rank": "350",
+ "state": "California"
+ },
+ {
+ "city": "Newton",
+ "growth_from_2000_to_2013": "4.9%",
+ "latitude": 42.3370413,
+ "longitude": -71.20922139999999,
+ "population": "87971",
+ "rank": "351",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "San Leandro",
+ "growth_from_2000_to_2013": "10.3%",
+ "latitude": 37.7249296,
+ "longitude": -122.1560768,
+ "population": "87965",
+ "rank": "352",
+ "state": "California"
+ },
+ {
+ "city": "Reading",
+ "growth_from_2000_to_2013": "8.0%",
+ "latitude": 40.3356483,
+ "longitude": -75.9268747,
+ "population": "87893",
+ "rank": "353",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Norwalk",
+ "growth_from_2000_to_2013": "5.6%",
+ "latitude": 41.11774399999999,
+ "longitude": -73.4081575,
+ "population": "87776",
+ "rank": "354",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Fort Smith",
+ "growth_from_2000_to_2013": "8.6%",
+ "latitude": 35.3859242,
+ "longitude": -94.39854749999999,
+ "population": "87650",
+ "rank": "355",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Newport Beach",
+ "growth_from_2000_to_2013": "10.4%",
+ "latitude": 33.6189101,
+ "longitude": -117.9289469,
+ "population": "87273",
+ "rank": "356",
+ "state": "California"
+ },
+ {
+ "city": "Asheville",
+ "growth_from_2000_to_2013": "19.6%",
+ "latitude": 35.5950581,
+ "longitude": -82.5514869,
+ "population": "87236",
+ "rank": "357",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Nashua",
+ "growth_from_2000_to_2013": "0.4%",
+ "latitude": 42.7653662,
+ "longitude": -71.46756599999999,
+ "population": "87137",
+ "rank": "358",
+ "state": "New Hampshire"
+ },
+ {
+ "city": "Edmond",
+ "growth_from_2000_to_2013": "26.9%",
+ "latitude": 35.6528323,
+ "longitude": -97.47809540000002,
+ "population": "87004",
+ "rank": "359",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Whittier",
+ "growth_from_2000_to_2013": "3.3%",
+ "latitude": 33.9791793,
+ "longitude": -118.032844,
+ "population": "86635",
+ "rank": "360",
+ "state": "California"
+ },
+ {
+ "city": "Nampa",
+ "growth_from_2000_to_2013": "57.9%",
+ "latitude": 43.5407172,
+ "longitude": -116.5634624,
+ "population": "86518",
+ "rank": "361",
+ "state": "Idaho"
+ },
+ {
+ "city": "Bloomington",
+ "growth_from_2000_to_2013": "1.3%",
+ "latitude": 44.840798,
+ "longitude": -93.2982799,
+ "population": "86319",
+ "rank": "362",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Deltona",
+ "growth_from_2000_to_2013": "23.1%",
+ "latitude": 28.9005446,
+ "longitude": -81.26367379999999,
+ "population": "86290",
+ "rank": "363",
+ "state": "Florida"
+ },
+ {
+ "city": "Hawthorne",
+ "growth_from_2000_to_2013": "2.3%",
+ "latitude": 33.9164032,
+ "longitude": -118.3525748,
+ "population": "86199",
+ "rank": "364",
+ "state": "California"
+ },
+ {
+ "city": "Duluth",
+ "growth_from_2000_to_2013": "-0.1%",
+ "latitude": 46.78667189999999,
+ "longitude": -92.1004852,
+ "population": "86128",
+ "rank": "365",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Carmel",
+ "growth_from_2000_to_2013": "60.4%",
+ "latitude": 39.978371,
+ "longitude": -86.1180435,
+ "population": "85927",
+ "rank": "366",
+ "state": "Indiana"
+ },
+ {
+ "city": "Suffolk",
+ "growth_from_2000_to_2013": "33.5%",
+ "latitude": 36.7282054,
+ "longitude": -76.5835621,
+ "population": "85728",
+ "rank": "367",
+ "state": "Virginia"
+ },
+ {
+ "city": "Clifton",
+ "growth_from_2000_to_2013": "7.9%",
+ "latitude": 40.8584328,
+ "longitude": -74.16375529999999,
+ "population": "85390",
+ "rank": "368",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Citrus Heights",
+ "growth_from_2000_to_2013": "-0.1%",
+ "latitude": 38.7071247,
+ "longitude": -121.2810611,
+ "population": "85285",
+ "rank": "369",
+ "state": "California"
+ },
+ {
+ "city": "Livermore",
+ "growth_from_2000_to_2013": "15.1%",
+ "latitude": 37.6818745,
+ "longitude": -121.7680088,
+ "population": "85156",
+ "rank": "370",
+ "state": "California"
+ },
+ {
+ "city": "Tracy",
+ "growth_from_2000_to_2013": "45.9%",
+ "latitude": 37.7396513,
+ "longitude": -121.4252227,
+ "population": "84691",
+ "rank": "371",
+ "state": "California"
+ },
+ {
+ "city": "Alhambra",
+ "growth_from_2000_to_2013": "-0.7%",
+ "latitude": 34.095287,
+ "longitude": -118.1270146,
+ "population": "84577",
+ "rank": "372",
+ "state": "California"
+ },
+ {
+ "city": "Kirkland",
+ "growth_from_2000_to_2013": "87.5%",
+ "latitude": 47.6814875,
+ "longitude": -122.2087353,
+ "population": "84430",
+ "rank": "373",
+ "state": "Washington"
+ },
+ {
+ "city": "Trenton",
+ "growth_from_2000_to_2013": "-1.2%",
+ "latitude": 40.2170534,
+ "longitude": -74.7429384,
+ "population": "84349",
+ "rank": "374",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Ogden",
+ "growth_from_2000_to_2013": "8.6%",
+ "latitude": 41.223,
+ "longitude": -111.9738304,
+ "population": "84249",
+ "rank": "375",
+ "state": "Utah"
+ },
+ {
+ "city": "Hoover",
+ "growth_from_2000_to_2013": "32.7%",
+ "latitude": 33.4053867,
+ "longitude": -86.8113781,
+ "population": "84126",
+ "rank": "376",
+ "state": "Alabama"
+ },
+ {
+ "city": "Cicero",
+ "growth_from_2000_to_2013": "-1.6%",
+ "latitude": 41.8455877,
+ "longitude": -87.7539448,
+ "population": "84103",
+ "rank": "377",
+ "state": "Illinois"
+ },
+ {
+ "city": "Fishers",
+ "growth_from_2000_to_2013": "114.8%",
+ "latitude": 39.9567548,
+ "longitude": -86.01335,
+ "population": "83891",
+ "rank": "378",
+ "state": "Indiana"
+ },
+ {
+ "city": "Sugar Land",
+ "growth_from_2000_to_2013": "29.1%",
+ "latitude": 29.6196787,
+ "longitude": -95.6349463,
+ "population": "83860",
+ "rank": "379",
+ "state": "Texas"
+ },
+ {
+ "city": "Danbury",
+ "growth_from_2000_to_2013": "11.4%",
+ "latitude": 41.394817,
+ "longitude": -73.4540111,
+ "population": "83684",
+ "rank": "380",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Meridian",
+ "growth_from_2000_to_2013": "127.6%",
+ "latitude": 43.6121087,
+ "longitude": -116.3915131,
+ "population": "83596",
+ "rank": "381",
+ "state": "Idaho"
+ },
+ {
+ "city": "Indio",
+ "growth_from_2000_to_2013": "66.0%",
+ "latitude": 33.7205771,
+ "longitude": -116.2155619,
+ "population": "83539",
+ "rank": "382",
+ "state": "California"
+ },
+ {
+ "city": "Concord",
+ "growth_from_2000_to_2013": "47.4%",
+ "latitude": 35.4087517,
+ "longitude": -80.579511,
+ "population": "83506",
+ "rank": "383",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Menifee",
+ "growth_from_2000_to_2013": "95.0%",
+ "latitude": 33.6971468,
+ "longitude": -117.185294,
+ "population": "83447",
+ "rank": "384",
+ "state": "California"
+ },
+ {
+ "city": "Champaign",
+ "growth_from_2000_to_2013": "18.3%",
+ "latitude": 40.1164204,
+ "longitude": -88.2433829,
+ "population": "83424",
+ "rank": "385",
+ "state": "Illinois"
+ },
+ {
+ "city": "Buena Park",
+ "growth_from_2000_to_2013": "6.1%",
+ "latitude": 33.8675143,
+ "longitude": -117.9981181,
+ "population": "82882",
+ "rank": "386",
+ "state": "California"
+ },
+ {
+ "city": "Troy",
+ "growth_from_2000_to_2013": "2.2%",
+ "latitude": 42.6064095,
+ "longitude": -83.1497751,
+ "population": "82821",
+ "rank": "387",
+ "state": "Michigan"
+ },
+ {
+ "city": "O'Fallon",
+ "growth_from_2000_to_2013": "62.6%",
+ "latitude": 38.8106075,
+ "longitude": -90.69984769999999,
+ "population": "82809",
+ "rank": "388",
+ "state": "Missouri"
+ },
+ {
+ "city": "Johns Creek",
+ "growth_from_2000_to_2013": "36.5%",
+ "latitude": 34.0289259,
+ "longitude": -84.198579,
+ "population": "82788",
+ "rank": "389",
+ "state": "Georgia"
+ },
+ {
+ "city": "Bellingham",
+ "growth_from_2000_to_2013": "21.8%",
+ "latitude": 48.74908,
+ "longitude": -122.4781473,
+ "population": "82631",
+ "rank": "390",
+ "state": "Washington"
+ },
+ {
+ "city": "Westland",
+ "growth_from_2000_to_2013": "-4.7%",
+ "latitude": 42.32420399999999,
+ "longitude": -83.400211,
+ "population": "82578",
+ "rank": "391",
+ "state": "Michigan"
+ },
+ {
+ "city": "Bloomington",
+ "growth_from_2000_to_2013": "16.1%",
+ "latitude": 39.165325,
+ "longitude": -86.52638569999999,
+ "population": "82575",
+ "rank": "392",
+ "state": "Indiana"
+ },
+ {
+ "city": "Sioux City",
+ "growth_from_2000_to_2013": "-2.9%",
+ "latitude": 42.4999942,
+ "longitude": -96.40030689999999,
+ "population": "82459",
+ "rank": "393",
+ "state": "Iowa"
+ },
+ {
+ "city": "Warwick",
+ "growth_from_2000_to_2013": "-4.6%",
+ "latitude": 41.7001009,
+ "longitude": -71.4161671,
+ "population": "81971",
+ "rank": "394",
+ "state": "Rhode Island"
+ },
+ {
+ "city": "Hemet",
+ "growth_from_2000_to_2013": "37.6%",
+ "latitude": 33.7475203,
+ "longitude": -116.9719684,
+ "population": "81750",
+ "rank": "395",
+ "state": "California"
+ },
+ {
+ "city": "Longview",
+ "growth_from_2000_to_2013": "11.6%",
+ "latitude": 32.5007037,
+ "longitude": -94.74048909999999,
+ "population": "81443",
+ "rank": "396",
+ "state": "Texas"
+ },
+ {
+ "city": "Farmington Hills",
+ "growth_from_2000_to_2013": "-0.9%",
+ "latitude": 42.4989936,
+ "longitude": -83.3677168,
+ "population": "81295",
+ "rank": "397",
+ "state": "Michigan"
+ },
+ {
+ "city": "Bend",
+ "growth_from_2000_to_2013": "54.3%",
+ "latitude": 44.0581728,
+ "longitude": -121.3153096,
+ "population": "81236",
+ "rank": "398",
+ "state": "Oregon"
+ },
+ {
+ "city": "Lakewood",
+ "growth_from_2000_to_2013": "2.1%",
+ "latitude": 33.8536269,
+ "longitude": -118.1339563,
+ "population": "81121",
+ "rank": "399",
+ "state": "California"
+ },
+ {
+ "city": "Merced",
+ "growth_from_2000_to_2013": "25.4%",
+ "latitude": 37.3021632,
+ "longitude": -120.4829677,
+ "population": "81102",
+ "rank": "400",
+ "state": "California"
+ },
+ {
+ "city": "Mission",
+ "growth_from_2000_to_2013": "74.5%",
+ "latitude": 26.2159066,
+ "longitude": -98.32529319999999,
+ "population": "81050",
+ "rank": "401",
+ "state": "Texas"
+ },
+ {
+ "city": "Chino",
+ "growth_from_2000_to_2013": "15.6%",
+ "latitude": 34.0122346,
+ "longitude": -117.688944,
+ "population": "80988",
+ "rank": "402",
+ "state": "California"
+ },
+ {
+ "city": "Redwood City",
+ "growth_from_2000_to_2013": "7.1%",
+ "latitude": 37.48521520000001,
+ "longitude": -122.2363548,
+ "population": "80872",
+ "rank": "403",
+ "state": "California"
+ },
+ {
+ "city": "Edinburg",
+ "growth_from_2000_to_2013": "65.1%",
+ "latitude": 26.3017374,
+ "longitude": -98.1633432,
+ "population": "80836",
+ "rank": "404",
+ "state": "Texas"
+ },
+ {
+ "city": "Cranston",
+ "growth_from_2000_to_2013": "1.4%",
+ "latitude": 41.7798226,
+ "longitude": -71.4372796,
+ "population": "80566",
+ "rank": "405",
+ "state": "Rhode Island"
+ },
+ {
+ "city": "Parma",
+ "growth_from_2000_to_2013": "-5.9%",
+ "latitude": 41.4047742,
+ "longitude": -81.7229086,
+ "population": "80429",
+ "rank": "406",
+ "state": "Ohio"
+ },
+ {
+ "city": "New Rochelle",
+ "growth_from_2000_to_2013": "9.9%",
+ "latitude": 40.9114882,
+ "longitude": -73.7823549,
+ "population": "79446",
+ "rank": "407",
+ "state": "New York"
+ },
+ {
+ "city": "Lake Forest",
+ "growth_from_2000_to_2013": "4.2%",
+ "latitude": 33.6469661,
+ "longitude": -117.689218,
+ "population": "79312",
+ "rank": "408",
+ "state": "California"
+ },
+ {
+ "city": "Napa",
+ "growth_from_2000_to_2013": "8.4%",
+ "latitude": 38.2975381,
+ "longitude": -122.286865,
+ "population": "79068",
+ "rank": "409",
+ "state": "California"
+ },
+ {
+ "city": "Hammond",
+ "growth_from_2000_to_2013": "-4.6%",
+ "latitude": 41.5833688,
+ "longitude": -87.5000412,
+ "population": "78967",
+ "rank": "410",
+ "state": "Indiana"
+ },
+ {
+ "city": "Fayetteville",
+ "growth_from_2000_to_2013": "32.9%",
+ "latitude": 36.0625795,
+ "longitude": -94.1574263,
+ "population": "78960",
+ "rank": "411",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Bloomington",
+ "growth_from_2000_to_2013": "20.1%",
+ "latitude": 40.4842027,
+ "longitude": -88.99368729999999,
+ "population": "78902",
+ "rank": "412",
+ "state": "Illinois"
+ },
+ {
+ "city": "Avondale",
+ "growth_from_2000_to_2013": "111.5%",
+ "latitude": 33.4355977,
+ "longitude": -112.3496021,
+ "population": "78822",
+ "rank": "413",
+ "state": "Arizona"
+ },
+ {
+ "city": "Somerville",
+ "growth_from_2000_to_2013": "1.6%",
+ "latitude": 42.3875968,
+ "longitude": -71.0994968,
+ "population": "78804",
+ "rank": "414",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Palm Coast",
+ "growth_from_2000_to_2013": "137.2%",
+ "latitude": 29.5844524,
+ "longitude": -81.20786989999999,
+ "population": "78740",
+ "rank": "415",
+ "state": "Florida"
+ },
+ {
+ "city": "Bryan",
+ "growth_from_2000_to_2013": "19.3%",
+ "latitude": 30.6743643,
+ "longitude": -96.3699632,
+ "population": "78709",
+ "rank": "416",
+ "state": "Texas"
+ },
+ {
+ "city": "Gary",
+ "growth_from_2000_to_2013": "-23.4%",
+ "latitude": 41.5933696,
+ "longitude": -87.3464271,
+ "population": "78450",
+ "rank": "417",
+ "state": "Indiana"
+ },
+ {
+ "city": "Largo",
+ "growth_from_2000_to_2013": "5.1%",
+ "latitude": 27.9094665,
+ "longitude": -82.7873244,
+ "population": "78409",
+ "rank": "418",
+ "state": "Florida"
+ },
+ {
+ "city": "Brooklyn Park",
+ "growth_from_2000_to_2013": "16.0%",
+ "latitude": 45.0941315,
+ "longitude": -93.3563405,
+ "population": "78373",
+ "rank": "419",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Tustin",
+ "growth_from_2000_to_2013": "15.6%",
+ "latitude": 33.7458511,
+ "longitude": -117.826166,
+ "population": "78327",
+ "rank": "420",
+ "state": "California"
+ },
+ {
+ "city": "Racine",
+ "growth_from_2000_to_2013": "-4.4%",
+ "latitude": 42.7261309,
+ "longitude": -87.78285230000002,
+ "population": "78199",
+ "rank": "421",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Deerfield Beach",
+ "growth_from_2000_to_2013": "4.8%",
+ "latitude": 26.3184123,
+ "longitude": -80.09976569999999,
+ "population": "78041",
+ "rank": "422",
+ "state": "Florida"
+ },
+ {
+ "city": "Lynchburg",
+ "growth_from_2000_to_2013": "19.5%",
+ "latitude": 37.4137536,
+ "longitude": -79.14224639999999,
+ "population": "78014",
+ "rank": "423",
+ "state": "Virginia"
+ },
+ {
+ "city": "Mountain View",
+ "growth_from_2000_to_2013": "10.1%",
+ "latitude": 37.3860517,
+ "longitude": -122.0838511,
+ "population": "77846",
+ "rank": "424",
+ "state": "California"
+ },
+ {
+ "city": "Medford",
+ "growth_from_2000_to_2013": "17.1%",
+ "latitude": 42.3265152,
+ "longitude": -122.8755949,
+ "population": "77677",
+ "rank": "425",
+ "state": "Oregon"
+ },
+ {
+ "city": "Lawrence",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 42.7070354,
+ "longitude": -71.1631137,
+ "population": "77657",
+ "rank": "426",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Bellflower",
+ "growth_from_2000_to_2013": "6.3%",
+ "latitude": 33.8816818,
+ "longitude": -118.1170117,
+ "population": "77593",
+ "rank": "427",
+ "state": "California"
+ },
+ {
+ "city": "Melbourne",
+ "growth_from_2000_to_2013": "5.9%",
+ "latitude": 28.0836269,
+ "longitude": -80.60810889999999,
+ "population": "77508",
+ "rank": "428",
+ "state": "Florida"
+ },
+ {
+ "city": "St. Joseph",
+ "growth_from_2000_to_2013": "4.1%",
+ "latitude": 39.7674578,
+ "longitude": -94.84668099999999,
+ "population": "77147",
+ "rank": "429",
+ "state": "Missouri"
+ },
+ {
+ "city": "Camden",
+ "growth_from_2000_to_2013": "-3.6%",
+ "latitude": 39.9259463,
+ "longitude": -75.1196199,
+ "population": "76903",
+ "rank": "430",
+ "state": "New Jersey"
+ },
+ {
+ "city": "St. George",
+ "growth_from_2000_to_2013": "53.1%",
+ "latitude": 37.0965278,
+ "longitude": -113.5684164,
+ "population": "76817",
+ "rank": "431",
+ "state": "Utah"
+ },
+ {
+ "city": "Kennewick",
+ "growth_from_2000_to_2013": "29.1%",
+ "latitude": 46.2112458,
+ "longitude": -119.1372338,
+ "population": "76762",
+ "rank": "432",
+ "state": "Washington"
+ },
+ {
+ "city": "Baldwin Park",
+ "growth_from_2000_to_2013": "0.8%",
+ "latitude": 34.0852868,
+ "longitude": -117.9608978,
+ "population": "76635",
+ "rank": "433",
+ "state": "California"
+ },
+ {
+ "city": "Chino Hills",
+ "growth_from_2000_to_2013": "13.6%",
+ "latitude": 33.9898188,
+ "longitude": -117.7325848,
+ "population": "76572",
+ "rank": "434",
+ "state": "California"
+ },
+ {
+ "city": "Alameda",
+ "growth_from_2000_to_2013": "5.4%",
+ "latitude": 37.7652065,
+ "longitude": -122.2416355,
+ "population": "76419",
+ "rank": "435",
+ "state": "California"
+ },
+ {
+ "city": "Albany",
+ "growth_from_2000_to_2013": "-0.6%",
+ "latitude": 31.5785074,
+ "longitude": -84.15574099999999,
+ "population": "76185",
+ "rank": "436",
+ "state": "Georgia"
+ },
+ {
+ "city": "Arlington Heights",
+ "growth_from_2000_to_2013": "-0.6%",
+ "latitude": 42.0883603,
+ "longitude": -87.98062650000001,
+ "population": "75994",
+ "rank": "437",
+ "state": "Illinois"
+ },
+ {
+ "city": "Scranton",
+ "growth_from_2000_to_2013": "0.0%",
+ "latitude": 41.408969,
+ "longitude": -75.66241219999999,
+ "population": "75806",
+ "rank": "438",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Evanston",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 42.0450722,
+ "longitude": -87.68769689999999,
+ "population": "75570",
+ "rank": "439",
+ "state": "Illinois"
+ },
+ {
+ "city": "Kalamazoo",
+ "growth_from_2000_to_2013": "-1.9%",
+ "latitude": 42.2917069,
+ "longitude": -85.5872286,
+ "population": "75548",
+ "rank": "440",
+ "state": "Michigan"
+ },
+ {
+ "city": "Baytown",
+ "growth_from_2000_to_2013": "13.1%",
+ "latitude": 29.7355047,
+ "longitude": -94.97742740000001,
+ "population": "75418",
+ "rank": "441",
+ "state": "Texas"
+ },
+ {
+ "city": "Upland",
+ "growth_from_2000_to_2013": "9.5%",
+ "latitude": 34.09751,
+ "longitude": -117.6483876,
+ "population": "75413",
+ "rank": "442",
+ "state": "California"
+ },
+ {
+ "city": "Springdale",
+ "growth_from_2000_to_2013": "57.1%",
+ "latitude": 36.18674420000001,
+ "longitude": -94.1288141,
+ "population": "75229",
+ "rank": "443",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Bethlehem",
+ "growth_from_2000_to_2013": "5.2%",
+ "latitude": 40.6259316,
+ "longitude": -75.37045789999999,
+ "population": "75018",
+ "rank": "444",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Schaumburg",
+ "growth_from_2000_to_2013": "-0.5%",
+ "latitude": 42.0333607,
+ "longitude": -88.0834059,
+ "population": "74907",
+ "rank": "445",
+ "state": "Illinois"
+ },
+ {
+ "city": "Mount Pleasant",
+ "growth_from_2000_to_2013": "53.2%",
+ "latitude": 32.8323225,
+ "longitude": -79.82842579999999,
+ "population": "74885",
+ "rank": "446",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Auburn",
+ "growth_from_2000_to_2013": "34.9%",
+ "latitude": 47.30732279999999,
+ "longitude": -122.2284532,
+ "population": "74860",
+ "rank": "447",
+ "state": "Washington"
+ },
+ {
+ "city": "Decatur",
+ "growth_from_2000_to_2013": "-8.7%",
+ "latitude": 39.8403147,
+ "longitude": -88.9548001,
+ "population": "74710",
+ "rank": "448",
+ "state": "Illinois"
+ },
+ {
+ "city": "San Ramon",
+ "growth_from_2000_to_2013": "65.8%",
+ "latitude": 37.7799273,
+ "longitude": -121.9780153,
+ "population": "74513",
+ "rank": "449",
+ "state": "California"
+ },
+ {
+ "city": "Pleasanton",
+ "growth_from_2000_to_2013": "15.2%",
+ "latitude": 37.6624312,
+ "longitude": -121.8746789,
+ "population": "74110",
+ "rank": "450",
+ "state": "California"
+ },
+ {
+ "city": "Wyoming",
+ "growth_from_2000_to_2013": "6.5%",
+ "latitude": 42.9133602,
+ "longitude": -85.7053085,
+ "population": "74100",
+ "rank": "451",
+ "state": "Michigan"
+ },
+ {
+ "city": "Lake Charles",
+ "growth_from_2000_to_2013": "3.0%",
+ "latitude": 30.2265949,
+ "longitude": -93.2173758,
+ "population": "74024",
+ "rank": "452",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Plymouth",
+ "growth_from_2000_to_2013": "12.0%",
+ "latitude": 45.0105194,
+ "longitude": -93.4555093,
+ "population": "73987",
+ "rank": "453",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Bolingbrook",
+ "growth_from_2000_to_2013": "29.7%",
+ "latitude": 41.69864159999999,
+ "longitude": -88.0683955,
+ "population": "73936",
+ "rank": "454",
+ "state": "Illinois"
+ },
+ {
+ "city": "Pharr",
+ "growth_from_2000_to_2013": "55.7%",
+ "latitude": 26.1947962,
+ "longitude": -98.1836216,
+ "population": "73790",
+ "rank": "455",
+ "state": "Texas"
+ },
+ {
+ "city": "Appleton",
+ "growth_from_2000_to_2013": "4.5%",
+ "latitude": 44.2619309,
+ "longitude": -88.41538469999999,
+ "population": "73596",
+ "rank": "456",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Gastonia",
+ "growth_from_2000_to_2013": "8.2%",
+ "latitude": 35.262082,
+ "longitude": -81.18730049999999,
+ "population": "73209",
+ "rank": "457",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Folsom",
+ "growth_from_2000_to_2013": "38.6%",
+ "latitude": 38.6779591,
+ "longitude": -121.1760583,
+ "population": "73098",
+ "rank": "458",
+ "state": "California"
+ },
+ {
+ "city": "Southfield",
+ "growth_from_2000_to_2013": "-6.7%",
+ "latitude": 42.4733688,
+ "longitude": -83.2218731,
+ "population": "73006",
+ "rank": "459",
+ "state": "Michigan"
+ },
+ {
+ "city": "Rochester Hills",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 42.65836609999999,
+ "longitude": -83.1499322,
+ "population": "72952",
+ "rank": "460",
+ "state": "Michigan"
+ },
+ {
+ "city": "New Britain",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 41.6612104,
+ "longitude": -72.7795419,
+ "population": "72939",
+ "rank": "461",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Goodyear",
+ "growth_from_2000_to_2013": "271.0%",
+ "latitude": 33.4353394,
+ "longitude": -112.3576567,
+ "population": "72864",
+ "rank": "462",
+ "state": "Arizona"
+ },
+ {
+ "city": "Canton",
+ "growth_from_2000_to_2013": "-10.3%",
+ "latitude": 40.79894729999999,
+ "longitude": -81.378447,
+ "population": "72535",
+ "rank": "463",
+ "state": "Ohio"
+ },
+ {
+ "city": "Warner Robins",
+ "growth_from_2000_to_2013": "45.7%",
+ "latitude": 32.6130007,
+ "longitude": -83.624201,
+ "population": "72531",
+ "rank": "464",
+ "state": "Georgia"
+ },
+ {
+ "city": "Union City",
+ "growth_from_2000_to_2013": "7.4%",
+ "latitude": 37.5933918,
+ "longitude": -122.0438298,
+ "population": "72528",
+ "rank": "465",
+ "state": "California"
+ },
+ {
+ "city": "Perris",
+ "growth_from_2000_to_2013": "98.7%",
+ "latitude": 33.7825194,
+ "longitude": -117.2286478,
+ "population": "72326",
+ "rank": "466",
+ "state": "California"
+ },
+ {
+ "city": "Manteca",
+ "growth_from_2000_to_2013": "42.7%",
+ "latitude": 37.7974273,
+ "longitude": -121.2160526,
+ "population": "71948",
+ "rank": "467",
+ "state": "California"
+ },
+ {
+ "city": "Iowa City",
+ "growth_from_2000_to_2013": "13.8%",
+ "latitude": 41.6611277,
+ "longitude": -91.5301683,
+ "population": "71591",
+ "rank": "468",
+ "state": "Iowa"
+ },
+ {
+ "city": "Jonesboro",
+ "growth_from_2000_to_2013": "28.3%",
+ "latitude": 35.84229670000001,
+ "longitude": -90.704279,
+ "population": "71551",
+ "rank": "469",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Wilmington",
+ "growth_from_2000_to_2013": "-1.6%",
+ "latitude": 39.7390721,
+ "longitude": -75.5397878,
+ "population": "71525",
+ "rank": "470",
+ "state": "Delaware"
+ },
+ {
+ "city": "Lynwood",
+ "growth_from_2000_to_2013": "2.0%",
+ "latitude": 33.930293,
+ "longitude": -118.2114603,
+ "population": "71371",
+ "rank": "471",
+ "state": "California"
+ },
+ {
+ "city": "Loveland",
+ "growth_from_2000_to_2013": "37.4%",
+ "latitude": 40.3977612,
+ "longitude": -105.0749801,
+ "population": "71334",
+ "rank": "472",
+ "state": "Colorado"
+ },
+ {
+ "city": "Pawtucket",
+ "growth_from_2000_to_2013": "-2.5%",
+ "latitude": 41.878711,
+ "longitude": -71.38255579999999,
+ "population": "71172",
+ "rank": "473",
+ "state": "Rhode Island"
+ },
+ {
+ "city": "Boynton Beach",
+ "growth_from_2000_to_2013": "17.3%",
+ "latitude": 26.5317866,
+ "longitude": -80.0905465,
+ "population": "71097",
+ "rank": "474",
+ "state": "Florida"
+ },
+ {
+ "city": "Waukesha",
+ "growth_from_2000_to_2013": "8.0%",
+ "latitude": 43.0116784,
+ "longitude": -88.2314813,
+ "population": "71016",
+ "rank": "475",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Gulfport",
+ "growth_from_2000_to_2013": "-0.6%",
+ "latitude": 30.3674198,
+ "longitude": -89.0928155,
+ "population": "71012",
+ "rank": "476",
+ "state": "Mississippi"
+ },
+ {
+ "city": "Apple Valley",
+ "growth_from_2000_to_2013": "29.9%",
+ "latitude": 34.5008311,
+ "longitude": -117.1858759,
+ "population": "70924",
+ "rank": "477",
+ "state": "California"
+ },
+ {
+ "city": "Passaic",
+ "growth_from_2000_to_2013": "4.3%",
+ "latitude": 40.8567662,
+ "longitude": -74.1284764,
+ "population": "70868",
+ "rank": "478",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Rapid City",
+ "growth_from_2000_to_2013": "17.9%",
+ "latitude": 44.0805434,
+ "longitude": -103.2310149,
+ "population": "70812",
+ "rank": "479",
+ "state": "South Dakota"
+ },
+ {
+ "city": "Layton",
+ "growth_from_2000_to_2013": "20.2%",
+ "latitude": 41.0602216,
+ "longitude": -111.9710529,
+ "population": "70790",
+ "rank": "480",
+ "state": "Utah"
+ },
+ {
+ "city": "Lafayette",
+ "growth_from_2000_to_2013": "14.5%",
+ "latitude": 40.4167022,
+ "longitude": -86.87528689999999,
+ "population": "70373",
+ "rank": "481",
+ "state": "Indiana"
+ },
+ {
+ "city": "Turlock",
+ "growth_from_2000_to_2013": "23.5%",
+ "latitude": 37.4946568,
+ "longitude": -120.8465941,
+ "population": "70365",
+ "rank": "482",
+ "state": "California"
+ },
+ {
+ "city": "Muncie",
+ "growth_from_2000_to_2013": "-0.7%",
+ "latitude": 40.1933767,
+ "longitude": -85.3863599,
+ "population": "70316",
+ "rank": "483",
+ "state": "Indiana"
+ },
+ {
+ "city": "Temple",
+ "growth_from_2000_to_2013": "27.1%",
+ "latitude": 31.0982344,
+ "longitude": -97.342782,
+ "population": "70190",
+ "rank": "484",
+ "state": "Texas"
+ },
+ {
+ "city": "Missouri City",
+ "growth_from_2000_to_2013": "31.1%",
+ "latitude": 29.6185669,
+ "longitude": -95.5377215,
+ "population": "70185",
+ "rank": "485",
+ "state": "Texas"
+ },
+ {
+ "city": "Redlands",
+ "growth_from_2000_to_2013": "9.4%",
+ "latitude": 34.0555693,
+ "longitude": -117.1825381,
+ "population": "69999",
+ "rank": "486",
+ "state": "California"
+ },
+ {
+ "city": "Santa Fe",
+ "growth_from_2000_to_2013": "10.5%",
+ "latitude": 35.6869752,
+ "longitude": -105.937799,
+ "population": "69976",
+ "rank": "487",
+ "state": "New Mexico"
+ },
+ {
+ "city": "Lauderhill",
+ "growth_from_2000_to_2013": "4.2%",
+ "latitude": 26.1403635,
+ "longitude": -80.2133808,
+ "population": "69813",
+ "rank": "488",
+ "state": "Florida"
+ },
+ {
+ "city": "Milpitas",
+ "growth_from_2000_to_2013": "11.0%",
+ "latitude": 37.4323341,
+ "longitude": -121.8995741,
+ "population": "69783",
+ "rank": "489",
+ "state": "California"
+ },
+ {
+ "city": "Palatine",
+ "growth_from_2000_to_2013": "4.5%",
+ "latitude": 42.1103041,
+ "longitude": -88.03424000000001,
+ "population": "69350",
+ "rank": "490",
+ "state": "Illinois"
+ },
+ {
+ "city": "Missoula",
+ "growth_from_2000_to_2013": "19.7%",
+ "latitude": 46.87871759999999,
+ "longitude": -113.996586,
+ "population": "69122",
+ "rank": "491",
+ "state": "Montana"
+ },
+ {
+ "city": "Rock Hill",
+ "growth_from_2000_to_2013": "36.0%",
+ "latitude": 34.9248667,
+ "longitude": -81.02507840000001,
+ "population": "69103",
+ "rank": "492",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Jacksonville",
+ "growth_from_2000_to_2013": "5.0%",
+ "latitude": 34.7540524,
+ "longitude": -77.4302414,
+ "population": "69079",
+ "rank": "493",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Franklin",
+ "growth_from_2000_to_2013": "48.5%",
+ "latitude": 35.9250637,
+ "longitude": -86.8688899,
+ "population": "68886",
+ "rank": "494",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Flagstaff",
+ "growth_from_2000_to_2013": "29.3%",
+ "latitude": 35.1982836,
+ "longitude": -111.651302,
+ "population": "68667",
+ "rank": "495",
+ "state": "Arizona"
+ },
+ {
+ "city": "Flower Mound",
+ "growth_from_2000_to_2013": "32.5%",
+ "latitude": 33.0145673,
+ "longitude": -97.0969552,
+ "population": "68609",
+ "rank": "496",
+ "state": "Texas"
+ },
+ {
+ "city": "Weston",
+ "growth_from_2000_to_2013": "34.5%",
+ "latitude": 26.1003654,
+ "longitude": -80.3997748,
+ "population": "68388",
+ "rank": "497",
+ "state": "Florida"
+ },
+ {
+ "city": "Waterloo",
+ "growth_from_2000_to_2013": "-0.5%",
+ "latitude": 42.492786,
+ "longitude": -92.34257749999999,
+ "population": "68366",
+ "rank": "498",
+ "state": "Iowa"
+ },
+ {
+ "city": "Union City",
+ "growth_from_2000_to_2013": "1.7%",
+ "latitude": 40.6975898,
+ "longitude": -74.26316349999999,
+ "population": "68247",
+ "rank": "499",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Mount Vernon",
+ "growth_from_2000_to_2013": "-0.2%",
+ "latitude": 40.9125992,
+ "longitude": -73.8370786,
+ "population": "68224",
+ "rank": "500",
+ "state": "New York"
+ },
+ {
+ "city": "Fort Myers",
+ "growth_from_2000_to_2013": "31.2%",
+ "latitude": 26.640628,
+ "longitude": -81.8723084,
+ "population": "68190",
+ "rank": "501",
+ "state": "Florida"
+ },
+ {
+ "city": "Dothan",
+ "growth_from_2000_to_2013": "16.6%",
+ "latitude": 31.2232313,
+ "longitude": -85.3904888,
+ "population": "68001",
+ "rank": "502",
+ "state": "Alabama"
+ },
+ {
+ "city": "Rancho Cordova",
+ "growth_from_2000_to_2013": "26.4%",
+ "latitude": 38.5890723,
+ "longitude": -121.302728,
+ "population": "67911",
+ "rank": "503",
+ "state": "California"
+ },
+ {
+ "city": "Redondo Beach",
+ "growth_from_2000_to_2013": "6.7%",
+ "latitude": 33.8491816,
+ "longitude": -118.3884078,
+ "population": "67815",
+ "rank": "504",
+ "state": "California"
+ },
+ {
+ "city": "Jackson",
+ "growth_from_2000_to_2013": "12.9%",
+ "latitude": 35.6145169,
+ "longitude": -88.81394689999999,
+ "population": "67685",
+ "rank": "505",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Pasco",
+ "growth_from_2000_to_2013": "98.5%",
+ "latitude": 46.2395793,
+ "longitude": -119.1005657,
+ "population": "67599",
+ "rank": "506",
+ "state": "Washington"
+ },
+ {
+ "city": "St. Charles",
+ "growth_from_2000_to_2013": "11.3%",
+ "latitude": 38.7881062,
+ "longitude": -90.4974359,
+ "population": "67569",
+ "rank": "507",
+ "state": "Missouri"
+ },
+ {
+ "city": "Eau Claire",
+ "growth_from_2000_to_2013": "8.7%",
+ "latitude": 44.811349,
+ "longitude": -91.4984941,
+ "population": "67545",
+ "rank": "508",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "North Richland Hills",
+ "growth_from_2000_to_2013": "20.2%",
+ "latitude": 32.8342952,
+ "longitude": -97.2289029,
+ "population": "67317",
+ "rank": "509",
+ "state": "Texas"
+ },
+ {
+ "city": "Bismarck",
+ "growth_from_2000_to_2013": "20.1%",
+ "latitude": 46.8083268,
+ "longitude": -100.7837392,
+ "population": "67034",
+ "rank": "510",
+ "state": "North Dakota"
+ },
+ {
+ "city": "Yorba Linda",
+ "growth_from_2000_to_2013": "13.4%",
+ "latitude": 33.8886259,
+ "longitude": -117.8131125,
+ "population": "67032",
+ "rank": "511",
+ "state": "California"
+ },
+ {
+ "city": "Kenner",
+ "growth_from_2000_to_2013": "-4.8%",
+ "latitude": 29.9940924,
+ "longitude": -90.2417434,
+ "population": "66975",
+ "rank": "512",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Walnut Creek",
+ "growth_from_2000_to_2013": "3.5%",
+ "latitude": 37.9100783,
+ "longitude": -122.0651819,
+ "population": "66900",
+ "rank": "513",
+ "state": "California"
+ },
+ {
+ "city": "Frederick",
+ "growth_from_2000_to_2013": "25.9%",
+ "latitude": 39.41426879999999,
+ "longitude": -77.4105409,
+ "population": "66893",
+ "rank": "514",
+ "state": "Maryland"
+ },
+ {
+ "city": "Oshkosh",
+ "growth_from_2000_to_2013": "5.3%",
+ "latitude": 44.0247062,
+ "longitude": -88.5426136,
+ "population": "66778",
+ "rank": "515",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Pittsburg",
+ "growth_from_2000_to_2013": "16.6%",
+ "latitude": 38.0279762,
+ "longitude": -121.8846806,
+ "population": "66695",
+ "rank": "516",
+ "state": "California"
+ },
+ {
+ "city": "Palo Alto",
+ "growth_from_2000_to_2013": "13.7%",
+ "latitude": 37.4418834,
+ "longitude": -122.1430195,
+ "population": "66642",
+ "rank": "517",
+ "state": "California"
+ },
+ {
+ "city": "Bossier City",
+ "growth_from_2000_to_2013": "17.4%",
+ "latitude": 32.5159852,
+ "longitude": -93.7321228,
+ "population": "66333",
+ "rank": "518",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Portland",
+ "growth_from_2000_to_2013": "3.2%",
+ "latitude": 43.66147100000001,
+ "longitude": -70.2553259,
+ "population": "66318",
+ "rank": "519",
+ "state": "Maine"
+ },
+ {
+ "city": "St. Cloud",
+ "growth_from_2000_to_2013": "10.9%",
+ "latitude": 45.5579451,
+ "longitude": -94.16324039999999,
+ "population": "66297",
+ "rank": "520",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Davis",
+ "growth_from_2000_to_2013": "11.9%",
+ "latitude": 38.5449065,
+ "longitude": -121.7405167,
+ "population": "66205",
+ "rank": "521",
+ "state": "California"
+ },
+ {
+ "city": "South San Francisco",
+ "growth_from_2000_to_2013": "9.1%",
+ "latitude": 37.654656,
+ "longitude": -122.4077498,
+ "population": "66174",
+ "rank": "522",
+ "state": "California"
+ },
+ {
+ "city": "Camarillo",
+ "growth_from_2000_to_2013": "14.9%",
+ "latitude": 34.2163937,
+ "longitude": -119.0376023,
+ "population": "66086",
+ "rank": "523",
+ "state": "California"
+ },
+ {
+ "city": "North Little Rock",
+ "growth_from_2000_to_2013": "9.0%",
+ "latitude": 34.769536,
+ "longitude": -92.2670941,
+ "population": "66075",
+ "rank": "524",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Schenectady",
+ "growth_from_2000_to_2013": "6.7%",
+ "latitude": 42.8142432,
+ "longitude": -73.9395687,
+ "population": "65902",
+ "rank": "525",
+ "state": "New York"
+ },
+ {
+ "city": "Gaithersburg",
+ "growth_from_2000_to_2013": "24.2%",
+ "latitude": 39.1434406,
+ "longitude": -77.2013705,
+ "population": "65690",
+ "rank": "526",
+ "state": "Maryland"
+ },
+ {
+ "city": "Harlingen",
+ "growth_from_2000_to_2013": "11.6%",
+ "latitude": 26.1906306,
+ "longitude": -97.69610259999999,
+ "population": "65665",
+ "rank": "527",
+ "state": "Texas"
+ },
+ {
+ "city": "Woodbury",
+ "growth_from_2000_to_2013": "39.8%",
+ "latitude": 44.9238552,
+ "longitude": -92.9593797,
+ "population": "65656",
+ "rank": "528",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Eagan",
+ "growth_from_2000_to_2013": "2.6%",
+ "latitude": 44.8041322,
+ "longitude": -93.1668858,
+ "population": "65453",
+ "rank": "529",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Yuba City",
+ "growth_from_2000_to_2013": "27.9%",
+ "latitude": 39.1404477,
+ "longitude": -121.6169108,
+ "population": "65416",
+ "rank": "530",
+ "state": "California"
+ },
+ {
+ "city": "Maple Grove",
+ "growth_from_2000_to_2013": "27.3%",
+ "latitude": 45.0724642,
+ "longitude": -93.4557877,
+ "population": "65415",
+ "rank": "531",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Youngstown",
+ "growth_from_2000_to_2013": "-20.2%",
+ "latitude": 41.0997803,
+ "longitude": -80.6495194,
+ "population": "65184",
+ "rank": "532",
+ "state": "Ohio"
+ },
+ {
+ "city": "Skokie",
+ "growth_from_2000_to_2013": "2.8%",
+ "latitude": 42.0324025,
+ "longitude": -87.7416246,
+ "population": "65176",
+ "rank": "533",
+ "state": "Illinois"
+ },
+ {
+ "city": "Kissimmee",
+ "growth_from_2000_to_2013": "32.6%",
+ "latitude": 28.2919557,
+ "longitude": -81.40757099999999,
+ "population": "65173",
+ "rank": "534",
+ "state": "Florida"
+ },
+ {
+ "city": "Johnson City",
+ "growth_from_2000_to_2013": "16.2%",
+ "latitude": 36.3134397,
+ "longitude": -82.3534727,
+ "population": "65123",
+ "rank": "535",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Victoria",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 28.8052674,
+ "longitude": -97.0035982,
+ "population": "65098",
+ "rank": "536",
+ "state": "Texas"
+ },
+ {
+ "city": "San Clemente",
+ "growth_from_2000_to_2013": "28.6%",
+ "latitude": 33.4269728,
+ "longitude": -117.6119925,
+ "population": "65040",
+ "rank": "537",
+ "state": "California"
+ },
+ {
+ "city": "Bayonne",
+ "growth_from_2000_to_2013": "5.1%",
+ "latitude": 40.6687141,
+ "longitude": -74.1143091,
+ "population": "65028",
+ "rank": "538",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Laguna Niguel",
+ "growth_from_2000_to_2013": "2.8%",
+ "latitude": 33.5225261,
+ "longitude": -117.7075526,
+ "population": "64652",
+ "rank": "539",
+ "state": "California"
+ },
+ {
+ "city": "East Orange",
+ "growth_from_2000_to_2013": "-7.4%",
+ "latitude": 40.767323,
+ "longitude": -74.2048677,
+ "population": "64544",
+ "rank": "540",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Shawnee",
+ "growth_from_2000_to_2013": "32.2%",
+ "latitude": 39.02284849999999,
+ "longitude": -94.7151865,
+ "population": "64323",
+ "rank": "541",
+ "state": "Kansas"
+ },
+ {
+ "city": "Homestead",
+ "growth_from_2000_to_2013": "100.7%",
+ "latitude": 25.4687224,
+ "longitude": -80.4775569,
+ "population": "64079",
+ "rank": "542",
+ "state": "Florida"
+ },
+ {
+ "city": "Rockville",
+ "growth_from_2000_to_2013": "34.0%",
+ "latitude": 39.0839973,
+ "longitude": -77.1527578,
+ "population": "64072",
+ "rank": "544",
+ "state": "Maryland"
+ },
+ {
+ "city": "Delray Beach",
+ "growth_from_2000_to_2013": "6.1%",
+ "latitude": 26.4614625,
+ "longitude": -80.0728201,
+ "population": "64072",
+ "rank": "543",
+ "state": "Florida"
+ },
+ {
+ "city": "Janesville",
+ "growth_from_2000_to_2013": "5.6%",
+ "latitude": 42.6827885,
+ "longitude": -89.0187222,
+ "population": "63820",
+ "rank": "545",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Conway",
+ "growth_from_2000_to_2013": "46.1%",
+ "latitude": 35.0886963,
+ "longitude": -92.4421011,
+ "population": "63816",
+ "rank": "546",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Pico Rivera",
+ "growth_from_2000_to_2013": "0.4%",
+ "latitude": 33.9830688,
+ "longitude": -118.096735,
+ "population": "63771",
+ "rank": "547",
+ "state": "California"
+ },
+ {
+ "city": "Lorain",
+ "growth_from_2000_to_2013": "-7.2%",
+ "latitude": 41.452819,
+ "longitude": -82.1823746,
+ "population": "63710",
+ "rank": "548",
+ "state": "Ohio"
+ },
+ {
+ "city": "Montebello",
+ "growth_from_2000_to_2013": "2.0%",
+ "latitude": 34.0165053,
+ "longitude": -118.1137535,
+ "population": "63495",
+ "rank": "549",
+ "state": "California"
+ },
+ {
+ "city": "Lodi",
+ "growth_from_2000_to_2013": "10.1%",
+ "latitude": 38.1341477,
+ "longitude": -121.2722194,
+ "population": "63338",
+ "rank": "550",
+ "state": "California"
+ },
+ {
+ "city": "New Braunfels",
+ "growth_from_2000_to_2013": "64.0%",
+ "latitude": 29.7030024,
+ "longitude": -98.1244531,
+ "population": "63279",
+ "rank": "551",
+ "state": "Texas"
+ },
+ {
+ "city": "Marysville",
+ "growth_from_2000_to_2013": "115.7%",
+ "latitude": 48.0517637,
+ "longitude": -122.1770818,
+ "population": "63269",
+ "rank": "552",
+ "state": "Washington"
+ },
+ {
+ "city": "Tamarac",
+ "growth_from_2000_to_2013": "12.9%",
+ "latitude": 26.2128609,
+ "longitude": -80.2497707,
+ "population": "63155",
+ "rank": "553",
+ "state": "Florida"
+ },
+ {
+ "city": "Madera",
+ "growth_from_2000_to_2013": "44.4%",
+ "latitude": 36.9613356,
+ "longitude": -120.0607176,
+ "population": "63105",
+ "rank": "554",
+ "state": "California"
+ },
+ {
+ "city": "Conroe",
+ "growth_from_2000_to_2013": "61.9%",
+ "latitude": 30.3118769,
+ "longitude": -95.45605119999999,
+ "population": "63032",
+ "rank": "555",
+ "state": "Texas"
+ },
+ {
+ "city": "Santa Cruz",
+ "growth_from_2000_to_2013": "12.5%",
+ "latitude": 36.9741171,
+ "longitude": -122.0307963,
+ "population": "62864",
+ "rank": "556",
+ "state": "California"
+ },
+ {
+ "city": "Eden Prairie",
+ "growth_from_2000_to_2013": "13.3%",
+ "latitude": 44.8546856,
+ "longitude": -93.47078599999999,
+ "population": "62603",
+ "rank": "557",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Cheyenne",
+ "growth_from_2000_to_2013": "16.9%",
+ "latitude": 41.1399814,
+ "longitude": -104.8202462,
+ "population": "62448",
+ "rank": "558",
+ "state": "Wyoming"
+ },
+ {
+ "city": "Daytona Beach",
+ "growth_from_2000_to_2013": "-2.3%",
+ "latitude": 29.2108147,
+ "longitude": -81.0228331,
+ "population": "62316",
+ "rank": "559",
+ "state": "Florida"
+ },
+ {
+ "city": "Alpharetta",
+ "growth_from_2000_to_2013": "33.6%",
+ "latitude": 34.0753762,
+ "longitude": -84.2940899,
+ "population": "62298",
+ "rank": "560",
+ "state": "Georgia"
+ },
+ {
+ "city": "Hamilton",
+ "growth_from_2000_to_2013": "2.7%",
+ "latitude": 39.3995008,
+ "longitude": -84.5613355,
+ "population": "62258",
+ "rank": "561",
+ "state": "Ohio"
+ },
+ {
+ "city": "Waltham",
+ "growth_from_2000_to_2013": "5.0%",
+ "latitude": 42.3764852,
+ "longitude": -71.2356113,
+ "population": "62227",
+ "rank": "562",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Coon Rapids",
+ "growth_from_2000_to_2013": "0.6%",
+ "latitude": 45.1732394,
+ "longitude": -93.30300629999999,
+ "population": "62103",
+ "rank": "563",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Haverhill",
+ "growth_from_2000_to_2013": "5.0%",
+ "latitude": 42.7762015,
+ "longitude": -71.0772796,
+ "population": "62088",
+ "rank": "564",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Council Bluffs",
+ "growth_from_2000_to_2013": "6.2%",
+ "latitude": 41.2619444,
+ "longitude": -95.8608333,
+ "population": "61969",
+ "rank": "565",
+ "state": "Iowa"
+ },
+ {
+ "city": "Taylor",
+ "growth_from_2000_to_2013": "-6.3%",
+ "latitude": 42.240872,
+ "longitude": -83.2696509,
+ "population": "61817",
+ "rank": "566",
+ "state": "Michigan"
+ },
+ {
+ "city": "Utica",
+ "growth_from_2000_to_2013": "2.2%",
+ "latitude": 43.100903,
+ "longitude": -75.232664,
+ "population": "61808",
+ "rank": "567",
+ "state": "New York"
+ },
+ {
+ "city": "Ames",
+ "growth_from_2000_to_2013": "21.3%",
+ "latitude": 42.034722,
+ "longitude": -93.61999999999999,
+ "population": "61792",
+ "rank": "568",
+ "state": "Iowa"
+ },
+ {
+ "city": "La Habra",
+ "growth_from_2000_to_2013": "3.6%",
+ "latitude": 33.9319578,
+ "longitude": -117.9461734,
+ "population": "61653",
+ "rank": "569",
+ "state": "California"
+ },
+ {
+ "city": "Encinitas",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 33.0369867,
+ "longitude": -117.2919818,
+ "population": "61588",
+ "rank": "570",
+ "state": "California"
+ },
+ {
+ "city": "Bowling Green",
+ "growth_from_2000_to_2013": "24.1%",
+ "latitude": 36.9685219,
+ "longitude": -86.4808043,
+ "population": "61488",
+ "rank": "571",
+ "state": "Kentucky"
+ },
+ {
+ "city": "Burnsville",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 44.7677424,
+ "longitude": -93.27772259999999,
+ "population": "61434",
+ "rank": "572",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Greenville",
+ "growth_from_2000_to_2013": "8.2%",
+ "latitude": 34.85261759999999,
+ "longitude": -82.3940104,
+ "population": "61397",
+ "rank": "573",
+ "state": "South Carolina"
+ },
+ {
+ "city": "West Des Moines",
+ "growth_from_2000_to_2013": "29.8%",
+ "latitude": 41.5772115,
+ "longitude": -93.711332,
+ "population": "61255",
+ "rank": "574",
+ "state": "Iowa"
+ },
+ {
+ "city": "Cedar Park",
+ "growth_from_2000_to_2013": "134.3%",
+ "latitude": 30.505198,
+ "longitude": -97.8202888,
+ "population": "61238",
+ "rank": "575",
+ "state": "Texas"
+ },
+ {
+ "city": "Tulare",
+ "growth_from_2000_to_2013": "33.3%",
+ "latitude": 36.2077288,
+ "longitude": -119.3473379,
+ "population": "61170",
+ "rank": "576",
+ "state": "California"
+ },
+ {
+ "city": "Monterey Park",
+ "growth_from_2000_to_2013": "1.5%",
+ "latitude": 34.0625106,
+ "longitude": -118.1228476,
+ "population": "61085",
+ "rank": "577",
+ "state": "California"
+ },
+ {
+ "city": "Vineland",
+ "growth_from_2000_to_2013": "9.3%",
+ "latitude": 39.4863773,
+ "longitude": -75.02596369999999,
+ "population": "61050",
+ "rank": "578",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Terre Haute",
+ "growth_from_2000_to_2013": "2.5%",
+ "latitude": 39.4667034,
+ "longitude": -87.41390919999999,
+ "population": "61025",
+ "rank": "579",
+ "state": "Indiana"
+ },
+ {
+ "city": "North Miami",
+ "growth_from_2000_to_2013": "2.0%",
+ "latitude": 25.8900949,
+ "longitude": -80.1867138,
+ "population": "61007",
+ "rank": "580",
+ "state": "Florida"
+ },
+ {
+ "city": "Mansfield",
+ "growth_from_2000_to_2013": "114.2%",
+ "latitude": 32.5631924,
+ "longitude": -97.1416768,
+ "population": "60872",
+ "rank": "581",
+ "state": "Texas"
+ },
+ {
+ "city": "West Allis",
+ "growth_from_2000_to_2013": "-0.6%",
+ "latitude": 43.0166806,
+ "longitude": -88.0070315,
+ "population": "60697",
+ "rank": "582",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Bristol",
+ "growth_from_2000_to_2013": "0.4%",
+ "latitude": 41.67176480000001,
+ "longitude": -72.9492703,
+ "population": "60568",
+ "rank": "583",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Taylorsville",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 40.66772479999999,
+ "longitude": -111.9388258,
+ "population": "60519",
+ "rank": "584",
+ "state": "Utah"
+ },
+ {
+ "city": "Malden",
+ "growth_from_2000_to_2013": "7.4%",
+ "latitude": 42.4250964,
+ "longitude": -71.066163,
+ "population": "60509",
+ "rank": "585",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Meriden",
+ "growth_from_2000_to_2013": "3.7%",
+ "latitude": 41.5381535,
+ "longitude": -72.80704349999999,
+ "population": "60456",
+ "rank": "586",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Blaine",
+ "growth_from_2000_to_2013": "32.8%",
+ "latitude": 45.1607987,
+ "longitude": -93.23494889999999,
+ "population": "60407",
+ "rank": "587",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Wellington",
+ "growth_from_2000_to_2013": "55.0%",
+ "latitude": 26.6617635,
+ "longitude": -80.2683571,
+ "population": "60202",
+ "rank": "588",
+ "state": "Florida"
+ },
+ {
+ "city": "Cupertino",
+ "growth_from_2000_to_2013": "14.3%",
+ "latitude": 37.3229978,
+ "longitude": -122.0321823,
+ "population": "60189",
+ "rank": "589",
+ "state": "California"
+ },
+ {
+ "city": "Springfield",
+ "growth_from_2000_to_2013": "12.4%",
+ "latitude": 44.0462362,
+ "longitude": -123.0220289,
+ "population": "60177",
+ "rank": "590",
+ "state": "Oregon"
+ },
+ {
+ "city": "Rogers",
+ "growth_from_2000_to_2013": "50.6%",
+ "latitude": 36.3320196,
+ "longitude": -94.1185366,
+ "population": "60112",
+ "rank": "591",
+ "state": "Arkansas"
+ },
+ {
+ "city": "St. Clair Shores",
+ "growth_from_2000_to_2013": "-4.6%",
+ "latitude": 42.4974085,
+ "longitude": -82.89636039999999,
+ "population": "60070",
+ "rank": "592",
+ "state": "Michigan"
+ },
+ {
+ "city": "Gardena",
+ "growth_from_2000_to_2013": "3.4%",
+ "latitude": 33.8883487,
+ "longitude": -118.3089624,
+ "population": "59957",
+ "rank": "593",
+ "state": "California"
+ },
+ {
+ "city": "Pontiac",
+ "growth_from_2000_to_2013": "-11.4%",
+ "latitude": 42.6389216,
+ "longitude": -83.29104679999999,
+ "population": "59887",
+ "rank": "594",
+ "state": "Michigan"
+ },
+ {
+ "city": "National City",
+ "growth_from_2000_to_2013": "10.1%",
+ "latitude": 32.6781085,
+ "longitude": -117.0991967,
+ "population": "59834",
+ "rank": "595",
+ "state": "California"
+ },
+ {
+ "city": "Grand Junction",
+ "growth_from_2000_to_2013": "30.9%",
+ "latitude": 39.0638705,
+ "longitude": -108.5506486,
+ "population": "59778",
+ "rank": "596",
+ "state": "Colorado"
+ },
+ {
+ "city": "Rocklin",
+ "growth_from_2000_to_2013": "60.3%",
+ "latitude": 38.7907339,
+ "longitude": -121.2357828,
+ "population": "59738",
+ "rank": "597",
+ "state": "California"
+ },
+ {
+ "city": "Chapel Hill",
+ "growth_from_2000_to_2013": "24.1%",
+ "latitude": 35.9131996,
+ "longitude": -79.0558445,
+ "population": "59635",
+ "rank": "598",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Casper",
+ "growth_from_2000_to_2013": "19.9%",
+ "latitude": 42.866632,
+ "longitude": -106.313081,
+ "population": "59628",
+ "rank": "599",
+ "state": "Wyoming"
+ },
+ {
+ "city": "Broomfield",
+ "growth_from_2000_to_2013": "50.3%",
+ "latitude": 39.9205411,
+ "longitude": -105.0866504,
+ "population": "59471",
+ "rank": "600",
+ "state": "Colorado"
+ },
+ {
+ "city": "Petaluma",
+ "growth_from_2000_to_2013": "8.4%",
+ "latitude": 38.232417,
+ "longitude": -122.6366524,
+ "population": "59440",
+ "rank": "601",
+ "state": "California"
+ },
+ {
+ "city": "South Jordan",
+ "growth_from_2000_to_2013": "100.1%",
+ "latitude": 40.5621704,
+ "longitude": -111.929658,
+ "population": "59366",
+ "rank": "602",
+ "state": "Utah"
+ },
+ {
+ "city": "Springfield",
+ "growth_from_2000_to_2013": "-9.8%",
+ "latitude": 39.9242266,
+ "longitude": -83.8088171,
+ "population": "59357",
+ "rank": "603",
+ "state": "Ohio"
+ },
+ {
+ "city": "Great Falls",
+ "growth_from_2000_to_2013": "3.9%",
+ "latitude": 47.4941836,
+ "longitude": -111.2833449,
+ "population": "59351",
+ "rank": "604",
+ "state": "Montana"
+ },
+ {
+ "city": "Lancaster",
+ "growth_from_2000_to_2013": "4.5%",
+ "latitude": 40.0378755,
+ "longitude": -76.3055144,
+ "population": "59325",
+ "rank": "605",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "North Port",
+ "growth_from_2000_to_2013": "154.6%",
+ "latitude": 27.044224,
+ "longitude": -82.2359254,
+ "population": "59212",
+ "rank": "606",
+ "state": "Florida"
+ },
+ {
+ "city": "Lakewood",
+ "growth_from_2000_to_2013": "1.1%",
+ "latitude": 47.1717649,
+ "longitude": -122.518458,
+ "population": "59097",
+ "rank": "607",
+ "state": "Washington"
+ },
+ {
+ "city": "Marietta",
+ "growth_from_2000_to_2013": "-3.8%",
+ "latitude": 33.95260200000001,
+ "longitude": -84.5499327,
+ "population": "59089",
+ "rank": "608",
+ "state": "Georgia"
+ },
+ {
+ "city": "San Rafael",
+ "growth_from_2000_to_2013": "5.0%",
+ "latitude": 37.9735346,
+ "longitude": -122.5310874,
+ "population": "58994",
+ "rank": "609",
+ "state": "California"
+ },
+ {
+ "city": "Royal Oak",
+ "growth_from_2000_to_2013": "-1.7%",
+ "latitude": 42.4894801,
+ "longitude": -83.1446485,
+ "population": "58946",
+ "rank": "610",
+ "state": "Michigan"
+ },
+ {
+ "city": "Des Plaines",
+ "growth_from_2000_to_2013": "3.2%",
+ "latitude": 42.0333623,
+ "longitude": -87.88339909999999,
+ "population": "58918",
+ "rank": "611",
+ "state": "Illinois"
+ },
+ {
+ "city": "Huntington Park",
+ "growth_from_2000_to_2013": "-4.1%",
+ "latitude": 33.9816812,
+ "longitude": -118.2250725,
+ "population": "58879",
+ "rank": "612",
+ "state": "California"
+ },
+ {
+ "city": "La Mesa",
+ "growth_from_2000_to_2013": "6.9%",
+ "latitude": 32.7678287,
+ "longitude": -117.0230839,
+ "population": "58642",
+ "rank": "613",
+ "state": "California"
+ },
+ {
+ "city": "Orland Park",
+ "growth_from_2000_to_2013": "13.9%",
+ "latitude": 41.6303103,
+ "longitude": -87.85394250000002,
+ "population": "58590",
+ "rank": "614",
+ "state": "Illinois"
+ },
+ {
+ "city": "Auburn",
+ "growth_from_2000_to_2013": "26.4%",
+ "latitude": 32.6098566,
+ "longitude": -85.48078249999999,
+ "population": "58582",
+ "rank": "615",
+ "state": "Alabama"
+ },
+ {
+ "city": "Lakeville",
+ "growth_from_2000_to_2013": "34.3%",
+ "latitude": 44.6496868,
+ "longitude": -93.24271999999999,
+ "population": "58562",
+ "rank": "616",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Owensboro",
+ "growth_from_2000_to_2013": "7.7%",
+ "latitude": 37.7719074,
+ "longitude": -87.1111676,
+ "population": "58416",
+ "rank": "617",
+ "state": "Kentucky"
+ },
+ {
+ "city": "Moore",
+ "growth_from_2000_to_2013": "41.5%",
+ "latitude": 35.3395079,
+ "longitude": -97.48670279999999,
+ "population": "58414",
+ "rank": "618",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Jupiter",
+ "growth_from_2000_to_2013": "46.2%",
+ "latitude": 26.9342246,
+ "longitude": -80.0942087,
+ "population": "58298",
+ "rank": "619",
+ "state": "Florida"
+ },
+ {
+ "city": "Idaho Falls",
+ "growth_from_2000_to_2013": "14.0%",
+ "latitude": 43.49165139999999,
+ "longitude": -112.0339645,
+ "population": "58292",
+ "rank": "620",
+ "state": "Idaho"
+ },
+ {
+ "city": "Dubuque",
+ "growth_from_2000_to_2013": "0.9%",
+ "latitude": 42.5005583,
+ "longitude": -90.66457179999999,
+ "population": "58253",
+ "rank": "621",
+ "state": "Iowa"
+ },
+ {
+ "city": "Bartlett",
+ "growth_from_2000_to_2013": "31.7%",
+ "latitude": 35.2045328,
+ "longitude": -89.8739753,
+ "population": "58226",
+ "rank": "622",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Rowlett",
+ "growth_from_2000_to_2013": "28.6%",
+ "latitude": 32.9029017,
+ "longitude": -96.56388,
+ "population": "58043",
+ "rank": "623",
+ "state": "Texas"
+ },
+ {
+ "city": "Novi",
+ "growth_from_2000_to_2013": "22.0%",
+ "latitude": 42.48059,
+ "longitude": -83.4754913,
+ "population": "57960",
+ "rank": "624",
+ "state": "Michigan"
+ },
+ {
+ "city": "White Plains",
+ "growth_from_2000_to_2013": "8.5%",
+ "latitude": 41.03398620000001,
+ "longitude": -73.7629097,
+ "population": "57866",
+ "rank": "625",
+ "state": "New York"
+ },
+ {
+ "city": "Arcadia",
+ "growth_from_2000_to_2013": "8.3%",
+ "latitude": 34.1397292,
+ "longitude": -118.0353449,
+ "population": "57639",
+ "rank": "626",
+ "state": "California"
+ },
+ {
+ "city": "Redmond",
+ "growth_from_2000_to_2013": "26.0%",
+ "latitude": 47.6739881,
+ "longitude": -122.121512,
+ "population": "57530",
+ "rank": "627",
+ "state": "Washington"
+ },
+ {
+ "city": "Lake Elsinore",
+ "growth_from_2000_to_2013": "96.5%",
+ "latitude": 33.6680772,
+ "longitude": -117.3272615,
+ "population": "57525",
+ "rank": "628",
+ "state": "California"
+ },
+ {
+ "city": "Ocala",
+ "growth_from_2000_to_2013": "20.8%",
+ "latitude": 29.1871986,
+ "longitude": -82.14009229999999,
+ "population": "57468",
+ "rank": "629",
+ "state": "Florida"
+ },
+ {
+ "city": "Tinley Park",
+ "growth_from_2000_to_2013": "16.3%",
+ "latitude": 41.5731442,
+ "longitude": -87.7932939,
+ "population": "57282",
+ "rank": "630",
+ "state": "Illinois"
+ },
+ {
+ "city": "Port Orange",
+ "growth_from_2000_to_2013": "22.8%",
+ "latitude": 29.1383165,
+ "longitude": -80.9956105,
+ "population": "57203",
+ "rank": "631",
+ "state": "Florida"
+ },
+ {
+ "city": "Medford",
+ "growth_from_2000_to_2013": "2.7%",
+ "latitude": 42.4184296,
+ "longitude": -71.1061639,
+ "population": "57170",
+ "rank": "632",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Oak Lawn",
+ "growth_from_2000_to_2013": "3.3%",
+ "latitude": 41.719978,
+ "longitude": -87.7479528,
+ "population": "57073",
+ "rank": "633",
+ "state": "Illinois"
+ },
+ {
+ "city": "Rocky Mount",
+ "growth_from_2000_to_2013": "-3.1%",
+ "latitude": 35.9382103,
+ "longitude": -77.7905339,
+ "population": "56954",
+ "rank": "634",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Kokomo",
+ "growth_from_2000_to_2013": "21.3%",
+ "latitude": 40.486427,
+ "longitude": -86.13360329999999,
+ "population": "56895",
+ "rank": "635",
+ "state": "Indiana"
+ },
+ {
+ "city": "Coconut Creek",
+ "growth_from_2000_to_2013": "28.4%",
+ "latitude": 26.2517482,
+ "longitude": -80.17893509999999,
+ "population": "56792",
+ "rank": "636",
+ "state": "Florida"
+ },
+ {
+ "city": "Bowie",
+ "growth_from_2000_to_2013": "8.6%",
+ "latitude": 39.0067768,
+ "longitude": -76.77913649999999,
+ "population": "56759",
+ "rank": "637",
+ "state": "Maryland"
+ },
+ {
+ "city": "Berwyn",
+ "growth_from_2000_to_2013": "5.1%",
+ "latitude": 41.85058739999999,
+ "longitude": -87.7936685,
+ "population": "56758",
+ "rank": "638",
+ "state": "Illinois"
+ },
+ {
+ "city": "Midwest City",
+ "growth_from_2000_to_2013": "4.5%",
+ "latitude": 35.4495065,
+ "longitude": -97.3967019,
+ "population": "56756",
+ "rank": "639",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Fountain Valley",
+ "growth_from_2000_to_2013": "3.0%",
+ "latitude": 33.7091847,
+ "longitude": -117.9536697,
+ "population": "56707",
+ "rank": "640",
+ "state": "California"
+ },
+ {
+ "city": "Buckeye",
+ "growth_from_2000_to_2013": "480.9%",
+ "latitude": 33.3703197,
+ "longitude": -112.5837766,
+ "population": "56683",
+ "rank": "641",
+ "state": "Arizona"
+ },
+ {
+ "city": "Dearborn Heights",
+ "growth_from_2000_to_2013": "-3.0%",
+ "latitude": 42.3369816,
+ "longitude": -83.27326269999999,
+ "population": "56620",
+ "rank": "642",
+ "state": "Michigan"
+ },
+ {
+ "city": "Woodland",
+ "growth_from_2000_to_2013": "13.8%",
+ "latitude": 38.67851570000001,
+ "longitude": -121.7732971,
+ "population": "56590",
+ "rank": "643",
+ "state": "California"
+ },
+ {
+ "city": "Noblesville",
+ "growth_from_2000_to_2013": "88.1%",
+ "latitude": 40.0455917,
+ "longitude": -86.0085955,
+ "population": "56540",
+ "rank": "644",
+ "state": "Indiana"
+ },
+ {
+ "city": "Valdosta",
+ "growth_from_2000_to_2013": "22.3%",
+ "latitude": 30.8327022,
+ "longitude": -83.2784851,
+ "population": "56481",
+ "rank": "645",
+ "state": "Georgia"
+ },
+ {
+ "city": "Diamond Bar",
+ "growth_from_2000_to_2013": "0.1%",
+ "latitude": 34.0286226,
+ "longitude": -117.8103367,
+ "population": "56449",
+ "rank": "646",
+ "state": "California"
+ },
+ {
+ "city": "Manhattan",
+ "growth_from_2000_to_2013": "22.8%",
+ "latitude": 39.18360819999999,
+ "longitude": -96.57166939999999,
+ "population": "56143",
+ "rank": "647",
+ "state": "Kansas"
+ },
+ {
+ "city": "Santee",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 32.8383828,
+ "longitude": -116.9739167,
+ "population": "56105",
+ "rank": "648",
+ "state": "California"
+ },
+ {
+ "city": "Taunton",
+ "growth_from_2000_to_2013": "0.0%",
+ "latitude": 41.900101,
+ "longitude": -71.0897674,
+ "population": "56069",
+ "rank": "649",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Sanford",
+ "growth_from_2000_to_2013": "42.8%",
+ "latitude": 28.8028612,
+ "longitude": -81.269453,
+ "population": "56002",
+ "rank": "650",
+ "state": "Florida"
+ },
+ {
+ "city": "Kettering",
+ "growth_from_2000_to_2013": "-3.1%",
+ "latitude": 39.68950359999999,
+ "longitude": -84.1688274,
+ "population": "55870",
+ "rank": "651",
+ "state": "Ohio"
+ },
+ {
+ "city": "New Brunswick",
+ "growth_from_2000_to_2013": "15.5%",
+ "latitude": 40.4862157,
+ "longitude": -74.4518188,
+ "population": "55831",
+ "rank": "652",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Decatur",
+ "growth_from_2000_to_2013": "3.1%",
+ "latitude": 34.6059253,
+ "longitude": -86.9833417,
+ "population": "55816",
+ "rank": "653",
+ "state": "Alabama"
+ },
+ {
+ "city": "Chicopee",
+ "growth_from_2000_to_2013": "1.7%",
+ "latitude": 42.1487043,
+ "longitude": -72.6078672,
+ "population": "55717",
+ "rank": "654",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Anderson",
+ "growth_from_2000_to_2013": "-6.6%",
+ "latitude": 40.1053196,
+ "longitude": -85.6802541,
+ "population": "55670",
+ "rank": "655",
+ "state": "Indiana"
+ },
+ {
+ "city": "Margate",
+ "growth_from_2000_to_2013": "2.7%",
+ "latitude": 26.2445263,
+ "longitude": -80.206436,
+ "population": "55456",
+ "rank": "656",
+ "state": "Florida"
+ },
+ {
+ "city": "Weymouth Town",
+ "growth_from_2000_to_2013": "",
+ "latitude": 42.2180724,
+ "longitude": -70.94103559999999,
+ "population": "55419",
+ "rank": "657",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Hempstead",
+ "growth_from_2000_to_2013": "4.0%",
+ "latitude": 40.7062128,
+ "longitude": -73.6187397,
+ "population": "55361",
+ "rank": "658",
+ "state": "New York"
+ },
+ {
+ "city": "Corvallis",
+ "growth_from_2000_to_2013": "11.8%",
+ "latitude": 44.5645659,
+ "longitude": -123.2620435,
+ "population": "55298",
+ "rank": "659",
+ "state": "Oregon"
+ },
+ {
+ "city": "Eastvale",
+ "growth_from_2000_to_2013": "",
+ "latitude": 33.952463,
+ "longitude": -117.5848025,
+ "population": "55191",
+ "rank": "660",
+ "state": "California"
+ },
+ {
+ "city": "Porterville",
+ "growth_from_2000_to_2013": "20.1%",
+ "latitude": 36.06523,
+ "longitude": -119.0167679,
+ "population": "55174",
+ "rank": "661",
+ "state": "California"
+ },
+ {
+ "city": "West Haven",
+ "growth_from_2000_to_2013": "5.1%",
+ "latitude": 41.2705484,
+ "longitude": -72.9469711,
+ "population": "55046",
+ "rank": "662",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Brentwood",
+ "growth_from_2000_to_2013": "122.3%",
+ "latitude": 37.931868,
+ "longitude": -121.6957863,
+ "population": "55000",
+ "rank": "663",
+ "state": "California"
+ },
+ {
+ "city": "Paramount",
+ "growth_from_2000_to_2013": "-0.7%",
+ "latitude": 33.8894598,
+ "longitude": -118.1597911,
+ "population": "54980",
+ "rank": "664",
+ "state": "California"
+ },
+ {
+ "city": "Grand Forks",
+ "growth_from_2000_to_2013": "11.5%",
+ "latitude": 47.9252568,
+ "longitude": -97.0328547,
+ "population": "54932",
+ "rank": "665",
+ "state": "North Dakota"
+ },
+ {
+ "city": "Georgetown",
+ "growth_from_2000_to_2013": "91.9%",
+ "latitude": 30.6332618,
+ "longitude": -97.6779842,
+ "population": "54898",
+ "rank": "666",
+ "state": "Texas"
+ },
+ {
+ "city": "St. Peters",
+ "growth_from_2000_to_2013": "6.5%",
+ "latitude": 38.7874699,
+ "longitude": -90.6298922,
+ "population": "54842",
+ "rank": "667",
+ "state": "Missouri"
+ },
+ {
+ "city": "Shoreline",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 47.7556531,
+ "longitude": -122.3415178,
+ "population": "54790",
+ "rank": "668",
+ "state": "Washington"
+ },
+ {
+ "city": "Mount Prospect",
+ "growth_from_2000_to_2013": "-2.5%",
+ "latitude": 42.0664167,
+ "longitude": -87.9372908,
+ "population": "54771",
+ "rank": "669",
+ "state": "Illinois"
+ },
+ {
+ "city": "Hanford",
+ "growth_from_2000_to_2013": "30.3%",
+ "latitude": 36.3274502,
+ "longitude": -119.6456844,
+ "population": "54686",
+ "rank": "670",
+ "state": "California"
+ },
+ {
+ "city": "Normal",
+ "growth_from_2000_to_2013": "19.7%",
+ "latitude": 40.5142026,
+ "longitude": -88.9906312,
+ "population": "54664",
+ "rank": "671",
+ "state": "Illinois"
+ },
+ {
+ "city": "Rosemead",
+ "growth_from_2000_to_2013": "1.7%",
+ "latitude": 34.0805651,
+ "longitude": -118.072846,
+ "population": "54561",
+ "rank": "672",
+ "state": "California"
+ },
+ {
+ "city": "Lehi",
+ "growth_from_2000_to_2013": "176.3%",
+ "latitude": 40.3916172,
+ "longitude": -111.8507662,
+ "population": "54382",
+ "rank": "673",
+ "state": "Utah"
+ },
+ {
+ "city": "Pocatello",
+ "growth_from_2000_to_2013": "5.4%",
+ "latitude": 42.8713032,
+ "longitude": -112.4455344,
+ "population": "54350",
+ "rank": "674",
+ "state": "Idaho"
+ },
+ {
+ "city": "Highland",
+ "growth_from_2000_to_2013": "21.0%",
+ "latitude": 34.1283442,
+ "longitude": -117.2086513,
+ "population": "54291",
+ "rank": "675",
+ "state": "California"
+ },
+ {
+ "city": "Novato",
+ "growth_from_2000_to_2013": "13.3%",
+ "latitude": 38.1074198,
+ "longitude": -122.5697032,
+ "population": "54194",
+ "rank": "676",
+ "state": "California"
+ },
+ {
+ "city": "Port Arthur",
+ "growth_from_2000_to_2013": "-6.0%",
+ "latitude": 29.8849504,
+ "longitude": -93.93994699999999,
+ "population": "54135",
+ "rank": "677",
+ "state": "Texas"
+ },
+ {
+ "city": "Carson City",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 39.1637984,
+ "longitude": -119.7674034,
+ "population": "54080",
+ "rank": "678",
+ "state": "Nevada"
+ },
+ {
+ "city": "San Marcos",
+ "growth_from_2000_to_2013": "48.5%",
+ "latitude": 29.8832749,
+ "longitude": -97.9413941,
+ "population": "54076",
+ "rank": "679",
+ "state": "Texas"
+ },
+ {
+ "city": "Hendersonville",
+ "growth_from_2000_to_2013": "31.7%",
+ "latitude": 36.3047735,
+ "longitude": -86.6199957,
+ "population": "54068",
+ "rank": "680",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Elyria",
+ "growth_from_2000_to_2013": "-3.7%",
+ "latitude": 41.3683798,
+ "longitude": -82.10764859999999,
+ "population": "53956",
+ "rank": "681",
+ "state": "Ohio"
+ },
+ {
+ "city": "Revere",
+ "growth_from_2000_to_2013": "13.4%",
+ "latitude": 42.4084302,
+ "longitude": -71.0119948,
+ "population": "53756",
+ "rank": "682",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Pflugerville",
+ "growth_from_2000_to_2013": "123.4%",
+ "latitude": 30.4393696,
+ "longitude": -97.62000429999999,
+ "population": "53752",
+ "rank": "683",
+ "state": "Texas"
+ },
+ {
+ "city": "Greenwood",
+ "growth_from_2000_to_2013": "46.0%",
+ "latitude": 39.6136578,
+ "longitude": -86.10665259999999,
+ "population": "53665",
+ "rank": "684",
+ "state": "Indiana"
+ },
+ {
+ "city": "Bellevue",
+ "growth_from_2000_to_2013": "20.5%",
+ "latitude": 41.1543623,
+ "longitude": -95.9145568,
+ "population": "53663",
+ "rank": "685",
+ "state": "Nebraska"
+ },
+ {
+ "city": "Wheaton",
+ "growth_from_2000_to_2013": "-3.4%",
+ "latitude": 41.8661403,
+ "longitude": -88.1070127,
+ "population": "53648",
+ "rank": "686",
+ "state": "Illinois"
+ },
+ {
+ "city": "Smyrna",
+ "growth_from_2000_to_2013": "20.0%",
+ "latitude": 33.8839926,
+ "longitude": -84.51437609999999,
+ "population": "53438",
+ "rank": "687",
+ "state": "Georgia"
+ },
+ {
+ "city": "Sarasota",
+ "growth_from_2000_to_2013": "1.4%",
+ "latitude": 27.3364347,
+ "longitude": -82.53065269999999,
+ "population": "53326",
+ "rank": "688",
+ "state": "Florida"
+ },
+ {
+ "city": "Blue Springs",
+ "growth_from_2000_to_2013": "9.9%",
+ "latitude": 39.0169509,
+ "longitude": -94.2816148,
+ "population": "53294",
+ "rank": "689",
+ "state": "Missouri"
+ },
+ {
+ "city": "Colton",
+ "growth_from_2000_to_2013": "10.8%",
+ "latitude": 34.0739016,
+ "longitude": -117.3136547,
+ "population": "53243",
+ "rank": "690",
+ "state": "California"
+ },
+ {
+ "city": "Euless",
+ "growth_from_2000_to_2013": "15.1%",
+ "latitude": 32.8370727,
+ "longitude": -97.08195409999999,
+ "population": "53224",
+ "rank": "691",
+ "state": "Texas"
+ },
+ {
+ "city": "Castle Rock",
+ "growth_from_2000_to_2013": "153.5%",
+ "latitude": 39.3722121,
+ "longitude": -104.8560902,
+ "population": "53063",
+ "rank": "692",
+ "state": "Colorado"
+ },
+ {
+ "city": "Cathedral City",
+ "growth_from_2000_to_2013": "23.2%",
+ "latitude": 33.7805388,
+ "longitude": -116.4668036,
+ "population": "52977",
+ "rank": "693",
+ "state": "California"
+ },
+ {
+ "city": "Kingsport",
+ "growth_from_2000_to_2013": "16.7%",
+ "latitude": 36.548434,
+ "longitude": -82.5618186,
+ "population": "52962",
+ "rank": "694",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Lake Havasu City",
+ "growth_from_2000_to_2013": "24.6%",
+ "latitude": 34.483901,
+ "longitude": -114.3224548,
+ "population": "52844",
+ "rank": "695",
+ "state": "Arizona"
+ },
+ {
+ "city": "Pensacola",
+ "growth_from_2000_to_2013": "-6.0%",
+ "latitude": 30.42130899999999,
+ "longitude": -87.2169149,
+ "population": "52703",
+ "rank": "696",
+ "state": "Florida"
+ },
+ {
+ "city": "Hoboken",
+ "growth_from_2000_to_2013": "35.8%",
+ "latitude": 40.7439905,
+ "longitude": -74.0323626,
+ "population": "52575",
+ "rank": "697",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Yucaipa",
+ "growth_from_2000_to_2013": "26.8%",
+ "latitude": 34.033625,
+ "longitude": -117.0430865,
+ "population": "52536",
+ "rank": "698",
+ "state": "California"
+ },
+ {
+ "city": "Watsonville",
+ "growth_from_2000_to_2013": "12.7%",
+ "latitude": 36.910231,
+ "longitude": -121.7568946,
+ "population": "52477",
+ "rank": "699",
+ "state": "California"
+ },
+ {
+ "city": "Richland",
+ "growth_from_2000_to_2013": "34.6%",
+ "latitude": 46.2856907,
+ "longitude": -119.2844621,
+ "population": "52413",
+ "rank": "700",
+ "state": "Washington"
+ },
+ {
+ "city": "Delano",
+ "growth_from_2000_to_2013": "31.8%",
+ "latitude": 35.7688425,
+ "longitude": -119.2470536,
+ "population": "52403",
+ "rank": "701",
+ "state": "California"
+ },
+ {
+ "city": "Hoffman Estates",
+ "growth_from_2000_to_2013": "5.4%",
+ "latitude": 42.0629915,
+ "longitude": -88.12271989999999,
+ "population": "52398",
+ "rank": "702",
+ "state": "Illinois"
+ },
+ {
+ "city": "Florissant",
+ "growth_from_2000_to_2013": "-2.8%",
+ "latitude": 38.789217,
+ "longitude": -90.322614,
+ "population": "52363",
+ "rank": "703",
+ "state": "Missouri"
+ },
+ {
+ "city": "Placentia",
+ "growth_from_2000_to_2013": "11.8%",
+ "latitude": 33.8722371,
+ "longitude": -117.8703363,
+ "population": "52206",
+ "rank": "704",
+ "state": "California"
+ },
+ {
+ "city": "West New York",
+ "growth_from_2000_to_2013": "13.3%",
+ "latitude": 40.7878788,
+ "longitude": -74.0143064,
+ "population": "52122",
+ "rank": "705",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Dublin",
+ "growth_from_2000_to_2013": "70.0%",
+ "latitude": 37.7021521,
+ "longitude": -121.9357918,
+ "population": "52105",
+ "rank": "706",
+ "state": "California"
+ },
+ {
+ "city": "Oak Park",
+ "growth_from_2000_to_2013": "-0.8%",
+ "latitude": 41.8850317,
+ "longitude": -87.7845025,
+ "population": "52066",
+ "rank": "707",
+ "state": "Illinois"
+ },
+ {
+ "city": "Peabody",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 42.5278731,
+ "longitude": -70.9286609,
+ "population": "52044",
+ "rank": "708",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Perth Amboy",
+ "growth_from_2000_to_2013": "9.7%",
+ "latitude": 40.5067723,
+ "longitude": -74.2654234,
+ "population": "51982",
+ "rank": "709",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Battle Creek",
+ "growth_from_2000_to_2013": "-2.8%",
+ "latitude": 42.3211522,
+ "longitude": -85.17971419999999,
+ "population": "51848",
+ "rank": "710",
+ "state": "Michigan"
+ },
+ {
+ "city": "Bradenton",
+ "growth_from_2000_to_2013": "3.4%",
+ "latitude": 27.4989278,
+ "longitude": -82.5748194,
+ "population": "51763",
+ "rank": "711",
+ "state": "Florida"
+ },
+ {
+ "city": "Gilroy",
+ "growth_from_2000_to_2013": "23.9%",
+ "latitude": 37.0057816,
+ "longitude": -121.5682751,
+ "population": "51701",
+ "rank": "712",
+ "state": "California"
+ },
+ {
+ "city": "Milford",
+ "growth_from_2000_to_2013": "1.8%",
+ "latitude": 41.2306979,
+ "longitude": -73.064036,
+ "population": "51644",
+ "rank": "713",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Albany",
+ "growth_from_2000_to_2013": "25.5%",
+ "latitude": 44.6365107,
+ "longitude": -123.1059282,
+ "population": "51583",
+ "rank": "714",
+ "state": "Oregon"
+ },
+ {
+ "city": "Ankeny",
+ "growth_from_2000_to_2013": "86.9%",
+ "latitude": 41.7317884,
+ "longitude": -93.6001278,
+ "population": "51567",
+ "rank": "715",
+ "state": "Iowa"
+ },
+ {
+ "city": "La Crosse",
+ "growth_from_2000_to_2013": "-0.8%",
+ "latitude": 43.8013556,
+ "longitude": -91.23958069999999,
+ "population": "51522",
+ "rank": "716",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Burlington",
+ "growth_from_2000_to_2013": "12.1%",
+ "latitude": 36.0956918,
+ "longitude": -79.43779909999999,
+ "population": "51510",
+ "rank": "717",
+ "state": "North Carolina"
+ },
+ {
+ "city": "DeSoto",
+ "growth_from_2000_to_2013": "36.0%",
+ "latitude": 32.5896998,
+ "longitude": -96.8570738,
+ "population": "51483",
+ "rank": "718",
+ "state": "Texas"
+ },
+ {
+ "city": "Harrisonburg",
+ "growth_from_2000_to_2013": "27.1%",
+ "latitude": 38.4495688,
+ "longitude": -78.8689155,
+ "population": "51395",
+ "rank": "719",
+ "state": "Virginia"
+ },
+ {
+ "city": "Minnetonka",
+ "growth_from_2000_to_2013": "0.4%",
+ "latitude": 44.9211836,
+ "longitude": -93.4687489,
+ "population": "51368",
+ "rank": "720",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Elkhart",
+ "growth_from_2000_to_2013": "-2.5%",
+ "latitude": 41.6819935,
+ "longitude": -85.9766671,
+ "population": "51265",
+ "rank": "721",
+ "state": "Indiana"
+ },
+ {
+ "city": "Lakewood",
+ "growth_from_2000_to_2013": "-9.4%",
+ "latitude": 41.4819932,
+ "longitude": -81.7981908,
+ "population": "51143",
+ "rank": "722",
+ "state": "Ohio"
+ },
+ {
+ "city": "Glendora",
+ "growth_from_2000_to_2013": "3.1%",
+ "latitude": 34.1361187,
+ "longitude": -117.865339,
+ "population": "51074",
+ "rank": "723",
+ "state": "California"
+ },
+ {
+ "city": "Southaven",
+ "growth_from_2000_to_2013": "72.8%",
+ "latitude": 34.9889818,
+ "longitude": -90.0125913,
+ "population": "50997",
+ "rank": "724",
+ "state": "Mississippi"
+ },
+ {
+ "city": "Charleston",
+ "growth_from_2000_to_2013": "-4.7%",
+ "latitude": 38.3498195,
+ "longitude": -81.6326234,
+ "population": "50821",
+ "rank": "725",
+ "state": "West Virginia"
+ },
+ {
+ "city": "Joplin",
+ "growth_from_2000_to_2013": "11.2%",
+ "latitude": 37.08422710000001,
+ "longitude": -94.51328099999999,
+ "population": "50789",
+ "rank": "726",
+ "state": "Missouri"
+ },
+ {
+ "city": "Enid",
+ "growth_from_2000_to_2013": "8.1%",
+ "latitude": 36.3955891,
+ "longitude": -97.8783911,
+ "population": "50725",
+ "rank": "727",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Palm Beach Gardens",
+ "growth_from_2000_to_2013": "39.6%",
+ "latitude": 26.8233946,
+ "longitude": -80.13865469999999,
+ "population": "50699",
+ "rank": "728",
+ "state": "Florida"
+ },
+ {
+ "city": "Brookhaven",
+ "growth_from_2000_to_2013": "",
+ "latitude": 33.8651033,
+ "longitude": -84.3365917,
+ "population": "50603",
+ "rank": "729",
+ "state": "Georgia"
+ },
+ {
+ "city": "Plainfield",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 40.6337136,
+ "longitude": -74.4073736,
+ "population": "50588",
+ "rank": "730",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Grand Island",
+ "growth_from_2000_to_2013": "16.0%",
+ "latitude": 40.9263957,
+ "longitude": -98.3420118,
+ "population": "50550",
+ "rank": "731",
+ "state": "Nebraska"
+ },
+ {
+ "city": "Palm Desert",
+ "growth_from_2000_to_2013": "13.2%",
+ "latitude": 33.7222445,
+ "longitude": -116.3744556,
+ "population": "50508",
+ "rank": "732",
+ "state": "California"
+ },
+ {
+ "city": "Huntersville",
+ "growth_from_2000_to_2013": "92.9%",
+ "latitude": 35.410694,
+ "longitude": -80.84285040000002,
+ "population": "50458",
+ "rank": "733",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Tigard",
+ "growth_from_2000_to_2013": "17.8%",
+ "latitude": 45.4312294,
+ "longitude": -122.7714861,
+ "population": "50444",
+ "rank": "734",
+ "state": "Oregon"
+ },
+ {
+ "city": "Lenexa",
+ "growth_from_2000_to_2013": "24.6%",
+ "latitude": 38.9536174,
+ "longitude": -94.73357089999999,
+ "population": "50344",
+ "rank": "735",
+ "state": "Kansas"
+ },
+ {
+ "city": "Saginaw",
+ "growth_from_2000_to_2013": "-18.2%",
+ "latitude": 43.4194699,
+ "longitude": -83.9508068,
+ "population": "50303",
+ "rank": "736",
+ "state": "Michigan"
+ },
+ {
+ "city": "Kentwood",
+ "growth_from_2000_to_2013": "10.5%",
+ "latitude": 42.8694731,
+ "longitude": -85.64474919999999,
+ "population": "50233",
+ "rank": "737",
+ "state": "Michigan"
+ },
+ {
+ "city": "Doral",
+ "growth_from_2000_to_2013": "137.6%",
+ "latitude": 25.8195424,
+ "longitude": -80.3553302,
+ "population": "50213",
+ "rank": "738",
+ "state": "Florida"
+ },
+ {
+ "city": "Apple Valley",
+ "growth_from_2000_to_2013": "9.2%",
+ "latitude": 44.7319094,
+ "longitude": -93.21772000000001,
+ "population": "50201",
+ "rank": "739",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Grapevine",
+ "growth_from_2000_to_2013": "17.6%",
+ "latitude": 32.9342919,
+ "longitude": -97.0780654,
+ "population": "50195",
+ "rank": "740",
+ "state": "Texas"
+ },
+ {
+ "city": "Aliso Viejo",
+ "growth_from_2000_to_2013": "25.4%",
+ "latitude": 33.5676842,
+ "longitude": -117.7256083,
+ "population": "50175",
+ "rank": "741",
+ "state": "California"
+ },
+ {
+ "city": "Sammamish",
+ "growth_from_2000_to_2013": "44.1%",
+ "latitude": 47.61626829999999,
+ "longitude": -122.0355736,
+ "population": "50169",
+ "rank": "742",
+ "state": "Washington"
+ },
+ {
+ "city": "Casa Grande",
+ "growth_from_2000_to_2013": "86.0%",
+ "latitude": 32.8795022,
+ "longitude": -111.7573521,
+ "population": "50111",
+ "rank": "743",
+ "state": "Arizona"
+ },
+ {
+ "city": "Pinellas Park",
+ "growth_from_2000_to_2013": "5.9%",
+ "latitude": 27.8428025,
+ "longitude": -82.6995443,
+ "population": "49998",
+ "rank": "744",
+ "state": "Florida"
+ },
+ {
+ "city": "Troy",
+ "growth_from_2000_to_2013": "1.5%",
+ "latitude": 42.7284117,
+ "longitude": -73.69178509999999,
+ "population": "49974",
+ "rank": "745",
+ "state": "New York"
+ },
+ {
+ "city": "West Sacramento",
+ "growth_from_2000_to_2013": "55.6%",
+ "latitude": 38.5804609,
+ "longitude": -121.530234,
+ "population": "49891",
+ "rank": "746",
+ "state": "California"
+ },
+ {
+ "city": "Burien",
+ "growth_from_2000_to_2013": "56.7%",
+ "latitude": 47.4703767,
+ "longitude": -122.3467918,
+ "population": "49858",
+ "rank": "747",
+ "state": "Washington"
+ },
+ {
+ "city": "Commerce City",
+ "growth_from_2000_to_2013": "135.4%",
+ "latitude": 39.8083196,
+ "longitude": -104.9338675,
+ "population": "49799",
+ "rank": "748",
+ "state": "Colorado"
+ },
+ {
+ "city": "Monroe",
+ "growth_from_2000_to_2013": "-6.1%",
+ "latitude": 32.5093109,
+ "longitude": -92.1193012,
+ "population": "49761",
+ "rank": "749",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Cerritos",
+ "growth_from_2000_to_2013": "-3.6%",
+ "latitude": 33.8583483,
+ "longitude": -118.0647871,
+ "population": "49707",
+ "rank": "750",
+ "state": "California"
+ },
+ {
+ "city": "Downers Grove",
+ "growth_from_2000_to_2013": "0.0%",
+ "latitude": 41.8089191,
+ "longitude": -88.01117459999999,
+ "population": "49670",
+ "rank": "751",
+ "state": "Illinois"
+ },
+ {
+ "city": "Coral Gables",
+ "growth_from_2000_to_2013": "16.1%",
+ "latitude": 25.72149,
+ "longitude": -80.2683838,
+ "population": "49631",
+ "rank": "752",
+ "state": "Florida"
+ },
+ {
+ "city": "Wilson",
+ "growth_from_2000_to_2013": "10.1%",
+ "latitude": 35.7212689,
+ "longitude": -77.9155395,
+ "population": "49628",
+ "rank": "753",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Niagara Falls",
+ "growth_from_2000_to_2013": "-10.8%",
+ "latitude": 43.0962143,
+ "longitude": -79.0377388,
+ "population": "49468",
+ "rank": "754",
+ "state": "New York"
+ },
+ {
+ "city": "Poway",
+ "growth_from_2000_to_2013": "2.4%",
+ "latitude": 32.9628232,
+ "longitude": -117.0358646,
+ "population": "49417",
+ "rank": "755",
+ "state": "California"
+ },
+ {
+ "city": "Edina",
+ "growth_from_2000_to_2013": "4.1%",
+ "latitude": 44.8896866,
+ "longitude": -93.3499489,
+ "population": "49376",
+ "rank": "756",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Cuyahoga Falls",
+ "growth_from_2000_to_2013": "-0.2%",
+ "latitude": 41.1339449,
+ "longitude": -81.48455849999999,
+ "population": "49267",
+ "rank": "757",
+ "state": "Ohio"
+ },
+ {
+ "city": "Rancho Santa Margarita",
+ "growth_from_2000_to_2013": "4.6%",
+ "latitude": 33.640855,
+ "longitude": -117.603104,
+ "population": "49228",
+ "rank": "758",
+ "state": "California"
+ },
+ {
+ "city": "Harrisburg",
+ "growth_from_2000_to_2013": "0.6%",
+ "latitude": 40.2731911,
+ "longitude": -76.8867008,
+ "population": "49188",
+ "rank": "759",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Huntington",
+ "growth_from_2000_to_2013": "-5.0%",
+ "latitude": 38.4192496,
+ "longitude": -82.44515400000002,
+ "population": "49177",
+ "rank": "760",
+ "state": "West Virginia"
+ },
+ {
+ "city": "La Mirada",
+ "growth_from_2000_to_2013": "4.6%",
+ "latitude": 33.9172357,
+ "longitude": -118.0120086,
+ "population": "49133",
+ "rank": "761",
+ "state": "California"
+ },
+ {
+ "city": "Cypress",
+ "growth_from_2000_to_2013": "5.3%",
+ "latitude": 33.8169599,
+ "longitude": -118.0372852,
+ "population": "49087",
+ "rank": "762",
+ "state": "California"
+ },
+ {
+ "city": "Caldwell",
+ "growth_from_2000_to_2013": "77.1%",
+ "latitude": 43.66293839999999,
+ "longitude": -116.6873596,
+ "population": "48957",
+ "rank": "763",
+ "state": "Idaho"
+ },
+ {
+ "city": "Logan",
+ "growth_from_2000_to_2013": "14.5%",
+ "latitude": 41.7369803,
+ "longitude": -111.8338359,
+ "population": "48913",
+ "rank": "764",
+ "state": "Utah"
+ },
+ {
+ "city": "Galveston",
+ "growth_from_2000_to_2013": "-15.2%",
+ "latitude": 29.3013479,
+ "longitude": -94.7976958,
+ "population": "48733",
+ "rank": "765",
+ "state": "Texas"
+ },
+ {
+ "city": "Sheboygan",
+ "growth_from_2000_to_2013": "-3.9%",
+ "latitude": 43.7508284,
+ "longitude": -87.71453,
+ "population": "48725",
+ "rank": "766",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Middletown",
+ "growth_from_2000_to_2013": "-5.7%",
+ "latitude": 39.5150576,
+ "longitude": -84.39827629999999,
+ "population": "48630",
+ "rank": "767",
+ "state": "Ohio"
+ },
+ {
+ "city": "Murray",
+ "growth_from_2000_to_2013": "6.6%",
+ "latitude": 40.6668916,
+ "longitude": -111.8879909,
+ "population": "48612",
+ "rank": "768",
+ "state": "Utah"
+ },
+ {
+ "city": "Roswell",
+ "growth_from_2000_to_2013": "7.5%",
+ "latitude": 33.3942655,
+ "longitude": -104.5230242,
+ "population": "48611",
+ "rank": "769",
+ "state": "New Mexico"
+ },
+ {
+ "city": "Parker",
+ "growth_from_2000_to_2013": "96.4%",
+ "latitude": 39.5186002,
+ "longitude": -104.7613633,
+ "population": "48608",
+ "rank": "770",
+ "state": "Colorado"
+ },
+ {
+ "city": "Bedford",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 32.844017,
+ "longitude": -97.1430671,
+ "population": "48592",
+ "rank": "771",
+ "state": "Texas"
+ },
+ {
+ "city": "East Lansing",
+ "growth_from_2000_to_2013": "4.2%",
+ "latitude": 42.7369792,
+ "longitude": -84.48386540000001,
+ "population": "48554",
+ "rank": "772",
+ "state": "Michigan"
+ },
+ {
+ "city": "Methuen",
+ "growth_from_2000_to_2013": "10.3%",
+ "latitude": 42.7262016,
+ "longitude": -71.1908924,
+ "population": "48514",
+ "rank": "773",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Covina",
+ "growth_from_2000_to_2013": "3.3%",
+ "latitude": 34.0900091,
+ "longitude": -117.8903397,
+ "population": "48508",
+ "rank": "774",
+ "state": "California"
+ },
+ {
+ "city": "Alexandria",
+ "growth_from_2000_to_2013": "4.1%",
+ "latitude": 31.3112936,
+ "longitude": -92.4451371,
+ "population": "48426",
+ "rank": "775",
+ "state": "Louisiana"
+ },
+ {
+ "city": "Olympia",
+ "growth_from_2000_to_2013": "12.1%",
+ "latitude": 47.0378741,
+ "longitude": -122.9006951,
+ "population": "48338",
+ "rank": "776",
+ "state": "Washington"
+ },
+ {
+ "city": "Euclid",
+ "growth_from_2000_to_2013": "-8.4%",
+ "latitude": 41.5931049,
+ "longitude": -81.5267873,
+ "population": "48139",
+ "rank": "777",
+ "state": "Ohio"
+ },
+ {
+ "city": "Mishawaka",
+ "growth_from_2000_to_2013": "2.0%",
+ "latitude": 41.6619927,
+ "longitude": -86.15861559999999,
+ "population": "47989",
+ "rank": "778",
+ "state": "Indiana"
+ },
+ {
+ "city": "Salina",
+ "growth_from_2000_to_2013": "4.5%",
+ "latitude": 38.8402805,
+ "longitude": -97.61142369999999,
+ "population": "47846",
+ "rank": "779",
+ "state": "Kansas"
+ },
+ {
+ "city": "Azusa",
+ "growth_from_2000_to_2013": "6.7%",
+ "latitude": 34.1336186,
+ "longitude": -117.9075627,
+ "population": "47842",
+ "rank": "780",
+ "state": "California"
+ },
+ {
+ "city": "Newark",
+ "growth_from_2000_to_2013": "3.1%",
+ "latitude": 40.0581205,
+ "longitude": -82.4012642,
+ "population": "47777",
+ "rank": "781",
+ "state": "Ohio"
+ },
+ {
+ "city": "Chesterfield",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 38.6631083,
+ "longitude": -90.5770675,
+ "population": "47749",
+ "rank": "782",
+ "state": "Missouri"
+ },
+ {
+ "city": "Leesburg",
+ "growth_from_2000_to_2013": "66.0%",
+ "latitude": 39.1156615,
+ "longitude": -77.56360149999999,
+ "population": "47673",
+ "rank": "783",
+ "state": "Virginia"
+ },
+ {
+ "city": "Dunwoody",
+ "growth_from_2000_to_2013": "",
+ "latitude": 33.9462125,
+ "longitude": -84.3346473,
+ "population": "47591",
+ "rank": "784",
+ "state": "Georgia"
+ },
+ {
+ "city": "Hattiesburg",
+ "growth_from_2000_to_2013": "3.1%",
+ "latitude": 31.3271189,
+ "longitude": -89.29033919999999,
+ "population": "47556",
+ "rank": "785",
+ "state": "Mississippi"
+ },
+ {
+ "city": "Roseville",
+ "growth_from_2000_to_2013": "-1.0%",
+ "latitude": 42.4972583,
+ "longitude": -82.9371409,
+ "population": "47555",
+ "rank": "786",
+ "state": "Michigan"
+ },
+ {
+ "city": "Bonita Springs",
+ "growth_from_2000_to_2013": "43.8%",
+ "latitude": 26.339806,
+ "longitude": -81.7786972,
+ "population": "47547",
+ "rank": "787",
+ "state": "Florida"
+ },
+ {
+ "city": "Portage",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 42.2011538,
+ "longitude": -85.5800022,
+ "population": "47523",
+ "rank": "788",
+ "state": "Michigan"
+ },
+ {
+ "city": "St. Louis Park",
+ "growth_from_2000_to_2013": "7.3%",
+ "latitude": 44.9597376,
+ "longitude": -93.3702186,
+ "population": "47411",
+ "rank": "789",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Collierville",
+ "growth_from_2000_to_2013": "43.4%",
+ "latitude": 35.042036,
+ "longitude": -89.6645266,
+ "population": "47333",
+ "rank": "790",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Middletown",
+ "growth_from_2000_to_2013": "3.6%",
+ "latitude": 41.5623209,
+ "longitude": -72.6506488,
+ "population": "47333",
+ "rank": "791",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Stillwater",
+ "growth_from_2000_to_2013": "20.1%",
+ "latitude": 36.1156071,
+ "longitude": -97.0583681,
+ "population": "47186",
+ "rank": "792",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "East Providence",
+ "growth_from_2000_to_2013": "-3.3%",
+ "latitude": 41.8137116,
+ "longitude": -71.3700545,
+ "population": "47149",
+ "rank": "793",
+ "state": "Rhode Island"
+ },
+ {
+ "city": "Lawrence",
+ "growth_from_2000_to_2013": "20.5%",
+ "latitude": 39.8386516,
+ "longitude": -86.0252612,
+ "population": "47135",
+ "rank": "794",
+ "state": "Indiana"
+ },
+ {
+ "city": "Wauwatosa",
+ "growth_from_2000_to_2013": "0.0%",
+ "latitude": 43.0494572,
+ "longitude": -88.0075875,
+ "population": "47134",
+ "rank": "795",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Mentor",
+ "growth_from_2000_to_2013": "-6.6%",
+ "latitude": 41.6661573,
+ "longitude": -81.339552,
+ "population": "46979",
+ "rank": "796",
+ "state": "Ohio"
+ },
+ {
+ "city": "Ceres",
+ "growth_from_2000_to_2013": "34.0%",
+ "latitude": 37.5949316,
+ "longitude": -120.9577098,
+ "population": "46714",
+ "rank": "797",
+ "state": "California"
+ },
+ {
+ "city": "Cedar Hill",
+ "growth_from_2000_to_2013": "42.4%",
+ "latitude": 32.5884689,
+ "longitude": -96.9561152,
+ "population": "46663",
+ "rank": "798",
+ "state": "Texas"
+ },
+ {
+ "city": "Mansfield",
+ "growth_from_2000_to_2013": "-10.1%",
+ "latitude": 40.75839,
+ "longitude": -82.5154471,
+ "population": "46454",
+ "rank": "799",
+ "state": "Ohio"
+ },
+ {
+ "city": "Binghamton",
+ "growth_from_2000_to_2013": "-1.7%",
+ "latitude": 42.09868669999999,
+ "longitude": -75.91797380000001,
+ "population": "46444",
+ "rank": "800",
+ "state": "New York"
+ },
+ {
+ "city": "Coeur d'Alene",
+ "growth_from_2000_to_2013": "32.8%",
+ "latitude": 47.6776832,
+ "longitude": -116.7804664,
+ "population": "46402",
+ "rank": "801",
+ "state": "Idaho"
+ },
+ {
+ "city": "San Luis Obispo",
+ "growth_from_2000_to_2013": "4.4%",
+ "latitude": 35.2827524,
+ "longitude": -120.6596156,
+ "population": "46377",
+ "rank": "802",
+ "state": "California"
+ },
+ {
+ "city": "Minot",
+ "growth_from_2000_to_2013": "26.6%",
+ "latitude": 48.2329668,
+ "longitude": -101.2922906,
+ "population": "46321",
+ "rank": "803",
+ "state": "North Dakota"
+ },
+ {
+ "city": "Palm Springs",
+ "growth_from_2000_to_2013": "7.7%",
+ "latitude": 33.8302961,
+ "longitude": -116.5452921,
+ "population": "46281",
+ "rank": "804",
+ "state": "California"
+ },
+ {
+ "city": "Pine Bluff",
+ "growth_from_2000_to_2013": "-16.2%",
+ "latitude": 34.2284312,
+ "longitude": -92.00319549999999,
+ "population": "46094",
+ "rank": "805",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Texas City",
+ "growth_from_2000_to_2013": "10.3%",
+ "latitude": 29.383845,
+ "longitude": -94.9027002,
+ "population": "46081",
+ "rank": "806",
+ "state": "Texas"
+ },
+ {
+ "city": "Summerville",
+ "growth_from_2000_to_2013": "62.9%",
+ "latitude": 33.0185039,
+ "longitude": -80.17564809999999,
+ "population": "46074",
+ "rank": "807",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Twin Falls",
+ "growth_from_2000_to_2013": "31.5%",
+ "latitude": 42.5629668,
+ "longitude": -114.4608711,
+ "population": "45981",
+ "rank": "808",
+ "state": "Idaho"
+ },
+ {
+ "city": "Jeffersonville",
+ "growth_from_2000_to_2013": "53.3%",
+ "latitude": 38.2775702,
+ "longitude": -85.7371847,
+ "population": "45929",
+ "rank": "809",
+ "state": "Indiana"
+ },
+ {
+ "city": "San Jacinto",
+ "growth_from_2000_to_2013": "91.8%",
+ "latitude": 33.7839084,
+ "longitude": -116.958635,
+ "population": "45851",
+ "rank": "810",
+ "state": "California"
+ },
+ {
+ "city": "Madison",
+ "growth_from_2000_to_2013": "53.7%",
+ "latitude": 34.6992579,
+ "longitude": -86.74833180000002,
+ "population": "45799",
+ "rank": "811",
+ "state": "Alabama"
+ },
+ {
+ "city": "Altoona",
+ "growth_from_2000_to_2013": "-7.3%",
+ "latitude": 40.5186809,
+ "longitude": -78.3947359,
+ "population": "45796",
+ "rank": "812",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Columbus",
+ "growth_from_2000_to_2013": "16.4%",
+ "latitude": 39.2014404,
+ "longitude": -85.9213796,
+ "population": "45775",
+ "rank": "813",
+ "state": "Indiana"
+ },
+ {
+ "city": "Beavercreek",
+ "growth_from_2000_to_2013": "19.0%",
+ "latitude": 39.7092262,
+ "longitude": -84.06326849999999,
+ "population": "45712",
+ "rank": "814",
+ "state": "Ohio"
+ },
+ {
+ "city": "Apopka",
+ "growth_from_2000_to_2013": "63.9%",
+ "latitude": 28.6934076,
+ "longitude": -81.5322149,
+ "population": "45587",
+ "rank": "815",
+ "state": "Florida"
+ },
+ {
+ "city": "Elmhurst",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 41.8994744,
+ "longitude": -87.9403418,
+ "population": "45556",
+ "rank": "816",
+ "state": "Illinois"
+ },
+ {
+ "city": "Maricopa",
+ "growth_from_2000_to_2013": "2503.4%",
+ "latitude": 33.0581063,
+ "longitude": -112.0476423,
+ "population": "45508",
+ "rank": "817",
+ "state": "Arizona"
+ },
+ {
+ "city": "Farmington",
+ "growth_from_2000_to_2013": "18.1%",
+ "latitude": 36.72805830000001,
+ "longitude": -108.2186856,
+ "population": "45426",
+ "rank": "818",
+ "state": "New Mexico"
+ },
+ {
+ "city": "Glenview",
+ "growth_from_2000_to_2013": "5.2%",
+ "latitude": 42.0697509,
+ "longitude": -87.7878408,
+ "population": "45417",
+ "rank": "819",
+ "state": "Illinois"
+ },
+ {
+ "city": "Cleveland Heights",
+ "growth_from_2000_to_2013": "-10.3%",
+ "latitude": 41.5200518,
+ "longitude": -81.556235,
+ "population": "45394",
+ "rank": "820",
+ "state": "Ohio"
+ },
+ {
+ "city": "Draper",
+ "growth_from_2000_to_2013": "77.4%",
+ "latitude": 40.5246711,
+ "longitude": -111.8638226,
+ "population": "45285",
+ "rank": "821",
+ "state": "Utah"
+ },
+ {
+ "city": "Lincoln",
+ "growth_from_2000_to_2013": "285.2%",
+ "latitude": 38.891565,
+ "longitude": -121.2930079,
+ "population": "45237",
+ "rank": "822",
+ "state": "California"
+ },
+ {
+ "city": "Sierra Vista",
+ "growth_from_2000_to_2013": "19.3%",
+ "latitude": 31.5455001,
+ "longitude": -110.2772856,
+ "population": "45129",
+ "rank": "823",
+ "state": "Arizona"
+ },
+ {
+ "city": "Lacey",
+ "growth_from_2000_to_2013": "41.7%",
+ "latitude": 47.03426289999999,
+ "longitude": -122.8231915,
+ "population": "44919",
+ "rank": "824",
+ "state": "Washington"
+ },
+ {
+ "city": "Biloxi",
+ "growth_from_2000_to_2013": "-11.5%",
+ "latitude": 30.3960318,
+ "longitude": -88.88530779999999,
+ "population": "44820",
+ "rank": "825",
+ "state": "Mississippi"
+ },
+ {
+ "city": "Strongsville",
+ "growth_from_2000_to_2013": "1.9%",
+ "latitude": 41.3144966,
+ "longitude": -81.83569,
+ "population": "44730",
+ "rank": "826",
+ "state": "Ohio"
+ },
+ {
+ "city": "Barnstable Town",
+ "growth_from_2000_to_2013": "-7.1%",
+ "latitude": 41.7003208,
+ "longitude": -70.3002024,
+ "population": "44641",
+ "rank": "827",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Wylie",
+ "growth_from_2000_to_2013": "185.2%",
+ "latitude": 33.0151201,
+ "longitude": -96.5388789,
+ "population": "44575",
+ "rank": "828",
+ "state": "Texas"
+ },
+ {
+ "city": "Sayreville",
+ "growth_from_2000_to_2013": "9.6%",
+ "latitude": 40.45940210000001,
+ "longitude": -74.360846,
+ "population": "44412",
+ "rank": "829",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Kannapolis",
+ "growth_from_2000_to_2013": "18.6%",
+ "latitude": 35.4873613,
+ "longitude": -80.6217341,
+ "population": "44359",
+ "rank": "830",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Charlottesville",
+ "growth_from_2000_to_2013": "10.5%",
+ "latitude": 38.0293059,
+ "longitude": -78.47667810000002,
+ "population": "44349",
+ "rank": "831",
+ "state": "Virginia"
+ },
+ {
+ "city": "Littleton",
+ "growth_from_2000_to_2013": "9.4%",
+ "latitude": 39.613321,
+ "longitude": -105.0166498,
+ "population": "44275",
+ "rank": "832",
+ "state": "Colorado"
+ },
+ {
+ "city": "Titusville",
+ "growth_from_2000_to_2013": "7.8%",
+ "latitude": 28.6122187,
+ "longitude": -80.8075537,
+ "population": "44206",
+ "rank": "833",
+ "state": "Florida"
+ },
+ {
+ "city": "Hackensack",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 40.8859325,
+ "longitude": -74.0434736,
+ "population": "44113",
+ "rank": "834",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Newark",
+ "growth_from_2000_to_2013": "3.3%",
+ "latitude": 37.5296593,
+ "longitude": -122.0402399,
+ "population": "44096",
+ "rank": "835",
+ "state": "California"
+ },
+ {
+ "city": "Pittsfield",
+ "growth_from_2000_to_2013": "-3.6%",
+ "latitude": 42.4500845,
+ "longitude": -73.2453824,
+ "population": "44057",
+ "rank": "836",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "York",
+ "growth_from_2000_to_2013": "6.4%",
+ "latitude": 39.9625984,
+ "longitude": -76.727745,
+ "population": "43935",
+ "rank": "837",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Lombard",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 41.8800296,
+ "longitude": -88.00784349999999,
+ "population": "43907",
+ "rank": "838",
+ "state": "Illinois"
+ },
+ {
+ "city": "Attleboro",
+ "growth_from_2000_to_2013": "4.6%",
+ "latitude": 41.94454409999999,
+ "longitude": -71.2856082,
+ "population": "43886",
+ "rank": "839",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "DeKalb",
+ "growth_from_2000_to_2013": "11.8%",
+ "latitude": 41.9294736,
+ "longitude": -88.75036469999999,
+ "population": "43849",
+ "rank": "840",
+ "state": "Illinois"
+ },
+ {
+ "city": "Blacksburg",
+ "growth_from_2000_to_2013": "9.4%",
+ "latitude": 37.2295733,
+ "longitude": -80.4139393,
+ "population": "43609",
+ "rank": "841",
+ "state": "Virginia"
+ },
+ {
+ "city": "Dublin",
+ "growth_from_2000_to_2013": "37.6%",
+ "latitude": 40.0992294,
+ "longitude": -83.1140771,
+ "population": "43607",
+ "rank": "842",
+ "state": "Ohio"
+ },
+ {
+ "city": "Haltom City",
+ "growth_from_2000_to_2013": "11.4%",
+ "latitude": 32.7995738,
+ "longitude": -97.26918169999999,
+ "population": "43580",
+ "rank": "843",
+ "state": "Texas"
+ },
+ {
+ "city": "Lompoc",
+ "growth_from_2000_to_2013": "5.5%",
+ "latitude": 34.6391501,
+ "longitude": -120.4579409,
+ "population": "43509",
+ "rank": "844",
+ "state": "California"
+ },
+ {
+ "city": "El Centro",
+ "growth_from_2000_to_2013": "13.7%",
+ "latitude": 32.792,
+ "longitude": -115.5630514,
+ "population": "43363",
+ "rank": "845",
+ "state": "California"
+ },
+ {
+ "city": "Danville",
+ "growth_from_2000_to_2013": "3.7%",
+ "latitude": 37.8215929,
+ "longitude": -121.9999606,
+ "population": "43341",
+ "rank": "846",
+ "state": "California"
+ },
+ {
+ "city": "Jefferson City",
+ "growth_from_2000_to_2013": "6.7%",
+ "latitude": 38.57670170000001,
+ "longitude": -92.1735164,
+ "population": "43330",
+ "rank": "847",
+ "state": "Missouri"
+ },
+ {
+ "city": "Cutler Bay",
+ "growth_from_2000_to_2013": "42.9%",
+ "latitude": 25.5808323,
+ "longitude": -80.34685929999999,
+ "population": "43328",
+ "rank": "848",
+ "state": "Florida"
+ },
+ {
+ "city": "Oakland Park",
+ "growth_from_2000_to_2013": "2.7%",
+ "latitude": 26.1723065,
+ "longitude": -80.1319893,
+ "population": "43286",
+ "rank": "849",
+ "state": "Florida"
+ },
+ {
+ "city": "North Miami Beach",
+ "growth_from_2000_to_2013": "3.6%",
+ "latitude": 25.9331488,
+ "longitude": -80.1625463,
+ "population": "43250",
+ "rank": "850",
+ "state": "Florida"
+ },
+ {
+ "city": "Freeport",
+ "growth_from_2000_to_2013": "-1.4%",
+ "latitude": 40.6576022,
+ "longitude": -73.58318349999999,
+ "population": "43167",
+ "rank": "851",
+ "state": "New York"
+ },
+ {
+ "city": "Moline",
+ "growth_from_2000_to_2013": "-1.9%",
+ "latitude": 41.5067003,
+ "longitude": -90.51513419999999,
+ "population": "43116",
+ "rank": "852",
+ "state": "Illinois"
+ },
+ {
+ "city": "Coachella",
+ "growth_from_2000_to_2013": "88.4%",
+ "latitude": 33.6803003,
+ "longitude": -116.173894,
+ "population": "43092",
+ "rank": "853",
+ "state": "California"
+ },
+ {
+ "city": "Fort Pierce",
+ "growth_from_2000_to_2013": "6.9%",
+ "latitude": 27.4467056,
+ "longitude": -80.3256056,
+ "population": "43074",
+ "rank": "854",
+ "state": "Florida"
+ },
+ {
+ "city": "Smyrna",
+ "growth_from_2000_to_2013": "54.9%",
+ "latitude": 35.9828412,
+ "longitude": -86.5186045,
+ "population": "43060",
+ "rank": "855",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Bountiful",
+ "growth_from_2000_to_2013": "3.9%",
+ "latitude": 40.8893895,
+ "longitude": -111.880771,
+ "population": "43023",
+ "rank": "856",
+ "state": "Utah"
+ },
+ {
+ "city": "Fond du Lac",
+ "growth_from_2000_to_2013": "1.7%",
+ "latitude": 43.7730448,
+ "longitude": -88.4470508,
+ "population": "42970",
+ "rank": "857",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Everett",
+ "growth_from_2000_to_2013": "12.1%",
+ "latitude": 42.40843,
+ "longitude": -71.0536625,
+ "population": "42935",
+ "rank": "858",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Danville",
+ "growth_from_2000_to_2013": "-11.0%",
+ "latitude": 36.5859718,
+ "longitude": -79.39502279999999,
+ "population": "42907",
+ "rank": "859",
+ "state": "Virginia"
+ },
+ {
+ "city": "Keller",
+ "growth_from_2000_to_2013": "53.3%",
+ "latitude": 32.9341893,
+ "longitude": -97.229298,
+ "population": "42907",
+ "rank": "860",
+ "state": "Texas"
+ },
+ {
+ "city": "Belleville",
+ "growth_from_2000_to_2013": "1.2%",
+ "latitude": 38.5200504,
+ "longitude": -89.9839935,
+ "population": "42895",
+ "rank": "861",
+ "state": "Illinois"
+ },
+ {
+ "city": "Bell Gardens",
+ "growth_from_2000_to_2013": "-2.7%",
+ "latitude": 33.9652918,
+ "longitude": -118.1514588,
+ "population": "42889",
+ "rank": "862",
+ "state": "California"
+ },
+ {
+ "city": "Cleveland",
+ "growth_from_2000_to_2013": "14.1%",
+ "latitude": 35.1595182,
+ "longitude": -84.8766115,
+ "population": "42774",
+ "rank": "863",
+ "state": "Tennessee"
+ },
+ {
+ "city": "North Lauderdale",
+ "growth_from_2000_to_2013": "10.8%",
+ "latitude": 26.217305,
+ "longitude": -80.2258811,
+ "population": "42757",
+ "rank": "864",
+ "state": "Florida"
+ },
+ {
+ "city": "Fairfield",
+ "growth_from_2000_to_2013": "1.2%",
+ "latitude": 39.3454673,
+ "longitude": -84.5603187,
+ "population": "42635",
+ "rank": "865",
+ "state": "Ohio"
+ },
+ {
+ "city": "Salem",
+ "growth_from_2000_to_2013": "5.1%",
+ "latitude": 42.51954,
+ "longitude": -70.8967155,
+ "population": "42544",
+ "rank": "866",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Rancho Palos Verdes",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 33.7444613,
+ "longitude": -118.3870173,
+ "population": "42448",
+ "rank": "867",
+ "state": "California"
+ },
+ {
+ "city": "San Bruno",
+ "growth_from_2000_to_2013": "5.6%",
+ "latitude": 37.6304904,
+ "longitude": -122.4110835,
+ "population": "42443",
+ "rank": "868",
+ "state": "California"
+ },
+ {
+ "city": "Concord",
+ "growth_from_2000_to_2013": "4.1%",
+ "latitude": 43.2081366,
+ "longitude": -71.5375718,
+ "population": "42419",
+ "rank": "869",
+ "state": "New Hampshire"
+ },
+ {
+ "city": "Burlington",
+ "growth_from_2000_to_2013": "6.1%",
+ "latitude": 44.4758825,
+ "longitude": -73.21207199999999,
+ "population": "42284",
+ "rank": "870",
+ "state": "Vermont"
+ },
+ {
+ "city": "Apex",
+ "growth_from_2000_to_2013": "98.8%",
+ "latitude": 35.732652,
+ "longitude": -78.85028559999999,
+ "population": "42214",
+ "rank": "871",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Midland",
+ "growth_from_2000_to_2013": "0.9%",
+ "latitude": 43.6155825,
+ "longitude": -84.2472116,
+ "population": "42181",
+ "rank": "872",
+ "state": "Michigan"
+ },
+ {
+ "city": "Altamonte Springs",
+ "growth_from_2000_to_2013": "2.0%",
+ "latitude": 28.6611089,
+ "longitude": -81.3656242,
+ "population": "42150",
+ "rank": "873",
+ "state": "Florida"
+ },
+ {
+ "city": "Hutchinson",
+ "growth_from_2000_to_2013": "0.1%",
+ "latitude": 38.0608445,
+ "longitude": -97.92977429999999,
+ "population": "41889",
+ "rank": "874",
+ "state": "Kansas"
+ },
+ {
+ "city": "Buffalo Grove",
+ "growth_from_2000_to_2013": "-3.4%",
+ "latitude": 42.1662831,
+ "longitude": -87.9631308,
+ "population": "41778",
+ "rank": "875",
+ "state": "Illinois"
+ },
+ {
+ "city": "Urbandale",
+ "growth_from_2000_to_2013": "41.5%",
+ "latitude": 41.6266555,
+ "longitude": -93.71216559999999,
+ "population": "41776",
+ "rank": "876",
+ "state": "Iowa"
+ },
+ {
+ "city": "State College",
+ "growth_from_2000_to_2013": "8.7%",
+ "latitude": 40.7933949,
+ "longitude": -77.8600012,
+ "population": "41757",
+ "rank": "877",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Urbana",
+ "growth_from_2000_to_2013": "10.3%",
+ "latitude": 40.1105875,
+ "longitude": -88.2072697,
+ "population": "41752",
+ "rank": "878",
+ "state": "Illinois"
+ },
+ {
+ "city": "Plainfield",
+ "growth_from_2000_to_2013": "203.6%",
+ "latitude": 41.632223,
+ "longitude": -88.2120315,
+ "population": "41734",
+ "rank": "879",
+ "state": "Illinois"
+ },
+ {
+ "city": "Manassas",
+ "growth_from_2000_to_2013": "19.5%",
+ "latitude": 38.7509488,
+ "longitude": -77.47526669999999,
+ "population": "41705",
+ "rank": "880",
+ "state": "Virginia"
+ },
+ {
+ "city": "Bartlett",
+ "growth_from_2000_to_2013": "13.1%",
+ "latitude": 41.9950276,
+ "longitude": -88.1856301,
+ "population": "41679",
+ "rank": "881",
+ "state": "Illinois"
+ },
+ {
+ "city": "Kearny",
+ "growth_from_2000_to_2013": "2.8%",
+ "latitude": 40.7684342,
+ "longitude": -74.1454214,
+ "population": "41664",
+ "rank": "882",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Oro Valley",
+ "growth_from_2000_to_2013": "27.0%",
+ "latitude": 32.3909071,
+ "longitude": -110.966488,
+ "population": "41627",
+ "rank": "883",
+ "state": "Arizona"
+ },
+ {
+ "city": "Findlay",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 41.04422,
+ "longitude": -83.6499321,
+ "population": "41512",
+ "rank": "884",
+ "state": "Ohio"
+ },
+ {
+ "city": "Rohnert Park",
+ "growth_from_2000_to_2013": "0.0%",
+ "latitude": 38.3396367,
+ "longitude": -122.7010984,
+ "population": "41398",
+ "rank": "885",
+ "state": "California"
+ },
+ {
+ "city": "Westfield",
+ "growth_from_2000_to_2013": "3.0%",
+ "latitude": 42.1250929,
+ "longitude": -72.749538,
+ "population": "41301",
+ "rank": "887",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Linden",
+ "growth_from_2000_to_2013": "4.7%",
+ "latitude": 40.6220478,
+ "longitude": -74.24459019999999,
+ "population": "41301",
+ "rank": "886",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Sumter",
+ "growth_from_2000_to_2013": "1.3%",
+ "latitude": 33.9204354,
+ "longitude": -80.3414693,
+ "population": "41190",
+ "rank": "888",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Wilkes-Barre",
+ "growth_from_2000_to_2013": "-4.3%",
+ "latitude": 41.2459149,
+ "longitude": -75.88130749999999,
+ "population": "41108",
+ "rank": "889",
+ "state": "Pennsylvania"
+ },
+ {
+ "city": "Woonsocket",
+ "growth_from_2000_to_2013": "-5.2%",
+ "latitude": 42.00287609999999,
+ "longitude": -71.51478390000001,
+ "population": "41026",
+ "rank": "890",
+ "state": "Rhode Island"
+ },
+ {
+ "city": "Leominster",
+ "growth_from_2000_to_2013": "-1.1%",
+ "latitude": 42.5250906,
+ "longitude": -71.759794,
+ "population": "41002",
+ "rank": "891",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Shelton",
+ "growth_from_2000_to_2013": "7.3%",
+ "latitude": 41.3164856,
+ "longitude": -73.0931641,
+ "population": "40999",
+ "rank": "892",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Brea",
+ "growth_from_2000_to_2013": "15.2%",
+ "latitude": 33.9166805,
+ "longitude": -117.9000604,
+ "population": "40963",
+ "rank": "893",
+ "state": "California"
+ },
+ {
+ "city": "Covington",
+ "growth_from_2000_to_2013": "-4.7%",
+ "latitude": 39.0836712,
+ "longitude": -84.5085536,
+ "population": "40956",
+ "rank": "894",
+ "state": "Kentucky"
+ },
+ {
+ "city": "Rockwall",
+ "growth_from_2000_to_2013": "117.2%",
+ "latitude": 32.93123360000001,
+ "longitude": -96.4597089,
+ "population": "40922",
+ "rank": "895",
+ "state": "Texas"
+ },
+ {
+ "city": "Meridian",
+ "growth_from_2000_to_2013": "-0.9%",
+ "latitude": 32.3643098,
+ "longitude": -88.703656,
+ "population": "40921",
+ "rank": "896",
+ "state": "Mississippi"
+ },
+ {
+ "city": "Riverton",
+ "growth_from_2000_to_2013": "61.6%",
+ "latitude": 40.521893,
+ "longitude": -111.9391023,
+ "population": "40921",
+ "rank": "897",
+ "state": "Utah"
+ },
+ {
+ "city": "St. Cloud",
+ "growth_from_2000_to_2013": "86.2%",
+ "latitude": 28.2489016,
+ "longitude": -81.2811801,
+ "population": "40918",
+ "rank": "898",
+ "state": "Florida"
+ },
+ {
+ "city": "Quincy",
+ "growth_from_2000_to_2013": "0.5%",
+ "latitude": 39.9356016,
+ "longitude": -91.4098726,
+ "population": "40915",
+ "rank": "899",
+ "state": "Illinois"
+ },
+ {
+ "city": "Morgan Hill",
+ "growth_from_2000_to_2013": "19.5%",
+ "latitude": 37.1305012,
+ "longitude": -121.6543901,
+ "population": "40836",
+ "rank": "900",
+ "state": "California"
+ },
+ {
+ "city": "Warren",
+ "growth_from_2000_to_2013": "-15.2%",
+ "latitude": 41.2375569,
+ "longitude": -80.81841659999999,
+ "population": "40768",
+ "rank": "901",
+ "state": "Ohio"
+ },
+ {
+ "city": "Edmonds",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 47.8106521,
+ "longitude": -122.3773552,
+ "population": "40727",
+ "rank": "902",
+ "state": "Washington"
+ },
+ {
+ "city": "Burleson",
+ "growth_from_2000_to_2013": "85.3%",
+ "latitude": 32.5420821,
+ "longitude": -97.3208492,
+ "population": "40714",
+ "rank": "903",
+ "state": "Texas"
+ },
+ {
+ "city": "Beverly",
+ "growth_from_2000_to_2013": "2.0%",
+ "latitude": 42.5584283,
+ "longitude": -70.880049,
+ "population": "40664",
+ "rank": "904",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Mankato",
+ "growth_from_2000_to_2013": "24.7%",
+ "latitude": 44.1635775,
+ "longitude": -93.99939959999999,
+ "population": "40641",
+ "rank": "905",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Hagerstown",
+ "growth_from_2000_to_2013": "10.4%",
+ "latitude": 39.6417629,
+ "longitude": -77.71999319999999,
+ "population": "40612",
+ "rank": "906",
+ "state": "Maryland"
+ },
+ {
+ "city": "Prescott",
+ "growth_from_2000_to_2013": "18.1%",
+ "latitude": 34.5400242,
+ "longitude": -112.4685025,
+ "population": "40590",
+ "rank": "907",
+ "state": "Arizona"
+ },
+ {
+ "city": "Campbell",
+ "growth_from_2000_to_2013": "4.2%",
+ "latitude": 37.2871651,
+ "longitude": -121.9499568,
+ "population": "40584",
+ "rank": "908",
+ "state": "California"
+ },
+ {
+ "city": "Cedar Falls",
+ "growth_from_2000_to_2013": "12.0%",
+ "latitude": 42.5348993,
+ "longitude": -92.4453161,
+ "population": "40566",
+ "rank": "909",
+ "state": "Iowa"
+ },
+ {
+ "city": "Beaumont",
+ "growth_from_2000_to_2013": "254.5%",
+ "latitude": 33.9294606,
+ "longitude": -116.977248,
+ "population": "40481",
+ "rank": "910",
+ "state": "California"
+ },
+ {
+ "city": "La Puente",
+ "growth_from_2000_to_2013": "-1.6%",
+ "latitude": 34.0200114,
+ "longitude": -117.9495083,
+ "population": "40435",
+ "rank": "911",
+ "state": "California"
+ },
+ {
+ "city": "Crystal Lake",
+ "growth_from_2000_to_2013": "5.3%",
+ "latitude": 42.2411344,
+ "longitude": -88.31619649999999,
+ "population": "40388",
+ "rank": "912",
+ "state": "Illinois"
+ },
+ {
+ "city": "Fitchburg",
+ "growth_from_2000_to_2013": "3.5%",
+ "latitude": 42.5834228,
+ "longitude": -71.8022955,
+ "population": "40383",
+ "rank": "913",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Carol Stream",
+ "growth_from_2000_to_2013": "-0.2%",
+ "latitude": 41.91252859999999,
+ "longitude": -88.13479269999999,
+ "population": "40379",
+ "rank": "914",
+ "state": "Illinois"
+ },
+ {
+ "city": "Hickory",
+ "growth_from_2000_to_2013": "7.0%",
+ "latitude": 35.7344538,
+ "longitude": -81.3444573,
+ "population": "40361",
+ "rank": "915",
+ "state": "North Carolina"
+ },
+ {
+ "city": "Streamwood",
+ "growth_from_2000_to_2013": "10.1%",
+ "latitude": 42.0255827,
+ "longitude": -88.17840849999999,
+ "population": "40351",
+ "rank": "916",
+ "state": "Illinois"
+ },
+ {
+ "city": "Norwich",
+ "growth_from_2000_to_2013": "11.6%",
+ "latitude": 41.5242649,
+ "longitude": -72.07591049999999,
+ "population": "40347",
+ "rank": "917",
+ "state": "Connecticut"
+ },
+ {
+ "city": "Coppell",
+ "growth_from_2000_to_2013": "10.3%",
+ "latitude": 32.9545687,
+ "longitude": -97.01500779999999,
+ "population": "40342",
+ "rank": "918",
+ "state": "Texas"
+ },
+ {
+ "city": "San Gabriel",
+ "growth_from_2000_to_2013": "0.9%",
+ "latitude": 34.09611110000001,
+ "longitude": -118.1058333,
+ "population": "40275",
+ "rank": "919",
+ "state": "California"
+ },
+ {
+ "city": "Holyoke",
+ "growth_from_2000_to_2013": "0.9%",
+ "latitude": 42.2042586,
+ "longitude": -72.6162009,
+ "population": "40249",
+ "rank": "920",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Bentonville",
+ "growth_from_2000_to_2013": "97.7%",
+ "latitude": 36.3728538,
+ "longitude": -94.2088172,
+ "population": "40167",
+ "rank": "921",
+ "state": "Arkansas"
+ },
+ {
+ "city": "Florence",
+ "growth_from_2000_to_2013": "10.2%",
+ "latitude": 34.79981,
+ "longitude": -87.677251,
+ "population": "40059",
+ "rank": "922",
+ "state": "Alabama"
+ },
+ {
+ "city": "Peachtree Corners",
+ "growth_from_2000_to_2013": "",
+ "latitude": 33.9698929,
+ "longitude": -84.2214551,
+ "population": "40059",
+ "rank": "923",
+ "state": "Georgia"
+ },
+ {
+ "city": "Brentwood",
+ "growth_from_2000_to_2013": "51.9%",
+ "latitude": 36.0331164,
+ "longitude": -86.78277720000001,
+ "population": "40021",
+ "rank": "924",
+ "state": "Tennessee"
+ },
+ {
+ "city": "Bozeman",
+ "growth_from_2000_to_2013": "41.9%",
+ "latitude": 45.6769979,
+ "longitude": -111.0429339,
+ "population": "39860",
+ "rank": "925",
+ "state": "Montana"
+ },
+ {
+ "city": "New Berlin",
+ "growth_from_2000_to_2013": "3.6%",
+ "latitude": 42.9764027,
+ "longitude": -88.1084224,
+ "population": "39834",
+ "rank": "926",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Goose Creek",
+ "growth_from_2000_to_2013": "26.1%",
+ "latitude": 32.9810059,
+ "longitude": -80.03258670000001,
+ "population": "39823",
+ "rank": "927",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Huntsville",
+ "growth_from_2000_to_2013": "13.2%",
+ "latitude": 30.7235263,
+ "longitude": -95.55077709999999,
+ "population": "39795",
+ "rank": "928",
+ "state": "Texas"
+ },
+ {
+ "city": "Prescott Valley",
+ "growth_from_2000_to_2013": "62.9%",
+ "latitude": 34.6100243,
+ "longitude": -112.315721,
+ "population": "39791",
+ "rank": "929",
+ "state": "Arizona"
+ },
+ {
+ "city": "Maplewood",
+ "growth_from_2000_to_2013": "12.3%",
+ "latitude": 44.9530215,
+ "longitude": -92.9952153,
+ "population": "39765",
+ "rank": "930",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Romeoville",
+ "growth_from_2000_to_2013": "79.5%",
+ "latitude": 41.6475306,
+ "longitude": -88.0895061,
+ "population": "39650",
+ "rank": "931",
+ "state": "Illinois"
+ },
+ {
+ "city": "Duncanville",
+ "growth_from_2000_to_2013": "9.7%",
+ "latitude": 32.6518004,
+ "longitude": -96.9083366,
+ "population": "39605",
+ "rank": "932",
+ "state": "Texas"
+ },
+ {
+ "city": "Atlantic City",
+ "growth_from_2000_to_2013": "-2.2%",
+ "latitude": 39.3642834,
+ "longitude": -74.4229266,
+ "population": "39551",
+ "rank": "933",
+ "state": "New Jersey"
+ },
+ {
+ "city": "Clovis",
+ "growth_from_2000_to_2013": "21.3%",
+ "latitude": 34.4047987,
+ "longitude": -103.2052272,
+ "population": "39508",
+ "rank": "934",
+ "state": "New Mexico"
+ },
+ {
+ "city": "The Colony",
+ "growth_from_2000_to_2013": "45.7%",
+ "latitude": 33.0806083,
+ "longitude": -96.89283089999999,
+ "population": "39458",
+ "rank": "935",
+ "state": "Texas"
+ },
+ {
+ "city": "Culver City",
+ "growth_from_2000_to_2013": "1.3%",
+ "latitude": 34.0211224,
+ "longitude": -118.3964665,
+ "population": "39428",
+ "rank": "936",
+ "state": "California"
+ },
+ {
+ "city": "Marlborough",
+ "growth_from_2000_to_2013": "7.6%",
+ "latitude": 42.3459271,
+ "longitude": -71.5522874,
+ "population": "39414",
+ "rank": "937",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Hilton Head Island",
+ "growth_from_2000_to_2013": "16.0%",
+ "latitude": 32.216316,
+ "longitude": -80.752608,
+ "population": "39412",
+ "rank": "938",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Moorhead",
+ "growth_from_2000_to_2013": "21.3%",
+ "latitude": 46.8737648,
+ "longitude": -96.76780389999999,
+ "population": "39398",
+ "rank": "939",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Calexico",
+ "growth_from_2000_to_2013": "44.0%",
+ "latitude": 32.6789476,
+ "longitude": -115.4988834,
+ "population": "39389",
+ "rank": "940",
+ "state": "California"
+ },
+ {
+ "city": "Bullhead City",
+ "growth_from_2000_to_2013": "15.9%",
+ "latitude": 35.1359386,
+ "longitude": -114.5285981,
+ "population": "39383",
+ "rank": "941",
+ "state": "Arizona"
+ },
+ {
+ "city": "Germantown",
+ "growth_from_2000_to_2013": "4.1%",
+ "latitude": 35.0867577,
+ "longitude": -89.8100858,
+ "population": "39375",
+ "rank": "942",
+ "state": "Tennessee"
+ },
+ {
+ "city": "La Quinta",
+ "growth_from_2000_to_2013": "59.9%",
+ "latitude": 33.6633573,
+ "longitude": -116.3100095,
+ "population": "39331",
+ "rank": "943",
+ "state": "California"
+ },
+ {
+ "city": "Lancaster",
+ "growth_from_2000_to_2013": "10.7%",
+ "latitude": 39.7136754,
+ "longitude": -82.5993294,
+ "population": "39325",
+ "rank": "944",
+ "state": "Ohio"
+ },
+ {
+ "city": "Wausau",
+ "growth_from_2000_to_2013": "1.7%",
+ "latitude": 44.9591352,
+ "longitude": -89.6301221,
+ "population": "39309",
+ "rank": "945",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Sherman",
+ "growth_from_2000_to_2013": "11.6%",
+ "latitude": 33.6356618,
+ "longitude": -96.6088805,
+ "population": "39296",
+ "rank": "946",
+ "state": "Texas"
+ },
+ {
+ "city": "Ocoee",
+ "growth_from_2000_to_2013": "57.9%",
+ "latitude": 28.5691677,
+ "longitude": -81.5439619,
+ "population": "39172",
+ "rank": "947",
+ "state": "Florida"
+ },
+ {
+ "city": "Shakopee",
+ "growth_from_2000_to_2013": "85.7%",
+ "latitude": 44.7973962,
+ "longitude": -93.5272861,
+ "population": "39167",
+ "rank": "948",
+ "state": "Minnesota"
+ },
+ {
+ "city": "Woburn",
+ "growth_from_2000_to_2013": "4.4%",
+ "latitude": 42.4792618,
+ "longitude": -71.1522765,
+ "population": "39083",
+ "rank": "949",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Bremerton",
+ "growth_from_2000_to_2013": "4.9%",
+ "latitude": 47.5673202,
+ "longitude": -122.6329356,
+ "population": "39056",
+ "rank": "950",
+ "state": "Washington"
+ },
+ {
+ "city": "Rock Island",
+ "growth_from_2000_to_2013": "-1.9%",
+ "latitude": 41.5094771,
+ "longitude": -90.5787476,
+ "population": "38877",
+ "rank": "951",
+ "state": "Illinois"
+ },
+ {
+ "city": "Muskogee",
+ "growth_from_2000_to_2013": "-0.7%",
+ "latitude": 35.7478769,
+ "longitude": -95.3696909,
+ "population": "38863",
+ "rank": "952",
+ "state": "Oklahoma"
+ },
+ {
+ "city": "Cape Girardeau",
+ "growth_from_2000_to_2013": "9.4%",
+ "latitude": 37.3058839,
+ "longitude": -89.51814759999999,
+ "population": "38816",
+ "rank": "953",
+ "state": "Missouri"
+ },
+ {
+ "city": "Annapolis",
+ "growth_from_2000_to_2013": "7.6%",
+ "latitude": 38.9784453,
+ "longitude": -76.4921829,
+ "population": "38722",
+ "rank": "954",
+ "state": "Maryland"
+ },
+ {
+ "city": "Greenacres",
+ "growth_from_2000_to_2013": "35.5%",
+ "latitude": 26.6276276,
+ "longitude": -80.1353896,
+ "population": "38696",
+ "rank": "955",
+ "state": "Florida"
+ },
+ {
+ "city": "Ormond Beach",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 29.2858129,
+ "longitude": -81.0558894,
+ "population": "38661",
+ "rank": "956",
+ "state": "Florida"
+ },
+ {
+ "city": "Hallandale Beach",
+ "growth_from_2000_to_2013": "12.4%",
+ "latitude": 25.9812024,
+ "longitude": -80.14837899999999,
+ "population": "38632",
+ "rank": "957",
+ "state": "Florida"
+ },
+ {
+ "city": "Stanton",
+ "growth_from_2000_to_2013": "2.8%",
+ "latitude": 33.8025155,
+ "longitude": -117.9931165,
+ "population": "38623",
+ "rank": "958",
+ "state": "California"
+ },
+ {
+ "city": "Puyallup",
+ "growth_from_2000_to_2013": "11.8%",
+ "latitude": 47.1853785,
+ "longitude": -122.2928974,
+ "population": "38609",
+ "rank": "959",
+ "state": "Washington"
+ },
+ {
+ "city": "Pacifica",
+ "growth_from_2000_to_2013": "0.5%",
+ "latitude": 37.6138253,
+ "longitude": -122.4869194,
+ "population": "38606",
+ "rank": "960",
+ "state": "California"
+ },
+ {
+ "city": "Hanover Park",
+ "growth_from_2000_to_2013": "0.6%",
+ "latitude": 41.9994722,
+ "longitude": -88.1450735,
+ "population": "38510",
+ "rank": "961",
+ "state": "Illinois"
+ },
+ {
+ "city": "Hurst",
+ "growth_from_2000_to_2013": "5.8%",
+ "latitude": 32.8234621,
+ "longitude": -97.1705678,
+ "population": "38448",
+ "rank": "962",
+ "state": "Texas"
+ },
+ {
+ "city": "Lima",
+ "growth_from_2000_to_2013": "-8.1%",
+ "latitude": 40.742551,
+ "longitude": -84.1052256,
+ "population": "38355",
+ "rank": "963",
+ "state": "Ohio"
+ },
+ {
+ "city": "Marana",
+ "growth_from_2000_to_2013": "166.2%",
+ "latitude": 32.436381,
+ "longitude": -111.2224422,
+ "population": "38290",
+ "rank": "964",
+ "state": "Arizona"
+ },
+ {
+ "city": "Carpentersville",
+ "growth_from_2000_to_2013": "22.8%",
+ "latitude": 42.1211364,
+ "longitude": -88.2578582,
+ "population": "38241",
+ "rank": "965",
+ "state": "Illinois"
+ },
+ {
+ "city": "Oakley",
+ "growth_from_2000_to_2013": "47.7%",
+ "latitude": 37.9974219,
+ "longitude": -121.7124536,
+ "population": "38194",
+ "rank": "966",
+ "state": "California"
+ },
+ {
+ "city": "Huber Heights",
+ "growth_from_2000_to_2013": "-0.2%",
+ "latitude": 39.843947,
+ "longitude": -84.12466080000002,
+ "population": "38142",
+ "rank": "967",
+ "state": "Ohio"
+ },
+ {
+ "city": "Lancaster",
+ "growth_from_2000_to_2013": "46.4%",
+ "latitude": 32.5920798,
+ "longitude": -96.7561082,
+ "population": "38071",
+ "rank": "968",
+ "state": "Texas"
+ },
+ {
+ "city": "Montclair",
+ "growth_from_2000_to_2013": "12.1%",
+ "latitude": 34.0775104,
+ "longitude": -117.6897776,
+ "population": "38027",
+ "rank": "969",
+ "state": "California"
+ },
+ {
+ "city": "Wheeling",
+ "growth_from_2000_to_2013": "4.8%",
+ "latitude": 42.1391927,
+ "longitude": -87.9289591,
+ "population": "38015",
+ "rank": "970",
+ "state": "Illinois"
+ },
+ {
+ "city": "Brookfield",
+ "growth_from_2000_to_2013": "-1.9%",
+ "latitude": 43.0605671,
+ "longitude": -88.1064787,
+ "population": "37999",
+ "rank": "971",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Park Ridge",
+ "growth_from_2000_to_2013": "0.1%",
+ "latitude": 42.0111412,
+ "longitude": -87.84061919999999,
+ "population": "37839",
+ "rank": "972",
+ "state": "Illinois"
+ },
+ {
+ "city": "Florence",
+ "growth_from_2000_to_2013": "19.8%",
+ "latitude": 34.1954331,
+ "longitude": -79.7625625,
+ "population": "37792",
+ "rank": "973",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Roy",
+ "growth_from_2000_to_2013": "13.3%",
+ "latitude": 41.1616108,
+ "longitude": -112.0263313,
+ "population": "37733",
+ "rank": "974",
+ "state": "Utah"
+ },
+ {
+ "city": "Winter Garden",
+ "growth_from_2000_to_2013": "142.5%",
+ "latitude": 28.5652787,
+ "longitude": -81.58618469999999,
+ "population": "37711",
+ "rank": "975",
+ "state": "Florida"
+ },
+ {
+ "city": "Chelsea",
+ "growth_from_2000_to_2013": "7.3%",
+ "latitude": 42.3917638,
+ "longitude": -71.0328284,
+ "population": "37670",
+ "rank": "976",
+ "state": "Massachusetts"
+ },
+ {
+ "city": "Valley Stream",
+ "growth_from_2000_to_2013": "3.6%",
+ "latitude": 40.6642699,
+ "longitude": -73.70846449999999,
+ "population": "37659",
+ "rank": "977",
+ "state": "New York"
+ },
+ {
+ "city": "Spartanburg",
+ "growth_from_2000_to_2013": "-6.2%",
+ "latitude": 34.9495672,
+ "longitude": -81.9320482,
+ "population": "37647",
+ "rank": "978",
+ "state": "South Carolina"
+ },
+ {
+ "city": "Lake Oswego",
+ "growth_from_2000_to_2013": "5.3%",
+ "latitude": 45.42067489999999,
+ "longitude": -122.6706498,
+ "population": "37610",
+ "rank": "979",
+ "state": "Oregon"
+ },
+ {
+ "city": "Friendswood",
+ "growth_from_2000_to_2013": "28.6%",
+ "latitude": 29.5293998,
+ "longitude": -95.2010447,
+ "population": "37587",
+ "rank": "980",
+ "state": "Texas"
+ },
+ {
+ "city": "Westerville",
+ "growth_from_2000_to_2013": "5.7%",
+ "latitude": 40.1261743,
+ "longitude": -82.92906959999999,
+ "population": "37530",
+ "rank": "981",
+ "state": "Ohio"
+ },
+ {
+ "city": "Northglenn",
+ "growth_from_2000_to_2013": "15.5%",
+ "latitude": 39.8961821,
+ "longitude": -104.9811468,
+ "population": "37499",
+ "rank": "982",
+ "state": "Colorado"
+ },
+ {
+ "city": "Phenix City",
+ "growth_from_2000_to_2013": "31.9%",
+ "latitude": 32.4709761,
+ "longitude": -85.0007653,
+ "population": "37498",
+ "rank": "983",
+ "state": "Alabama"
+ },
+ {
+ "city": "Grove City",
+ "growth_from_2000_to_2013": "35.6%",
+ "latitude": 39.88145189999999,
+ "longitude": -83.0929644,
+ "population": "37490",
+ "rank": "984",
+ "state": "Ohio"
+ },
+ {
+ "city": "Texarkana",
+ "growth_from_2000_to_2013": "7.4%",
+ "latitude": 33.425125,
+ "longitude": -94.04768820000001,
+ "population": "37442",
+ "rank": "985",
+ "state": "Texas"
+ },
+ {
+ "city": "Addison",
+ "growth_from_2000_to_2013": "2.6%",
+ "latitude": 41.931696,
+ "longitude": -87.9889556,
+ "population": "37385",
+ "rank": "986",
+ "state": "Illinois"
+ },
+ {
+ "city": "Dover",
+ "growth_from_2000_to_2013": "16.0%",
+ "latitude": 39.158168,
+ "longitude": -75.5243682,
+ "population": "37366",
+ "rank": "987",
+ "state": "Delaware"
+ },
+ {
+ "city": "Lincoln Park",
+ "growth_from_2000_to_2013": "-6.7%",
+ "latitude": 42.2505943,
+ "longitude": -83.1785361,
+ "population": "37313",
+ "rank": "988",
+ "state": "Michigan"
+ },
+ {
+ "city": "Calumet City",
+ "growth_from_2000_to_2013": "-4.5%",
+ "latitude": 41.6155909,
+ "longitude": -87.5294871,
+ "population": "37240",
+ "rank": "989",
+ "state": "Illinois"
+ },
+ {
+ "city": "Muskegon",
+ "growth_from_2000_to_2013": "-7.1%",
+ "latitude": 43.2341813,
+ "longitude": -86.24839209999999,
+ "population": "37213",
+ "rank": "990",
+ "state": "Michigan"
+ },
+ {
+ "city": "Aventura",
+ "growth_from_2000_to_2013": "47.2%",
+ "latitude": 25.9564812,
+ "longitude": -80.1392121,
+ "population": "37199",
+ "rank": "991",
+ "state": "Florida"
+ },
+ {
+ "city": "Martinez",
+ "growth_from_2000_to_2013": "3.4%",
+ "latitude": 38.0193657,
+ "longitude": -122.1341321,
+ "population": "37165",
+ "rank": "992",
+ "state": "California"
+ },
+ {
+ "city": "Greenfield",
+ "growth_from_2000_to_2013": "4.8%",
+ "latitude": 42.9614039,
+ "longitude": -88.0125865,
+ "population": "37159",
+ "rank": "993",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Apache Junction",
+ "growth_from_2000_to_2013": "15.7%",
+ "latitude": 33.4150485,
+ "longitude": -111.5495777,
+ "population": "37130",
+ "rank": "994",
+ "state": "Arizona"
+ },
+ {
+ "city": "Monrovia",
+ "growth_from_2000_to_2013": "0.2%",
+ "latitude": 34.1442616,
+ "longitude": -118.0019482,
+ "population": "37101",
+ "rank": "995",
+ "state": "California"
+ },
+ {
+ "city": "Weslaco",
+ "growth_from_2000_to_2013": "28.8%",
+ "latitude": 26.1595194,
+ "longitude": -97.9908366,
+ "population": "37093",
+ "rank": "996",
+ "state": "Texas"
+ },
+ {
+ "city": "Keizer",
+ "growth_from_2000_to_2013": "14.4%",
+ "latitude": 44.9901194,
+ "longitude": -123.0262077,
+ "population": "37064",
+ "rank": "997",
+ "state": "Oregon"
+ },
+ {
+ "city": "Spanish Fork",
+ "growth_from_2000_to_2013": "78.1%",
+ "latitude": 40.114955,
+ "longitude": -111.654923,
+ "population": "36956",
+ "rank": "998",
+ "state": "Utah"
+ },
+ {
+ "city": "Beloit",
+ "growth_from_2000_to_2013": "2.9%",
+ "latitude": 42.5083482,
+ "longitude": -89.03177649999999,
+ "population": "36888",
+ "rank": "999",
+ "state": "Wisconsin"
+ },
+ {
+ "city": "Panama City",
+ "growth_from_2000_to_2013": "0.1%",
+ "latitude": 30.1588129,
+ "longitude": -85.6602058,
+ "population": "36877",
+ "rank": "1000",
+ "state": "Florida"
+ }
+]
\ No newline at end of file
diff --git a/06 - Type Ahead/index-FINISHED.html b/06 - Type Ahead/index-FINISHED.html
index 5902b43..c64e2b1 100644
--- a/06 - Type Ahead/index-FINISHED.html
+++ b/06 - Type Ahead/index-FINISHED.html
@@ -1,10 +1,12 @@
+
Type Ahead 👀
+
-
+
-
-
-